summaryrefslogtreecommitdiffstats
path: root/generic/tkCanvas.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tkCanvas.c')
0 files changed, 0 insertions, 0 deletions
https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# # vfdTest.cmake executes a command and captures the output in a file. Command uses specified VFD. # Exit status of command can also be compared. @@ -60,12 +60,12 @@ if (ERROR_APPEND AND EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}_${TEST_VFD}.err) endif () # if the return value is !=${TEST_EXPECT} bail out -if (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) +if (NOT "${TEST_RESULT}" STREQUAL "${TEST_EXPECT}") if (NOT TEST_NOERRDISPLAY) if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}_${TEST_VFD}.out) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}_${TEST_VFD}.out TEST_STREAM) - message (STATUS "Output USING ${TEST_VFD}:\n${TEST_STREAM}") - endif () + message (STATUS "Output USING ${TEST_VFD}:\n${TEST_STREAM}") + endif () endif () message (FATAL_ERROR "Failed: Test program ${TEST_PROGRAM} exited != ${TEST_EXPECT}.\n${TEST_ERROR}") endif () diff --git a/config/cmake_ext_mod/FindMPI.cmake b/config/cmake_ext_mod/FindMPI.cmake index f566ade..8084472 100644 --- a/config/cmake_ext_mod/FindMPI.cmake +++ b/config/cmake_ext_mod/FindMPI.cmake @@ -4,27 +4,45 @@ # FindMPI # ------- # -# Find a Message Passing Interface (MPI) implementation +# Find a Message Passing Interface (MPI) implementation. # # The Message Passing Interface (MPI) is a library used to write # high-performance distributed-memory parallel applications, and is # typically deployed on a cluster. MPI is a standard interface (defined # by the MPI forum) for which many implementations are available. # -# Variables -# ^^^^^^^^^ +# Variables for using MPI +# ^^^^^^^^^^^^^^^^^^^^^^^ +# +# The module exposes the components ``C``, ``CXX``, ``MPICXX`` and ``Fortran``. +# Each of these controls the various MPI languages to search for. +# The difference between ``CXX`` and ``MPICXX`` is that ``CXX`` refers to the +# MPI C API being usable from C++, whereas ``MPICXX`` refers to the MPI-2 C++ API +# that was removed again in MPI-3. +# +# Depending on the enabled components the following variables will be set: +# +# ``MPI_FOUND`` +# Variable indicating that MPI settings for all requested languages have been found. +# If no components are specified, this is true if MPI settings for all enabled languages +# were detected. Note that the ``MPICXX`` component does not affect this variable. +# ``MPI_VERSION`` +# Minimal version of MPI detected among the requested languages, or all enabled languages +# if no components were specified. # # This module will set the following variables per language in your # project, where ```` is one of C, CXX, or Fortran: # # ``MPI__FOUND`` -# Variable indicating the MPI settings for ```` were found. +# Variable indicating the MPI settings for ```` were found and that +# simple MPI test programs compile with the provided settings. # ``MPI__COMPILER`` -# MPI Compiler wrapper for ````. -# ``MPI__COMPILE_FLAGS`` -# Compilation flags for MPI programs, separated by spaces. -# This is *not* a :ref:`;-list `. -# ``MPI__INCLUDE_PATH`` +# MPI compiler for ```` if such a program exists. +# ``MPI__COMPILE_OPTIONS`` +# Compilation options for MPI programs in ````, given as a :ref:`;-list `. +# ``MPI__COMPILE_DEFINITIONS`` +# Compilation definitions for MPI programs in ````, given as a :ref:`;-list `. +# ``MPI__INCLUDE_DIRS`` # Include path(s) for MPI header. # ``MPI__LINK_FLAGS`` # Linker flags for MPI programs. @@ -36,53 +54,172 @@ # ``MPI::MPI_`` # Target for using MPI from ````. # -# Additionally, FindMPI sets the following variables for running MPI -# programs from the command line: +# The following variables indicating which bindings are present will be defined: # -# ``MPIEXEC`` -# Executable for running MPI programs, if provided. +# ``MPI_MPICXX_FOUND`` +# Variable indicating whether the MPI-2 C++ bindings are present (introduced in MPI-2, removed with MPI-3). +# ``MPI_Fortran_HAVE_F77_HEADER`` +# True if the Fortran 77 header ``mpif.h`` is available. +# ``MPI_Fortran_HAVE_F90_MODULE`` +# True if the Fortran 90 module ``mpi`` can be used for accessing MPI (MPI-2 and higher only). +# ``MPI_Fortran_HAVE_F08_MODULE`` +# True if the Fortran 2008 ``mpi_f08`` is available to MPI programs (MPI-3 and higher only). +# +# If possible, the MPI version will be determined by this module. The facilities to detect the MPI version +# were introduced with MPI-1.2, and therefore cannot be found for older MPI versions. +# +# ``MPI__VERSION_MAJOR`` +# Major version of MPI implemented for ```` by the MPI distribution. +# ``MPI__VERSION_MINOR`` +# Minor version of MPI implemented for ```` by the MPI distribution. +# ``MPI__VERSION`` +# MPI version implemented for ```` by the MPI distribution. +# +# Note that there's no variable for the C bindings being accessible through ``mpi.h``, since the MPI standards +# always have required this binding to work in both C and C++ code. +# +# For running MPI programs, the module sets the following variables +# +# ``MPIEXEC_EXECUTABLE`` +# Executable for running MPI programs, if such exists. # ``MPIEXEC_NUMPROC_FLAG`` -# Flag to pass to ``MPIEXEC`` before giving it the number of processors to run on. +# Flag to pass to ``mpiexec`` before giving it the number of processors to run on. # ``MPIEXEC_MAX_NUMPROCS`` # Number of MPI processors to utilize. Defaults to the number # of processors detected on the host system. # ``MPIEXEC_PREFLAGS`` -# Flags to pass to ``MPIEXEC`` directly before the executable to run. +# Flags to pass to ``mpiexec`` directly before the executable to run. # ``MPIEXEC_POSTFLAGS`` -# Flags to pass to ``MPIEXEC`` after other flags. +# Flags to pass to ``mpiexec`` after other flags. +# +# Variables for locating MPI +# ^^^^^^^^^^^^^^^^^^^^^^^^^^ +# +# This module performs a three step search for an MPI implementation: +# +# 1. Check if the compiler has MPI support built-in. This is the case if the user passed a +# compiler wrapper as ``CMAKE__COMPILER`` or if they're on a Cray system. +# 2. Attempt to find an MPI compiler wrapper and determine the compiler information from it. +# 3. Try to find an MPI implementation that does not ship such a wrapper by guessing settings. +# Currently, only Microsoft MPI and MPICH2 on Windows are supported. +# +# For controlling the second step, the following variables may be set: +# +# ``MPI__COMPILER`` +# Search for the specified compiler wrapper and use it. +# ``MPI__COMPILER_FLAGS`` +# Flags to pass to the MPI compiler wrapper during interrogation. Some compiler wrappers +# support linking debug or tracing libraries if a specific flag is passed and this variable +# may be used to obtain them. +# ``MPI_COMPILER_FLAGS`` +# Used to initialize ``MPI__COMPILER_FLAGS`` if no language specific flag has been given. +# Empty by default. +# ``MPI_EXECUTABLE_SUFFIX`` +# A suffix which is appended to all names that are being looked for. For instance you may set this +# to ``.mpich`` or ``.openmpi`` to prefer the one or the other on Debian and its derivatives. +# +# In order to control the guessing step, the following variable may be set: # -# Usage -# ^^^^^ +# ``MPI_GUESS_LIBRARY_NAME`` +# Valid values are ``MSMPI`` and ``MPICH2``. If set, only the given library will be searched for. +# By default, ``MSMPI`` will be preferred over ``MPICH2`` if both are available. +# This also sets ``MPI_SKIP_COMPILER_WRAPPER`` to ``true``, which may be overridden. # -# To use this module, call ``find_package(MPI)``. If you are happy with the -# auto-detected configuration for your language, then you're done. If -# not, you have two options: +# Each of the search steps may be skipped with the following control variables: # -# 1. Set ``MPI__COMPILER`` to the MPI wrapper (e.g. ``mpicc``) of your -# choice and reconfigure. FindMPI will attempt to determine all the -# necessary variables using *that* compiler's compile and link flags. -# 2. If this fails, or if your MPI implementation does not come with -# a compiler wrapper, then set both ``MPI__LIBRARIES`` and -# ``MPI__INCLUDE_PATH``. You may also set any other variables -# listed above, but these two are required. This will circumvent -# autodetection entirely. +# ``MPI_ASSUME_NO_BUILTIN_MPI`` +# If true, the module assumes that the compiler itself does not provide an MPI implementation and +# skips to step 2. +# ``MPI_SKIP_COMPILER_WRAPPER`` +# If true, no compiler wrapper will be searched for. +# ``MPI_SKIP_GUESSING`` +# If true, the guessing step will be skipped. # -# When configuration is successful, ``MPI__COMPILER`` will be set to -# the compiler wrapper for ````, if it was found. ``MPI__FOUND`` -# and other variables above will be set if any MPI implementation was -# found for ````, regardless of whether a compiler was found. +# Additionally, the following control variable is available to change search behavior: # -# When using ``MPIEXEC`` to execute MPI applications, you should typically -# use all of the ``MPIEXEC`` flags as follows: +# ``MPI_CXX_SKIP_MPICXX`` +# Add some definitions that will disable the MPI-2 C++ bindings. +# Currently supported are MPICH, Open MPI, Platform MPI and derivatives thereof, +# for example MVAPICH or Intel MPI. +# +# If the find procedure fails for a variable ``MPI__WORKS``, then the settings detected by or passed to +# the module did not work and even a simple MPI test program failed to compile. +# +# If all of these parameters were not sufficient to find the right MPI implementation, a user may +# disable the entire autodetection process by specifying both a list of libraries in ``MPI__LIBRARIES`` +# and a list of include directories in ``MPI__ADDITIONAL_INCLUDE_DIRS``. +# Any other variable may be set in addition to these two. The module will then validate the MPI settings and store the +# settings in the cache. +# +# Cache variables for MPI +# ^^^^^^^^^^^^^^^^^^^^^^^ +# +# The variable ``MPI__INCLUDE_DIRS`` will be assembled from the following variables. +# For C and CXX: +# +# ``MPI__HEADER_DIR`` +# Location of the ``mpi.h`` header on disk. +# +# For Fortran: +# +# ``MPI_Fortran_F77_HEADER_DIR`` +# Location of the Fortran 77 header ``mpif.h``, if it exists. +# ``MPI_Fortran_MODULE_DIR`` +# Location of the ``mpi`` or ``mpi_f08`` modules, if available. +# +# For all languages the following variables are additionally considered: +# +# ``MPI__ADDITIONAL_INCLUDE_DIRS`` +# A :ref:`;-list ` of paths needed in addition to the normal include directories. +# ``MPI__INCLUDE_DIR`` +# Path variables for include folders referred to by ````. +# ``MPI__ADDITIONAL_INCLUDE_VARS`` +# A :ref:`;-list ` of ```` that will be added to the include locations of ````. +# +# The variable ``MPI__LIBRARIES`` will be assembled from the following variables: +# +# ``MPI__LIBRARY`` +# The location of a library called ```` for use with MPI. +# ``MPI__LIB_NAMES`` +# A :ref:`;-list ` of ```` that will be added to the include locations of ````. +# +# Usage of mpiexec +# ^^^^^^^^^^^^^^^^ +# +# When using ``MPIEXEC_EXECUTABLE`` to execute MPI applications, you should typically +# use all of the ``MPIEXEC_EXECUTABLE`` flags as follows: # # :: # -# ${MPIEXEC} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} +# ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} # ${MPIEXEC_PREFLAGS} EXECUTABLE ${MPIEXEC_POSTFLAGS} ARGS # # where ``EXECUTABLE`` is the MPI program, and ``ARGS`` are the arguments to # pass to the MPI program. # +# Advanced variables for using MPI +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +# +# The module can perform some advanced feature detections upon explicit request. +# +# **Important notice:** The following checks cannot be performed without *executing* an MPI test program. +# Consider the special considerations for the behavior of :command:`try_run` during cross compilation. +# Moreover, running an MPI program can cause additional issues, like a firewall notification on some systems. +# You should only enable these detections if you absolutely need the information. +# +# If the following variables are set to true, the respective search will be performed: +# +# ``MPI_DETERMINE_Fortran_CAPABILITIES`` +# Determine for all available Fortran bindings what the values of ``MPI_SUBARRAYS_SUPPORTED`` and +# ``MPI_ASYNC_PROTECTS_NONBLOCKING`` are and make their values available as ``MPI_Fortran__SUBARRAYS`` +# and ``MPI_Fortran__ASYNCPROT``, where ```` is one of ``F77_HEADER``, ``F90_MODULE`` and +# ``F08_MODULE``. +# ``MPI_DETERMINE_LIBRARY_VERSION`` +# For each language, find the output of ``MPI_Get_library_version`` and make it available as ``MPI__LIBRARY_VERSION``. +# This information is usually tied to the runtime component of an MPI implementation and might differ depending on ````. +# Note that the return value is entirely implementation defined. This information might be used to identify +# the MPI vendor and for example pick the correct one of multiple third party binaries that matches the MPI vendor. +# # Backward Compatibility # ^^^^^^^^^^^^^^^^^^^^^^ # @@ -91,54 +228,62 @@ # # :: # -# MPI_FOUND MPI_COMPILER MPI_LIBRARY -# MPI_COMPILE_FLAGS MPI_INCLUDE_PATH MPI_EXTRA_LIBRARY -# MPI_LINK_FLAGS MPI_LIBRARIES +# MPI_COMPILER MPI_LIBRARY MPI_EXTRA_LIBRARY +# MPI_COMPILE_FLAGS MPI_INCLUDE_PATH MPI_LINK_FLAGS +# MPI_LIBRARIES # # In new projects, please use the ``MPI__XXX`` equivalents. +# Additionally, the following variables are deprecated: +# +# ``MPI__COMPILE_FLAGS`` +# Use ``MPI__COMPILE_OPTIONS`` and ``MPI__COMPILE_DEFINITIONS`` instead. +# ``MPI__INCLUDE_PATH`` +# For consumption use ``MPI__INCLUDE_DIRS`` and for specifying folders use ``MPI__ADDITIONAL_INCLUDE_DIRS`` instead. +# ``MPIEXEC`` +# Use ``MPIEXEC_EXECUTABLE`` instead. + +cmake_policy(PUSH) +cmake_policy(SET CMP0057 NEW) # if IN_LIST # include this to handle the QUIETLY and REQUIRED arguments include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake) include(GetPrerequisites) -# -# This part detects MPI compilers, attempting to wade through the mess of compiler names in -# a sensible way. -# -# The compilers are detected in this order: -# -# 1. Try to find the most generic available MPI compiler, as this is usually set up by -# cluster admins, e.g. if plain old mpicc is available, we'll use it and assume it's -# the right compiler. -# -# 2. If a generic mpicc is NOT found, then we attempt to find one that matches -# CMAKE__COMPILER_ID. e.g. if you are using XL compilers, we'll try to find mpixlc -# and company, but not mpiicc. This hopefully prevents toolchain mismatches. -# -# If you want to force a particular MPI compiler other than what we autodetect (e.g. if you -# want to compile regular stuff with GNU and parallel stuff with Intel), you can always set -# your favorite MPI__COMPILER explicitly and this stuff will be ignored. -# - -# Start out with the generic MPI compiler names, as these are most commonly used. -set(_MPI_C_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r mpicc.bat) -set(_MPI_CXX_COMPILER_NAMES mpicxx mpiCC mpcxx mpCC mpic++ mpc++ - mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r - mpicxx.bat) -set(_MPI_Fortran_COMPILER_NAMES mpif95 mpif95_r mpf95 mpf95_r +# Generic compiler names +set(_MPI_C_GENERIC_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r) +set(_MPI_CXX_GENERIC_COMPILER_NAMES mpicxx mpiCC mpcxx mpCC mpic++ mpc++ + mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r) +set(_MPI_Fortran_GENERIC_COMPILER_NAMES mpif95 mpif95_r mpf95 mpf95_r mpif90 mpif90_r mpf90 mpf90_r - mpif77 mpif77_r mpf77 mpf77_r) + mpif77 mpif77_r mpf77 mpf77_r + mpifc) # GNU compiler names set(_MPI_GNU_C_COMPILER_NAMES mpigcc mpgcc mpigcc_r mpgcc_r) -set(_MPI_GNU_CXX_COMPILER_NAMES mpig++ mpg++ mpig++_r mpg++_r) +set(_MPI_GNU_CXX_COMPILER_NAMES mpig++ mpg++ mpig++_r mpg++_r mpigxx) set(_MPI_GNU_Fortran_COMPILER_NAMES mpigfortran mpgfortran mpigfortran_r mpgfortran_r mpig77 mpig77_r mpg77 mpg77_r) -# Intel MPI compiler names -set(_MPI_Intel_C_COMPILER_NAMES mpiicc mpiicc.bat) -set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc mpiicxx mpiic++ mpiiCC mpiicpc.bat) -set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort mpiif95 mpiif90 mpiif77 mpiifort.bat) +# Intel MPI compiler names on Windows +if(WIN32) + list(APPEND _MPI_C_GENERIC_COMPILER_NAMES mpicc.bat) + list(APPEND _MPI_CXX_GENERIC_COMPILER_NAMES mpicxx.bat) + list(APPEND _MPI_Fortran_GENERIC_COMPILER_NAMES mpifc.bat) + + # Intel MPI compiler names + set(_MPI_Intel_C_COMPILER_NAMES mpiicc.bat) + set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc.bat) + set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort.bat mpif77.bat mpif90.bat) + + # Intel MPI compiler names for MSMPI + set(_MPI_MSVC_C_COMPILER_NAMES mpicl.bat) + set(_MPI_MSVC_CXX_COMPILER_NAMES mpicl.bat) +else() + # Intel compiler names + set(_MPI_Intel_C_COMPILER_NAMES mpiicc) + set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc mpiicxx mpiic++) + set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort mpiif95 mpiif90 mpiif77) +endif() # PGI compiler names set(_MPI_PGI_C_COMPILER_NAMES mpipgcc mppgcc) @@ -154,548 +299,1127 @@ set(_MPI_XL_Fortran_COMPILER_NAMES mpixlf95 mpixlf95_r mpxlf95 mpxlf95 mpixlf77 mpixlf77_r mpxlf77 mpxlf77_r mpixlf mpixlf_r mpxlf mpxlf_r) -# append vendor-specific compilers to the list if we either don't know the compiler id, -# or if we know it matches the regular compiler. -foreach (lang C CXX Fortran) - foreach (id GNU Intel PGI XL) - if (NOT CMAKE_${lang}_COMPILER_ID OR CMAKE_${lang}_COMPILER_ID STREQUAL id) - list(APPEND _MPI_${lang}_COMPILER_NAMES ${_MPI_${id}_${lang}_COMPILER_NAMES}) +# Prepend vendor-specific compiler wrappers to the list. If we don't know the compiler, +# attempt all of them. +# By attempting vendor-specific compiler names first, we should avoid situations where the compiler wrapper +# stems from a proprietary MPI and won't know which compiler it's being used for. For instance, Intel MPI +# controls its settings via the I_MPI_CC environment variables if the generic name is being used. +# If we know which compiler we're working with, we can use the most specialized wrapper there is in order to +# pick up the right settings for it. +foreach (LANG IN ITEMS C CXX Fortran) + set(_MPI_${LANG}_COMPILER_NAMES "") + foreach (id IN ITEMS GNU Intel MSVC PGI XL) + if (NOT CMAKE_${LANG}_COMPILER_ID OR CMAKE_${LANG}_COMPILER_ID STREQUAL id) + list(APPEND _MPI_${LANG}_COMPILER_NAMES ${_MPI_${id}_${LANG}_COMPILER_NAMES}${MPI_EXECUTABLE_SUFFIX}) endif() - unset(_MPI_${id}_${lang}_COMPILER_NAMES) # clean up the namespace here + unset(_MPI_${id}_${LANG}_COMPILER_NAMES) endforeach() + list(APPEND _MPI_${LANG}_COMPILER_NAMES ${_MPI_${LANG}_GENERIC_COMPILER_NAMES}${MPI_EXECUTABLE_SUFFIX}) + unset(_MPI_${LANG}_GENERIC_COMPILER_NAMES) endforeach() +# Names to try for mpiexec +# Only mpiexec commands are guaranteed to behave as described in the standard, +# mpirun commands are not covered by the standard in any way whatsoever. +# lamexec is the executable for LAM/MPI, srun is for SLURM or Open MPI with SLURM support. +# srun -n X is however a valid command, so it behaves 'like' mpiexec. +set(_MPIEXEC_NAMES_BASE mpiexec mpiexec.hydra mpiexec.mpd mpirun lamexec srun) -# Names to try for MPI exec -set(_MPI_EXEC_NAMES mpiexec mpirun lamexec srun) - -# Grab the path to MPI from the registry if we're on windows. -set(_MPI_PREFIX_PATH) -if(WIN32) - # MSMPI - file(TO_CMAKE_PATH "$ENV{MSMPI_BIN}" msmpi_bin_path) # The default path ends with a '\' and doesn't mix with ';' when appending. - list(APPEND _MPI_PREFIX_PATH "${msmpi_bin_path}") - unset(msmpi_bin_path) - list(APPEND _MPI_PREFIX_PATH "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\MPI;InstallRoot]/Bin") - list(APPEND _MPI_PREFIX_PATH "$ENV{MSMPI_INC}/..") # The SDK is installed separately from the runtime - # MPICH - list(APPEND _MPI_PREFIX_PATH "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH\\SMPD;binary]/..") - list(APPEND _MPI_PREFIX_PATH "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH2;Path]") - list(APPEND _MPI_PREFIX_PATH "$ENV{ProgramW6432}/MPICH2/") - # INTEL MPI - list(APPEND _MPI_PREFIX_PATH "$ENV{I_MPI_ROOT}/intel64/") - -endif() - -# Build a list of prefixes to search for MPI. -foreach(SystemPrefixDir ${CMAKE_SYSTEM_PREFIX_PATH}) - foreach(MpiPackageDir ${_MPI_PREFIX_PATH}) - if(EXISTS ${SystemPrefixDir}/${MpiPackageDir}) - list(APPEND _MPI_PREFIX_PATH "${SystemPrefixDir}/${MpiPackageDir}") - endif() - endforeach() +unset(_MPIEXEC_NAMES) +foreach(_MPIEXEC_NAME IN LISTS _MPIEXEC_NAMES_BASE) + list(APPEND _MPIEXEC_NAMES "${_MPIEXEC_NAME}${MPI_EXECUTABLE_SUFFIX}") endforeach() +unset(_MPIEXEC_NAMES_BASE) -function (_mpi_check_compiler compiler options cmdvar resvar) +function (_MPI_check_compiler LANG QUERY_FLAG OUTPUT_VARIABLE RESULT_VARIABLE) + if(DEFINED MPI_${LANG}_COMPILER_FLAGS) + separate_arguments(_MPI_COMPILER_WRAPPER_OPTIONS NATIVE_COMMAND "${MPI_${LANG}_COMPILER_FLAGS}") + else() + separate_arguments(_MPI_COMPILER_WRAPPER_OPTIONS NATIVE_COMMAND "${MPI_COMPILER_FLAGS}") + endif() execute_process( - COMMAND "${compiler}" ${options} - OUTPUT_VARIABLE cmdline OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE cmdline ERROR_STRIP_TRAILING_WHITESPACE - RESULT_VARIABLE success) - # Intel MPI 5.0.1 will return a zero return code even when the - # argument to the MPI compiler wrapper is unknown. Attempt to - # catch this case. - if(cmdline MATCHES "undefined reference" OR cmdline MATCHES "unrecognized") - set(success 255 ) - endif() - set(${cmdvar} "${cmdline}" PARENT_SCOPE) - set(${resvar} "${success}" PARENT_SCOPE) + COMMAND ${MPI_${LANG}_COMPILER} ${_MPI_COMPILER_WRAPPER_OPTIONS} ${QUERY_FLAG} + OUTPUT_VARIABLE WRAPPER_OUTPUT OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_VARIABLE WRAPPER_OUTPUT ERROR_STRIP_TRAILING_WHITESPACE + RESULT_VARIABLE WRAPPER_RETURN) + # Some compiler wrappers will yield spurious zero return values, for example + # Intel MPI tolerates unknown arguments and if the MPI wrappers loads a shared + # library that has invalid or missing version information there would be warning + # messages emitted by ld.so in the compiler output. In either case, we'll treat + # the output as invalid. + if("${WRAPPER_OUTPUT}" MATCHES "undefined reference|unrecognized|need to set|no version information available") + set(WRAPPER_RETURN 255) + endif() + # Ensure that no error output might be passed upwards. + if(NOT WRAPPER_RETURN EQUAL 0) + unset(WRAPPER_OUTPUT) + endif() + set(${OUTPUT_VARIABLE} "${WRAPPER_OUTPUT}" PARENT_SCOPE) + set(${RESULT_VARIABLE} "${WRAPPER_RETURN}" PARENT_SCOPE) endfunction() -# -# interrogate_mpi_compiler(lang try_libs) -# -# Attempts to extract compiler and linker args from an MPI compiler. The arguments set -# by this function are: -# -# MPI__INCLUDE_PATH MPI__LINK_FLAGS MPI__FOUND -# MPI__COMPILE_FLAGS MPI__LIBRARIES -# -# MPI__COMPILER must be set beforehand to the absolute path to an MPI compiler for -# . Additionally, MPI__INCLUDE_PATH and MPI__LIBRARIES may be set -# to skip autodetection. -# -# If try_libs is TRUE, this will also attempt to find plain MPI libraries in the usual -# way. In general, this is not as effective as interrogating the compilers, as it -# ignores language-specific flags and libraries. However, some MPI implementations -# (Windows implementations) do not have compiler wrappers, so this approach must be used. -# -function (interrogate_mpi_compiler lang try_libs) - # MPI_${lang}_NO_INTERROGATE will be set to a compiler name when the *regular* compiler was - # discovered to be the MPI compiler. This happens on machines like the Cray XE6 that use - # modules to set cc, CC, and ftn to the MPI compilers. If the user force-sets another MPI - # compiler, MPI_${lang}_COMPILER won't be equal to MPI_${lang}_NO_INTERROGATE, and we'll - # inspect that compiler anew. This allows users to set new compilers w/o rm'ing cache. - string(COMPARE NOTEQUAL "${MPI_${lang}_NO_INTERROGATE}" "${MPI_${lang}_COMPILER}" interrogate) - - # If MPI is set already in the cache, don't bother with interrogating the compiler. - if (interrogate AND ((NOT MPI_${lang}_INCLUDE_PATH) OR (NOT MPI_${lang}_LIBRARIES))) - if (MPI_${lang}_COMPILER) - # Check whether the -showme:compile option works. This indicates that we have either OpenMPI - # or a newer version of LAM-MPI, and implies that -showme:link will also work. - _mpi_check_compiler("${MPI_${lang}_COMPILER}" "-showme:compile" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - if (MPI_COMPILER_RETURN EQUAL 0) - # If we appear to have -showme:compile, then we should - # also have -showme:link. Try it. - execute_process( - COMMAND ${MPI_${lang}_COMPILER} -showme:link - OUTPUT_VARIABLE MPI_LINK_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE MPI_LINK_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE - RESULT_VARIABLE MPI_COMPILER_RETURN) - - if (MPI_COMPILER_RETURN EQUAL 0) - # We probably have -showme:incdirs and -showme:libdirs as well, - # so grab that while we're at it. - execute_process( - COMMAND ${MPI_${lang}_COMPILER} -showme:incdirs - OUTPUT_VARIABLE MPI_INCDIRS OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE MPI_INCDIRS ERROR_STRIP_TRAILING_WHITESPACE) - - execute_process( - COMMAND ${MPI_${lang}_COMPILER} -showme:libdirs - OUTPUT_VARIABLE MPI_LIBDIRS OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE MPI_LIBDIRS ERROR_STRIP_TRAILING_WHITESPACE) +function (_MPI_interrogate_compiler lang) + unset(MPI_COMPILE_CMDLINE) + unset(MPI_LINK_CMDLINE) + + unset(MPI_COMPILE_OPTIONS_WORK) + unset(MPI_COMPILE_DEFINITIONS_WORK) + unset(MPI_INCLUDE_DIRS_WORK) + unset(MPI_LINK_FLAGS_WORK) + unset(MPI_LIB_NAMES_WORK) + unset(MPI_LIB_FULLPATHS_WORK) + + # Check whether the -showme:compile option works. This indicates that we have either Open MPI + # or a newer version of LAM/MPI, and implies that -showme:link will also work. + # Open MPI also supports -show, but separates linker and compiler information + _MPI_check_compiler(${LANG} "-showme:compile" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) + if (MPI_COMPILER_RETURN EQUAL 0) + _MPI_check_compiler(${LANG} "-showme:link" MPI_LINK_CMDLINE MPI_COMPILER_RETURN) + + if (NOT MPI_COMPILER_RETURN EQUAL 0) + unset(MPI_COMPILE_CMDLINE) + endif() + endif() - else() - # reset things here if something went wrong. - set(MPI_COMPILE_CMDLINE) - set(MPI_LINK_CMDLINE) - endif() - endif () + # MPICH and MVAPICH offer -compile-info and -link-info. + # For modern versions, both do the same as -show. However, for old versions, they do differ + # when called for mpicxx and mpif90 and it's necessary to use them over -show in order to find the + # removed MPI C++ bindings. + if (NOT MPI_COMPILER_RETURN EQUAL 0) + _MPI_check_compiler(${LANG} "-compile-info" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) + + if (MPI_COMPILER_RETURN EQUAL 0) + _MPI_check_compiler(${LANG} "-link-info" MPI_LINK_CMDLINE MPI_COMPILER_RETURN) - # Older versions of LAM-MPI have "-showme". Try to find that. if (NOT MPI_COMPILER_RETURN EQUAL 0) - _mpi_check_compiler("${MPI_${lang}_COMPILER}" "-showme" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) + unset(MPI_COMPILE_CMDLINE) endif() + endif() + endif() - # MVAPICH uses -compile-info and -link-info. Try them. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - _mpi_check_compiler("${MPI_${lang}_COMPILER}" "-compile-info" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - - # If we have compile-info, also have link-info. - if (MPI_COMPILER_RETURN EQUAL 0) - execute_process( - COMMAND ${MPI_${lang}_COMPILER} -link-info - OUTPUT_VARIABLE MPI_LINK_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE MPI_LINK_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE - RESULT_VARIABLE MPI_COMPILER_RETURN) - endif() + # MPICH, MVAPICH2 and Intel MPI just use "-show". Open MPI also offers this, but the + # -showme commands are more specialized. + if (NOT MPI_COMPILER_RETURN EQUAL 0) + _MPI_check_compiler(${LANG} "-show" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) + endif() - # make sure we got compile and link. Reset vars if something's wrong. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - set(MPI_COMPILE_CMDLINE) - set(MPI_LINK_CMDLINE) - endif() - endif() + # Older versions of LAM/MPI have "-showme". Open MPI also supports this. + # Unknown to MPICH, MVAPICH and Intel MPI. + if (NOT MPI_COMPILER_RETURN EQUAL 0) + _MPI_check_compiler(${LANG} "-showme" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) + endif() - # MPICH just uses "-show". Try it. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - _mpi_check_compiler("${MPI_${lang}_COMPILER}" "-show" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - endif() + if (NOT (MPI_COMPILER_RETURN EQUAL 0) OR NOT (DEFINED MPI_COMPILE_CMDLINE)) + # Cannot interrogate this compiler, so exit. + set(MPI_${LANG}_WRAPPER_FOUND FALSE PARENT_SCOPE) + return() + endif() + unset(MPI_COMPILER_RETURN) - if (MPI_COMPILER_RETURN EQUAL 0) - # We have our command lines, but we might need to copy MPI_COMPILE_CMDLINE - # into MPI_LINK_CMDLINE, if we didn't find the link line. - if (NOT MPI_LINK_CMDLINE) - set(MPI_LINK_CMDLINE ${MPI_COMPILE_CMDLINE}) - endif() + # We have our command lines, but we might need to copy MPI_COMPILE_CMDLINE + # into MPI_LINK_CMDLINE, if we didn't find the link line. + if (NOT DEFINED MPI_LINK_CMDLINE) + set(MPI_LINK_CMDLINE "${MPI_COMPILE_CMDLINE}") + endif() + + # At this point, we obtained some output from a compiler wrapper that works. + # We'll now try to parse it into variables with meaning to us. + if("${LANG}" STREQUAL "Fortran") + # Some MPICH-1 and MVAPICH-1 versions return a three command answer for Fortran, consisting + # out of a symlink command for mpif.h, the actual compiler command and a deletion of the + # created symlink. We need to detect that case, remember the include path and drop the + # symlink/deletion operation to obtain the link/compile lines we'd usually expect. + if("${MPI_COMPILE_CMDLINE}" MATCHES "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h") + get_filename_component(MPI_INCLUDE_DIRS_WORK "${CMAKE_MATCH_1}" DIRECTORY) + string(REGEX REPLACE "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h\n" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") + string(REGEX REPLACE "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h\n" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") + string(REGEX REPLACE "\nrm -f mpif.h$" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") + string(REGEX REPLACE "\nrm -f mpif.h$" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") + endif() + endif() + + # The Intel MPI wrapper on Linux will emit some objcopy commands after its compile command + # if -static_mpi was passed to the wrapper. To avoid spurious matches, we need to drop these lines. + if(UNIX) + string(REGEX REPLACE "(^|\n)objcopy[^\n]+(\n|$)" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") + string(REGEX REPLACE "(^|\n)objcopy[^\n]+(\n|$)" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") + endif() + + # Extract compile options from the compile command line. + string(REGEX MATCHALL "(^| )-f([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_OPTIONS "${MPI_COMPILE_CMDLINE}") + + foreach(_MPI_COMPILE_OPTION IN LISTS MPI_ALL_COMPILE_OPTIONS) + string(REGEX REPLACE "^ " "" _MPI_COMPILE_OPTION "${_MPI_COMPILE_OPTION}") + # Ignore -fstack-protector directives: These occur on MPICH and MVAPICH when the libraries + # themselves were built with this flag. However, this flag is unrelated to using MPI, and + # we won't match the accompanying --param-ssp-size and -Wp,-D_FORTIFY_SOURCE flags and therefore + # produce inconsistent results with the regularly flags. + # Similarly, aliasing flags do not belong into our flag array. + if(NOT "${_MPI_COMPILE_OPTION}" MATCHES "^-f(stack-protector|(no-|)strict-aliasing|PI[CE]|pi[ce])") + list(APPEND MPI_COMPILE_OPTIONS_WORK "${_MPI_COMPILE_OPTION}") + endif() + endforeach() + + # Same deal, with the definitions. We also treat arguments passed to the preprocessor directly. + string(REGEX MATCHALL "(^| )(-Wp,|-Xpreprocessor |)[-/]D([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_DEFINITIONS "${MPI_COMPILE_CMDLINE}") + + foreach(_MPI_COMPILE_DEFINITION IN LISTS MPI_ALL_COMPILE_DEFINITIONS) + string(REGEX REPLACE "^ ?(-Wp,|-Xpreprocessor )?[-/]D" "" _MPI_COMPILE_DEFINITION "${_MPI_COMPILE_DEFINITION}") + string(REPLACE "\"" "" _MPI_COMPILE_DEFINITION "${_MPI_COMPILE_DEFINITION}") + if(NOT "${_MPI_COMPILE_DEFINITION}" MATCHES "^_FORTIFY_SOURCE.*") + list(APPEND MPI_COMPILE_DEFINITIONS_WORK "${_MPI_COMPILE_DEFINITION}") + endif() + endforeach() + + # Extract include paths from compile command line + string(REGEX MATCHALL "(^| )[-/]I([^\" ]+|\"[^\"]+\")" MPI_ALL_INCLUDE_PATHS "${MPI_COMPILE_CMDLINE}") + + # If extracting failed to work, we'll try using -showme:incdirs. + if (NOT MPI_ALL_INCLUDE_PATHS) + _MPI_check_compiler(${LANG} "-showme:incdirs" MPI_INCDIRS_CMDLINE MPI_INCDIRS_COMPILER_RETURN) + if(MPI_INCDIRS_COMPILER_RETURN) + separate_arguments(MPI_ALL_INCLUDE_PATHS NATIVE_COMMAND "${MPI_INCDIRS_CMDLINE}") + endif() + endif() + + foreach(_MPI_INCLUDE_PATH IN LISTS MPI_ALL_INCLUDE_PATHS) + string(REGEX REPLACE "^ ?[-/]I" "" _MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}") + string(REPLACE "\"" "" _MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}") + get_filename_component(_MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}" REALPATH) + list(APPEND MPI_INCLUDE_DIRS_WORK "${_MPI_INCLUDE_PATH}") + endforeach() + + # Extract linker paths from the link command line + string(REGEX MATCHALL "(^| )(-Wl,|-Xlinker |)(-L|[/-]LIBPATH:|[/-]libpath:)([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_PATHS "${MPI_LINK_CMDLINE}") + + # If extracting failed to work, we'll try using -showme:libdirs. + if (NOT MPI_ALL_LINK_PATHS) + _MPI_check_compiler(${LANG} "-showme:libdirs" MPI_LIBDIRS_CMDLINE MPI_LIBDIRS_COMPILER_RETURN) + if(MPI_LIBDIRS_COMPILER_RETURN) + separate_arguments(MPI_ALL_LINK_PATHS NATIVE_COMMAND "${MPI_LIBDIRS_CMDLINE}") + endif() + endif() + + foreach(_MPI_LPATH IN LISTS MPI_ALL_LINK_PATHS) + string(REGEX REPLACE "^ ?(-Wl,|-Xlinker )?(-L|[/-]LIBPATH:|[/-]libpath:)" "" _MPI_LPATH "${_MPI_LPATH}") + string(REPLACE "\"" "" _MPI_LPATH "${_MPI_LPATH}") + get_filename_component(_MPI_LPATH "${_MPI_LPATH}" REALPATH) + list(APPEND MPI_LINK_DIRECTORIES_WORK "${_MPI_LPATH}") + endforeach() + + # Extract linker flags from the link command line + string(REGEX MATCHALL "(^| )(-Wl,|-Xlinker )([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_FLAGS "${MPI_LINK_CMDLINE}") + + foreach(_MPI_LINK_FLAG IN LISTS MPI_ALL_LINK_FLAGS) + string(STRIP "${_MPI_LINK_FLAG}" _MPI_LINK_FLAG) + # MPI might be marked to build with non-executable stacks but this should not propagate. + if (NOT "${_MPI_LINK_FLAG}" MATCHES "(-Wl,|-Xlinker )-z,noexecstack") + if (MPI_LINK_FLAGS_WORK) + string(APPEND MPI_LINK_FLAGS_WORK " ${_MPI_LINK_FLAG}") else() - message(STATUS "Unable to determine MPI from MPI driver ${MPI_${lang}_COMPILER}") - set(MPI_COMPILE_CMDLINE) - set(MPI_LINK_CMDLINE) + set(MPI_LINK_FLAGS_WORK "${_MPI_LINK_FLAG}") endif() + endif() + endforeach() - # Here, we're done with the interrogation part, and we'll try to extract args we care - # about from what we learned from the compiler wrapper scripts. - - # If interrogation came back with something, extract our variable from the MPI command line - if (MPI_COMPILE_CMDLINE OR MPI_LINK_CMDLINE) - # Extract compile flags from the compile command line. - string(REGEX MATCHALL "(^| )-[Df]([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_FLAGS "${MPI_COMPILE_CMDLINE}") - set(MPI_COMPILE_FLAGS_WORK) + # Extract the set of libraries to link against from the link command + # line + string(REGEX MATCHALL "(^| )-l([^\" ]+|\"[^\"]+\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") - foreach(FLAG ${MPI_ALL_COMPILE_FLAGS}) - string(REGEX REPLACE "^ " "" FLAG ${FLAG}) - if (MPI_COMPILE_FLAGS_WORK) - set(MPI_COMPILE_FLAGS_WORK "${MPI_COMPILE_FLAGS_WORK} ${FLAG}") - else() - set(MPI_COMPILE_FLAGS_WORK ${FLAG}) - endif() - endforeach() + foreach(_MPI_LIB_NAME IN LISTS MPI_LIBNAMES) + string(REGEX REPLACE "^ ?-l" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) + if(NOT "${_MPI_LIB_PATH}" STREQUAL "") + list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") + else() + list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") + endif() + endforeach() - # Extract include paths from compile command line - string(REGEX MATCHALL "(^| )-I([^\" ]+|\"[^\"]+\")" MPI_ALL_INCLUDE_PATHS "${MPI_COMPILE_CMDLINE}") - set(MPI_INCLUDE_PATH_WORK) + if(WIN32) + # A compiler wrapper on Windows will just have the name of the + # library to link on its link line, potentially with a full path + string(REGEX MATCHALL "(^| )([^\" ]+\\.lib|\"[^\"]+\\.lib\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") + foreach(_MPI_LIB_NAME IN LISTS MPI_LIBNAMES) + string(REGEX REPLACE "^ " "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) + if(NOT "${_MPI_LIB_PATH}" STREQUAL "") + list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") + else() + list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") + endif() + endforeach() + else() + # On UNIX platforms, archive libraries can be given with full path. + string(REGEX MATCHALL "(^| )([^\" ]+\\.a|\"[^\"]+\\.a\")" MPI_LIBFULLPATHS "${MPI_LINK_CMDLINE}") + foreach(_MPI_LIB_NAME IN LISTS MPI_LIBFULLPATHS) + string(REGEX REPLACE "^ " "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") + get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) + if(NOT "${_MPI_LIB_PATH}" STREQUAL "") + list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") + else() + list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") + endif() + endforeach() + endif() - foreach(IPATH ${MPI_ALL_INCLUDE_PATHS}) - string(REGEX REPLACE "^ ?-I" "" IPATH ${IPATH}) - string(REPLACE "//" "/" IPATH ${IPATH}) - string(REPLACE "\"" "" IPATH ${IPATH}) - file(TO_CMAKE_PATH "${IPATH}" IPATH) - list(APPEND MPI_INCLUDE_PATH_WORK ${IPATH}) - endforeach() + # An MPI compiler wrapper could have its MPI libraries in the implictly + # linked directories of the compiler itself. + if(DEFINED CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES) + list(APPEND MPI_LINK_DIRECTORIES_WORK "${CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES}") + endif() - # try using showme:incdirs if extracting didn't work. - if (NOT MPI_INCLUDE_PATH_WORK) - set(MPI_INCLUDE_PATH_WORK ${MPI_INCDIRS}) - separate_arguments(MPI_INCLUDE_PATH_WORK) - endif() + # Determine full path names for all of the libraries that one needs + # to link against in an MPI program + unset(MPI_PLAIN_LIB_NAMES_WORK) + foreach(_MPI_LIB_NAME IN LISTS MPI_LIB_NAMES_WORK) + get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB_NAME}" NAME_WE) + list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") + find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY + NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" + HINTS ${MPI_LINK_DIRECTORIES_WORK} + DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" + ) + mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) + endforeach() - # If all else fails, just search for mpi.h in the normal include paths. - if (NOT MPI_INCLUDE_PATH_WORK) - set(MPI_HEADER_PATH "MPI_HEADER_PATH-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_path(MPI_HEADER_PATH mpi.h - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES include) - set(MPI_INCLUDE_PATH_WORK ${MPI_HEADER_PATH}) - endif() + # Deal with the libraries given with full path next + unset(MPI_DIRECT_LIB_NAMES_WORK) + foreach(_MPI_LIB_FULLPATH IN LISTS MPI_LIB_FULLPATHS_WORK) + get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB_FULLPATH}" NAME_WE) + get_filename_component(_MPI_LIB_NAME "${_MPI_LIB_FULLPATH}" NAME) + get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_FULLPATH}" DIRECTORY) + list(APPEND MPI_DIRECT_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") + find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY + NAMES "${_MPI_LIB_NAME}" + HINTS ${_MPI_LIB_PATH} + DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" + ) + mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) + endforeach() + if(MPI_DIRECT_LIB_NAMES_WORK) + set(MPI_PLAIN_LIB_NAMES_WORK "${MPI_DIRECT_LIB_NAMES_WORK};${MPI_PLAIN_LIB_NAMES_WORK}") + endif() - # Extract linker paths from the link command line - string(REGEX MATCHALL "(^| |-Wl,)(-L|/LIBPATH:)([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_PATHS "${MPI_LINK_CMDLINE}") - set(MPI_LINK_PATH) - foreach(LPATH ${MPI_ALL_LINK_PATHS}) - string(REGEX REPLACE "^(| |-Wl,)(-L|/LIBPATH:)" "" LPATH ${LPATH}) - string(REPLACE "//" "/" LPATH ${LPATH}) - list(APPEND MPI_LINK_PATH ${LPATH}) - endforeach() + # MPI might require pthread to work. The above mechanism wouldn't detect it, but we need to + # link it in that case. -lpthread is covered by the normal library treatment on the other hand. + if("${MPI_COMPILE_CMDLINE}" MATCHES "-pthread") + list(APPEND MPI_COMPILE_OPTIONS_WORK "-pthread") + if(MPI_LINK_FLAGS_WORK) + string(APPEND MPI_LINK_FLAGS_WORK " -pthread") + else() + set(MPI_LINK_FLAGS_WORK "-pthread") + endif() + endif() - # try using showme:libdirs if extracting didn't work. - if (NOT MPI_LINK_PATH) - set(MPI_LINK_PATH ${MPI_LIBDIRS}) - separate_arguments(MPI_LINK_PATH) - endif() + # If we found MPI, set up all of the appropriate cache entries + if(NOT MPI_${LANG}_COMPILE_OPTIONS) + set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_COMPILE_OPTIONS_WORK} CACHE STRING "MPI ${LANG} compilation options" FORCE) + endif() + if(NOT MPI_${LANG}_COMPILE_DEFINITIONS) + set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_COMPILE_DEFINITIONS_WORK} CACHE STRING "MPI ${LANG} compilation definitions" FORCE) + endif() + if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_INCLUDE_DIRS_WORK} CACHE STRING "MPI ${LANG} additional include directories" FORCE) + endif() + if(NOT MPI_${LANG}_LINK_FLAGS) + set(MPI_${LANG}_LINK_FLAGS ${MPI_LINK_FLAGS_WORK} CACHE STRING "MPI ${LANG} linker flags" FORCE) + endif() + if(NOT MPI_${LANG}_LIB_NAMES) + set(MPI_${LANG}_LIB_NAMES ${MPI_PLAIN_LIB_NAMES_WORK} CACHE STRING "MPI ${LANG} libraries to link against" FORCE) + endif() + set(MPI_${LANG}_WRAPPER_FOUND TRUE PARENT_SCOPE) +endfunction() - # Extract linker flags from the link command line - string(REGEX MATCHALL "(^| )(-Wl,|-Xlinker )([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_FLAGS "${MPI_LINK_CMDLINE}") - set(MPI_LINK_FLAGS_WORK) - foreach(FLAG ${MPI_ALL_LINK_FLAGS}) - string(REGEX REPLACE "^ " "" FLAG ${FLAG}) - if (MPI_LINK_FLAGS_WORK) - set(MPI_LINK_FLAGS_WORK "${MPI_LINK_FLAGS_WORK} ${FLAG}") - else() - set(MPI_LINK_FLAGS_WORK ${FLAG}) - endif() - endforeach() +function(_MPI_guess_settings LANG) + set(MPI_GUESS_FOUND FALSE) + # Currently only MSMPI and MPICH2 on Windows are supported, so we can skip this search if we're not targeting that. + if(WIN32) + # MSMPI + + # The environment variables MSMPI_INC and MSMPILIB32/64 are the only ways of locating the MSMPI_SDK, + # which is installed separately from the runtime. Thus it's possible to have mpiexec but not MPI headers + # or import libraries and vice versa. + if(NOT MPI_GUESS_LIBRARY_NAME OR "${MPI_GUESS_LIBRARY_NAME}" STREQUAL "MSMPI") + # We first attempt to locate the msmpi.lib. Should be find it, we'll assume that the MPI present is indeed + # Microsoft MPI. + if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8) + set(MPI_MSMPI_LIB_PATH "$ENV{MSMPI_LIB64}") + set(MPI_MSMPI_INC_PATH_EXTRA "$ENV{MSMPI_INC}/x64") + else() + set(MPI_MSMPI_LIB_PATH "$ENV{MSMPI_LIB32}") + set(MPI_MSMPI_INC_PATH_EXTRA "$ENV{MSMPI_INC}/x86") + endif() - # Extract the set of libraries to link against from the link command - # line - string(REGEX MATCHALL "(^| )-l([^\" ]+|\"[^\"]+\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") - if(WIN32) - # The intel wrappers on windows link against static versions of the MPI libraries. - # The static libraries are simply listed on the command line without -l. - # For instance: " icl ... impi.lib " - string(REGEX MATCHALL "(^| )([^\" ]+)\\.lib" tmp "${MPI_LINK_CMDLINE}") - list(APPEND MPI_LIBNAMES ${tmp}) + find_library(MPI_msmpi_LIBRARY + NAMES msmpi + HINTS ${MPI_MSMPI_LIB_PATH} + DOC "Location of the msmpi library for Microsoft MPI") + mark_as_advanced(MPI_msmpi_LIBRARY) + + if(MPI_msmpi_LIBRARY) + # Next, we attempt to locate the MPI header. Note that for Fortran we know that mpif.h is a way + # MSMPI can be used and therefore that header has to be present. + if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + get_filename_component(MPI_MSMPI_INC_DIR "$ENV{MSMPI_INC}" REALPATH) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_MSMPI_INC_DIR}" CACHE STRING "MPI ${LANG} additional include directories" FORCE) + unset(MPI_MSMPI_INC_DIR) endif() - # add the compiler implicit directories because some compilers - # such as the intel compiler have libraries that show up - # in the showme list that can only be found in the implicit - # link directories of the compiler. - if (DEFINED CMAKE_${lang}_IMPLICIT_LINK_DIRECTORIES) - set(MPI_LINK_PATH "${MPI_LINK_PATH};${CMAKE_${lang}_IMPLICIT_LINK_DIRECTORIES}") - endif () - - # Determine full path names for all of the libraries that one needs - # to link against in an MPI program - foreach(LIB ${MPI_LIBNAMES}) - string(REGEX REPLACE "^ ?-l" "" LIB ${LIB}) - if(WIN32) - string(REGEX REPLACE "\\.lib$" "" LIB ${LIB}) + # For MSMPI, one can compile the MPI module by building the mpi.f90 shipped with the MSMPI SDK, + # thus it might be present or provided by the user. Figuring out which is supported is done later on. + # The PGI Fortran compiler for instance ships a prebuilt set of modules in its own include folder. + # Should a user be employing PGI or have built its own set and provided it via cache variables, the + # splitting routine would have located the module files. + + # For C and C++, we're done here (MSMPI does not ship the MPI-2 C++ bindings) - however, for Fortran + # we need some extra library to glue Fortran support together: + # MSMPI ships 2-4 Fortran libraries, each for different Fortran compiler behaviors. The library names + # ending with a c are using the cdecl calling convention, whereas those ending with an s are for Fortran + # implementations using stdcall. Therefore, the 64-bit MSMPI only ships those ending in 'c', whereas the 32-bit + # has both variants available. + # The second difference is the last but one letter, if it's an e(nd), the length of a string argument is + # passed by the Fortran compiler after all other arguments on the parameter list, if it's an m(ixed), + # it's passed immediately after the string address. + + # To summarize: + # - msmpifec: CHARACTER length passed after the parameter list and using cdecl calling convention + # - msmpifmc: CHARACTER length passed directly after string address and using cdecl calling convention + # - msmpifes: CHARACTER length passed after the parameter list and using stdcall calling convention + # - msmpifms: CHARACTER length passed directly after string address and using stdcall calling convention + # 32-bit MSMPI ships all four libraries, 64-bit MSMPI ships only the first two. + + # As is, Intel Fortran and PGI Fortran both use the 'ec' variant of the calling convention, whereas + # the old Compaq Visual Fortran compiler defaulted to the 'ms' version. It's possible to make Intel Fortran + # use the CVF calling convention using /iface:cvf, but we assume - and this is also assumed in FortranCInterface - + # this isn't the case. It's also possible to make CVF use the 'ec' variant, using /iface=(cref,nomixed_str_len_arg). + + # Our strategy is now to locate all libraries, but enter msmpifec into the LIB_NAMES array. + # Should this not be adequate it's a straightforward way for a user to change the LIB_NAMES array and + # have his library found. Still, this should not be necessary outside of exceptional cases, as reasoned. + if ("${LANG}" STREQUAL "Fortran") + set(MPI_MSMPI_CALLINGCONVS c) + if("${CMAKE_SIZEOF_VOID_P}" EQUAL 4) + list(APPEND MPI_MSMPI_CALLINGCONVS s) endif() - string(STRIP ${LIB} LIB) - # MPI_LIB is cached by find_library, but we don't want that. Clear it first. - set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_library(MPI_LIB NAMES ${LIB} HINTS ${MPI_LINK_PATH}) - - if (MPI_LIB) - list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) - elseif (NOT MPI_FIND_QUIETLY) - message(WARNING "Unable to find MPI library ${LIB}") + foreach(mpistrlenpos IN ITEMS e m) + foreach(mpicallingconv IN LISTS MPI_MSMPI_CALLINGCONVS) + find_library(MPI_msmpif${mpistrlenpos}${mpicallingconv}_LIBRARY + NAMES msmpif${mpistrlenpos}${mpicallingconv} + HINTS "${MPI_MSMPI_LIB_PATH}" + DOC "Location of the msmpi${mpistrlenpos}${mpicallingconv} library for Microsoft MPI") + mark_as_advanced(MPI_msmpif${mpistrlenpos}${mpicallingconv}_LIBRARY) + endforeach() + endforeach() + if(NOT MPI_${LANG}_LIB_NAMES) + set(MPI_${LANG}_LIB_NAMES "msmpi;msmpifec" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) endif() - endforeach() - # Sanity check MPI_LIBRARIES to make sure there are enough libraries - list(LENGTH MPI_LIBRARIES_WORK MPI_NUMLIBS) - list(LENGTH MPI_LIBNAMES MPI_NUMLIBS_EXPECTED) - if (NOT MPI_NUMLIBS EQUAL MPI_NUMLIBS_EXPECTED) - set(MPI_LIBRARIES_WORK "MPI_${lang}_LIBRARIES-NOTFOUND") + # At this point we're *not* done. MSMPI requires an additional include file for Fortran giving the value + # of MPI_AINT. This file is called mpifptr.h located in the x64 and x86 subfolders, respectively. + find_path(MPI_mpifptr_INCLUDE_DIR + NAMES "mpifptr.h" + HINTS "${MPI_MSMPI_INC_PATH_EXTRA}" + DOC "Location of the mpifptr.h extra header for Microsoft MPI") + if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS "mpifptr" CACHE STRING "MPI ${LANG} additional include directory variables, given in the form MPI__INCLUDE_DIR." FORCE) + endif() + mark_as_advanced(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS MPI_mpifptr_INCLUDE_DIR) + else() + if(NOT MPI_${LANG}_LIB_NAMES) + set(MPI_${LANG}_LIB_NAMES "msmpi" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) + endif() endif() + mark_as_advanced(MPI_${LANG}_LIB_NAMES) + set(MPI_GUESS_FOUND TRUE) endif() + endif() - elseif(try_libs) - # If we didn't have an MPI compiler script to interrogate, attempt to find everything - # with plain old find functions. This is nasty because MPI implementations have LOTS of - # different library names, so this section isn't going to be very generic. We need to - # make sure it works for MS MPI, though, since there are no compiler wrappers for that. - find_path(MPI_HEADER_PATH mpi.h - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES include Inc) - set(MPI_INCLUDE_PATH_WORK ${MPI_HEADER_PATH}) - - # Decide between 32-bit and 64-bit libraries for Microsoft's MPI - if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8) - set(MS_MPI_ARCH_DIR x64) - set(MS_MPI_ARCH_DIR2 amd64) - else() - set(MS_MPI_ARCH_DIR x86) - set(MS_MPI_ARCH_DIR2 i386) - endif() + # At this point there's not many MPIs that we could still consider. + # OpenMPI 1.6.x and below supported Windows, but these ship compiler wrappers that still work. + # The only other relevant MPI implementation without a wrapper is MPICH2, which had Windows support in 1.4.1p1 and older. + if(NOT MPI_GUESS_LIBRARY_NAME OR "${MPI_GUESS_LIBRARY_NAME}" STREQUAL "MPICH2") + set(MPI_MPICH_PREFIX_PATHS + "$ENV{ProgramW6432}/MPICH2/lib" + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH\\SMPD;binary]/../lib" + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH2;Path]/lib" + ) - set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_library(MPI_LIB - NAMES mpi mpich mpich2 msmpi - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES lib lib/${MS_MPI_ARCH_DIR} Lib Lib/${MS_MPI_ARCH_DIR} lib/${MS_MPI_ARCH_DIR2} Lib/${MS_MPI_ARCH_DIR2}) - set(MPI_LIBRARIES_WORK ${MPI_LIB}) - - # Right now, we only know about the extra libs for C++. - # We could add Fortran here (as there is usually libfmpich, etc.), but - # this really only has to work with MS MPI on Windows. - # Assume that other MPI's are covered by the compiler wrappers. - if (${lang} STREQUAL CXX) - set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_library(MPI_LIB - NAMES mpi++ mpicxx cxx mpi_cxx - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES lib) - if (MPI_LIBRARIES_WORK AND MPI_LIB) - list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) + # All of C, C++ and Fortran will need mpi.lib, so we'll look for this first + find_library(MPI_mpi_LIBRARY + NAMES mpi + HINTS ${MPI_MPICH_PREFIX_PATHS}) + mark_as_advanced(MPI_mpi_LIBRARY) + # If we found mpi.lib, we detect the rest of MPICH2 + if(MPI_mpi_LIBRARY) + set(MPI_MPICH_LIB_NAMES "mpi") + # If MPI-2 C++ bindings are requested, we need to locate cxx.lib as well. + # Otherwise, MPICH_SKIP_MPICXX will be defined and these bindings aren't needed. + if("${LANG}" STREQUAL "CXX" AND NOT MPI_CXX_SKIP_MPICXX) + find_library(MPI_cxx_LIBRARY + NAMES cxx + HINTS ${MPI_MPICH_PREFIX_PATHS}) + mark_as_advanced(MPI_cxx_LIBRARY) + list(APPEND MPI_MPICH_LIB_NAMES "cxx") + # For Fortran, MPICH2 provides three different libraries: + # fmpich2.lib which uses uppercase symbols and cdecl, + # fmpich2s.lib which uses uppercase symbols and stdcall (32-bit only), + # fmpich2g.lib which uses lowercase symbols with double underscores and cdecl. + # fmpich2s.lib would be useful for Compaq Visual Fortran, fmpich2g.lib has to be used with GNU g77 and is also + # provided in the form of an .a archive for MinGW and Cygwin. From our perspective, fmpich2.lib is the only one + # we need to try, and if it doesn't work with the given Fortran compiler we'd find out later on during validation + elseif("${LANG}" STREQUAL "Fortran") + find_library(MPI_fmpich2_LIBRARY + NAMES fmpich2 + HINTS ${MPI_MPICH_PREFIX_PATHS}) + find_library(MPI_fmpich2s_LIBRARY + NAMES fmpich2s + HINTS ${MPI_MPICH_PREFIX_PATHS}) + find_library(MPI_fmpich2g_LIBRARY + NAMES fmpich2g + HINTS ${MPI_MPICH_PREFIX_PATHS}) + mark_as_advanced(MPI_fmpich2_LIBRARY MPI_fmpich2s_LIBRARY MPI_fmpich2g_LIBRARY) + list(APPEND MPI_MPICH_LIB_NAMES "fmpich2") endif() - endif() - if (${lang} STREQUAL Fortran) - set(MPI_HEADER_PATH "MPI_HEADER_PATH-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_path(MPI_HEADER_PATH mpifptr.h - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES include Include include/${MS_MPI_ARCH_DIR} Include/${MS_MPI_ARCH_DIR2} Include/${MS_MPI_ARCH_DIR} include/${MS_MPI_ARCH_DIR2} Inc Inc/${MS_MPI_ARCH_DIR} Inc/${MS_MPI_ARCH_DIR2}) - if (MPI_INCLUDE_PATH_WORK AND MPI_HEADER_PATH) - list(APPEND MPI_INCLUDE_PATH_WORK ${MPI_HEADER_PATH}) - endif () - - set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - find_library(MPI_LIB - NAMES fmpi fmpich fmpich2 fmpich2g msmpifec msmpifmc - HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} - PATH_SUFFIXES lib lib/${MS_MPI_ARCH_DIR} Lib Lib/${MS_MPI_ARCH_DIR}) - if (MPI_LIBRARIES_WORK AND MPI_LIB) - list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) - endif () - endif () - - if (NOT MPI_LIBRARIES_WORK) - set(MPI_LIBRARIES_WORK "MPI_${lang}_LIBRARIES-NOTFOUND") + if(NOT MPI_${LANG}_LIB_NAMES) + set(MPI_${LANG}_LIB_NAMES "${MPI_MPICH_LIB_NAMES}" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) + endif() + unset(MPI_MPICH_LIB_NAMES) + + if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + # For MPICH2, the include folder would be in ../include relative to the library folder. + get_filename_component(MPI_MPICH_ROOT_DIR "${MPI_mpi_LIBRARY}" DIRECTORY) + get_filename_component(MPI_MPICH_ROOT_DIR "${MPI_MPICH_ROOT_DIR}" DIRECTORY) + if(IS_DIRECTORY "${MPI_MPICH_ROOT_DIR}/include") + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_MPICH_ROOT_DIR}/include" CACHE STRING "MPI ${LANG} additional include directory variables, given in the form MPI__INCLUDE_DIR." FORCE) + endif() + unset(MPI_MPICH_ROOT_DIR) + endif() + set(MPI_GUESS_FOUND TRUE) endif() + unset(MPI_MPICH_PREFIX_PATHS) endif() + endif() + set(MPI_${LANG}_GUESS_FOUND "${MPI_GUESS_FOUND}" PARENT_SCOPE) +endfunction() - # If we found MPI, set up all of the appropriate cache entries - set(MPI_${lang}_COMPILE_FLAGS ${MPI_COMPILE_FLAGS_WORK} CACHE STRING "MPI ${lang} compilation flags" FORCE) - set(MPI_${lang}_INCLUDE_PATH ${MPI_INCLUDE_PATH_WORK} CACHE STRING "MPI ${lang} include path" FORCE) - set(MPI_${lang}_LINK_FLAGS ${MPI_LINK_FLAGS_WORK} CACHE STRING "MPI ${lang} linking flags" FORCE) - set(MPI_${lang}_LIBRARIES ${MPI_LIBRARIES_WORK} CACHE STRING "MPI ${lang} libraries to link against" FORCE) - mark_as_advanced(MPI_${lang}_COMPILE_FLAGS MPI_${lang}_INCLUDE_PATH MPI_${lang}_LINK_FLAGS MPI_${lang}_LIBRARIES) +function(_MPI_adjust_compile_definitions LANG) + if("${LANG}" STREQUAL "CXX") + # To disable the C++ bindings, we need to pass some definitions since the mpi.h header has to deal with both C and C++ + # bindings in MPI-2. + if(MPI_CXX_SKIP_MPICXX AND NOT MPI_${LANG}_COMPILE_DEFINITIONS MATCHES "SKIP_MPICXX") + # MPICH_SKIP_MPICXX is being used in MPICH and derivatives like MVAPICH or Intel MPI + # OMPI_SKIP_MPICXX is being used in Open MPI + # _MPICC_H is being used for IBM Platform MPI + list(APPEND MPI_${LANG}_COMPILE_DEFINITIONS "MPICH_SKIP_MPICXX" "OMPI_SKIP_MPICXX" "_MPICC_H") + set(MPI_${LANG}_COMPILE_DEFINITIONS "${MPI_${LANG}_COMPILE_DEFINITIONS}" CACHE STRING "MPI ${LANG} compilation definitions" FORCE) + endif() + endif() +endfunction() + +macro(_MPI_assemble_libraries LANG) + set(MPI_${LANG}_LIBRARIES "") + foreach(mpilib IN LISTS MPI_${LANG}_LIB_NAMES) + list(APPEND MPI_${LANG}_LIBRARIES ${MPI_${mpilib}_LIBRARY}) + endforeach() +endmacro() - # clear out our temporary lib/header detection variable here. - set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE INTERNAL "Scratch variable for MPI lib detection" FORCE) - set(MPI_HEADER_PATH "MPI_HEADER_PATH-NOTFOUND" CACHE INTERNAL "Scratch variable for MPI header detection" FORCE) +macro(_MPI_assemble_include_dirs LANG) + set(MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS}") + if("${LANG}" MATCHES "(C|CXX)") + if(MPI_${LANG}_HEADER_DIR) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") + endif() + else() # Fortran + if(MPI_${LANG}_F77_HEADER_DIR) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_F77_HEADER_DIR}") + endif() + if(MPI_${LANG}_MODULE_DIR AND NOT "${MPI_${LANG}_MODULE_DIR}" IN_LIST MPI_${LANG}_INCLUDE_DIRS) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_MODULE_DIR}") + endif() endif() + if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + foreach(mpiadditionalinclude IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${mpiadditionalinclude}_INCLUDE_DIR}") + endforeach() + endif() +endmacro() - # finally set a found variable for each MPI language - if (MPI_${lang}_INCLUDE_PATH AND MPI_${lang}_LIBRARIES) - set(MPI_${lang}_FOUND TRUE PARENT_SCOPE) - else() - set(MPI_${lang}_FOUND FALSE PARENT_SCOPE) +function(_MPI_split_include_dirs LANG) + # Backwards compatibility: Search INCLUDE_PATH if given. + if(MPI_${LANG}_INCLUDE_PATH) + list(APPEND MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_${LANG}_INCLUDE_PATH}") endif() + + # We try to find the headers/modules among those paths (and system paths) + # For C/C++, we just need to have a look for mpi.h. + if("${LANG}" MATCHES "(C|CXX)") + find_path(MPI_${LANG}_HEADER_DIR "mpi.h" + HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} + ) + mark_as_advanced(MPI_${LANG}_HEADER_DIR) + if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") + endif() + # Fortran is more complicated here: An implementation could provide + # any of the Fortran 77/90/2008 APIs for MPI. For example, MSMPI + # only provides Fortran 77 and - if mpi.f90 is built - potentially + # a Fortran 90 module. + elseif("${LANG}" STREQUAL "Fortran") + find_path(MPI_${LANG}_F77_HEADER_DIR "mpif.h" + HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} + ) + find_path(MPI_${LANG}_MODULE_DIR + NAMES "mpi.mod" "mpi_f08.mod" + HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} + ) + if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS + "${MPI_${LANG}_F77_HEADER_DIR}" + "${MPI_${LANG}_MODULE_DIR}" + ) + endif() + mark_as_advanced(MPI_${LANG}_F77_HEADER_DIR MPI_${LANG}_MODULE_DIR) + endif() + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories" FORCE) endfunction() +macro(_MPI_create_imported_target LANG) + if(NOT TARGET MPI::MPI_${LANG}) + add_library(MPI::MPI_${LANG} INTERFACE IMPORTED) + endif() + + set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_COMPILE_OPTIONS "${MPI_${LANG}_COMPILE_OPTIONS}") + set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_COMPILE_DEFINITIONS "${MPI_${LANG}_COMPILE_DEFINITIONS}") -# This function attempts to compile with the regular compiler, to see if MPI programs -# work with it. This is a last ditch attempt after we've tried interrogating mpicc and -# friends, and after we've tried to find generic libraries. Works on machines like -# Cray XE6, where the modules environment changes what MPI version cc, CC, and ftn use. -function(try_regular_compiler lang success) - set(scratch_directory ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}) - if (${lang} STREQUAL Fortran) - set(test_file ${scratch_directory}/cmake_mpi_test.f90) - file(WRITE ${test_file} - "program hello\n" - "include 'mpif.h'\n" - "integer ierror\n" - "call MPI_INIT(ierror)\n" - "call MPI_FINALIZE(ierror)\n" - "end\n") + set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_LINK_LIBRARIES "") + if(MPI_${LANG}_LINK_FLAGS) + set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${MPI_${LANG}_LINK_FLAGS}") + endif() + # If the compiler links MPI implicitly, no libraries will be found as they're contained within + # CMAKE__IMPLICIT_LINK_LIBRARIES already. + if(MPI_${LANG}_LIBRARIES) + set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${MPI_${LANG}_LIBRARIES}") + endif() + # Given the new design of FindMPI, INCLUDE_DIRS will always be located, even under implicit linking. + set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_INCLUDE_DIRECTORIES "${MPI_${LANG}_INCLUDE_DIRS}") +endmacro() + +function(_MPI_try_staged_settings LANG MPI_TEST_FILE_NAME MODE RUN_BINARY) + set(WORK_DIR "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI") + set(SRC_DIR "${CMAKE_CURRENT_LIST_DIR}/FindMPI") + set(BIN_FILE "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI/${MPI_TEST_FILE_NAME}_${LANG}.bin") + unset(MPI_TEST_COMPILE_DEFINITIONS) + if("${LANG}" STREQUAL "Fortran") + if("${MODE}" STREQUAL "F90_MODULE") + set(MPI_Fortran_INCLUDE_LINE "use mpi\n implicit none") + elseif("${MODE}" STREQUAL "F08_MODULE") + set(MPI_Fortran_INCLUDE_LINE "use mpi_f08\n implicit none") + else() # F77 header + set(MPI_Fortran_INCLUDE_LINE "implicit none\n include 'mpif.h'") + endif() + configure_file("${SRC_DIR}/${MPI_TEST_FILE_NAME}.f90.in" "${WORK_DIR}/${MPI_TEST_FILE_NAME}.f90" @ONLY) + set(MPI_TEST_SOURCE_FILE "${WORK_DIR}/${MPI_TEST_FILE_NAME}.f90") + elseif("${LANG}" STREQUAL "CXX") + configure_file("${SRC_DIR}/${MPI_TEST_FILE_NAME}.c" "${WORK_DIR}/${MPI_TEST_FILE_NAME}.cpp" COPYONLY) + set(MPI_TEST_SOURCE_FILE "${WORK_DIR}/${MPI_TEST_FILE_NAME}.cpp") + if("${MODE}" STREQUAL "TEST_MPICXX") + set(MPI_TEST_COMPILE_DEFINITIONS TEST_MPI_MPICXX) + endif() + else() # C + set(MPI_TEST_SOURCE_FILE "${SRC_DIR}/${MPI_TEST_FILE_NAME}.c") + endif() + if(RUN_BINARY) + try_run(MPI_RUN_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} MPI_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} + "${CMAKE_BINARY_DIR}" SOURCES "${MPI_TEST_SOURCE_FILE}" + COMPILE_DEFINITIONS ${MPI_TEST_COMPILE_DEFINITIONS} + LINK_LIBRARIES MPI::MPI_${LANG} + RUN_OUTPUT_VARIABLE MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE}) + set(MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} "${MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE}}" PARENT_SCOPE) else() - if (${lang} STREQUAL CXX) - set(test_file ${scratch_directory}/cmake_mpi_test.cpp) - else() - set(test_file ${scratch_directory}/cmake_mpi_test.c) - endif() - file(WRITE ${test_file} - "#include \n" - "int main(int argc, char **argv) {\n" - " MPI_Init(&argc, &argv);\n" - " MPI_Finalize();\n" - "}\n") - endif() - try_compile(compiler_has_mpi ${scratch_directory} ${test_file}) - if (compiler_has_mpi) - set(MPI_${lang}_NO_INTERROGATE ${CMAKE_${lang}_COMPILER} CACHE STRING "Whether to interrogate MPI ${lang} compiler" FORCE) - set(MPI_${lang}_COMPILER ${CMAKE_${lang}_COMPILER} CACHE STRING "MPI ${lang} compiler" FORCE) - set(MPI_${lang}_COMPILE_FLAGS "" CACHE STRING "MPI ${lang} compilation flags" FORCE) - set(MPI_${lang}_INCLUDE_PATH "" CACHE STRING "MPI ${lang} include path" FORCE) - set(MPI_${lang}_LINK_FLAGS "" CACHE STRING "MPI ${lang} linking flags" FORCE) - set(MPI_${lang}_LIBRARIES "" CACHE STRING "MPI ${lang} libraries to link against" FORCE) - endif() - set(${success} ${compiler_has_mpi} PARENT_SCOPE) - unset(compiler_has_mpi CACHE) + try_compile(MPI_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} + "${CMAKE_BINARY_DIR}" SOURCES "${MPI_TEST_SOURCE_FILE}" + COMPILE_DEFINITIONS ${MPI_TEST_COMPILE_DEFINITIONS} + LINK_LIBRARIES MPI::MPI_${LANG} + COPY_FILE "${BIN_FILE}") + endif() endfunction() -# End definitions, commence real work here. +macro(_MPI_check_lang_works LANG) + # For Fortran we may have by the MPI-3 standard an implementation that provides: + # - the mpi_f08 module + # - *both*, the mpi module and 'mpif.h' + # Since older MPI standards (MPI-1) did not define anything but 'mpif.h', we need to check all three individually. + if( NOT MPI_${LANG}_WORKS ) + if("${LANG}" STREQUAL "Fortran") + set(MPI_Fortran_INTEGER_LINE "(kind=MPI_INTEGER_KIND)") + _MPI_try_staged_settings(${LANG} test_mpi F77_HEADER FALSE) + _MPI_try_staged_settings(${LANG} test_mpi F90_MODULE FALSE) + _MPI_try_staged_settings(${LANG} test_mpi F08_MODULE FALSE) + + set(MPI_${LANG}_WORKS FALSE) + + foreach(mpimethod IN ITEMS F77_HEADER F08_MODULE F90_MODULE) + if(MPI_RESULT_${LANG}_test_mpi_${mpimethod}) + set(MPI_${LANG}_WORKS TRUE) + set(MPI_${LANG}_HAVE_${mpimethod} TRUE) + else() + set(MPI_${LANG}_HAVE_${mpimethod} FALSE) + endif() + endforeach() + # MPI-1 versions had no MPI_INTGER_KIND defined, so we need to try without it. + # However, MPI-1 also did not define the Fortran 90 and 08 modules, so we only try the F77 header. + unset(MPI_Fortran_INTEGER_LINE) + if(NOT MPI_${LANG}_WORKS) + _MPI_try_staged_settings(${LANG} test_mpi F77_HEADER_NOKIND FALSE) + if(MPI_RESULT_${LANG}_test_mpi_F77_HEADER_NOKIND) + set(MPI_${LANG}_WORKS TRUE) + set(MPI_${LANG}_HAVE_F77_HEADER TRUE) + endif() + endif() + else() + _MPI_try_staged_settings(${LANG} test_mpi normal FALSE) + # If 'test_mpi' built correctly, we've found valid MPI settings. There might not be MPI-2 C++ support, but there can't + # be MPI-2 C++ support without the C bindings being present, so checking for them is sufficient. + set(MPI_${LANG}_WORKS "${MPI_RESULT_${LANG}_test_mpi_normal}") + endif() + endif() +endmacro() + +# Some systems install various MPI implementations in separate folders in some MPI prefix +# This macro enumerates all such subfolders and adds them to the list of hints that will be searched. +macro(MPI_search_mpi_prefix_folder PREFIX_FOLDER) + if(EXISTS "${PREFIX_FOLDER}") + file(GLOB _MPI_folder_children RELATIVE "${PREFIX_FOLDER}" "${PREFIX_FOLDER}/*") + foreach(_MPI_folder_child IN LISTS _MPI_folder_children) + if(IS_DIRECTORY "${PREFIX_FOLDER}/${_MPI_folder_child}") + list(APPEND MPI_HINT_DIRS "${PREFIX_FOLDER}/${_MPI_folder_child}") + endif() + endforeach() + endif() +endmacro() + +set(MPI_HINT_DIRS ${MPI_HOME} $ENV{MPI_HOME} $ENV{I_MPI_ROOT}) +if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Linux") + # SUSE Linux Enterprise Server stores its MPI implementations under /usr/lib64/mpi/gcc/ + # We enumerate the subfolders and append each as a prefix + MPI_search_mpi_prefix_folder("/usr/lib64/mpi/gcc") +elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") + # MSMPI stores its runtime in a special folder, this adds the possible locations to the hints. + list(APPEND MPI_HINT_DIRS $ENV{MSMPI_BIN} "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\MPI;InstallRoot]") +elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "FreeBSD") + # FreeBSD ships mpich under the normal system paths - but available openmpi implementations + # will be found in /usr/local/mpi/ + MPI_search_mpi_prefix_folder("/usr/local/mpi/") +endif() -# Most mpi distros have some form of mpiexec which gives us something we can reliably look for. -find_program(MPIEXEC - NAMES ${_MPI_EXEC_NAMES} - HINTS ${MPI_HOME} $ENV{MPI_HOME} - PATHS ${_MPI_PREFIX_PATH} - PATH_SUFFIXES bin +# Most MPI distributions have some form of mpiexec or mpirun which gives us something we can look for. +# The MPI standard does not mandate the existence of either, but instead only makes requirements if a distribution +# ships an mpiexec program (mpirun executables are not regulated by the standard). +find_program(MPIEXEC_EXECUTABLE + NAMES ${_MPIEXEC_NAMES} + PATH_SUFFIXES bin sbin + HINTS ${MPI_HINT_DIRS} DOC "Executable for running MPI programs.") # call get_filename_component twice to remove mpiexec and the directory it exists in (typically bin). # This gives us a fairly reliable base directory to search for /bin /lib and /include from. -get_filename_component(_MPI_BASE_DIR "${MPIEXEC}" PATH) +get_filename_component(_MPI_BASE_DIR "${MPIEXEC_EXECUTABLE}" PATH) get_filename_component(_MPI_BASE_DIR "${_MPI_BASE_DIR}" PATH) # According to the MPI standard, section 8.8 -n is a guaranteed, and the only guaranteed way to # launch an MPI process using mpiexec if such a program exists. -set(MPIEXEC_NUMPROC_FLAG "-n" CACHE STRING "Flag used by MPI to specify the number of processes for MPIEXEC; the next option will be the number of processes.") -set(MPIEXEC_PREFLAGS "" CACHE STRING "These flags will be directly before the executable that is being run by MPIEXEC.") -set(MPIEXEC_POSTFLAGS "" CACHE STRING "These flags will come after all flags given to MPIEXEC.") - -# Set the number of processes to the processor count and the previous default -# of 2 if that couldn't be determined. -include(${CMAKE_ROOT}/Modules/ProcessorCount.cmake) -ProcessorCount(_MPIEXEC_NUMPROCS) -if("${_MPIEXEC_NUMPROCS}" EQUAL "0") - set(_MPIEXEC_NUMPROCS 2) -endif() -set(MPIEXEC_MAX_NUMPROCS "${_MPIEXEC_NUMPROCS}" CACHE STRING "Maximum number of processors available to run MPI applications.") -unset(_MPIEXEC_NUMPROCS) -mark_as_advanced(MPIEXEC MPIEXEC_NUMPROC_FLAG MPIEXEC_PREFLAGS MPIEXEC_POSTFLAGS MPIEXEC_MAX_NUMPROCS) +set(MPIEXEC_NUMPROC_FLAG "-n" CACHE STRING "Flag used by MPI to specify the number of processes for mpiexec; the next option will be the number of processes.") +set(MPIEXEC_PREFLAGS "" CACHE STRING "These flags will be directly before the executable that is being run by mpiexec.") +set(MPIEXEC_POSTFLAGS "" CACHE STRING "These flags will be placed after all flags passed to mpiexec.") +# Set the number of processes to the physical processor count +cmake_host_system_information(RESULT _MPIEXEC_NUMPROCS QUERY NUMBER_OF_PHYSICAL_CORES) +set(MPIEXEC_MAX_NUMPROCS "${_MPIEXEC_NUMPROCS}" CACHE STRING "Maximum number of processors available to run MPI applications.") +unset(_MPIEXEC_NUMPROCS) +mark_as_advanced(MPIEXEC_EXECUTABLE MPIEXEC_NUMPROC_FLAG MPIEXEC_PREFLAGS MPIEXEC_POSTFLAGS MPIEXEC_MAX_NUMPROCS) #============================================================================= # Backward compatibility input hacks. Propagate the FindMPI hints to C and # CXX if the respective new versions are not defined. Translate the old -# MPI_LIBRARY and MPI_EXTRA_LIBRARY to respective MPI_${lang}_LIBRARIES. +# MPI_LIBRARY and MPI_EXTRA_LIBRARY to respective MPI_${LANG}_LIBRARIES. # # Once we find the new variables, we translate them back into their old # equivalents below. -foreach (lang C CXX) +foreach (LANG IN ITEMS C CXX) # Old input variables. set(_MPI_OLD_INPUT_VARS COMPILER COMPILE_FLAGS INCLUDE_PATH LINK_FLAGS) # Set new vars based on their old equivalents, if the new versions are not already set. foreach (var ${_MPI_OLD_INPUT_VARS}) - if (NOT MPI_${lang}_${var} AND MPI_${var}) - set(MPI_${lang}_${var} "${MPI_${var}}") + if (NOT MPI_${LANG}_${var} AND MPI_${var}) + set(MPI_${LANG}_${var} "${MPI_${var}}") endif() endforeach() - # Special handling for MPI_LIBRARY and MPI_EXTRA_LIBRARY, which we nixed in the - # new FindMPI. These need to be merged into MPI__LIBRARIES - if (NOT MPI_${lang}_LIBRARIES AND (MPI_LIBRARY OR MPI_EXTRA_LIBRARY)) - set(MPI_${lang}_LIBRARIES ${MPI_LIBRARY} ${MPI_EXTRA_LIBRARY}) + # Chop the old compile flags into options and definitions + if(MPI_${LANG}_COMPILE_FLAGS) + unset(MPI_${LANG}_COMPILE_OPTIONS) + unset(MPI_${LANG}_COMPILE_DEFINITIONS) + separate_arguments(MPI_SEPARATE_FLAGS NATIVE_COMMAND "${MPI_${LANG}_COMPILE_FLAGS}") + foreach(_MPI_FLAG IN LISTS MPI_SEPARATE_FLAGS) + if("${_MPI_FLAG}" MATCHES "^ *[-/D]([^ ]+)") + list(APPEND MPI_${LANG}_COMPILE_DEFINITIONS "${CMAKE_MATCH_1}") + else() + list(APPEND MPI_${LANG}_COMPILE_FLAGS "${_MPI_FLAG}") + endif() + endforeach() + unset(MPI_SEPARATE_FLAGS) + endif() + + # If a list of libraries was given, we'll split it into new-style cache variables + if(NOT MPI_${LANG}_LIB_NAMES) + foreach(_MPI_LIB IN LISTS MPI_${LANG}_LIBRARIES MPI_LIBRARY MPI_EXTRA_LIBRARY) + get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB}" NAME_WE) + get_filename_component(_MPI_LIB_NAME "${_MPI_LIB}" NAME) + get_filename_component(_MPI_LIB_DIR "${_MPI_LIB}" DIRECTORY) + list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") + find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY + NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" + HINTS ${_MPI_LIB_DIR} $ENV{MPI_LIB} + DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" + ) + mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) + endforeach() endif() endforeach() #============================================================================= +unset(MPI_VERSION) +unset(MPI_VERSION_MAJOR) +unset(MPI_VERSION_MINOR) + +unset(_MPI_MIN_VERSION) # This loop finds the compilers and sends them off for interrogation. -foreach (lang C CXX Fortran) - if (CMAKE_${lang}_COMPILER_WORKS) - # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. - if (MPI_${lang}_COMPILER) - if (NOT IS_ABSOLUTE "${MPI_${lang}_COMPILER}") - # Get rid of our default list of names and just search for the name the user wants. - set(_MPI_${lang}_COMPILER_NAMES ${MPI_${lang}_COMPILER}) - set(MPI_${lang}_COMPILER "MPI_${lang}_COMPILER-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) - endif() - # If the user specifies a compiler, we don't want to try to search libraries either. - set(try_libs FALSE) +foreach(LANG IN ITEMS C CXX Fortran) + if(CMAKE_${LANG}_COMPILER_LOADED) + if(NOT MPI_FIND_COMPONENTS) + set(_MPI_FIND_${LANG} TRUE) + elseif( ${LANG} IN_LIST MPI_FIND_COMPONENTS) + set(_MPI_FIND_${LANG} TRUE) + elseif( ${LANG} STREQUAL CXX AND NOT MPI_CXX_SKIP_MPICXX AND MPICXX IN_LIST MPI_FIND_COMPONENTS ) + set(_MPI_FIND_${LANG} TRUE) else() - set(try_libs TRUE) + set(_MPI_FIND_${LANG} FALSE) endif() + else() + set(_MPI_FIND_${LANG} FALSE) + endif() + if(_MPI_FIND_${LANG}) + if( ${LANG} STREQUAL CXX AND NOT MPICXX IN_LIST MPI_FIND_COMPONENTS ) + set(MPI_CXX_SKIP_MPICXX FALSE CACHE BOOL "If true, the MPI-2 C++ bindings are disabled using definitions.") + mark_as_advanced(MPI_CXX_SKIP_MPICXX) + endif() + if(NOT (MPI_${LANG}_LIB_NAMES AND (MPI_${LANG}_INCLUDE_PATH OR MPI_${LANG}_INCLUDE_DIRS OR MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS))) + if(NOT MPI_${LANG}_COMPILER AND NOT MPI_ASSUME_NO_BUILTIN_MPI) + # Should the imported targets be empty, we effectively try whether the compiler supports MPI on its own, which is the case on e.g. + # Cray PrgEnv. + _MPI_create_imported_target(${LANG}) + _MPI_check_lang_works(${LANG}) + + # If the compiler can build MPI code on its own, it functions as an MPI compiler and we'll set the variable to point to it. + if(MPI_${LANG}_WORKS) + set(MPI_${LANG}_COMPILER "${CMAKE_${LANG}_COMPILER}" CACHE FILEPATH "MPI compiler for ${LANG}" FORCE) + endif() + endif() - find_program(MPI_${lang}_COMPILER - NAMES ${_MPI_${lang}_COMPILER_NAMES} - HINTS ${_MPI_BASE_DIR}/bin - PATHS ${_MPI_PREFIX_PATH} - ) - interrogate_mpi_compiler(${lang} ${try_libs}) - mark_as_advanced(MPI_${lang}_COMPILER) + # If the user specified a library name we assume they prefer that library over a wrapper. If not, they can disable skipping manually. + if(NOT DEFINED MPI_SKIP_COMPILER_WRAPPER AND MPI_GUESS_LIBRARY_NAME) + set(MPI_SKIP_COMPILER_WRAPPER TRUE) + endif() + if(NOT MPI_SKIP_COMPILER_WRAPPER) + if(MPI_${LANG}_COMPILER) + # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. + if (NOT IS_ABSOLUTE "${MPI_${LANG}_COMPILER}") + # Get rid of our default list of names and just search for the name the user wants. + set(_MPI_${LANG}_COMPILER_NAMES "${MPI_${LANG}_COMPILER}") + unset(MPI_${LANG}_COMPILER CACHE) + endif() + # If the user specifies a compiler, we don't want to try to search libraries either. + set(MPI_PINNED_COMPILER TRUE) + else() + set(MPI_PINNED_COMPILER FALSE) + endif() - # last ditch try -- if nothing works so far, just try running the regular compiler and - # see if we can create an MPI executable. - set(regular_compiler_worked 0) - if (NOT MPI_${lang}_LIBRARIES OR NOT MPI_${lang}_INCLUDE_PATH) - try_regular_compiler(${lang} regular_compiler_worked) - endif() + # If we have an MPI base directory, we'll try all compiler names in that one first. + # This should prevent mixing different MPI environments + if(_MPI_BASE_DIR) + find_program(MPI_${LANG}_COMPILER + NAMES ${_MPI_${LANG}_COMPILER_NAMES} + PATH_SUFFIXES bin sbin + HINTS ${_MPI_BASE_DIR} + NO_DEFAULT_PATH + DOC "MPI compiler for ${LANG}" + ) + endif() + + # If the base directory did not help (for example because the mpiexec isn't in the same directory as the compilers), + # we shall try searching in the default paths. + find_program(MPI_${LANG}_COMPILER + NAMES ${_MPI_${LANG}_COMPILER_NAMES} + PATH_SUFFIXES bin sbin + DOC "MPI compiler for ${LANG}" + ) + + if(MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) + set(MPI_SKIP_GUESSING TRUE) + elseif(MPI_${LANG}_COMPILER) + _MPI_interrogate_compiler(${LANG}) + else() + set(MPI_${LANG}_WRAPPER_FOUND FALSE) + endif() + else() + set(MPI_${LANG}_WRAPPER_FOUND FALSE) + set(MPI_PINNED_COMPILER FALSE) + endif() - # add fortran mpi module path if ENV VAR exists - set (MPI_${lang}_INCLUDE_PATH "${MPI_${lang}_INCLUDE_PATH};$ENV{MPI_FORTRAN_MOD_DIR}") + if(NOT MPI_${LANG}_WRAPPER_FOUND AND NOT MPI_PINNED_COMPILER) + # For C++, we may use the settings for C. Should a given compiler wrapper for C++ not exist, but one for C does, we copy over the + # settings for C. An MPI distribution that is in this situation would be IBM Platform MPI. + if("${LANG}" STREQUAL "CXX" AND MPI_C_WRAPPER_FOUND) + set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_C_COMPILE_OPTIONS} CACHE STRING "MPI ${LANG} compilation options" ) + set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_C_COMPILE_DEFINITIONS} CACHE STRING "MPI ${LANG} compilation definitions" ) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_C_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories") + set(MPI_${LANG}_LINK_FLAGS ${MPI_C_LINK_FLAGS} CACHE STRING "MPI ${LANG} linker flags" ) + set(MPI_${LANG}_LIB_NAMES ${MPI_C_LIB_NAMES} CACHE STRING "MPI ${LANG} libraries to link against" ) + set(MPI_${LANG}_WRAPPER_FOUND TRUE) + elseif(NOT MPI_SKIP_GUESSING) + _MPI_guess_settings(${LANG}) + endif() + endif() + endif() - set(MPI_${lang}_FIND_QUIETLY ${MPI_FIND_QUIETLY}) - set(MPI_${lang}_FIND_REQUIRED ${MPI_FIND_REQUIRED}) - set(MPI_${lang}_FIND_VERSION ${MPI_FIND_VERSION}) - set(MPI_${lang}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT}) + _MPI_split_include_dirs(${LANG}) + if(NOT MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) + _MPI_assemble_include_dirs(${LANG}) + _MPI_assemble_libraries(${LANG}) + endif() + _MPI_adjust_compile_definitions(${LANG}) + # We always create imported targets even if they're empty + _MPI_create_imported_target(${LANG}) - if (regular_compiler_worked) - find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_COMPILER) - else() - find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_LIBRARIES MPI_${lang}_INCLUDE_PATH) + if(NOT MPI_${LANG}_WORKS) + _MPI_check_lang_works(${LANG}) endif() - if(MPI_${lang}_FOUND) - if(NOT TARGET MPI::MPI_${lang}) - add_library(MPI::MPI_${lang} INTERFACE IMPORTED) + # Next, we'll initialize the MPI variables that have not been previously set. + set(MPI_${LANG}_COMPILE_OPTIONS "" CACHE STRING "MPI ${LANG} compilation flags" ) + set(MPI_${LANG}_COMPILE_DEFINITIONS "" CACHE STRING "MPI ${LANG} compilation definitions" ) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "MPI ${LANG} additional include directories") + set(MPI_${LANG}_LINK_FLAGS "" CACHE STRING "MPI ${LANG} linker flags" ) + set(MPI_${LANG}_LIB_NAMES "" CACHE STRING "MPI ${LANG} libraries to link against" ) + mark_as_advanced(MPI_${LANG}_COMPILE_OPTIONS MPI_${LANG}_COMPILE_DEFINITIONS MPI_${LANG}_LINK_FLAGS + MPI_${LANG}_LIB_NAMES MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS MPI_${LANG}_COMPILER) + + # If we've found MPI, then we'll perform additional analysis: Determine the MPI version, MPI library version, supported + # MPI APIs (i.e. MPI-2 C++ bindings). For Fortran we also need to find specific parameters if we're under MPI-3. + if(MPI_${LANG}_WORKS) + if("${LANG}" STREQUAL "CXX" AND NOT DEFINED MPI_MPICXX_FOUND) + if(NOT MPI_CXX_SKIP_MPICXX AND NOT MPI_CXX_VALIDATE_SKIP_MPICXX) + _MPI_try_staged_settings(${LANG} test_mpi MPICXX FALSE) + if(MPI_RESULT_${LANG}_test_mpi_MPICXX) + set(MPI_MPICXX_FOUND TRUE) + else() + set(MPI_MPICXX_FOUND FALSE) + endif() + else() + set(MPI_MPICXX_FOUND FALSE) + endif() + endif() + + # At this point, we know the bindings present but not the MPI version or anything else. + if(NOT DEFINED MPI_${LANG}_VERSION) + unset(MPI_${LANG}_VERSION_MAJOR) + unset(MPI_${LANG}_VERSION_MINOR) + endif() + set(MPI_BIN_FOLDER ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI) + + # For Fortran, we'll want to use the most modern MPI binding to test capabilities other than the + # Fortran parameters, since those depend on the method of consumption. + # For C++, we can always use the C bindings, and should do so, since the C++ bindings do not exist in MPI-3 + # whereas the C bindings do, and the C++ bindings never offered any feature advantage over their C counterparts. + if("${LANG}" STREQUAL "Fortran") + if(MPI_${LANG}_HAVE_F08_MODULE) + set(MPI_${LANG}_HIGHEST_METHOD F08_MODULE) + elseif(MPI_${LANG}_HAVE_F90_MODULE) + set(MPI_${LANG}_HIGHEST_METHOD F90_MODULE) + else() + set(MPI_${LANG}_HIGHEST_METHOD F77_HEADER) + endif() + + # Another difference between C and Fortran is that we can't use the preprocessor to determine whether MPI_VERSION + # and MPI_SUBVERSION are provided. These defines did not exist in MPI 1.0 and 1.1 and therefore might not + # exist. For C/C++, test_mpi.c will handle the MPI_VERSION extraction, but for Fortran, we need mpiver.f90. + if(NOT DEFINED MPI_${LANG}_VERSION) + _MPI_try_staged_settings(${LANG} mpiver ${MPI_${LANG}_HIGHEST_METHOD} FALSE) + if(MPI_RESULT_${LANG}_mpiver_${MPI_${LANG}_HIGHEST_METHOD}) + file(STRINGS ${MPI_BIN_FOLDER}/mpiver_${LANG}.bin _MPI_VERSION_STRING LIMIT_COUNT 1 REGEX "INFO:MPI-VER") + if("${_MPI_VERSION_STRING}" MATCHES ".*INFO:MPI-VER\\[([0-9]+)\\.([0-9]+)\\].*") + set(MPI_${LANG}_VERSION_MAJOR "${CMAKE_MATCH_1}") + set(MPI_${LANG}_VERSION_MINOR "${CMAKE_MATCH_2}") + set(MPI_${LANG}_VERSION "${MPI_${LANG}_VERSION_MAJOR}.${MPI_${LANG}_VERSION_MINOR}") + endif() + endif() + endif() + + # Finally, we want to find out which capabilities a given interface supports, compare the MPI-3 standard. + # This is determined by interface specific parameters MPI_SUBARRAYS_SUPPORTED and MPI_ASYNC_PROTECTS_NONBLOCKING + # and might vary between the different methods of consumption. + if(MPI_DETERMINE_Fortran_CAPABILITIES AND NOT MPI_Fortran_CAPABILITIES_DETERMINED) + foreach(mpimethod IN ITEMS F08_MODULE F90_MODULE F77_HEADER) + if(MPI_${LANG}_HAVE_${mpimethod}) + set(MPI_${LANG}_${mpimethod}_SUBARRAYS FALSE) + set(MPI_${LANG}_${mpimethod}_ASYNCPROT FALSE) + _MPI_try_staged_settings(${LANG} fortranparam_mpi ${mpimethod} TRUE) + if(MPI_RESULT_${LANG}_fortranparam_mpi_${mpimethod} AND + NOT "${MPI_RUN_RESULT_${LANG}_fortranparam_mpi_${mpimethod}}" STREQUAL "FAILED_TO_RUN") + if("${MPI_RUN_OUTPUT_${LANG}_fortranparam_mpi_${mpimethod}}" MATCHES + ".*INFO:SUBARRAYS\\[ *([TF]) *\\]-ASYNCPROT\\[ *([TF]) *\\].*") + if("${CMAKE_MATCH_1}" STREQUAL "T") + set(MPI_${LANG}_${mpimethod}_SUBARRAYS TRUE) + endif() + if("${CMAKE_MATCH_2}" STREQUAL "T") + set(MPI_${LANG}_${mpimethod}_ASYNCPROT TRUE) + endif() + endif() + endif() + endif() + endforeach() + set(MPI_Fortran_CAPABILITIES_DETERMINED TRUE) + endif() + else() + set(MPI_${LANG}_HIGHEST_METHOD normal) + + # By the MPI-2 standard, MPI_VERSION and MPI_SUBVERSION are valid for both C and C++ bindings. + if(NOT DEFINED MPI_${LANG}_VERSION) + file(STRINGS ${MPI_BIN_FOLDER}/test_mpi_${LANG}.bin _MPI_VERSION_STRING LIMIT_COUNT 1 REGEX "INFO:MPI-VER") + if("${_MPI_VERSION_STRING}" MATCHES ".*INFO:MPI-VER\\[([0-9]+)\\.([0-9]+)\\].*") + set(MPI_${LANG}_VERSION_MAJOR "${CMAKE_MATCH_1}") + set(MPI_${LANG}_VERSION_MINOR "${CMAKE_MATCH_2}") + set(MPI_${LANG}_VERSION "${MPI_${LANG}_VERSION_MAJOR}.${MPI_${LANG}_VERSION_MINOR}") + endif() + endif() endif() - if(MPI_${lang}_COMPILE_FLAGS) - separate_arguments(_MPI_${lang}_COMPILE_OPTIONS NATIVE_COMMAND "${MPI_${lang}_COMPILE_FLAGS}") - set_property(TARGET MPI::MPI_${lang} PROPERTY - INTERFACE_COMPILE_OPTIONS "${_MPI_${lang}_COMPILE_OPTIONS}") + + unset(MPI_BIN_FOLDER) + + # At this point, we have dealt with determining the MPI version and parameters for each Fortran method available. + # The one remaining issue is to determine which MPI library is installed. + # Determining the version and vendor of the MPI library is only possible via MPI_Get_library_version() at runtime, + # and therefore we cannot do this while cross-compiling (a user may still define MPI__LIBRARY_VERSION_STRING + # themselves and we'll attempt splitting it, which is equivalent to provide the try_run output). + # It's also worth noting that the installed version string can depend on the language, or on the system the binary + # runs on if MPI is not statically linked. + if(MPI_DETERMINE_LIBRARY_VERSION AND NOT MPI_${LANG}_LIBRARY_VERSION_STRING) + _MPI_try_staged_settings(${LANG} libver_mpi ${MPI_${LANG}_HIGHEST_METHOD} TRUE) + if(MPI_RESULT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD} AND + "${MPI_RUN_RESULT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD}}" EQUAL "0") + string(STRIP "${MPI_RUN_OUTPUT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD}}" + MPI_${LANG}_LIBRARY_VERSION_STRING) + else() + set(MPI_${LANG}_LIBRARY_VERSION_STRING "NOTFOUND") + endif() endif() + endif() - unset(_MPI_${lang}_LINK_LINE) - if(MPI_${lang}_LINK_FLAGS) - list(APPEND _MPI_${lang}_LINK_LINE "${MPI_${lang}_LINK_FLAGS}") + set(MPI_${LANG}_FIND_QUIETLY ${MPI_FIND_QUIETLY}) + set(MPI_${LANG}_FIND_VERSION ${MPI_FIND_VERSION}) + set(MPI_${LANG}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT}) + + unset(MPI_${LANG}_REQUIRED_VARS) + if (MPI_${LANG}_WRAPPER_FOUND OR MPI_${LANG}_GUESS_FOUND) + foreach(mpilibname IN LISTS MPI_${LANG}_LIB_NAMES) + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${mpilibname}_LIBRARY") + endforeach() + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_LIB_NAMES") + if("${LANG}" STREQUAL "Fortran") + # For Fortran we only need one of the module or header directories to have *some* support for MPI. + if(NOT MPI_${LANG}_MODULE_DIR) + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_F77_HEADER_DIR") + endif() + if(NOT MPI_${LANG}_F77_HEADER_DIR) + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_MODULE_DIR") + endif() + else() + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_HEADER_DIR") + endif() + if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + foreach(mpiincvar IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${mpiincvar}_INCLUDE_DIR") + endforeach() + endif() + # Append the works variable now. If the settings did not work, this will show up properly. + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_WORKS") + else() + # If the compiler worked implicitly, use its path as output. + # Should the compiler variable be set, we also require it to work. + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_COMPILER") + if(MPI_${LANG}_COMPILER) + list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_WORKS") endif() - list(APPEND _MPI_${lang}_LINK_LINE "${MPI_${lang}_LIBRARIES}") - set_property(TARGET MPI::MPI_${lang} PROPERTY - INTERFACE_LINK_LIBRARIES "${_MPI_${lang}_LINK_LINE}") + endif() + find_package_handle_standard_args(MPI_${LANG} REQUIRED_VARS ${MPI_${LANG}_REQUIRED_VARS} + VERSION_VAR MPI_${LANG}_VERSION) - set_property(TARGET MPI::MPI_${lang} PROPERTY - INTERFACE_INCLUDE_DIRECTORIES "${MPI_${lang}_INCLUDE_PATH}") + if(DEFINED MPI_${LANG}_VERSION) + if(NOT _MPI_MIN_VERSION OR _MPI_MIN_VERSION VERSION_GREATER MPI_${LANG}_VERSION) + set(_MPI_MIN_VERSION MPI_${LANG}_VERSION) + endif() endif() endif() endforeach() +unset(_MPI_REQ_VARS) +foreach(LANG IN ITEMS C CXX Fortran) + if((NOT MPI_FIND_COMPONENTS AND CMAKE_${LANG}_COMPILER_LOADED) OR LANG IN_LIST MPI_FIND_COMPONENTS) + list(APPEND _MPI_REQ_VARS "MPI_${LANG}_FOUND") + endif() +endforeach() + +if(MPICXX IN_LIST MPI_FIND_COMPONENTS) + list(APPEND _MPI_REQ_VARS "MPI_MPICXX_FOUND") +endif() + +find_package_handle_standard_args(MPI + REQUIRED_VARS ${_MPI_REQ_VARS} + VERSION_VAR ${_MPI_MIN_VERSION} + HANDLE_COMPONENTS) #============================================================================= # More backward compatibility stuff -# -# Bare MPI sans ${lang} vars are set to CXX then C, depending on what was found. + +# For compatibility reasons, we also define MPIEXEC +set(MPIEXEC "${MPIEXEC_EXECUTABLE}") + +# Copy over MPI__INCLUDE_PATH from the assembled INCLUDE_DIRS. +foreach(LANG IN ITEMS C CXX Fortran) + if(MPI_${LANG}_FOUND) + set(MPI_${LANG}_INCLUDE_PATH "${MPI_${LANG}_INCLUDE_DIRS}") + unset(MPI_${LANG}_COMPILE_FLAGS) + if(MPI_${LANG}_COMPILE_OPTIONS) + set(MPI_${LANG}_COMPILE_FLAGS "${MPI_${LANG}_COMPILE_OPTIONS}") + endif() + if(MPI_${LANG}_COMPILE_DEFINITIONS) + foreach(_MPI_DEF IN LISTS MPI_${LANG}_COMPILE_DEFINITIONS) + string(APPEND MPI_${LANG}_COMPILE_FLAGS " -D${_MPI_DEF}") + endforeach() + endif() + endif() +endforeach() + +# Bare MPI sans ${LANG} vars are set to CXX then C, depending on what was found. # This mimics the behavior of the old language-oblivious FindMPI. -set(_MPI_OLD_VARS FOUND COMPILER INCLUDE_PATH COMPILE_FLAGS LINK_FLAGS LIBRARIES) +set(_MPI_OLD_VARS COMPILER INCLUDE_PATH COMPILE_FLAGS LINK_FLAGS LIBRARIES) if (MPI_CXX_FOUND) foreach (var ${_MPI_OLD_VARS}) set(MPI_${var} ${MPI_CXX_${var}}) @@ -704,28 +1428,26 @@ elseif (MPI_C_FOUND) foreach (var ${_MPI_OLD_VARS}) set(MPI_${var} ${MPI_C_${var}}) endforeach() -else() - # Note that we might still have found Fortran, but you'll need to use MPI_Fortran_FOUND - set(MPI_FOUND FALSE) endif() # Chop MPI_LIBRARIES into the old-style MPI_LIBRARY and MPI_EXTRA_LIBRARY, and set them in cache. if (MPI_LIBRARIES) list(GET MPI_LIBRARIES 0 MPI_LIBRARY_WORK) - set(MPI_LIBRARY ${MPI_LIBRARY_WORK} CACHE FILEPATH "MPI library to link against" FORCE) + set(MPI_LIBRARY "${MPI_LIBRARY_WORK}") + unset(MPI_LIBRARY_WORK) else() - set(MPI_LIBRARY "MPI_LIBRARY-NOTFOUND" CACHE FILEPATH "MPI library to link against" FORCE) + set(MPI_LIBRARY "MPI_LIBRARY-NOTFOUND") endif() list(LENGTH MPI_LIBRARIES MPI_NUMLIBS) if (MPI_NUMLIBS GREATER 1) - set(MPI_EXTRA_LIBRARY_WORK ${MPI_LIBRARIES}) + set(MPI_EXTRA_LIBRARY_WORK "${MPI_LIBRARIES}") list(REMOVE_AT MPI_EXTRA_LIBRARY_WORK 0) - set(MPI_EXTRA_LIBRARY ${MPI_EXTRA_LIBRARY_WORK} CACHE STRING "Extra MPI libraries to link against" FORCE) + set(MPI_EXTRA_LIBRARY "${MPI_EXTRA_LIBRARY_WORK}") + unset(MPI_EXTRA_LIBRARY_WORK) else() - set(MPI_EXTRA_LIBRARY "MPI_EXTRA_LIBRARY-NOTFOUND" CACHE STRING "Extra MPI libraries to link against" FORCE) + set(MPI_EXTRA_LIBRARY "MPI_EXTRA_LIBRARY-NOTFOUND") endif() -mark_as_advanced(MPI_LIBRARY MPI_EXTRA_LIBRARY) #============================================================================= # unset these vars to cleanup namespace @@ -733,5 +1455,7 @@ unset(_MPI_OLD_VARS) unset(_MPI_PREFIX_PATH) unset(_MPI_BASE_DIR) foreach (lang C CXX Fortran) - unset(_MPI_${lang}_COMPILER_NAMES) + unset(_MPI_${LANG}_COMPILER_NAMES) endforeach() + +cmake_policy(POP) diff --git a/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in b/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in new file mode 100644 index 0000000..30f912c --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in @@ -0,0 +1,4 @@ + program mpi_ver + @MPI_Fortran_INCLUDE_LINE@ + print *, 'INFO:SUBARRAYS[', MPI_SUBARRAYS_SUPPORTED, ']-ASYNCPROT[', MPI_ASYNC_PROTECTS_NONBLOCKING, ']' + end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/libver_mpi.c b/config/cmake_ext_mod/FindMPI/libver_mpi.c new file mode 100644 index 0000000..be9d19d --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/libver_mpi.c @@ -0,0 +1,19 @@ +#include + +#ifdef __cplusplus +#include +#else +#include +#endif + +int main(int argc, char* argv[]) +{ + char mpilibver_str[MPI_MAX_LIBRARY_VERSION_STRING]; + int mpilibver_len; + MPI_Get_library_version(mpilibver_str, &mpilibver_len); +#ifdef __cplusplus + std::puts(mpilibver_str); +#else + puts(mpilibver_str); +#endif +} diff --git a/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in b/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in new file mode 100644 index 0000000..7938587 --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in @@ -0,0 +1,7 @@ + program mpi_ver + @MPI_Fortran_INCLUDE_LINE@ + character(len=MPI_MAX_LIBRARY_VERSION_STRING) :: mpilibver_str + integer(kind=MPI_INTEGER_KIND) :: ierror, reslen + call MPI_GET_LIBRARY_VERSION(mpilibver_str, reslen, ierror) + print *, mpilibver_str + end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/mpiver.f90.in b/config/cmake_ext_mod/FindMPI/mpiver.f90.in new file mode 100644 index 0000000..a254523 --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/mpiver.f90.in @@ -0,0 +1,10 @@ + program mpi_ver + @MPI_Fortran_INCLUDE_LINE@ + integer(kind=kind(MPI_VERSION)), parameter :: zero = ichar('0') + character, dimension(17), parameter :: mpiver_str =& + (/ 'I', 'N', 'F', 'O', ':', 'M', 'P', 'I', '-', 'V', 'E', 'R', '[', & + char(zero + MPI_VERSION), & + '.', & + char(zero + MPI_SUBVERSION), ']' /) + print *, mpiver_str + end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/test_mpi.c b/config/cmake_ext_mod/FindMPI/test_mpi.c new file mode 100644 index 0000000..b8a308a --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/test_mpi.c @@ -0,0 +1,37 @@ +#include + +#ifdef __cplusplus +#include +#else +#include +#endif + +#if defined(MPI_VERSION) && defined(MPI_SUBVERSION) +const char mpiver_str[] = { 'I', 'N', + 'F', 'O', + ':', 'M', + 'P', 'I', + '-', 'V', + 'E', 'R', + '[', ('0' + MPI_VERSION), + '.', ('0' + MPI_SUBVERSION), + ']', '\0' }; +#endif + +int main(int argc, char* argv[]) +{ +#if defined(MPI_VERSION) && defined(MPI_SUBVERSION) +#ifdef __cplusplus + std::puts(mpiver_str); +#else + puts(mpiver_str); +#endif +#endif +#ifdef TEST_MPI_MPICXX + MPI::MPI_Init(&argc, &argv); + MPI::MPI_Finalize(); +#else + MPI_Init(&argc, &argv); + MPI_Finalize(); +#endif +} diff --git a/config/cmake_ext_mod/FindMPI/test_mpi.f90.in b/config/cmake_ext_mod/FindMPI/test_mpi.f90.in new file mode 100644 index 0000000..4d43a04 --- /dev/null +++ b/config/cmake_ext_mod/FindMPI/test_mpi.f90.in @@ -0,0 +1,6 @@ + program hello + @MPI_Fortran_INCLUDE_LINE@ + integer@MPI_Fortran_INTEGER_LINE@ ierror + call MPI_INIT(ierror) + call MPI_FINALIZE(ierror) + end program diff --git a/config/cmake_ext_mod/grepTest.cmake b/config/cmake_ext_mod/grepTest.cmake index 5b0e8fd..b812d73 100644 --- a/config/cmake_ext_mod/grepTest.cmake +++ b/config/cmake_ext_mod/grepTest.cmake @@ -57,15 +57,15 @@ file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) # TEST_REFERENCE should always be matched string (REGEX MATCH "${TEST_REFERENCE}" TEST_MATCH ${TEST_STREAM}) string (COMPARE EQUAL "${TEST_REFERENCE}" "${TEST_MATCH}" TEST_RESULT) -if (${TEST_RESULT} STREQUAL "0") +if ("${TEST_RESULT}" STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_REFERENCE}") endif () string (REGEX MATCH "${TEST_FILTER}" TEST_MATCH ${TEST_STREAM}) -if (${TEST_EXPECT} STREQUAL "1") +if ("${TEST_EXPECT}" STREQUAL "1") # TEST_EXPECT (1) interperts TEST_FILTER as NOT to match string (LENGTH "${TEST_MATCH}" TEST_RESULT) - if (NOT ${TEST_RESULT} STREQUAL "0") + if (NOT "${TEST_RESULT}" STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did contain ${TEST_FILTER}") endif () endif () diff --git a/config/cmake_ext_mod/runTest.cmake b/config/cmake_ext_mod/runTest.cmake index 3a02614..2479728 100644 --- a/config/cmake_ext_mod/runTest.cmake +++ b/config/cmake_ext_mod/runTest.cmake @@ -87,7 +87,7 @@ if (TEST_REGEX) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) string (REGEX MATCH "${TEST_REGEX}" REGEX_MATCH ${TEST_STREAM}) string (COMPARE EQUAL "${REGEX_MATCH}" "${TEST_MATCH}" REGEX_RESULT) - if (${REGEX_RESULT} STREQUAL "0") + if ("${REGEX_RESULT}" STREQUAL "0") message (STATUS "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_MATCH}") endif () endif () @@ -106,7 +106,7 @@ if (TEST_APPEND) endif () # if the return value is !=${TEST_EXPECT} bail out -if (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) +if (NOT "${TEST_RESULT}" STREQUAL "${TEST_EXPECT}") if (NOT TEST_NOERRDISPLAY) if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) @@ -193,13 +193,13 @@ if (NOT TEST_SKIP_COMPARE) endif () endif () - if (NOT ${TEST_RESULT} STREQUAL 0) + if (NOT "${TEST_RESULT}" STREQUAL "0") set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT} test_act) list (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_REFERENCE} test_ref) list (LENGTH test_ref len_ref) - if (NOT ${len_act} STREQUAL "0" AND NOT ${len_ref} STREQUAL "0") + if (NOT "${len_act}" STREQUAL "0" AND NOT "${len_ref}" STREQUAL "0") math (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) list (GET test_act ${line} str_act) @@ -212,14 +212,14 @@ if (NOT TEST_SKIP_COMPARE) endif () endforeach () else () - if (${len_act} STREQUAL "0") + if ("${len_act}" STREQUAL "0") message (STATUS "COMPARE Failed: ${TEST_FOLDER}/${TEST_OUTPUT} is empty") endif () - if (${len_ref} STREQUAL "0") + if ("${len_ref}" STREQUAL "0") message (STATUS "COMPARE Failed: ${TEST_FOLDER}/${TEST_REFERENCE} is empty") endif () endif () - if (NOT ${len_act} STREQUAL ${len_ref}) + if (NOT "${len_act}" STREQUAL "${len_ref}") set (TEST_RESULT 1) endif () endif () @@ -227,7 +227,7 @@ if (NOT TEST_SKIP_COMPARE) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout - if (NOT ${TEST_RESULT} STREQUAL 0) + if (NOT "${TEST_RESULT}" STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_OUTPUT} did not match ${TEST_REFERENCE}") endif () @@ -243,14 +243,14 @@ if (NOT TEST_SKIP_COMPARE) COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT}.err ${TEST_FOLDER}/${TEST_ERRREF} RESULT_VARIABLE TEST_RESULT ) - if (NOT ${TEST_RESULT} STREQUAL 0) + if (NOT "${TEST_RESULT}" STREQUAL "0") set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT}.err test_act) list (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_ERRREF} test_ref) list (LENGTH test_ref len_ref) math (EXPR _FP_LEN "${len_ref} - 1") - if (NOT ${len_act} STREQUAL "0" AND NOT ${len_ref} STREQUAL "0") + if (NOT "${len_act}" STREQUAL "0" AND NOT "${len_ref}" STREQUAL "0") math (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) list (GET test_act ${line} str_act) @@ -263,14 +263,14 @@ if (NOT TEST_SKIP_COMPARE) endif () endforeach () else () - if (${len_act} STREQUAL "0") + if ("${len_act}" STREQUAL "0") message (STATUS "COMPARE Failed: ${TEST_FOLDER}/${TEST_OUTPUT}.err is empty") endif () - if (${len_ref} STREQUAL "0") + if ("${len_ref}" STREQUAL "0") message (STATUS "COMPARE Failed: ${TEST_FOLDER}/${TEST_ERRREF} is empty") endif () endif () - if (NOT ${len_act} STREQUAL ${len_ref}) + if (NOT "${len_act}" STREQUAL "${len_ref}") set (TEST_RESULT 1) endif () endif () @@ -278,7 +278,7 @@ if (NOT TEST_SKIP_COMPARE) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout - if (NOT ${TEST_RESULT} STREQUAL 0) + if (NOT "${TEST_RESULT}" STREQUAL "0") message (FATAL_ERROR "Failed: The error output of ${TEST_OUTPUT}.err did not match ${TEST_ERRREF}") endif () endif () diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index f7179cf..075e1da 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -2,8 +2,6 @@ cmake_minimum_required (VERSION 3.2.2) PROJECT (HDF5_F90 C CXX Fortran) if (H5_HAVE_PARALLEL) - INCLUDE (FindMPI) - set (LINK_LIBS ${LINK_LIBS} ${MPI_Fortran_LIBRARIES}) if (MPI_Fortran_LINK_FLAGS) set (CMAKE_EXE_LINKER_FLAGS "${MPI_Fortran_LINK_FLAGS} ${CMAKE_EXE_LINKER_FLAGS}") endif () diff --git a/fortran/examples/CMakeLists.txt b/fortran/examples/CMakeLists.txt index 6030f83..cd5da0e 100644 --- a/fortran/examples/CMakeLists.txt +++ b/fortran/examples/CMakeLists.txt @@ -109,7 +109,6 @@ if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_link_libraries (f90_ex_ph5example ${HDF5_F90_LIB_TARGET} ${HDF5_LIB_TARGET} - ${MPI_Fortran_LIBRARIES} ) target_include_directories (f90_ex_ph5example PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (f90_ex_ph5example PROPERTIES @@ -124,7 +123,6 @@ if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_link_libraries (f90_ex_ph5example-shared ${HDF5_F90_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} - ${MPI_Fortran_LIBRARIES} ) target_include_directories (f90_ex_ph5example-shared PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) set_target_properties (f90_ex_ph5example-shared PROPERTIES diff --git a/fortran/examples/CMakeTests.cmake b/fortran/examples/CMakeTests.cmake index 31dc836..af6b994 100644 --- a/fortran/examples/CMakeTests.cmake +++ b/fortran/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## @@ -149,8 +149,8 @@ if (HDF5_ENABLE_F2003) endif () if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) - add_test (NAME f90_ex_ph5example COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) + add_test (NAME f90_ex_ph5example COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) - add_test (NAME f90_ex-shared_ph5example COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) + add_test (NAME f90_ex-shared_ph5example COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) endif () endif () diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 689439c..9527bc0 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -291,9 +291,9 @@ set_source_files_properties (${f90_F_SRCS} PROPERTIES LANGUAGE Fortran) add_library (${HDF5_F90_LIB_TARGET} STATIC ${f90_F_SRCS}) set (SHARED_LINK_FLAGS " ") TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_F90_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (${HDF5_F90_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_Fortran_LIBS}) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) - target_link_libraries (${HDF5_F90_LIB_TARGET} ${MPI_Fortran_LIBRARIES}) + target_include_directories (${HDF5_F90_LIB_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_F90_LIB_TARGET} ${HDF5_F90_LIB_NAME} STATIC) @@ -317,9 +317,9 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set (SHARED_LINK_FLAGS "/DLL /DEF:${HDF5_F90_SRC_BINARY_DIR}/hdf5_fortrandll.def") endif () TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIBSH_TARGET} SHARED " " ${SHARED_LINK_FLAGS}) - target_link_libraries (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ${LINK_Fortran_LIBS}) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) - target_link_libraries (${HDF5_F90_LIBSH_TARGET} ${MPI_Fortran_LIBRARIES}) + target_include_directories (${HDF5_F90_LIBSH_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_LIB_NAME} SHARED ${HDF5_F_PACKAGE_SOVERSION}) diff --git a/fortran/test/CMakeTests.cmake b/fortran/test/CMakeTests.cmake index c363b04..e4d8cc1 100644 --- a/fortran/test/CMakeTests.cmake +++ b/fortran/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/fortran/testpar/CMakeLists.txt b/fortran/testpar/CMakeLists.txt index 909cbaf..4aa7f43 100644 --- a/fortran/testpar/CMakeLists.txt +++ b/fortran/testpar/CMakeLists.txt @@ -4,7 +4,7 @@ PROJECT (HDF5_FORTRAN_TESTPAR C CXX Fortran) #----------------------------------------------------------------------------- # Setup include Directories #----------------------------------------------------------------------------- -INCLUDE_DIRECTORIES (${MPI_Fortran_INCLUDE_PATH} ${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) +set (TESTPAR_INCLUDES ${MPI_Fortran_INCLUDE_DIRS} ${CMAKE_Fortran_MODULE_DIRECTORY}/static ${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) #----------------------------------------------------------------------------- # Add Tests @@ -27,7 +27,7 @@ target_link_libraries (parallel_test if (WIN32 AND MSVC) target_link_libraries (parallel_test "ws2_32.lib") endif () -target_include_directories (parallel_test PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) +target_include_directories (parallel_test PRIVATE ${TESTPAR_INCLUDES}) set_target_properties (parallel_test PROPERTIES LINKER_LANGUAGE Fortran) set_target_properties (parallel_test PROPERTIES FOLDER test/fortran) diff --git a/fortran/testpar/CMakeTests.cmake b/fortran/testpar/CMakeTests.cmake index 70ce541..d00a6fc 100644 --- a/fortran/testpar/CMakeTests.cmake +++ b/fortran/testpar/CMakeTests.cmake @@ -8,11 +8,11 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## ### T E S T I N G ### ############################################################################## ############################################################################## -add_test (NAME FORT_parallel_test COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) +add_test (NAME FORT_parallel_test COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) diff --git a/hl/c++/examples/CMakeTests.cmake b/hl/c++/examples/CMakeTests.cmake index 84f5611..103ec2b 100644 --- a/hl/c++/examples/CMakeTests.cmake +++ b/hl/c++/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/c++/test/CMakeTests.cmake b/hl/c++/test/CMakeTests.cmake index 0df6d3d..785abca 100644 --- a/hl/c++/test/CMakeTests.cmake +++ b/hl/c++/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/examples/CMakeTests.cmake b/hl/examples/CMakeTests.cmake index 0a40b96..166fa7c 100644 --- a/hl/examples/CMakeTests.cmake +++ b/hl/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/fortran/examples/CMakeTests.cmake b/hl/fortran/examples/CMakeTests.cmake index 97b2dbb..254c8fe 100644 --- a/hl/fortran/examples/CMakeTests.cmake +++ b/hl/fortran/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/fortran/test/CMakeTests.cmake b/hl/fortran/test/CMakeTests.cmake index 0edbbb3..e516187 100644 --- a/hl/fortran/test/CMakeTests.cmake +++ b/hl/fortran/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/test/CMakeTests.cmake b/hl/test/CMakeTests.cmake index 70f79b5..c4b0814 100644 --- a/hl/test/CMakeTests.cmake +++ b/hl/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/hl/tools/gif2h5/CMakeTests.cmake b/hl/tools/gif2h5/CMakeTests.cmake index 6c1ac95..61c004e 100644 --- a/hl/tools/gif2h5/CMakeTests.cmake +++ b/hl/tools/gif2h5/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index d9e2338..378a604 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -156,7 +156,26 @@ Bug Fixes since HDF5-1.8.19 Configuration ------------- - - None + - cmake MPI + + CMake implementation for MPI was problematic and would create incorrect + MPI library references in the hdf5 libraries. + + Reworked the CMake MPI code to properly create CMake targets.Also merged + the latest CMake FindMPI.cmake changes to the local copy. This is necessary + until HDF changes the CMake minimum to 3.9 or greater. + + (ADB - 2017/11/02, HDFFV-10321) + + - cmake + + Too many commands for POST_BUILD step caused command line to be + too big on windows. + + Changed foreach of copy command to use a custom command with the + use of the HDFTEST_COPY_FILE macro. + + (ADB - 2017/07/12, HDFFV-10254) Library diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d343208..a6f7ddc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -694,12 +694,12 @@ set_source_files_properties (${HDF5_BINARY_DIR}/H5overflow.h GENERATED) add_library (${HDF5_LIB_TARGET} STATIC ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_LIB_TARGET} ${LINK_LIBS}) +target_link_libraries (${HDF5_LIB_TARGET} PUBLIC ${LINK_LIBS}) if (NOT WIN32) - target_link_libraries (${HDF5_LIB_TARGET} dl) + target_link_libraries (${HDF5_LIB_TARGET} PUBLIC dl) endif () if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_link_libraries (${HDF5_LIB_TARGET} ${MPI_C_LIBRARIES}) + target_include_directories (${HDF5_LIB_TARGET} PUBLIC ${MPI_C_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT ${HDF5_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_LIB_TARGET} ${HDF5_LIB_NAME} STATIC) @@ -720,12 +720,12 @@ set (install_targets ${HDF5_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_LIBSH_TARGET} SHARED ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_LIBSH_TARGET} ${LINK_SHARED_LIBS}) + target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC ${LINK_SHARED_LIBS}) if (NOT WIN32) - target_link_libraries (${HDF5_LIBSH_TARGET} dl) + target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC dl) endif () if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_link_libraries (${HDF5_LIBSH_TARGET} ${MPI_C_LIBRARIES}) + target_include_directories (${HDF5_LIBSH_TARGET} PUBLIC ${MPI_C_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_LIBSH_TARGET} ${HDF5_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) @@ -740,7 +740,7 @@ if (BUILD_SHARED_LIBS) APPEND PROPERTY COMPILE_DEFINITIONS "H5_HAVE_THREADSAFE" ) - target_link_libraries (${HDF5_LIBSH_TARGET} Threads::Threads) + target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC Threads::Threads) endif () if (HDF5_ENABLE_DEBUG_APIS) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 29857e5..612d13d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -74,7 +74,7 @@ endif () file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/testdir2") #----------------------------------------------------------------------------- - # Define Test Library Sources + # Define Plugin Test Sources #----------------------------------------------------------------------------- set (TEST_PLUGIN_LIBS dynlib1 diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index 8e2c48b..85a49fc 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## @@ -345,7 +345,7 @@ add_test (NAME H5TEST-clear-objects ) foreach (test ${H5_TESTS}) - if (${test} STREQUAL "big" AND CYGWIN) + if ("${test}" STREQUAL "big" AND CYGWIN) add_test (NAME H5TEST-${test} COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${test}" ) @@ -376,7 +376,7 @@ if (BUILD_SHARED_LIBS AND TEST_SHARED_PROGRAMS) ) foreach (test ${H5_TESTS}) - if (${test} STREQUAL "big" AND CYGWIN) + if ("${test}" STREQUAL "big" AND CYGWIN) add_test (NAME H5TEST-shared-${test} COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${test}-shared" ) @@ -789,8 +789,8 @@ if (HDF5_TEST_VFD) # Windows only macro macro (CHECK_VFD_TEST vfdtest vfdname resultcode) - if (${vfdtest} STREQUAL "flush1" OR ${vfdtest} STREQUAL "flush2") - if (${vfdname} STREQUAL "multi" OR ${vfdname} STREQUAL "split") + if ("${vfdtest}" STREQUAL "flush1" OR "${vfdtest}" STREQUAL "flush2") + if ("${vfdname}" STREQUAL "multi" OR "${vfdname}" STREQUAL "split") if (NOT BUILD_SHARED_LIBS AND NOT CMAKE_BUILD_TYPE MATCHES Debug) add_test (NAME VFD-${vfdname}-${vfdtest} COMMAND "${CMAKE_COMMAND}" @@ -879,7 +879,7 @@ if (HDF5_TEST_VFD) ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname};HDF5TestExpress=${HDF_TEST_EXPRESS}" WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname} ) - if (BUILD_SHARED_LIBS AND TEST_SHARED_PROGRAMS AND NOT ${vfdtest} STREQUAL "cache") + if (BUILD_SHARED_LIBS AND TEST_SHARED_PROGRAMS AND NOT "${vfdtest}" STREQUAL "cache") add_test (NAME VFD-${vfdname}-${vfdtest}-shared COMMAND "${CMAKE_COMMAND}" -D "TEST_PROGRAM=$" diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 5655bb0..0be5961 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -29,14 +29,14 @@ set (testphdf5_SRCS add_executable (testphdf5 ${testphdf5_SRCS}) TARGET_NAMING (testphdf5 STATIC) TARGET_C_PROPERTIES (testphdf5 STATIC " " " ") -target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_LIBS}) +target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (testphdf5 PROPERTIES FOLDER test/par) MACRO (ADD_H5P_EXE file) add_executable (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") - target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_LIBS}) + target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (${file} PROPERTIES FOLDER test/par) ENDMACRO (ADD_H5P_EXE file) diff --git a/testpar/CMakeTests.cmake b/testpar/CMakeTests.cmake index 6612b7f..87470f3 100644 --- a/testpar/CMakeTests.cmake +++ b/testpar/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## @@ -16,10 +16,10 @@ ############################################################################## ############################################################################## -add_test (NAME TEST_PAR_testphdf5 COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) +add_test (NAME TEST_PAR_testphdf5 COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) foreach (testp ${H5P_TESTS}) - add_test (NAME TEST_PAR_${testp} COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) + add_test (NAME TEST_PAR_${testp} COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) endforeach () # The following will only be correct on windows shared diff --git a/tools/h5diff/CMakeTests.cmake b/tools/h5diff/CMakeTests.cmake index caf1298..14fc534 100644 --- a/tools/h5diff/CMakeTests.cmake +++ b/tools/h5diff/CMakeTests.cmake @@ -412,7 +412,7 @@ macro (ADD_PH5_TEST resultfile resultcode) # If using memchecker add tests without using scripts if (HDF5_ENABLE_USING_MEMCHECKER) - add_test (NAME PH5DIFF-${resultfile} COMMAND $ ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} ${ARGN}) + add_test (NAME PH5DIFF-${resultfile} COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS} ${ARGN}) set_tests_properties (PH5DIFF-${resultfile} PROPERTIES WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/PAR/testfiles") if (NOT "${resultcode}" STREQUAL "0") set_tests_properties (PH5DIFF-${resultfile} PROPERTIES WILL_FAIL "true") @@ -435,7 +435,7 @@ add_test ( NAME PH5DIFF-${resultfile} COMMAND "${CMAKE_COMMAND}" - -D "TEST_PROGRAM=${MPIEXEC};${MPIEXEC_PREFLAGS};${MPIEXEC_NUMPROC_FLAG};${MPIEXEC_MAX_NUMPROCS};${MPIEXEC_POSTFLAGS};$" + -D "TEST_PROGRAM=${MPIEXEC_EXECUTABLE};${MPIEXEC_NUMPROC_FLAG};${MPIEXEC_MAX_NUMPROCS};${MPIEXEC_PREFLAGS};$;${MPIEXEC_POSTFLAGS}" -D "TEST_ARGS:STRING=${ARGN}" -D "TEST_FOLDER=${PROJECT_BINARY_DIR}/PAR/testfiles" -D "TEST_OUTPUT=${resultfile}.out" diff --git a/tools/perform/CMakeTests.cmake b/tools/perform/CMakeTests.cmake index 1f67abe..450667a 100644 --- a/tools/perform/CMakeTests.cmake +++ b/tools/perform/CMakeTests.cmake @@ -170,9 +170,9 @@ endif () set_tests_properties (PERFORM_zip_perf PROPERTIES DEPENDS "PERFORM_zip_perf_help;PERFORM_h5perform-clearall-objects") if (H5_HAVE_PARALLEL) - add_test (NAME PERFORM_h5perf COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) + add_test (NAME PERFORM_h5perf COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) if (HDF5_BUILD_PERFORM_STANDALONE) - add_test (NAME PERFORM_h5perf_alone COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $) + add_test (NAME PERFORM_h5perf_alone COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} $ ${MPIEXEC_POSTFLAGS}) endif () endif () -- cgit v0.12 From 21c955c9bdc210015a3e338b9b1f25a2966b11db Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 6 Nov 2017 09:29:24 -0600 Subject: Correct issue number --- release_docs/RELEASE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 378a604..f9dc6e9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -236,7 +236,7 @@ Bug Fixes since HDF5-1.8.19 Added another parameter to the 'UD=' option to set the flag by default to '0' or H5Z_FLAG_MANDATORY, the other choice is '1' or H5Z_FLAG_OPTIONAL. - (ADB - 2017/08/31, HDFFV-10276) + (ADB - 2017/08/31, HDFFV-10269) - h5ls -- cgit v0.12 From caac3b1d10631f62c6fbcc363bc0d0ea29b4ba16 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 13 Nov 2017 14:42:44 -0600 Subject: Changed file path to relative. --- c++/src/H5CppDoc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/src/H5CppDoc.h b/c++/src/H5CppDoc.h index bfab9cd..c922ab5 100644 --- a/c++/src/H5CppDoc.h +++ b/c++/src/H5CppDoc.h @@ -51,7 +51,7 @@ Datatype Interface (H5T) DataType and subclasses \endverbatim * - * This + * This * table provides a map from the C APIs to the C++ member functions. *
* \section install_sec Installation -- cgit v0.12 From b939e38f744f4d9a4d19be60ac1f3602ee2a6e57 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Tue, 14 Nov 2017 15:09:44 -0600 Subject: Fix linking of libs --- CMakeLists.txt | 1 - fortran/src/CMakeLists.txt | 10 ++++++---- src/CMakeLists.txt | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d45c0b6..4f78257 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -401,7 +401,6 @@ option (BUILD_SHARED_LIBS "Build Shared Libraries" ON) set (H5_ENABLE_SHARED_LIB NO) if (BUILD_SHARED_LIBS) set (H5_ENABLE_SHARED_LIB YES) - set (LINK_SHARED_LIBS ${LINK_LIBS}) endif () set (H5_ENABLE_STATIC_LIB YES) set (CMAKE_POSITION_INDEPENDENT_CODE ON) diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 9527bc0..89fc1a5 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -184,7 +184,7 @@ set (f90CStub_C_HDRS add_library (${HDF5_F90_C_LIB_TARGET} STATIC ${f90CStub_C_SRCS} ${f90CStub_C_HDRS}) TARGET_C_PROPERTIES (${HDF5_F90_C_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_F90_C_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_LIBS}) +target_link_libraries (${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIB_TARGET} ${HDF5_F90_C_LIB_NAME} STATIC) set_target_properties (${HDF5_F90_C_LIB_TARGET} PROPERTIES @@ -197,7 +197,7 @@ set (install_targets ${HDF5_F90_C_LIB_TARGET}) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_F90_C_LIBSH_TARGET} SHARED ${f90CStub_C_SRCS} ${f90CStub_C_HDRS}) TARGET_C_PROPERTIES (${HDF5_F90_C_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_F90_C_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ${LINK_SHARED_LIBS}) + target_link_libraries (${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIBSH_TARGET} ${HDF5_F90_C_LIB_NAME} SHARED ${HDF5_F_PACKAGE_SOVERSION}) set_target_properties (${HDF5_F90_C_LIBSH_TARGET} PROPERTIES @@ -291,7 +291,8 @@ set_source_files_properties (${f90_F_SRCS} PROPERTIES LANGUAGE Fortran) add_library (${HDF5_F90_LIB_TARGET} STATIC ${f90_F_SRCS}) set (SHARED_LINK_FLAGS " ") TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_F90_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_Fortran_LIBS}) +target_link_libraries (${HDF5_F90_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET}) +target_link_libraries (${HDF5_F90_LIB_TARGET} PRIVATE ${LINK_Fortran_LIBS}) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_include_directories (${HDF5_F90_LIB_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () @@ -317,7 +318,8 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set (SHARED_LINK_FLAGS "/DLL /DEF:${HDF5_F90_SRC_BINARY_DIR}/hdf5_fortrandll.def") endif () TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIBSH_TARGET} SHARED " " ${SHARED_LINK_FLAGS}) - target_link_libraries (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ${LINK_Fortran_LIBS}) + target_link_libraries (${HDF5_F90_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET}) + target_link_libraries (${HDF5_F90_LIBSH_TARGET} PRIVATE ${LINK_Fortran_LIBS}) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_include_directories (${HDF5_F90_LIBSH_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a6f7ddc..e8b9444 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -694,7 +694,7 @@ set_source_files_properties (${HDF5_BINARY_DIR}/H5overflow.h GENERATED) add_library (${HDF5_LIB_TARGET} STATIC ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_LIB_TARGET} PUBLIC ${LINK_LIBS}) +target_link_libraries (${HDF5_LIB_TARGET} PRIVATE ${LINK_LIBS}) if (NOT WIN32) target_link_libraries (${HDF5_LIB_TARGET} PUBLIC dl) endif () @@ -720,7 +720,7 @@ set (install_targets ${HDF5_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_LIBSH_TARGET} SHARED ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC ${LINK_SHARED_LIBS}) + target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${LINK_LIBS}) if (NOT WIN32) target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC dl) endif () -- cgit v0.12 From e08e4ce6c3b4958e56a772dddf06ac7986e3f1e0 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Tue, 14 Nov 2017 15:33:50 -0600 Subject: HDFFV-10329 - add new jira issue. --- release_docs/RELEASE.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f9dc6e9..68d22e9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -156,6 +156,18 @@ Bug Fixes since HDF5-1.8.19 Configuration ------------- + - cmake + + The hdf5 library used shared szip and zlib, which needlessly required + applications to link with the same szip and zlib libraries. + + Changed the target_link_libraries commands to use the static libs. + Removed improper link duplication of szip and zlib. + Adjusted the link dependencies and the link interface values of + the target_link_libraries commands. + + (ADB - 2017/11/14, HDFFV-10329) + - cmake MPI CMake implementation for MPI was problematic and would create incorrect -- cgit v0.12 From 1b2c2ca9a6a7d7e1fcd5c3302e203f2e2dabf0af Mon Sep 17 00:00:00 2001 From: Neil Fortner Date: Fri, 10 Nov 2017 16:37:40 -0600 Subject: Fix HDFFV-10274. When deleting all (or almost all) of the messages in an object header chunk, where the total amount deleted was greater than 64K, an error would occur due to an off by one error in the code that handled that case. Fixed this and added a test case. --- src/H5Oalloc.c | 15 ++++----- test/tattr.c | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 106 insertions(+), 7 deletions(-) diff --git a/src/H5Oalloc.c b/src/H5Oalloc.c index c81bdf9..25052e7 100644 --- a/src/H5Oalloc.c +++ b/src/H5Oalloc.c @@ -2200,16 +2200,17 @@ H5O_alloc_shrink_chunk(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned chunkno) oh->nmesgs++; /* Initialize new null message to make the chunk large enough */ - oh->mesg[oh->nmesgs].type = H5O_MSG_NULL; - oh->mesg[oh->nmesgs].dirty = TRUE; - oh->mesg[oh->nmesgs].native = NULL; - oh->mesg[oh->nmesgs].raw = old_image + new_size + sizeof_msghdr - sizeof_chksum; - oh->mesg[oh->nmesgs].raw_size = MAX(H5O_ALIGN_OH(oh, min_chunk_size - total_msg_size), + curr_msg = &oh->mesg[oh->nmesgs - 1]; + curr_msg->type = H5O_MSG_NULL; + curr_msg->dirty = TRUE; + curr_msg->native = NULL; + curr_msg->raw = old_image + new_size + sizeof_msghdr - sizeof_chksum; + curr_msg->raw_size = MAX(H5O_ALIGN_OH(oh, min_chunk_size - total_msg_size), sizeof_msghdr) - sizeof_msghdr; - oh->mesg[oh->nmesgs].chunkno = chunkno; + curr_msg->chunkno = chunkno; /* update the new chunk size */ - new_size += oh->mesg[oh->nmesgs].raw_size + sizeof_msghdr; + new_size += curr_msg->raw_size + sizeof_msghdr; } /* end if */ /* Check for changing the chunk #0 data size enough to need adjusting the flags */ diff --git a/test/tattr.c b/test/tattr.c index 283874a..73962c5 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10552,6 +10552,102 @@ test_attr_bug8(hid_t fcpl, hid_t fapl) /**************************************************************** ** +** test_attr_bug9(): Test basic H5A (attribute) code. +** (Really tests object header code). +** Tests adding several large attributes to an object until +** they convert to dense storage. The total size of all +** attributes is larger than 64K, causing the internal +** object header code to, after merging the deleted +** messages in to a NULL message, shrink the object header +** chunk. Do this twice: once with only attributes in the +** object header chunk and once with a (small) soft link in +** the chunk as well. In both cases, the shrunk chunk will +** initally be too small and a new NULL message must be +** created. +** +****************************************************************/ +static void +test_attr_bug9(hid_t fcpl, hid_t fapl) +{ + hid_t fid; /* File ID */ + hid_t gid; /* Group ID */ + hid_t aid; /* Attribute ID */ + hid_t sid; /* Dataspace ID */ + hsize_t dims[1] = {32768}; /* Attribute dimensions */ + int create_link; /* Whether to create a soft link */ + unsigned max_compact; /* Setting from fcpl */ + unsigned min_dense; /* Setting from fcpl */ + char aname[11]; /* Attribute name */ + unsigned i; /* Local index variable */ + herr_t ret; /* Generic return status */ + + /* Output message about test being performed */ + MESSAGE(5, ("Testing that attributes can always be added to named datatypes\n")); + + /* Create dataspace */ + sid = H5Screate_simple(1, dims, NULL); + CHECK(sid, FAIL, "H5Screate_simple"); + + /* Obtain attribute phase change settings */ + ret = H5Pget_attr_phase_change(fcpl, &max_compact, &min_dense); + CHECK(ret, FAIL, "H5Pget_attr_phase_change"); + + /* Run with and without the soft link */ + for(create_link = 0; create_link < 2; create_link++) { + /* Create file */ + fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, fcpl, fapl); + CHECK(fid, FAIL, "H5Fcreate"); + + /* Create second group */ + gid = H5Gcreate2(fid, "group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + CHECK(gid, FAIL, "H5Gcreate2"); + + /* Close second group */ + ret = H5Gclose(gid); + CHECK(ret, FAIL, "H5Gclose"); + + /* Open root group */ + gid = H5Gopen2(fid, "/", H5P_DEFAULT); + CHECK(gid, FAIL, "H5Gopen2"); + + /* Create enough attributes to cause a change to dense storage */ + for(i = 0; i < max_compact + 1; i++) { + /* Create attribute */ + snprintf(aname, sizeof(aname), "%u", i); + aid = H5Acreate2(gid, aname, H5T_NATIVE_CHAR, sid, H5P_DEFAULT, H5P_DEFAULT); + CHECK(aid, FAIL, "H5Acreate2"); + + /* Close attribute */ + ret = H5Aclose(aid); + CHECK(ret, FAIL, "H5Aclose"); + + /* Create enough soft links that exactly one goes into chunk 1 if + * requested */ + if(i == 0 && create_link) { + ret = H5Lcreate_soft("b", gid, "a", H5P_DEFAULT, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Lcreate_soft"); + ret = H5Lcreate_soft("d", gid, "c", H5P_DEFAULT, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Lcreate_soft"); + ret = H5Lcreate_soft("f", gid, "e", H5P_DEFAULT, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Lcreate_soft"); + } /* end if */ + } /* end for */ + + /* Close IDs */ + ret = H5Gclose(gid); + CHECK(ret, FAIL, "H5Gclose"); + + ret = H5Fclose(fid); + CHECK(ret, FAIL, "H5Fclose"); + } /* end for */ + + /* Close dataspace */ + ret = H5Sclose(sid); + CHECK(ret, FAIL, "H5Sclose"); +} /* test_attr_bug9() */ + +/**************************************************************** +** ** test_attr(): Main H5A (attribute) testing routine. ** ****************************************************************/ @@ -10698,6 +10794,7 @@ test_attr(void) test_attr_bug6(my_fcpl, my_fapl); /* Test reading empty attribute */ test_attr_bug7(my_fcpl, my_fapl); /* Test creating and deleting large attributes in ohdr chunk 0 */ test_attr_bug8(my_fcpl, my_fapl); /* Test attribute expanding object header with undecoded messages */ + test_attr_bug9(my_fcpl, my_fapl); /* Test large attributes converting to dense storage */ } /* end for */ } /* end if */ else { @@ -10726,6 +10823,7 @@ test_attr(void) * header format and in fact fails if used with the old format, due * to the attributes being larger than 64K */ test_attr_bug8(fcpl, my_fapl); /* Test attribute expanding object header with undecoded messages */ + test_attr_bug9(fcpl, my_fapl); /* Test large attributes converting to dense storage */ } /* end else */ } /* end for */ -- cgit v0.12 From 97bc393449f3fe02c5992872ab2842e12f611ef0 Mon Sep 17 00:00:00 2001 From: Neil Fortner Date: Mon, 13 Nov 2017 13:43:32 -0600 Subject: Initialize hid_t variables in test_Attr_bug9. --- test/tattr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tattr.c b/test/tattr.c index 73962c5..85e82b0 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10569,10 +10569,10 @@ test_attr_bug8(hid_t fcpl, hid_t fapl) static void test_attr_bug9(hid_t fcpl, hid_t fapl) { - hid_t fid; /* File ID */ - hid_t gid; /* Group ID */ - hid_t aid; /* Attribute ID */ - hid_t sid; /* Dataspace ID */ + hid_t fid = -1; /* File ID */ + hid_t gid = -1; /* Group ID */ + hid_t aid = -1; /* Attribute ID */ + hid_t sid = -1; /* Dataspace ID */ hsize_t dims[1] = {32768}; /* Attribute dimensions */ int create_link; /* Whether to create a soft link */ unsigned max_compact; /* Setting from fcpl */ -- cgit v0.12 From f7a7d0a00613cba997212fa8032091629a678797 Mon Sep 17 00:00:00 2001 From: Neil Fortner Date: Tue, 14 Nov 2017 16:24:44 -0600 Subject: Add RELEASE.txt note for HDFFV-10274. --- release_docs/RELEASE.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f9dc6e9..c332dc3 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -180,6 +180,14 @@ Bug Fixes since HDF5-1.8.19 Library ------- + - Fix rare object header corruption bug + + In certain cases, such as when converting large attributes to dense + storage, an error could occur which would either fail an assertion or + cause file corruption. Fixed and added test. + + (NAF - 2017/11/14, HDFFV-10274) + - H5Zfilter_avail in H5Z.c The public function checked for plugins, while the private -- cgit v0.12 From d401d5bd10312bb1f14d3ab38e375ace8f33fdec Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 15 Nov 2017 17:12:45 -0600 Subject: HDFFV-10328 -Allocate H5Zclass structure from dlopened plugin. --- CMakeFilters.cmake | 16 +- CMakeLists.txt | 2 + src/CMakeLists.txt | 4 +- src/H5PL.c | 41 +- src/H5Z.c | 1363 ++++++++++++++++++++++++--------------------------- test/CMakeLists.txt | 4 +- test/dsets.c | 1232 +++++++++++++++++++++++----------------------- 7 files changed, 1298 insertions(+), 1364 deletions(-) diff --git a/CMakeFilters.cmake b/CMakeFilters.cmake index 804b16b..71dabb1 100644 --- a/CMakeFilters.cmake +++ b/CMakeFilters.cmake @@ -45,8 +45,8 @@ if (HDF5_ENABLE_Z_LIB_SUPPORT) if (NOT ZLIB_FOUND) find_package (ZLIB) # Legacy find if (ZLIB_FOUND) - set (LINK_LIBS ${LINK_LIBS} ${ZLIB_LIBRARIES}) - set (LINK_SHARED_LIBS ${LINK_SHARED_LIBS} ${ZLIB_LIBRARIES}) + set (LINK_COMP_LIBS ${LINK_COMP_LIBS} ${ZLIB_LIBRARIES}) + set (LINK_COMP_SHARED_LIBS ${LINK_COMP_SHARED_LIBS} ${ZLIB_LIBRARIES}) endif () endif () endif () @@ -78,9 +78,9 @@ if (HDF5_ENABLE_Z_LIB_SUPPORT) set (EXTERNAL_FILTERS "${EXTERNAL_FILTERS} DEFLATE") endif () if (BUILD_SHARED_LIBS) - set (LINK_SHARED_LIBS ${LINK_SHARED_LIBS} ${ZLIB_SHARED_LIBRARY}) + set (LINK_COMP_SHARED_LIBS ${LINK_COMP_SHARED_LIBS} ${ZLIB_SHARED_LIBRARY}) endif () - set (LINK_LIBS ${LINK_LIBS} ${ZLIB_STATIC_LIBRARY}) + set (LINK_COMP_LIBS ${LINK_COMP_LIBS} ${ZLIB_STATIC_LIBRARY}) INCLUDE_DIRECTORIES (${ZLIB_INCLUDE_DIRS}) message (STATUS "Filter ZLIB is ON") endif () @@ -96,8 +96,8 @@ if (HDF5_ENABLE_SZIP_SUPPORT) if (NOT SZIP_FOUND) find_package (SZIP) # Legacy find if (SZIP_FOUND) - set (LINK_LIBS ${LINK_LIBS} ${SZIP_LIBRARIES}) - set (LINK_SHARED_LIBS ${LINK_SHARED_LIBS} ${SZIP_LIBRARIES}) + set (LINK_COMP_LIBS ${LINK_COMP_LIBS} ${SZIP_LIBRARIES}) + set (LINK_COMP_SHARED_LIBS ${LINK_COMP_SHARED_LIBS} ${SZIP_LIBRARIES}) endif () endif () endif () @@ -119,9 +119,9 @@ if (HDF5_ENABLE_SZIP_SUPPORT) endif () endif () if (BUILD_SHARED_LIBS) - set (LINK_SHARED_LIBS ${LINK_SHARED_LIBS} ${SZIP_SHARED_LIBRARY}) + set (LINK_COMP_SHARED_LIBS ${LINK_COMP_SHARED_LIBS} ${SZIP_SHARED_LIBRARY}) endif () - set (LINK_LIBS ${LINK_LIBS} ${SZIP_STATIC_LIBRARY}) + set (LINK_COMP_LIBS ${LINK_COMP_LIBS} ${SZIP_STATIC_LIBRARY}) INCLUDE_DIRECTORIES (${SZIP_INCLUDE_DIRS}) message (STATUS "Filter SZIP is ON") if (H5_HAVE_FILTER_SZIP) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f78257..02bb516 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -575,6 +575,8 @@ include (UserMacros.cmake) #----------------------------------------------------------------------------- # Include filter (zlib, szip, etc.) macros #----------------------------------------------------------------------------- +set (LINK_COMP_LIBS) +set (LINK_COMP_SHARED_LIBS) include (CMakeFilters.cmake) #----------------------------------------------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e8b9444..a825958 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -694,7 +694,7 @@ set_source_files_properties (${HDF5_BINARY_DIR}/H5overflow.h GENERATED) add_library (${HDF5_LIB_TARGET} STATIC ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_LIB_TARGET} PRIVATE ${LINK_LIBS}) +target_link_libraries (${HDF5_LIB_TARGET} PRIVATE ${LINK_LIBS} ${LINK_COMP_LIBS}) if (NOT WIN32) target_link_libraries (${HDF5_LIB_TARGET} PUBLIC dl) endif () @@ -720,7 +720,7 @@ set (install_targets ${HDF5_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_LIBSH_TARGET} SHARED ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS}) TARGET_C_PROPERTIES (${HDF5_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${LINK_LIBS}) + target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${LINK_LIBS} ${LINK_COMP_LIBS}) if (NOT WIN32) target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC dl) endif () diff --git a/src/H5PL.c b/src/H5PL.c index 5d750fa..3ed63a7 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -881,6 +881,7 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) } /* end if */ else { const H5Z_class2_t *plugin_info; + H5Z_class2_t *plugin_copy = NULL; /* Invoke H5PLget_plugin_info to verify this is the right library we are looking for. * Move on if it isn't. @@ -910,8 +911,22 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) (H5PL_table_g[H5PL_table_used_g]).pl_id = plugin_info->id; H5PL_table_used_g++; + /* allocate local copy of plugin info */ + if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) + HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") + plugin_copy->version = plugin_info->version; + plugin_copy->id = plugin_info->id; + plugin_copy->encoder_present = plugin_info->encoder_present; + plugin_copy->decoder_present = plugin_info->decoder_present; + plugin_copy->can_apply = plugin_info->can_apply; + plugin_copy->set_local = plugin_info->set_local; + plugin_copy->filter = plugin_info->filter; + /* copy the user's string into the property */ + if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) + HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") + /* Set the plugin info to return */ - *pl_info = (const void *)plugin_info; + *pl_info = (const void *)plugin_copy; /* Indicate success */ ret_value = TRUE; @@ -923,6 +938,12 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) } /* end else */ done: + /* unallocate local copy of plugin info on failure */ + if (FAIL == ret_value && *pl_info) { + if (((H5Z_class2_t *)(*pl_info))->name) + ((H5Z_class2_t *)(*pl_info))->name = (char *)H5MM_xfree(((H5Z_class2_t *)(*pl_info))->name); + *pl_info = (H5Z_class2_t *)H5MM_xfree(*pl_info); + } FUNC_LEAVE_NOAPI(ret_value) } /* end H5PL__open() */ @@ -957,6 +978,7 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if((plugin_type == (H5PL_table_g[i]).pl_type) && (type_id == (H5PL_table_g[i]).pl_id)) { H5PL_get_plugin_info_t get_plugin_info; const H5Z_class2_t *plugin_info; + H5Z_class2_t *plugin_copy = NULL; if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PLget_plugin_info"))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function for H5PLget_plugin_info") @@ -964,7 +986,22 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if(NULL == (plugin_info = (const H5Z_class2_t *)(*get_plugin_info)())) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get plugin info") - *info = plugin_info; + if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) + HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") + plugin_copy->version = plugin_info->version; + plugin_copy->id = plugin_info->id; + plugin_copy->encoder_present = plugin_info->encoder_present; + plugin_copy->decoder_present = plugin_info->decoder_present; + plugin_copy->can_apply = plugin_info->can_apply; + plugin_copy->set_local = plugin_info->set_local; + plugin_copy->filter = plugin_info->filter; + /* copy the user's string into the property */ + if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) + HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") + + /* Set the plugin info to return */ + *info = (const void *)plugin_copy; + HGOTO_DONE(TRUE) } /* end if */ } /* end for */ diff --git a/src/H5Z.c b/src/H5Z.c index 0579c62..0cab303 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -11,23 +11,23 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -#define H5Z_PACKAGE /*suppress error about including H5Zpkg */ +#define H5Z_PACKAGE /* suppress error about including H5Zpkg */ /* Interface initialization */ -#define H5_INTERFACE_INIT_FUNC H5Z_init_interface +#define H5_INTERFACE_INIT_FUNC H5Z_init_interface -#include "H5private.h" /* Generic Functions */ -#include "H5Dprivate.h" /* Dataset functions */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5Fprivate.h" /* File */ -#include "H5Iprivate.h" /* IDs */ -#include "H5MMprivate.h" /* Memory management */ -#include "H5Oprivate.h" /* Object headers */ -#include "H5Pprivate.h" /* Property lists */ -#include "H5PLprivate.h" /* Plugins */ -#include "H5Sprivate.h" /* Dataspace functions */ -#include "H5Zpkg.h" /* Data filters */ +#include "H5private.h" /* Generic Functions */ +#include "H5Dprivate.h" /* Dataset functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Fprivate.h" /* File */ +#include "H5Iprivate.h" /* IDs */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5Oprivate.h" /* Object headers */ +#include "H5Pprivate.h" /* Property lists */ +#include "H5PLprivate.h" /* Plugins */ +#include "H5Sprivate.h" /* Dataspace functions */ +#include "H5Zpkg.h" /* Data filters */ #ifdef H5_HAVE_SZLIB_H # include "szlib.h" @@ -37,15 +37,15 @@ #ifdef H5Z_DEBUG typedef struct H5Z_stats_t { struct { - hsize_t total; /*total number of bytes processed */ - hsize_t errors; /*bytes of total attributable to errors */ - H5_timer_t timer; /*execution time including errors */ - } stats[2]; /*0=output, 1=input */ + hsize_t total; /* total number of bytes processed */ + hsize_t errors; /* bytes of total attributable to errors */ + H5_timer_t timer; /* execution time including errors */ + } stats[2]; /* 0=output, 1=input */ } H5Z_stats_t; #endif /* H5Z_DEBUG */ typedef struct H5Z_object_t { - H5Z_filter_t filter_id; /* ID of the filter we're looking for */ + H5Z_filter_t filter_id; /* ID of the filter we're looking for */ htri_t found; /* Whether we find an object using the filter */ } H5Z_object_t; @@ -56,11 +56,11 @@ typedef enum { } H5Z_prelude_type_t; /* Local variables */ -static size_t H5Z_table_alloc_g = 0; -static size_t H5Z_table_used_g = 0; -static H5Z_class2_t *H5Z_table_g = NULL; +static size_t H5Z_table_alloc_g = 0; +static size_t H5Z_table_used_g = 0; +static H5Z_class2_t *H5Z_table_g = NULL; #ifdef H5Z_DEBUG -static H5Z_stats_t *H5Z_stat_table_g = NULL; +static H5Z_stats_t *H5Z_stat_table_g = NULL; #endif /* H5Z_DEBUG */ /* Local functions */ @@ -71,44 +71,38 @@ static int H5Z__flush_file_cb(void *obj_ptr, hid_t obj_id, void *key); /*------------------------------------------------------------------------- - * Function: H5Z_init_interface + * Function: H5Z_init_interface * - * Purpose: Initializes the data filter layer. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Robb Matzke - * Thursday, April 16, 1998 - * - * Modifications: + * Purpose: Initializes the data filter layer. * + * Return: Non-negative on success/Negative on failure *------------------------------------------------------------------------- */ static herr_t H5Z_init_interface (void) { - herr_t ret_value=SUCCEED; /* Return value */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT /* Internal filters */ - if (H5Z_register (H5Z_SHUFFLE)<0) + if (H5Z_register (H5Z_SHUFFLE) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register shuffle filter") - if (H5Z_register (H5Z_FLETCHER32)<0) + if (H5Z_register (H5Z_FLETCHER32) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register fletcher32 filter") - if (H5Z_register (H5Z_NBIT)<0) + if (H5Z_register (H5Z_NBIT) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register nbit filter") - if (H5Z_register (H5Z_SCALEOFFSET)<0) + if (H5Z_register (H5Z_SCALEOFFSET) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register scaleoffset filter") /* External filters */ #ifdef H5_HAVE_FILTER_DEFLATE - if (H5Z_register (H5Z_DEFLATE)<0) + if (H5Z_register (H5Z_DEFLATE) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register deflate filter") #endif /* H5_HAVE_FILTER_DEFLATE */ #ifdef H5_HAVE_FILTER_SZIP H5Z_SZIP->encoder_present = SZ_encoder_enabled(); - if (H5Z_register (H5Z_SZIP)<0) + if (H5Z_register (H5Z_SZIP) < 0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register szip filter") #endif /* H5_HAVE_FILTER_SZIP */ @@ -118,84 +112,85 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_term_interface - * - * Purpose: Terminate the H5Z layer. + * Function: H5Z_term_interface * - * Return: void - * - * Programmer: Robb Matzke - * Thursday, April 16, 1998 - * - * Modifications: + * Purpose: Terminate the H5Z layer. * + * Return: void *------------------------------------------------------------------------- */ int H5Z_term_interface(void) { + size_t i; #ifdef H5Z_DEBUG - size_t i; - int dir, nprint=0; - char comment[16], bandwidth[32]; + int dir; + int nprint = 0; + char comment[16]; + char bandwidth[32]; #endif - if(H5_interface_initialize_g) { + if (H5_interface_initialize_g) { #ifdef H5Z_DEBUG - if (H5DEBUG(Z)) { - for (i=0; i", comment, - H5Z_stat_table_g[i].stats[dir].total, - H5Z_stat_table_g[i].stats[dir].errors, - H5Z_stat_table_g[i].stats[dir].timer.utime, - H5Z_stat_table_g[i].stats[dir].timer.stime, - H5Z_stat_table_g[i].stats[dir].timer.etime, - bandwidth); - } - } - } + if (H5DEBUG(Z)) { + for (i = 0; i < H5Z_table_used_g; i++) { + for (dir = 0; dir < 2; dir++) { + if (0 == H5Z_stat_table_g[i].stats[dir].total) continue; + + if (0 == nprint++) { + /* Print column headers */ + HDfprintf (H5DEBUG(Z), "H5Z: filter statistics " + "accumulated over life of library:\n"); + HDfprintf (H5DEBUG(Z), + " %-16s %10s %10s %8s %8s %8s %10s\n", + "Filter", "Total", "Errors", "User", + "System", "Elapsed", "Bandwidth"); + HDfprintf (H5DEBUG(Z), + " %-16s %10s %10s %8s %8s %8s %10s\n", + "------", "-----", "------", "----", + "------", "-------", "---------"); + } + + /* Truncate the comment to fit in the field */ + HDstrncpy (comment, H5Z_table_g[i].name, sizeof comment); + comment[sizeof(comment)-1] = '\0'; + + /* + * Format bandwidth to have four significant digits and + * units of `B/s', `kB/s', `MB/s', `GB/s', or `TB/s' or + * the word `Inf' if the elapsed time is zero. + */ + H5_bandwidth (bandwidth, + (double)(H5Z_stat_table_g[i].stats[dir].total), + H5Z_stat_table_g[i].stats[dir].timer.etime); + + /* Print the statistics */ + HDfprintf (H5DEBUG(Z), + " %s%-15s %10Hd %10Hd %8.2f %8.2f %8.2f " + "%10s\n", dir?"<":">", comment, + H5Z_stat_table_g[i].stats[dir].total, + H5Z_stat_table_g[i].stats[dir].errors, + H5Z_stat_table_g[i].stats[dir].timer.utime, + H5Z_stat_table_g[i].stats[dir].timer.stime, + H5Z_stat_table_g[i].stats[dir].timer.etime, + bandwidth); + } + } + } #endif /* H5Z_DEBUG */ - /* Free the table of filters */ - H5Z_table_g = (H5Z_class2_t *)H5MM_xfree(H5Z_table_g); + for (i = 0; i < H5Z_table_used_g; i++) { + H5Z_class2_t *cls = (H5Z_class2_t *)(H5Z_table_g+i); + /* deallocate plugin info name */ + if (cls->name) + cls->name = (char *)H5MM_xfree(cls->name); + } + /* Free the table of filters */ + H5Z_table_g = (H5Z_class2_t *)H5MM_xfree(H5Z_table_g); #ifdef H5Z_DEBUG - H5Z_stat_table_g = (H5Z_stats_t *)H5MM_xfree(H5Z_stat_table_g); + H5Z_stat_table_g = (H5Z_stats_t *)H5MM_xfree(H5Z_stat_table_g); #endif /* H5Z_DEBUG */ - H5Z_table_used_g = H5Z_table_alloc_g = 0; - H5_interface_initialize_g = 0; + H5Z_table_used_g = H5Z_table_alloc_g = 0; + H5_interface_initialize_g = 0; } /* end if */ return(0); @@ -203,34 +198,26 @@ H5Z_term_interface(void) /*------------------------------------------------------------------------- - * Function: H5Zregister - * - * Purpose: This function registers new filter. + * Function: H5Zregister * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Robb Matzke - * Thursday, April 16, 1998 - * - * Modifications: - * Changed to pass in H5Z_class_t struct - * Quincey Koziol, April 5, 2003 + * Purpose: This function registers new filter. * + * Return: Non-negative on success/Negative on failure *------------------------------------------------------------------------- */ herr_t H5Zregister(const void *cls) { const H5Z_class2_t *cls_real = (const H5Z_class2_t *) cls; /* "Real" class pointer */ - H5Z_class2_t cls_new; /* Translated class struct */ - herr_t ret_value=SUCCEED; /* Return value */ + H5Z_class2_t cls_new; /* Translated class struct */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE1("e", "*x", cls); /* Check args */ if (cls_real==NULL) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter class") + HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter class") /* Check H5Z_class_t version number; this is where a function to convert * from an outdated version should be called. @@ -242,7 +229,7 @@ H5Zregister(const void *cls) * at least 256, there should be no overlap and the version of the struct * can be determined by the value of the first field. */ - if(cls_real->version != H5Z_CLASS_T_VERS) { + if (cls_real->version != H5Z_CLASS_T_VERS) { #ifndef H5_NO_DEPRECATED_SYMBOLS /* Assume it is an old "H5Z_class1_t" instead */ const H5Z_class1_t *cls_old = (const H5Z_class1_t *) cls; @@ -262,20 +249,20 @@ H5Zregister(const void *cls) #else /* H5_NO_DEPRECATED_SYMBOLS */ /* Deprecated symbols not allowed, throw an error */ - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid H5Z_class_t version number"); + HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid H5Z_class_t version number"); #endif /* H5_NO_DEPRECATED_SYMBOLS */ } /* end if */ - if (cls_real->id<0 || cls_real->id>H5Z_FILTER_MAX) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") - if (cls_real->idfilter==NULL) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no filter function specified") + if (cls_real->id < 0 || cls_real->id > H5Z_FILTER_MAX) + HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") + if (cls_real->id < H5Z_FILTER_RESERVED) + HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "unable to modify predefined filters") + if (cls_real->filter == NULL) + HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "no filter function specified") /* Do it */ - if (H5Z_register (cls_real)<0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") + if (H5Z_register (cls_real) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") done: FUNC_LEAVE_API(ret_value) @@ -283,66 +270,67 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_register + * Function: H5Z_register * - * Purpose: Same as the public version except this one allows filters - * to be set for predefined method numbers id >= 0 && cls->id <= H5Z_FILTER_MAX); + HDassert (cls); + HDassert (cls->id >= 0 && cls->id <= H5Z_FILTER_MAX); /* Is the filter already registered? */ - for(i = 0; i < H5Z_table_used_g; i++) - if(H5Z_table_g[i].id == cls->id) + for (i = 0; i < H5Z_table_used_g; i++) + if (H5Z_table_g[i].id == cls->id) break; /* Filter not already registered */ - if(i >= H5Z_table_used_g) { - if(H5Z_table_used_g >= H5Z_table_alloc_g) { - size_t n = MAX(H5Z_MAX_NFILTERS, 2*H5Z_table_alloc_g); - H5Z_class2_t *table = (H5Z_class2_t *)H5MM_realloc(H5Z_table_g, n * sizeof(H5Z_class2_t)); + if (i >= H5Z_table_used_g) { + if (H5Z_table_used_g >= H5Z_table_alloc_g) { + size_t n = MAX(H5Z_MAX_NFILTERS, 2 * H5Z_table_alloc_g); + H5Z_class2_t *table = (H5Z_class2_t *)H5MM_realloc(H5Z_table_g, n * sizeof(H5Z_class2_t)); #ifdef H5Z_DEBUG - H5Z_stats_t *stat_table = (H5Z_stats_t *)H5MM_realloc(H5Z_stat_table_g, n * sizeof(H5Z_stats_t)); + H5Z_stats_t *stat_table = (H5Z_stats_t *)H5MM_realloc(H5Z_stat_table_g, n * sizeof(H5Z_stats_t)); #endif /* H5Z_DEBUG */ - if(!table) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter table") - H5Z_table_g = table; + if (!table) + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter table") + H5Z_table_g = table; #ifdef H5Z_DEBUG - if(!stat_table) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter statistics table") - H5Z_stat_table_g = stat_table; + if (!stat_table) + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter statistics table") + H5Z_stat_table_g = stat_table; #endif /* H5Z_DEBUG */ - H5Z_table_alloc_g = n; - } /* end if */ + H5Z_table_alloc_g = n; + } /* end if */ - /* Initialize */ - i = H5Z_table_used_g++; - HDmemcpy(H5Z_table_g+i, cls, sizeof(H5Z_class2_t)); + /* Initialize */ + i = H5Z_table_used_g++; + HDmemcpy (H5Z_table_g+i, cls, sizeof(H5Z_class2_t)); + H5Z_table_g[i].name = (char *)H5MM_xstrdup(cls->name); #ifdef H5Z_DEBUG - HDmemset(H5Z_stat_table_g+i, 0, sizeof(H5Z_stats_t)); + HDmemset (H5Z_stat_table_g+i, 0, sizeof(H5Z_stats_t)); #endif /* H5Z_DEBUG */ } /* end if */ /* Filter already registered */ else { - /* Replace old contents */ - HDmemcpy(H5Z_table_g+i, cls, sizeof(H5Z_class2_t)); + H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+i) + /* deallocate plugin info name */ + if (old_cls->name) + old_cls->name = (char *)H5MM_xfree(old_cls->name); + /* Replace old contents */ + HDmemcpy (old_cls, cls, sizeof(H5Z_class2_t)); + old_cls->name = (char *)H5MM_xstrdup(cls->name); } /* end else */ done: @@ -351,34 +339,31 @@ done: /*------------------------------------------------------------------------- - * Function: H5Zunregister - * - * Purpose: This function unregisters a filter. - * - * Return: Non-negative on success/Negative on failure + * Function: H5Zunregister * - * Programmer: Quincey Koziol - * Thursday, November 14, 2002 + * Purpose: This function unregisters a filter. * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Zunregister(H5Z_filter_t id) { - herr_t ret_value=SUCCEED; /* Return value */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE1("e", "Zf", id); /* Check args */ - if(id < 0 || id > H5Z_FILTER_MAX) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") - if(id < H5Z_FILTER_RESERVED) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "unable to modify predefined filters") + if (id < 0 || id > H5Z_FILTER_MAX) + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") + if (id < H5Z_FILTER_RESERVED) + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "unable to modify predefined filters") /* Do it */ - if(H5Z_unregister(id) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to unregister filter") + if (H5Z_unregister(id) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to unregister filter") done: FUNC_LEAVE_API(ret_value) @@ -386,36 +371,33 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_unregister - * - * Purpose: Same as the public version except this one allows filters - * to be unset for predefined method numbers =0 && filter_id<=H5Z_FILTER_MAX); /* Is the filter already registered? */ - for (filter_index=0; filter_index=H5Z_table_used_g) + if (filter_index >= H5Z_table_used_g) HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "filter is not registered") /* Initialize the structure object for iteration */ @@ -423,28 +405,32 @@ H5Z_unregister(H5Z_filter_t filter_id) object.found = FALSE; /* Iterate through all opened datasets, returns a failure if any of them uses the filter */ - if(H5I_iterate(H5I_DATASET, H5Z__check_unregister_dset_cb, &object, FALSE) < 0) + if (H5I_iterate(H5I_DATASET, H5Z__check_unregister_dset_cb, &object, FALSE) < 0) HGOTO_ERROR(H5E_FILE, H5E_BADITER, FAIL, "iteration failed") - if(object.found) + if (object.found) HGOTO_ERROR(H5E_PLINE, H5E_CANTRELEASE, FAIL, "can't unregister filter because a dataset is still using it") /* Iterate through all opened groups, returns a failure if any of them uses the filter */ - if(H5I_iterate(H5I_GROUP, H5Z__check_unregister_group_cb, &object, FALSE) < 0) + if (H5I_iterate(H5I_GROUP, H5Z__check_unregister_group_cb, &object, FALSE) < 0) HGOTO_ERROR(H5E_FILE, H5E_BADITER, FAIL, "iteration failed") - if(object.found) + if (object.found) HGOTO_ERROR(H5E_PLINE, H5E_CANTRELEASE, FAIL, "can't unregister filter because a group is still using it") /* Iterate through all opened files and flush them */ - if(H5I_iterate(H5I_FILE, H5Z__flush_file_cb, NULL, FALSE) < 0) + if (H5I_iterate(H5I_FILE, H5Z__flush_file_cb, NULL, FALSE) < 0) HGOTO_ERROR(H5E_FILE, H5E_BADITER, FAIL, "iteration failed") + /* deallocate plugin info name */ + H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+filter_index); + if (old_cls->name) + old_cls->name = (char *)H5MM_xfree(old_cls->name); /* Remove filter from table */ /* Don't worry about shrinking table size (for now) */ - HDmemmove(&H5Z_table_g[filter_index],&H5Z_table_g[filter_index+1],sizeof(H5Z_class2_t)*((H5Z_table_used_g-1)-filter_index)); + HDmemmove (&H5Z_table_g[filter_index], &H5Z_table_g[filter_index+1], sizeof(H5Z_class2_t)*((H5Z_table_used_g-1)-filter_index)); #ifdef H5Z_DEBUG - HDmemmove(&H5Z_stat_table_g[filter_index],&H5Z_stat_table_g[filter_index+1],sizeof(H5Z_stats_t)*((H5Z_table_used_g-1)-filter_index)); + HDmemmove (&H5Z_stat_table_g[filter_index], &H5Z_stat_table_g[filter_index+1], sizeof(H5Z_stats_t)*((H5Z_table_used_g-1)-filter_index)); #endif /* H5Z_DEBUG */ H5Z_table_used_g--; @@ -454,16 +440,12 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z__check_unregister + * Function: H5Z__check_unregister * - * Purpose: Check if an object uses the filter to be unregistered. - * - * Return: TRUE if the object uses the filter. - * FALSE if not, NEGATIVE on error. - * - * Programmer: Quincey Koziol - * 11 May 2013 + * Purpose: Check if an object uses the filter to be unregistered. * + * Return: TRUE if the object uses the filter. + * FALSE if not, NEGATIVE on error. *------------------------------------------------------------------------- */ static htri_t @@ -475,12 +457,12 @@ H5Z__check_unregister(hid_t ocpl_id, H5Z_filter_t filter_id) FUNC_ENTER_STATIC /* Get the plist structure of object creation */ - if(NULL == (plist = H5P_object_verify(ocpl_id, H5P_OBJECT_CREATE))) - HGOTO_ERROR(H5E_PLINE, H5E_BADATOM, FAIL, "can't find object for ID") + if (NULL == (plist = H5P_object_verify(ocpl_id, H5P_OBJECT_CREATE))) + HGOTO_ERROR (H5E_PLINE, H5E_BADATOM, FAIL, "can't find object for ID") /* Check if the object creation property list uses the filter */ - if((ret_value = H5P_filter_in_pline(plist, filter_id)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + if ((ret_value = H5P_filter_in_pline(plist, filter_id)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") done: FUNC_LEAVE_NOAPI(ret_value) @@ -488,19 +470,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z__check_unregister_group_cb - * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened objects. If the object is a dataset - * or a group and it uses the filter to be unregistered, the - * function returns TRUE. + * Function: H5Z__check_unregister_group_cb * - * Return: TRUE if the object uses the filter. - * FALSE otherwise. - * - * Programmer: Raymond Lu - * 6 May 2013 + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened objects. If the object is a dataset + * or a group and it uses the filter to be unregistered, the + * function returns TRUE. * + * Return: TRUE if the object uses the filter. + * FALSE otherwise. *------------------------------------------------------------------------- */ static int @@ -516,44 +494,40 @@ H5Z__check_unregister_group_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void HDassert(obj_ptr); /* Get the group creation property */ - if((ocpl_id = H5G_get_create_plist((H5G_t *)obj_ptr)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't get group creation property list") + if ((ocpl_id = H5G_get_create_plist((H5G_t *)obj_ptr)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't get group creation property list") /* Check if the filter is in the group creation property list */ - if((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + if ((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") /* H5I_iterate expects TRUE to stop the loop over objects. Stop the loop and * let H5Z_unregister return failure. - */ - if(filter_in_pline) { + */ + if (filter_in_pline) { object->found = TRUE; ret_value = TRUE; } /* end if */ done: - if(ocpl_id > 0) - if(H5I_dec_app_ref(ocpl_id) < 0) - HDONE_ERROR(H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") + if (ocpl_id > 0) + if (H5I_dec_app_ref(ocpl_id) < 0) + HDONE_ERROR (H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") FUNC_LEAVE_NOAPI(ret_value) } /* end H5Z__check_unregister_group_cb() */ /*------------------------------------------------------------------------- - * Function: H5Z__check_unregister_dset_cb - * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened objects. If the object is a dataset - * or a group and it uses the filter to be unregistered, the - * function returns TRUE. - * - * Return: TRUE if the object uses the filter. - * FALSE otherwise. + * Function: H5Z__check_unregister_dset_cb * - * Programmer: Raymond Lu - * 6 May 2013 + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened objects. If the object is a dataset + * or a group and it uses the filter to be unregistered, the + * function returns TRUE. * + * Return: TRUE if the object uses the filter. + * FALSE otherwise. *------------------------------------------------------------------------- */ static int @@ -566,61 +540,57 @@ H5Z__check_unregister_dset_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void * FUNC_ENTER_STATIC - HDassert(obj_ptr); + HDassert (obj_ptr); /* Get the dataset creation property */ - if((ocpl_id = H5D_get_create_plist((H5D_t *)obj_ptr)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't get dataset creation property list") + if ((ocpl_id = H5D_get_create_plist((H5D_t *)obj_ptr)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't get dataset creation property list") /* Check if the filter is in the dataset creation property list */ - if((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + if ((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") /* H5I_iterate expects TRUE to stop the loop over objects. Stop the loop and * let H5Z_unregister return failure. - */ - if(filter_in_pline) { + */ + if (filter_in_pline) { object->found = TRUE; ret_value = TRUE; } /* end if */ done: - if(ocpl_id > 0) - if(H5I_dec_app_ref(ocpl_id) < 0) - HDONE_ERROR(H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") + if (ocpl_id > 0) + if (H5I_dec_app_ref(ocpl_id) < 0) + HDONE_ERROR (H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") FUNC_LEAVE_NOAPI(ret_value) } /* end H5Z__check_unregister_dset_cb() */ /*------------------------------------------------------------------------- - * Function: H5Z__flush_file_cb - * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened files and flush them. + * Function: H5Z__flush_file_cb * - * Return: FALSE if finishes flushing and moves on - * FAIL if there is an error - * - * Programmer: Raymond Lu - * 6 May 2013 + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened files and flush them. * + * Return: FALSE if finishes flushing and moves on + * FAIL if there is an error *------------------------------------------------------------------------- */ static int H5Z__flush_file_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void H5_ATTR_UNUSED *key) { - int ret_value = FALSE; /* Return value */ + int ret_value = FALSE; /* Return value */ FUNC_ENTER_STATIC - HDassert(obj_ptr); + HDassert (obj_ptr); - /* Call the flush routine for mounted file hierarchies. Do a global flush + /* Call the flush routine for mounted file hierarchies. Do a global flush * if the file is opened for write */ - if(H5F_ACC_RDWR & H5F_INTENT((H5F_t *)obj_ptr)) { - if(H5F_flush_mounts((H5F_t *)obj_ptr, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTFLUSH, FAIL, "unable to flush file hierarchy") + if (H5F_ACC_RDWR & H5F_INTENT((H5F_t *)obj_ptr)) { + if (H5F_flush_mounts((H5F_t *)obj_ptr, H5AC_dxpl_id) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTFLUSH, FAIL, "unable to flush file hierarchy") } /* end if */ done: @@ -629,33 +599,27 @@ done: /*------------------------------------------------------------------------- - * Function: H5Zfilter_avail - * - * Purpose: Check if a filter is available + * Function: H5Zfilter_avail * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure - * - * Programmer: Quincey Koziol - * Thursday, November 14, 2002 - * - * Modifications: + * Purpose: Check if a filter is available * + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure *------------------------------------------------------------------------- */ htri_t H5Zfilter_avail(H5Z_filter_t id) { - htri_t ret_value=FALSE; /* Return value */ + htri_t ret_value = FALSE; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE1("t", "Zf", id); /* Check args */ - if(id<0 || id>H5Z_FILTER_MAX) + if (id < 0 || id > H5Z_FILTER_MAX) HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") - if((ret_value = H5Z_filter_avail(id)) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "unable to check the availability of the filter") + if ((ret_value = H5Z_filter_avail(id)) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "unable to check the availability of the filter") done: FUNC_LEAVE_API(ret_value) @@ -663,35 +627,35 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_avail - * - * Purpose: Private function to check if a filter is available + * Function: H5Z_filter_avail * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure - * - * Programmer: Raymond Lu - * 13 February 2013 + * Purpose: Private function to check if a filter is available * + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure *------------------------------------------------------------------------- */ htri_t H5Z_filter_avail(H5Z_filter_t id) { - size_t i; /* Local index variable */ - const H5Z_class2_t *filter_info; - htri_t ret_value = FALSE; /* Return value */ + size_t i; /* Local index variable */ + H5Z_class2_t *filter_info; + htri_t ret_value = FALSE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) /* Is the filter already registered? */ - for(i = 0; i < H5Z_table_used_g; i++) - if(H5Z_table_g[i].id == id) - HGOTO_DONE(TRUE) - - if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)id))) { - if(H5Z_register(filter_info) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register loaded filter") - HGOTO_DONE(TRUE) + for (i = 0; i < H5Z_table_used_g; i++) + if (H5Z_table_g[i].id == id) + HGOTO_DONE (TRUE) + + if (NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)id))) { + herr_t status = H5Z_register(filter_info); + if (filter_info->name) + filter_info->name = (char *)H5MM_xfree(filter_info->name); + filter_info = (H5Z_class2_t *)H5MM_xfree(filter_info); + if (status < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register loaded filter") + HGOTO_DONE (TRUE) } done: FUNC_LEAVE_NOAPI(ret_value) @@ -699,21 +663,17 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_prelude_callback + * Function: H5Z_prelude_callback * - * Purpose: Makes a dataset creation "prelude" callback for the "can_apply" - * or "set_local" routines. + * Purpose: Makes a dataset creation "prelude" callback for the "can_apply" + * or "set_local" routines. * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Quincey Koziol - * Friday, April 4, 2003 + * Return: Non-negative on success/Negative on failure * * Notes: - * The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see - * + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ static herr_t @@ -722,59 +682,59 @@ H5Z_prelude_callback(const H5O_pline_t *pline, hid_t dcpl_id, hid_t type_id, { H5Z_class2_t *fclass; /* Individual filter information */ size_t u; /* Local index variable */ - htri_t ret_value = TRUE; /* Return value */ + htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_NOAPI_NOINIT HDassert(pline->nused > 0); /* Iterate over filters */ - for(u = 0; u < pline->nused; u++) { + for (u = 0; u < pline->nused; u++) { /* Get filter information */ - if(NULL == (fclass = H5Z_find(pline->filter[u].id))) { + if (NULL == (fclass = H5Z_find(pline->filter[u].id))) { /* Ignore errors from optional filters */ - if(pline->filter[u].flags & H5Z_FLAG_OPTIONAL) - H5E_clear_stack(NULL); + if (pline->filter[u].flags & H5Z_FLAG_OPTIONAL) + H5E_clear_stack (NULL); else - HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "required filter was not located") + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "required filter was not located") } /* end if */ else { /* Make correct callback */ - switch(prelude_type) { + switch (prelude_type) { case H5Z_PRELUDE_CAN_APPLY: /* Check if filter is configured to be able to encode */ - if(!fclass->encoder_present) - HGOTO_ERROR(H5E_PLINE, H5E_NOENCODER, FAIL, "Filter present but encoding is disabled."); + if (!fclass->encoder_present) + HGOTO_ERROR (H5E_PLINE, H5E_NOENCODER, FAIL, "Filter present but encoding is disabled."); /* Check if there is a "can apply" callback */ - if(fclass->can_apply) { + if (fclass->can_apply) { /* Make callback to filter's "can apply" function */ htri_t status = (fclass->can_apply)(dcpl_id, type_id, space_id); /* Indicate error during filter callback */ - if(status < 0) + if (status < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "error during user callback") - /* Indicate filter can't apply to this combination of parameters. + /* Indicate filter can't apply to this combination of parameters. * If the filter is NOT optional, returns failure. */ - if(status == FALSE && !(pline->filter[u].flags & H5Z_FLAG_OPTIONAL)) + if (status == FALSE && !(pline->filter[u].flags & H5Z_FLAG_OPTIONAL)) HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "filter parameters not appropriate") } /* end if */ break; case H5Z_PRELUDE_SET_LOCAL: /* Check if there is a "set local" callback */ - if(fclass->set_local) { + if (fclass->set_local) { /* Make callback to filter's "set local" function */ - if((fclass->set_local)(dcpl_id, type_id, space_id) < 0) + if ((fclass->set_local)(dcpl_id, type_id, space_id) < 0) /* Indicate error during filter callback */ - HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "error during user callback") + HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "error during user callback") } /* end if */ break; default: - HDassert("invalid prelude type" && 0); + HDassert ("invalid prelude type" && 0); } /* end switch */ } /* end else */ } /* end for */ @@ -786,82 +746,78 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_prepare_prelude_callback_dcpl + * Function: H5Z_prepare_prelude_callback_dcpl * - * Purpose: Prepares to make a dataset creation "prelude" callback - * for the "can_apply" or "set_local" routines. + * Purpose: Prepares to make a dataset creation "prelude" callback + * for the "can_apply" or "set_local" routines. * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Quincey Koziol - * Friday, April 4, 2003 + * Return: Non-negative on success/Negative on failure * * Notes: - * The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see - * + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ static herr_t H5Z_prepare_prelude_callback_dcpl(hid_t dcpl_id, hid_t type_id, H5Z_prelude_type_t prelude_type) { - hid_t space_id = -1; /* ID for dataspace describing chunk */ - herr_t ret_value = SUCCEED; /* Return value */ + hid_t space_id = -1; /* ID for dataspace describing chunk */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT - HDassert(H5I_GENPROP_LST == H5I_get_type(dcpl_id)); - HDassert(H5I_DATATYPE == H5I_get_type(type_id)); + HDassert (H5I_GENPROP_LST == H5I_get_type(dcpl_id)); + HDassert (H5I_DATATYPE == H5I_get_type(type_id)); /* Check if the property list is non-default */ - if(dcpl_id != H5P_DATASET_CREATE_DEFAULT) { - H5P_genplist_t *dc_plist; /* Dataset creation property list object */ - H5O_layout_t dcpl_layout; /* Dataset's layout information */ + if (dcpl_id != H5P_DATASET_CREATE_DEFAULT) { + H5P_genplist_t *dc_plist; /* Dataset creation property list object */ + H5O_layout_t dcpl_layout; /* Dataset's layout information */ /* Get dataset creation property list object */ - if(NULL == (dc_plist = (H5P_genplist_t *)H5I_object(dcpl_id))) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "can't get dataset creation property list") + if (NULL == (dc_plist = (H5P_genplist_t *)H5I_object(dcpl_id))) + HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "can't get dataset creation property list") /* Get layout information */ - if(H5P_get(dc_plist, H5D_CRT_LAYOUT_NAME, &dcpl_layout) < 0) - HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve layout") + if (H5P_get(dc_plist, H5D_CRT_LAYOUT_NAME, &dcpl_layout) < 0) + HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve layout") /* Check if the dataset is chunked */ - if(H5D_CHUNKED == dcpl_layout.type) { + if (H5D_CHUNKED == dcpl_layout.type) { H5O_pline_t dcpl_pline; /* Object's I/O pipeline information */ /* Get I/O pipeline information */ - if(H5P_get(dc_plist, H5O_CRT_PIPELINE_NAME, &dcpl_pline) < 0) - HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve pipeline filter") + if (H5P_get(dc_plist, H5O_CRT_PIPELINE_NAME, &dcpl_pline) < 0) + HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve pipeline filter") /* Check if the chunks have filters */ - if(dcpl_pline.nused > 0) { + if (dcpl_pline.nused > 0) { hsize_t chunk_dims[H5O_LAYOUT_NDIMS]; /* Size of chunk dimensions */ - H5S_t *space; /* Dataspace describing chunk */ - size_t u; /* Local index variable */ + H5S_t *space; /* Dataspace describing chunk */ + size_t u; /* Local index variable */ /* Create a dataspace for a chunk & set the extent */ - for(u = 0; u < dcpl_layout.u.chunk.ndims; u++) + for (u = 0; u < dcpl_layout.u.chunk.ndims; u++) chunk_dims[u] = dcpl_layout.u.chunk.dim[u]; - if(NULL == (space = H5S_create_simple(dcpl_layout.u.chunk.ndims, chunk_dims, NULL))) - HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCREATE, FAIL, "can't create simple dataspace") + if (NULL == (space = H5S_create_simple(dcpl_layout.u.chunk.ndims, chunk_dims, NULL))) + HGOTO_ERROR (H5E_DATASPACE, H5E_CANTCREATE, FAIL, "can't create simple dataspace") /* Get ID for dataspace to pass to filter routines */ - if((space_id = H5I_register(H5I_DATASPACE, space, FALSE)) < 0) { - (void)H5S_close(space); - HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace ID") + if ((space_id = H5I_register(H5I_DATASPACE, space, FALSE)) < 0) { + (void)H5S_close (space); + HGOTO_ERROR (H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace ID") } /* end if */ /* Make the callbacks */ - if(H5Z_prelude_callback(&dcpl_pline, dcpl_id, type_id, space_id, prelude_type) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if (H5Z_prelude_callback(&dcpl_pline, dcpl_id, type_id, space_id, prelude_type) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") } /* end if */ } /* end if */ } /* end if */ done: - if(space_id > 0 && H5I_dec_ref(space_id) < 0) + if (space_id > 0 && H5I_dec_ref(space_id) < 0) HDONE_ERROR(H5E_PLINE, H5E_CANTRELEASE, FAIL, "unable to close dataspace") FUNC_LEAVE_NOAPI(ret_value) @@ -869,22 +825,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_can_apply - * - * Purpose: Checks if all the filters defined in the dataset creation - * property list can be applied to a particular combination of - * datatype and dataspace for a dataset. + * Function: H5Z_can_apply * - * Return: Non-negative on success/Negative on failure + * Purpose: Checks if all the filters defined in the dataset creation + * property list can be applied to a particular combination of + * datatype and dataspace for a dataset. * - * Programmer: Quincey Koziol - * Thursday, April 3, 2003 + * Return: Non-negative on success + * Negative on failure * * Notes: - * The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see - * + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ herr_t @@ -895,8 +848,8 @@ H5Z_can_apply(hid_t dcpl_id, hid_t type_id) FUNC_ENTER_NOAPI(FAIL) /* Make "can apply" callbacks for filters in pipeline */ - if(H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_CAN_APPLY) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if (H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_CAN_APPLY) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") done: FUNC_LEAVE_NOAPI(ret_value) @@ -904,22 +857,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_set_local - * - * Purpose: Makes callbacks to modify dataset creation list property - * settings for filters on a new dataset, based on the datatype - * and dataspace of that dataset (chunk). + * Function: H5Z_set_local * - * Return: Non-negative on success/Negative on failure + * Purpose: Makes callbacks to modify dataset creation list property + * settings for filters on a new dataset, based on the datatype + * and dataspace of that dataset (chunk). * - * Programmer: Quincey Koziol - * Friday, April 4, 2003 + * Return: Non-negative on success + * Negative on failure * * Notes: - * The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see - * + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ herr_t @@ -930,8 +880,8 @@ H5Z_set_local(hid_t dcpl_id, hid_t type_id) FUNC_ENTER_NOAPI(FAIL) /* Make "set local" callbacks for filters in pipeline */ - if(H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_SET_LOCAL) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") + if (H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_SET_LOCAL) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") done: FUNC_LEAVE_NOAPI(ret_value) @@ -939,17 +889,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_can_apply_direct + * Function: H5Z_can_apply_direct * - * Purpose: Checks if all the filters defined in the pipeline can be - * applied to an opaque byte stream (currently only a group). - * The pipeline is assumed to have at least one filter. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Neil Fortner - * Tuesday, September 22, 2009 + * Purpose: Checks if all the filters defined in the pipeline can be + * applied to an opaque byte stream (currently only a group). + * The pipeline is assumed to have at least one filter. * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t @@ -959,11 +906,11 @@ H5Z_can_apply_direct(const H5O_pline_t *pline) FUNC_ENTER_NOAPI(FAIL) - HDassert(pline->nused > 0); + HDassert (pline->nused > 0); /* Make "can apply" callbacks for filters in pipeline */ - if(H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_CAN_APPLY) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if (H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_CAN_APPLY) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") done: FUNC_LEAVE_NOAPI(ret_value) @@ -971,22 +918,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_set_local_direct + * Function: H5Z_set_local_direct * - * Purpose: Makes callbacks to modify local settings for filters on a - * new opaque object. The pipeline is assumed to have at - * least one filter. + * Purpose: Makes callbacks to modify local settings for filters on a + * new opaque object. The pipeline is assumed to have at + * least one filter. * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Neil Fortner - * Tuesday, September 22, 2009 + * Return: Non-negative on success + * Negative on failure * * Notes: - * This callback will almost certainly not do anything - * useful, other than to make certain that the filter will - * accept opque data. - * + * This callback will almost certainly not do anything + * useful, other than to make certain that the filter will + * accept opaque data. *------------------------------------------------------------------------- */ herr_t @@ -996,11 +940,11 @@ H5Z_set_local_direct(const H5O_pline_t *pline) FUNC_ENTER_NOAPI(FAIL) - HDassert(pline->nused > 0); + HDassert (pline->nused > 0); /* Make "set local" callbacks for filters in pipeline */ - if(H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_SET_LOCAL) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") + if (H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_SET_LOCAL) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") done: FUNC_LEAVE_NOAPI(ret_value) @@ -1008,66 +952,61 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_modify - * - * Purpose: Modify filter parameters for specified pipeline. + * Function: H5Z_modify * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Quincey Koziol - * Friday, April 5, 2003 - * - * Modifications: + * Purpose: Modify filter parameters for specified pipeline. * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { - size_t idx; /* Index of filter in pipeline */ - herr_t ret_value = SUCCEED; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert(pline); - HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); - HDassert(0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); - HDassert(0 == cd_nelmts || cd_values); + HDassert (pline); + HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert (0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); + HDassert (0 == cd_nelmts || cd_values); /* Locate the filter in the pipeline */ - for(idx = 0; idx < pline->nused; idx++) - if(pline->filter[idx].id == filter) + for (idx = 0; idx < pline->nused; idx++) + if (pline->filter[idx].id == filter) break; /* Check if the filter was not already in the pipeline */ - if(idx > pline->nused) - HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") + if (idx > pline->nused) + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") /* Change parameters for filter */ pline->filter[idx].flags = flags; pline->filter[idx].cd_nelmts = cd_nelmts; /* Free any existing parameters */ - if(pline->filter[idx].cd_values != NULL && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) - H5MM_xfree(pline->filter[idx].cd_values); + if (pline->filter[idx].cd_values != NULL && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + H5MM_xfree(pline->filter[idx].cd_values); /* Set parameters */ - if(cd_nelmts > 0) { - size_t i; /* Local index variable */ + if (cd_nelmts > 0) { + size_t i; /* Local index variable */ /* Allocate memory or point at internal buffer */ - if(cd_nelmts > H5Z_COMMON_CD_VALUES) { + if (cd_nelmts > H5Z_COMMON_CD_VALUES) { pline->filter[idx].cd_values = (unsigned *)H5MM_malloc(cd_nelmts * sizeof(unsigned)); - if(NULL == pline->filter[idx].cd_values) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter parameters") + if (NULL == pline->filter[idx].cd_values) + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter parameters") } /* end if */ else pline->filter[idx].cd_values = pline->filter[idx]._cd_values; /* Copy client data values */ - for(i = 0; i < cd_nelmts; i++) - pline->filter[idx].cd_values[i] = cd_values[i]; + for (i = 0; i < cd_nelmts; i++) + pline->filter[idx].cd_values[i] = cd_values[i]; } /* end if */ else pline->filter[idx].cd_values = NULL; @@ -1078,47 +1017,42 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_append - * - * Purpose: Append another filter to the specified pipeline. + * Function: H5Z_append * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Robb Matzke - * Tuesday, August 4, 1998 - * - * Modifications: + * Purpose: Append another filter to the specified pipeline. * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { - size_t idx; - herr_t ret_value = SUCCEED; /* Return value */ + size_t idx; + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert(pline); - HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); - HDassert(0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); - HDassert(0 == cd_nelmts || cd_values); + HDassert (pline); + HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert (0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); + HDassert (0 == cd_nelmts || cd_values); /* * Check filter limit. We do it here for early warnings although we may * decide to relax this restriction in the future. */ - if(pline->nused >= H5Z_MAX_NFILTERS) - HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "too many filters in pipeline") + if (pline->nused >= H5Z_MAX_NFILTERS) + HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "too many filters in pipeline") /* Check for freshly allocated filter pipeline */ - if(pline->version == 0) + if (pline->version == 0) pline->version = H5O_PLINE_VERSION_1; /* Allocate additional space in the pipeline if it's full */ - if(pline->nused >= pline->nalloc) { - H5O_pline_t x; + if (pline->nused >= pline->nalloc) { + H5O_pline_t x; size_t n; /* Each filter's data may be stored internally or may be @@ -1128,14 +1062,14 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, * filter struct is reallocated. Set these pointers to ~NULL * so that we can reset them after reallocating the filters array. */ - for(n = 0; n < pline->nalloc; ++n) - if(pline->filter[n].cd_values == pline->filter[n]._cd_values) + for (n = 0; n < pline->nalloc; ++n) + if (pline->filter[n].cd_values == pline->filter[n]._cd_values) pline->filter[n].cd_values = (unsigned *)((void *) ~((size_t)NULL)); - x.nalloc = MAX(H5Z_MAX_NFILTERS, 2 * pline->nalloc); - x.filter = (H5Z_filter_info_t *)H5MM_realloc(pline->filter, x.nalloc * sizeof(x.filter[0])); - if(NULL == x.filter) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter pipeline") + x.nalloc = MAX(H5Z_MAX_NFILTERS, 2 * pline->nalloc); + x.filter = (H5Z_filter_info_t *)H5MM_realloc(pline->filter, x.nalloc * sizeof(x.filter[0])); + if (NULL == x.filter) + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter pipeline") /* Fix pointers in previous filters that need to point to their own * internal data. @@ -1145,8 +1079,8 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, x.filter[n].cd_values = x.filter[n]._cd_values; /* Point to newly allocated buffer */ - pline->nalloc = x.nalloc; - pline->filter = x.filter; + pline->nalloc = x.nalloc; + pline->filter = x.filter; } /* end if */ /* Add the new filter to the pipeline */ @@ -1155,21 +1089,21 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, pline->filter[idx].flags = flags; pline->filter[idx].name = NULL; /*we'll pick it up later*/ pline->filter[idx].cd_nelmts = cd_nelmts; - if(cd_nelmts > 0) { - size_t i; /* Local index variable */ + if (cd_nelmts > 0) { + size_t i; /* Local index variable */ /* Allocate memory or point at internal buffer */ - if(cd_nelmts > H5Z_COMMON_CD_VALUES) { + if (cd_nelmts > H5Z_COMMON_CD_VALUES) { pline->filter[idx].cd_values = (unsigned *)H5MM_malloc(cd_nelmts * sizeof(unsigned)); - if(NULL == pline->filter[idx].cd_values) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter") + if (NULL == pline->filter[idx].cd_values) + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter") } /* end if */ else pline->filter[idx].cd_values = pline->filter[idx]._cd_values; /* Copy client data values */ - for(i = 0; i < cd_nelmts; i++) - pline->filter[idx].cd_values[i] = cd_values[i]; + for (i = 0; i < cd_nelmts; i++) + pline->filter[idx].cd_values[i] = cd_values[i]; } /* end if */ else pline->filter[idx].cd_values = NULL; @@ -1182,32 +1116,26 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_find_idx - * - * Purpose: Given a filter ID return the offset in the global array - * that holds all the registered filters. - * - * Return: Success: Non-negative index of entry in global filter table. - * Failure: Negative - * - * Programmer: Quincey Koziol - * Friday, April 5, 2003 + * Function: H5Z_find_idx * - * Modifications: + * Purpose: Given a filter ID return the offset in the global array + * that holds all the registered filters. * + * Return: Success: Non-negative index of entry in global filter table. + * Failure: Negative *------------------------------------------------------------------------- */ static int H5Z_find_idx(H5Z_filter_t id) { size_t i; /* Local index variable */ - int ret_value=FAIL; /* Return value */ + int ret_value = FAIL; /* Return value */ FUNC_ENTER_NOAPI_NOINIT_NOERR - for (i=0; ifilter[].flags). The filters are processed in - * definition order unless the H5Z_FLAG_REVERSE is set. The - * FILTER_MASK is a bit-mask to indicate which filters to skip - * and on exit will indicate which filters failed. Each - * filter has an index number in the pipeline and that index - * number is the filter's bit in the FILTER_MASK. NBYTES is the - * number of bytes of data to filter and on exit should be the - * number of resulting bytes while BUF_SIZE holds the total - * allocated size of the buffer, which is pointed to BUF. - * - * If the buffer must grow during processing of the pipeline - * then the pipeline function should free the original buffer - * and return a fresh buffer, adjusting BUF_SIZE accordingly. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Robb Matzke - * Tuesday, August 4, 1998 - * - * Modifications: - * + * Function: H5Z_pipeline + * + * Purpose: Process data through the filter pipeline. The FLAGS argument + * is the filter invocation flags (definition flags come from + * the PLINE->filter[].flags). The filters are processed in + * definition order unless the H5Z_FLAG_REVERSE is set. The + * FILTER_MASK is a bit-mask to indicate which filters to skip + * and on exit will indicate which filters failed. Each + * filter has an index number in the pipeline and that index + * number is the filter's bit in the FILTER_MASK. NBYTES is the + * number of bytes of data to filter and on exit should be the + * number of resulting bytes while BUF_SIZE holds the total + * allocated size of the buffer, which is pointed to BUF. + * + * If the buffer must grow during processing of the pipeline + * then the pipeline function should free the original buffer + * and return a fresh buffer, adjusting BUF_SIZE accordingly. + * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_pipeline(const H5O_pline_t *pline, unsigned flags, - unsigned *filter_mask/*in,out*/, H5Z_EDC_t edc_read, - H5Z_cb_t cb_struct, size_t *nbytes/*in,out*/, - size_t *buf_size/*in,out*/, void **buf/*in,out*/) + unsigned *filter_mask/*in,out*/, H5Z_EDC_t edc_read, + H5Z_cb_t cb_struct, size_t *nbytes/*in,out*/, + size_t *buf_size/*in,out*/, void **buf/*in,out*/) { - size_t i, idx, new_nbytes; - int fclass_idx; /* Index of filter class in global table */ - H5Z_class2_t *fclass=NULL; /* Filter class pointer */ + size_t i, idx, new_nbytes; + int fclass_idx; /* Index of filter class in global table */ + H5Z_class2_t *fclass=NULL; /* Filter class pointer */ #ifdef H5Z_DEBUG - H5Z_stats_t *fstats=NULL; /* Filter stats pointer */ - H5_timer_t timer; + H5Z_stats_t *fstats=NULL; /* Filter stats pointer */ + H5_timer_t timer; #endif - unsigned failed = 0; - unsigned tmp_flags; - herr_t ret_value=SUCCEED; /* Return value */ + unsigned failed = 0; + unsigned tmp_flags; + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert(0==(flags & ~((unsigned)H5Z_FLAG_INVMASK))); - HDassert(filter_mask); - HDassert(nbytes && *nbytes>0); - HDassert(buf_size && *buf_size>0); - HDassert(buf && *buf); - HDassert(!pline || pline->nused0); + HDassert (buf_size && *buf_size>0); + HDassert (buf && *buf); + HDassert (!pline || pline->nusednused; i>0; --i) { - idx = i-1; + for (i = pline->nused; i > 0; --i) { + idx = i-1; - if (*filter_mask & ((unsigned)1<filter[idx].id)) < 0) { + if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { hbool_t issue_error = FALSE; - const H5Z_class2_t *filter_info; + H5Z_class2_t *filter_info; - /* Try loading the filter */ - if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) { - /* Register the filter we loaded */ - if(H5Z_register(filter_info) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") + /* Try loading the filter */ + if (NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) { + /* Register the filter we loaded */ + herr_t status = H5Z_register(filter_info); + if (filter_info->name) + filter_info->name = (char *)H5MM_xfree(filter_info->name); + filter_info = (H5Z_class2_t *)H5MM_xfree(filter_info); + if (status < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") - /* Search in the table of registered filters again to find the dynamic filter just loaded and registered */ - if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) - issue_error = TRUE; - } /* end if */ - else + /* Search in the table of registered filters again to find the dynamic filter just loaded and registered */ + if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) issue_error = TRUE; + } /* end if */ + else + issue_error = TRUE; /* Check for error */ if(issue_error) { - /* Print out the filter name to give more info. But the name is optional for + /* Print out the filter name to give more info. But the name is optional for * the filter */ - if(pline->filter[idx].name) + if (pline->filter[idx].name) HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "required filter '%s' is not registered", pline->filter[idx].name) else HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "required filter (name unavailable) is not registered") } /* end if */ } /* end if */ - fclass=&H5Z_table_g[fclass_idx]; + fclass = &H5Z_table_g[fclass_idx]; #ifdef H5Z_DEBUG - fstats=&H5Z_stat_table_g[fclass_idx]; - H5_timer_begin(&timer); + fstats = &H5Z_stat_table_g[fclass_idx]; + H5_timer_begin (&timer); #endif - tmp_flags=flags|(pline->filter[idx].flags); - tmp_flags|=(edc_read== H5Z_DISABLE_EDC) ? H5Z_FLAG_SKIP_EDC : 0; - new_nbytes = (fclass->filter)(tmp_flags, pline->filter[idx].cd_nelmts, + tmp_flags = flags | (pline->filter[idx].flags); + tmp_flags |= (edc_read== H5Z_DISABLE_EDC) ? H5Z_FLAG_SKIP_EDC : 0; + new_nbytes = (fclass->filter)(tmp_flags, pline->filter[idx].cd_nelmts, pline->filter[idx].cd_values, *nbytes, buf_size, buf); #ifdef H5Z_DEBUG - H5_timer_end(&(fstats->stats[1].timer), &timer); - fstats->stats[1].total += MAX(*nbytes, new_nbytes); - if (0==new_nbytes) fstats->stats[1].errors += *nbytes; + H5_timer_end (&(fstats->stats[1].timer), &timer); + fstats->stats[1].total += MAX(*nbytes, new_nbytes); + if (0 == new_nbytes) fstats->stats[1].errors += *nbytes; #endif - if(0==new_nbytes) { - if((cb_struct.func && (H5Z_CB_FAIL==cb_struct.func(pline->filter[idx].id, *buf, *buf_size, cb_struct.op_data))) - || !cb_struct.func) - HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "filter returned failure during read") + if (0 == new_nbytes) { + if ((cb_struct.func && + (H5Z_CB_FAIL == cb_struct.func (pline->filter[idx].id, *buf, *buf_size, cb_struct.op_data))) || + !cb_struct.func) + HGOTO_ERROR (H5E_PLINE, H5E_READERROR, FAIL, "filter returned failure during read") *nbytes = *buf_size; failed |= (unsigned)1 << idx; - H5E_clear_stack(NULL); - } else { + H5E_clear_stack (NULL); + } + else { *nbytes = new_nbytes; } - } - } else if (pline) { /* Write */ - for (idx=0; idxnused; idx++) { - if (*filter_mask & ((unsigned)1<filter[idx].id))<0) { - /* Check if filter is optional -- If it isn't, then error */ - if ((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0) - HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered") - - failed |= (unsigned)1 << idx; - H5E_clear_stack(NULL); - continue; /*filter excluded*/ - } - fclass=&H5Z_table_g[fclass_idx]; + } + } + else if (pline) { /* Write */ + for (idx = 0; idx < pline->nused; idx++) { + if (*filter_mask & ((unsigned)1 << idx)) { + failed |= (unsigned)1 << idx; + continue; /*filter excluded*/ + } + if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { + /* Check if filter is optional -- If it isn't, then error */ + if ((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0) + HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered") + + failed |= (unsigned)1 << idx; + H5E_clear_stack (NULL); + continue; /*filter excluded*/ + } + fclass = &H5Z_table_g[fclass_idx]; #ifdef H5Z_DEBUG - fstats=&H5Z_stat_table_g[fclass_idx]; - H5_timer_begin(&timer); + fstats = &H5Z_stat_table_g[fclass_idx]; + H5_timer_begin (&timer); #endif - new_nbytes = (fclass->filter)(flags|(pline->filter[idx].flags), pline->filter[idx].cd_nelmts, - pline->filter[idx].cd_values, *nbytes, buf_size, buf); + new_nbytes = (fclass->filter)(flags | (pline->filter[idx].flags), pline->filter[idx].cd_nelmts, + pline->filter[idx].cd_values, *nbytes, buf_size, buf); #ifdef H5Z_DEBUG - H5_timer_end(&(fstats->stats[0].timer), &timer); - fstats->stats[0].total += MAX(*nbytes, new_nbytes); - if (0==new_nbytes) fstats->stats[0].errors += *nbytes; + H5_timer_end (&(fstats->stats[0].timer), &timer); + fstats->stats[0].total += MAX(*nbytes, new_nbytes); + if (0 == new_nbytes) fstats->stats[0].errors += *nbytes; #endif - if(0==new_nbytes) { - if (0==(pline->filter[idx].flags & H5Z_FLAG_OPTIONAL)) { - if((cb_struct.func && (H5Z_CB_FAIL==cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data))) - || !cb_struct.func) - HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "filter returned failure") + if (0 == new_nbytes) { + if (0 == (pline->filter[idx].flags & H5Z_FLAG_OPTIONAL)) { + if ((cb_struct.func && + (H5Z_CB_FAIL == cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data))) || + !cb_struct.func) + HGOTO_ERROR (H5E_PLINE, H5E_WRITEERROR, FAIL, "filter returned failure") *nbytes = *buf_size; } failed |= (unsigned)1 << idx; - H5E_clear_stack(NULL); - } else { - *nbytes = new_nbytes; + H5E_clear_stack (NULL); } - } + else + *nbytes = new_nbytes; + } } *filter_mask = failed; @@ -1428,41 +1351,36 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_info - * - * Purpose: Get pointer to filter info for pipeline + * Function: H5Z_filter_info * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Quincey Koziol - * Friday, April 5, 2003 - * - * Modifications: + * Purpose: Get pointer to filter info for pipeline * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ H5Z_filter_info_t * H5Z_filter_info(const H5O_pline_t *pline, H5Z_filter_t filter) { - size_t idx; /* Index of filter in pipeline */ - H5Z_filter_info_t *ret_value; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + H5Z_filter_info_t *ret_value; /* Return value */ FUNC_ENTER_NOAPI(NULL) - HDassert(pline); - HDassert(filter>=0 && filter<=H5Z_FILTER_MAX); + HDassert (pline); + HDassert (filter>=0 && filter<=H5Z_FILTER_MAX); /* Locate the filter in the pipeline */ - for(idx=0; idxnused; idx++) - if(pline->filter[idx].id==filter) + for (idx = 0; idx < pline->nused; idx++) + if (pline->filter[idx].id == filter) break; /* Check if the filter was not already in the pipeline */ - if(idx>=pline->nused) - HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, NULL, "filter not in pipeline") + if (idx >= pline->nused) + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, NULL, "filter not in pipeline") /* Set return value */ - ret_value=&pline->filter[idx]; + ret_value = &pline->filter[idx]; done: FUNC_LEAVE_NOAPI(ret_value) @@ -1470,41 +1388,35 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_in_pline - * - * Purpose: Check wheter a filter is in the filter pipeline using the - * filter ID. This function is very similar to H5Z_filter_info + * Function: H5Z_filter_in_pline * - * Return: TRUE - found filter - * FALSE - not found - * FAIL - error - * - * Programmer: Raymond Lu - * 26 April 2013 - * - * Modifications: + * Purpose: Check wheter a filter is in the filter pipeline using the + * filter ID. This function is very similar to H5Z_filter_info * + * Return: TRUE - found filter + * FALSE - not found + * FAIL - error *------------------------------------------------------------------------- */ htri_t H5Z_filter_in_pline(const H5O_pline_t *pline, H5Z_filter_t filter) { - size_t idx; /* Index of filter in pipeline */ - htri_t ret_value = TRUE; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert(pline); - HDassert(filter>=0 && filter<=H5Z_FILTER_MAX); + HDassert (pline); + HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); /* Locate the filter in the pipeline */ - for(idx=0; idxnused; idx++) - if(pline->filter[idx].id==filter) + for (idx = 0; idx < pline->nused; idx++) + if (pline->filter[idx].id == filter) break; /* Check if the filter was not already in the pipeline */ - if(idx>=pline->nused) - ret_value = FALSE; + if (idx >= pline->nused) + ret_value = FALSE; done: FUNC_LEAVE_NOAPI(ret_value) @@ -1513,42 +1425,36 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_all_filters_avail - * - * Purpose: Verify that all the filters in a pipeline are currently - * available (i.e. registered) - * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure + * Function: H5Z_all_filters_avail * - * Programmer: Quincey Koziol - * Tuesday, April 8, 2003 - * - * Modifications: + * Purpose: Verify that all the filters in a pipeline are currently + * available (i.e. registered) * + * Return: Non-negative (TRUE/FALSE) on success + * Negative on failure *------------------------------------------------------------------------- */ htri_t H5Z_all_filters_avail(const H5O_pline_t *pline) { - size_t i,j; /* Local index variable */ - htri_t ret_value=TRUE; /* Return value */ + size_t i, j; /* Local index variable */ + htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) /* Check args */ - HDassert(pline); + HDassert (pline); /* Iterate through all the filters in pipeline */ - for(i=0; inused; i++) { - + for (i = 0; i < pline->nused; i++) { /* Look for each filter in the list of registered filters */ - for(j=0; jfilter[i].id) + for (j = 0; j < H5Z_table_used_g; j++) + if (H5Z_table_g[j].id == pline->filter[i].id) break; /* Check if we didn't find the filter */ - if(j==H5Z_table_used_g) - HGOTO_DONE(FALSE) + if (j == H5Z_table_used_g) + HGOTO_DONE (FALSE) } /* end for */ done: @@ -1560,16 +1466,11 @@ done: /*------------------------------------------------------------------------- * Function: H5Z_delete * - * Purpose: Delete filter FILTER from pipeline PLINE; - * deletes all filters if FILTER is H5Z_FILTER_NONE - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Pedro Vicente - * Monday, January 26, 2004 - * - * Modifications: + * Purpose: Delete filter FILTER from pipeline PLINE; + * deletes all filters if FILTER is H5Z_FILTER_NONE * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1580,52 +1481,52 @@ H5Z_delete(H5O_pline_t *pline, H5Z_filter_t filter) FUNC_ENTER_NOAPI(FAIL) /* Check args */ - HDassert(pline); - HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert (pline); + HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); /* if the pipeline has no filters, just return */ - if(pline->nused==0) - HGOTO_DONE(SUCCEED) + if (pline->nused == 0) + HGOTO_DONE (SUCCEED) /* Delete all filters */ - if(H5Z_FILTER_ALL == filter) { - if(H5O_msg_reset(H5O_PLINE_ID, pline) < 0) + if (H5Z_FILTER_ALL == filter) { + if (H5O_msg_reset(H5O_PLINE_ID, pline) < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANTFREE, FAIL, "can't release pipeline info") } /* end if */ /* Delete filter */ else { - size_t idx; /* Index of filter in pipeline */ - hbool_t found = FALSE; /* Indicate filter was found in pipeline */ + size_t idx; /* Index of filter in pipeline */ + hbool_t found = FALSE; /* Indicate filter was found in pipeline */ /* Locate the filter in the pipeline */ - for(idx = 0; idx < pline->nused; idx++) - if(pline->filter[idx].id == filter) { + for (idx = 0; idx < pline->nused; idx++) + if (pline->filter[idx].id == filter) { found = TRUE; break; } /* end if */ /* filter was not found in the pipeline */ - if(!found) - HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") + if (!found) + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") /* Free information for deleted filter */ - if(pline->filter[idx].name && pline->filter[idx].name != pline->filter[idx]._name) - HDassert((HDstrlen(pline->filter[idx].name) + 1) > H5Z_COMMON_NAME_LEN); - if(pline->filter[idx].name != pline->filter[idx]._name) + if (pline->filter[idx].name && pline->filter[idx].name != pline->filter[idx]._name) + HDassert ((HDstrlen(pline->filter[idx].name) + 1) > H5Z_COMMON_NAME_LEN); + if (pline->filter[idx].name != pline->filter[idx]._name) pline->filter[idx].name = (char *)H5MM_xfree(pline->filter[idx].name); - if(pline->filter[idx].cd_values && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) - HDassert(pline->filter[idx].cd_nelmts > H5Z_COMMON_CD_VALUES); - if(pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + if (pline->filter[idx].cd_values && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + HDassert (pline->filter[idx].cd_nelmts > H5Z_COMMON_CD_VALUES); + if (pline->filter[idx].cd_values != pline->filter[idx]._cd_values) pline->filter[idx].cd_values = (unsigned *)H5MM_xfree(pline->filter[idx].cd_values); /* Remove filter from pipeline array */ - if((idx + 1) < pline->nused) { + if ((idx + 1) < pline->nused) { /* Copy filters down & fix up any client data value arrays using internal storage */ - for(; (idx + 1) < pline->nused; idx++) { + for (; (idx + 1) < pline->nused; idx++) { pline->filter[idx] = pline->filter[idx + 1]; - if(pline->filter[idx].name && (HDstrlen(pline->filter[idx].name) + 1) <= H5Z_COMMON_NAME_LEN) + if (pline->filter[idx].name && (HDstrlen(pline->filter[idx].name) + 1) <= H5Z_COMMON_NAME_LEN) pline->filter[idx].name = pline->filter[idx]._name; - if(pline->filter[idx].cd_nelmts <= H5Z_COMMON_CD_VALUES) + if (pline->filter[idx].cd_nelmts <= H5Z_COMMON_CD_VALUES) pline->filter[idx].cd_values = pline->filter[idx]._cd_values; } /* end for */ } /* end if */ @@ -1634,7 +1535,7 @@ H5Z_delete(H5O_pline_t *pline, H5Z_filter_t filter) pline->nused--; /* Reset information for previous last filter in pipeline */ - HDmemset(&pline->filter[pline->nused], 0, sizeof(H5Z_filter_info_t)); + HDmemset (&pline->filter[pline->nused], 0, sizeof(H5Z_filter_info_t)); } /* end else */ done: @@ -1645,14 +1546,11 @@ done: /*------------------------------------------------------------------------- * Function: H5Zget_filter_info * - * Purpose: Gets information about a pipeline data filter and stores it - * in filter_config_flags. - * - * Return: zero on success / negative on failure - * - * Programmer: James Laird and Nat Furrer - * Monday, June 7, 2004 + * Purpose: Gets information about a pipeline data filter and stores it + * in filter_config_flags. * + * Return: zero on success + * negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1664,8 +1562,8 @@ H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags) H5TRACE2("e", "Zf*Iu", filter, filter_config_flags); /* Get the filter info */ - if(H5Z_get_filter_info(filter, filter_config_flags) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "Filter info not retrieved") + if (H5Z_get_filter_info(filter, filter_config_flags) < 0) + HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "Filter info not retrieved") done: FUNC_LEAVE_API(ret_value) @@ -1675,14 +1573,11 @@ done: /*------------------------------------------------------------------------- * Function: H5Z_get_filter_info * - * Purpose: Gets information about a pipeline data filter and stores it - * in filter_config_flags. - * - * Return: zero on success / negative on failure - * - * Programmer: Quincey Koziol - * Saturday, May 11, 2013 + * Purpose: Gets information about a pipeline data filter and stores it + * in filter_config_flags. * + * Return: zero on success + * negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1694,16 +1589,16 @@ H5Z_get_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags) FUNC_ENTER_NOAPI(FAIL) /* Look up the filter class info */ - if(NULL == (fclass = H5Z_find(filter))) - HGOTO_ERROR(H5E_PLINE, H5E_BADVALUE, FAIL, "Filter not defined") + if (NULL == (fclass = H5Z_find(filter))) + HGOTO_ERROR (H5E_PLINE, H5E_BADVALUE, FAIL, "Filter not defined") /* Set the filter config flags for the application */ - if(filter_config_flags != NULL) { + if (filter_config_flags != NULL) { *filter_config_flags = 0; - if(fclass->encoder_present) + if (fclass->encoder_present) *filter_config_flags |= H5Z_FILTER_CONFIG_ENCODE_ENABLED; - if(fclass->decoder_present) + if (fclass->decoder_present) *filter_config_flags |= H5Z_FILTER_CONFIG_DECODE_ENABLED; } /* end if */ diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 612d13d..8d889e4 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -34,7 +34,7 @@ endif () if (MINGW) target_link_libraries (${HDF5_TEST_LIB_TARGET} "wsock32.lib") endif () -target_link_libraries (${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_LIBS}) H5_SET_LIB_OPTIONS (${HDF5_TEST_LIB_TARGET} ${HDF5_TEST_LIB_NAME} STATIC) set_target_properties (${HDF5_TEST_LIB_TARGET} PROPERTIES FOLDER libraries/test @@ -50,7 +50,7 @@ if (BUILD_SHARED_LIBS) if (MINGW) target_link_libraries (${HDF5_TEST_LIBSH_TARGET} "wsock32.lib") endif () - target_link_libraries (${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ${LINK_LIBS}) H5_SET_LIB_OPTIONS (${HDF5_TEST_LIBSH_TARGET} ${HDF5_TEST_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) set_target_properties (${HDF5_TEST_LIBSH_TARGET} PROPERTIES FOLDER libraries/test diff --git a/test/dsets.c b/test/dsets.c index c936e3c..865948a 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -12,10 +12,10 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* - * Programmer: Robb Matzke - * Tuesday, December 9, 1997 + * Programmer: Robb Matzke + * Tuesday, December 9, 1997 * - * Purpose: Tests the dataset interface (H5D) + * Purpose: Tests the dataset interface (H5D) */ #include @@ -57,39 +57,39 @@ const char *FILENAME[] = { #define FILE_DEFLATE_NAME "deflate.h5" /* Dataset names for testing filters */ -#define DSET_DEFAULT_NAME "default" -#define DSET_CHUNKED_NAME "chunked" +#define DSET_DEFAULT_NAME "default" +#define DSET_CHUNKED_NAME "chunked" #define DSET_COMPACT_NAME "compact" -#define DSET_SIMPLE_IO_NAME "simple_io" -#define DSET_USERBLOCK_IO_NAME "userblock_io" +#define DSET_SIMPLE_IO_NAME "simple_io" +#define DSET_USERBLOCK_IO_NAME "userblock_io" #define DSET_COMPACT_IO_NAME "compact_io" #define DSET_COMPACT_MAX_NAME "max_compact" #define DSET_COMPACT_MAX2_NAME "max_compact_2" -#define DSET_CONV_BUF_NAME "conv_buf" -#define DSET_TCONV_NAME "tconv" -#define DSET_DEFLATE_NAME "deflate" -#define DSET_SHUFFLE_NAME "shuffle" -#define DSET_FLETCHER32_NAME "fletcher32" -#define DSET_FLETCHER32_NAME_2 "fletcher32_2" -#define DSET_FLETCHER32_NAME_3 "fletcher32_3" -#define DSET_SHUF_DEF_FLET_NAME "shuffle+deflate+fletcher32" -#define DSET_SHUF_DEF_FLET_NAME_2 "shuffle+deflate+fletcher32_2" +#define DSET_CONV_BUF_NAME "conv_buf" +#define DSET_TCONV_NAME "tconv" +#define DSET_DEFLATE_NAME "deflate" +#define DSET_SHUFFLE_NAME "shuffle" +#define DSET_FLETCHER32_NAME "fletcher32" +#define DSET_FLETCHER32_NAME_2 "fletcher32_2" +#define DSET_FLETCHER32_NAME_3 "fletcher32_3" +#define DSET_SHUF_DEF_FLET_NAME "shuffle+deflate+fletcher32" +#define DSET_SHUF_DEF_FLET_NAME_2 "shuffle+deflate+fletcher32_2" #ifdef H5_HAVE_FILTER_SZIP #define DSET_SZIP_NAME "szip" -#define DSET_SHUF_SZIP_FLET_NAME "shuffle+szip+fletcher32" -#define DSET_SHUF_SZIP_FLET_NAME_2 "shuffle+szip+fletcher32_2" +#define DSET_SHUF_SZIP_FLET_NAME "shuffle+szip+fletcher32" +#define DSET_SHUF_SZIP_FLET_NAME_2 "shuffle+szip+fletcher32_2" #endif /* H5_HAVE_FILTER_SZIP */ -#define DSET_BOGUS_NAME "bogus" -#define DSET_MISSING_NAME "missing" -#define DSET_CAN_APPLY_NAME "can_apply" -#define DSET_CAN_APPLY_NAME2 "can_apply2" +#define DSET_BOGUS_NAME "bogus" +#define DSET_MISSING_NAME "missing" +#define DSET_CAN_APPLY_NAME "can_apply" +#define DSET_CAN_APPLY_NAME2 "can_apply2" #ifdef H5_HAVE_FILTER_SZIP -#define DSET_CAN_APPLY_SZIP_NAME "can_apply_szip" +#define DSET_CAN_APPLY_SZIP_NAME "can_apply_szip" #endif /* H5_HAVE_FILTER_SZIP */ -#define DSET_SET_LOCAL_NAME "set_local" -#define DSET_SET_LOCAL_NAME_2 "set_local_2" -#define DSET_ONEBYTE_SHUF_NAME "onebyte_shuffle" +#define DSET_SET_LOCAL_NAME "set_local" +#define DSET_SET_LOCAL_NAME_2 "set_local_2" +#define DSET_ONEBYTE_SHUF_NAME "onebyte_shuffle" #define DSET_NBIT_INT_NAME "nbit_int" #define DSET_NBIT_FLOAT_NAME "nbit_float" #define DSET_NBIT_DOUBLE_NAME "nbit_double" @@ -105,27 +105,27 @@ const char *FILENAME[] = { #define DSET_SCALEOFFSET_FLOAT_NAME_2 "scaleoffset_float_2" #define DSET_SCALEOFFSET_DOUBLE_NAME "scaleoffset_double" #define DSET_SCALEOFFSET_DOUBLE_NAME_2 "scaleoffset_double_2" -#define DSET_COMPARE_DCPL_NAME "compare_dcpl" -#define DSET_COMPARE_DCPL_NAME_2 "compare_dcpl_2" -#define DSET_COPY_DCPL_NAME_1 "copy_dcpl_1" -#define DSET_COPY_DCPL_NAME_2 "copy_dcpl_2" +#define DSET_COMPARE_DCPL_NAME "compare_dcpl" +#define DSET_COMPARE_DCPL_NAME_2 "compare_dcpl_2" +#define DSET_COPY_DCPL_NAME_1 "copy_dcpl_1" +#define DSET_COPY_DCPL_NAME_2 "copy_dcpl_2" #define COPY_DCPL_EXTFILE_NAME "ext_file" -#define DSET_DEPREC_NAME "deprecated" -#define DSET_DEPREC_NAME_CHUNKED "deprecated_chunked" -#define DSET_DEPREC_NAME_COMPACT "deprecated_compact" +#define DSET_DEPREC_NAME "deprecated" +#define DSET_DEPREC_NAME_CHUNKED "deprecated_chunked" +#define DSET_DEPREC_NAME_COMPACT "deprecated_compact" #define DSET_DEPREC_NAME_FILTER "deprecated_filter" #define USER_BLOCK 1024 #define SIXTY_FOUR_KB 65536 /* Temporary filter IDs used for testing */ -#define H5Z_FILTER_BOGUS 305 -#define H5Z_FILTER_CORRUPT 306 -#define H5Z_FILTER_CAN_APPLY_TEST 307 -#define H5Z_FILTER_SET_LOCAL_TEST 308 +#define H5Z_FILTER_BOGUS 305 +#define H5Z_FILTER_CORRUPT 306 +#define H5Z_FILTER_CAN_APPLY_TEST 307 +#define H5Z_FILTER_SET_LOCAL_TEST 308 #define H5Z_FILTER_DEPREC 309 -#define H5Z_FILTER_EXPAND 310 -#define H5Z_FILTER_CAN_APPLY_TEST2 311 +#define H5Z_FILTER_EXPAND 310 +#define H5Z_FILTER_CAN_APPLY_TEST2 311 /* Flags for testing filters */ #define DISABLE_FLETCHER32 0 @@ -195,15 +195,15 @@ const char *FILENAME[] = { #define BYPASS_FILL_VALUE 7 /* Declarations for test_idx_compatible() */ -#define FIXED_IDX_FILE "fixed_idx.h5" +#define FIXED_IDX_FILE "fixed_idx.h5" #define DSET "dset" #define DSET_FILTER "dset_filter" /* Shared global arrays */ #define DSET_DIM1 100 #define DSET_DIM2 200 -int points[DSET_DIM1][DSET_DIM2], check[DSET_DIM1][DSET_DIM2]; -double points_dbl[DSET_DIM1][DSET_DIM2], check_dbl[DSET_DIM1][DSET_DIM2]; +int points[DSET_DIM1][DSET_DIM2], check[DSET_DIM1][DSET_DIM2]; +double points_dbl[DSET_DIM1][DSET_DIM2], check_dbl[DSET_DIM1][DSET_DIM2]; /* Local prototypes for filter functions */ static size_t filter_bogus(unsigned int flags, size_t cd_nelmts, @@ -221,26 +221,26 @@ static size_t filter_expand(unsigned int flags, size_t cd_nelmts, /*------------------------------------------------------------------------- - * Function: test_create + * Function: test_create * - * Purpose: Attempts to create a dataset. + * Purpose: Attempts to create a dataset. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Robb Matzke - * Tuesday, December 9, 1997 + * Programmer: Robb Matzke + * Tuesday, December 9, 1997 * *------------------------------------------------------------------------- */ static herr_t test_create(hid_t file) { - hid_t dataset, space, small_space, create_parms; - hsize_t dims[2], small_dims[2]; - herr_t status; - hsize_t csize[2]; + hid_t dataset, space, small_space, create_parms; + hsize_t dims[2], small_dims[2]; + herr_t status; + hsize_t csize[2]; TESTING("create, open, close"); @@ -257,11 +257,11 @@ test_create(hid_t file) assert(space>=0); /* - * Create a dataset using the default dataset creation properties. We're + * Create a dataset using the default dataset creation properties. We're * not sure what they are, so we won't check. */ dataset = H5Dcreate2(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); if(dataset < 0) goto error; /* Close the dataset */ @@ -277,13 +277,13 @@ test_create(hid_t file) * reporting. */ H5E_BEGIN_TRY { - dataset = H5Dcreate2(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + dataset = H5Dcreate2(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space, + H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Library allowed overwrite of existing dataset."); - goto error; + H5_FAILED(); + puts(" Library allowed overwrite of existing dataset."); + goto error; } /* @@ -300,12 +300,12 @@ test_create(hid_t file) * reporting. */ H5E_BEGIN_TRY { - dataset = H5Dopen2(file, "does_not_exist", H5P_DEFAULT); + dataset = H5Dopen2(file, "does_not_exist", H5P_DEFAULT); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Opened a non-existent dataset."); - goto error; + H5_FAILED(); + puts(" Opened a non-existent dataset."); + goto error; } /* @@ -322,12 +322,12 @@ test_create(hid_t file) assert(status >= 0); H5E_BEGIN_TRY { dataset = H5Dcreate2(file, DSET_CHUNKED_NAME, H5T_NATIVE_DOUBLE, space, - H5P_DEFAULT, create_parms, H5P_DEFAULT); + H5P_DEFAULT, create_parms, H5P_DEFAULT); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Opened a dataset with incorrect chunking parameters."); - goto error; + H5_FAILED(); + puts(" Opened a dataset with incorrect chunking parameters."); + goto error; } csize[0] = 5; @@ -336,7 +336,7 @@ test_create(hid_t file) assert(status >= 0); dataset = H5Dcreate2(file, DSET_CHUNKED_NAME, H5T_NATIVE_DOUBLE, space, - H5P_DEFAULT, create_parms, H5P_DEFAULT); + H5P_DEFAULT, create_parms, H5P_DEFAULT); if(dataset < 0) goto error; H5Pclose(create_parms); @@ -373,18 +373,18 @@ test_create(hid_t file) /*------------------------------------------------------------------------- - * Function: test_simple_io + * Function: test_simple_io * - * Purpose: Tests simple I/O. That is, reading and writing a complete - * multi-dimensional array without data type or data space - * conversions, without compression, and stored contiguously. + * Purpose: Tests simple I/O. That is, reading and writing a complete + * multi-dimensional array without data type or data space + * conversions, without compression, and stored contiguously. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Robb Matzke - * Wednesday, December 10, 1997 + * Programmer: Robb Matzke + * Wednesday, December 10, 1997 * *------------------------------------------------------------------------- */ @@ -392,10 +392,10 @@ static herr_t test_simple_io(const char *env_h5_drvr, hid_t fapl) { char filename[FILENAME_BUF_SIZE]; - hid_t file, dataset, space, xfer; - int i, j, n; - hsize_t dims[2]; - void *tconv_buf = NULL; + hid_t file, dataset, space, xfer; + int i, j, n; + hsize_t dims[2]; + void *tconv_buf = NULL; int f; haddr_t offset; int rdata[DSET_DIM1][DSET_DIM2]; @@ -483,8 +483,8 @@ test_simple_io(const char *env_h5_drvr, hid_t fapl) PASSED(); } /* end if */ else { - SKIPPED(); - puts(" Current VFD doesn't support continuous address space"); + SKIPPED(); + puts(" Current VFD doesn't support continuous address space"); } /* end else */ return 0; @@ -495,16 +495,16 @@ error: /*------------------------------------------------------------------------- - * Function: test_userblock_offset + * Function: test_userblock_offset * - * Purpose: Tests H5Dget_offset when user block exists. + * Purpose: Tests H5Dget_offset when user block exists. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Raymond Lu - * Wednesday, November 27, 2002 + * Programmer: Raymond Lu + * Wednesday, November 27, 2002 * *------------------------------------------------------------------------- */ @@ -512,9 +512,9 @@ static herr_t test_userblock_offset(const char *env_h5_drvr, hid_t fapl) { char filename[FILENAME_BUF_SIZE]; - hid_t file, fcpl, dataset, space; - int i, j; - hsize_t dims[2]; + hid_t file, fcpl, dataset, space; + int i, j; + hsize_t dims[2]; int f; haddr_t offset; int rdata[DSET_DIM1][DSET_DIM2]; @@ -573,8 +573,8 @@ test_userblock_offset(const char *env_h5_drvr, hid_t fapl) PASSED(); } /* end if */ else { - SKIPPED(); - puts(" Current VFD doesn't support continuous address space"); + SKIPPED(); + puts(" Current VFD doesn't support continuous address space"); } /* end else */ return 0; @@ -607,7 +607,7 @@ test_compact_io(hid_t fapl) hid_t file, dataset, space, plist; hsize_t dims[2]; int wbuf[16][8], rbuf[16][8]; - char filename[FILENAME_BUF_SIZE]; + char filename[FILENAME_BUF_SIZE]; int i, j, n; TESTING("compact dataset I/O"); @@ -709,7 +709,7 @@ test_max_compact(hid_t fapl) size_t compact_size; int *wbuf = NULL; int *rbuf = NULL; - char filename[FILENAME_BUF_SIZE]; + char filename[FILENAME_BUF_SIZE]; int n; size_t u; @@ -846,11 +846,11 @@ error: * Function: test_layout_extend * * Purpose: Verify that the creation of extendible dataset with dataspace: - * cur_dims < max_dims (max_dims can be fixed size or H5S_UNLIMITED) - * will behave as follows: - * H5D_COMPACT layout: fail - * H5D_CONTIGUOUS layout: fail - * H5D_CHUNKED layout: succeed + * cur_dims < max_dims (max_dims can be fixed size or H5S_UNLIMITED) + * will behave as follows: + * H5D_COMPACT layout: fail + * H5D_CONTIGUOUS layout: fail + * H5D_CHUNKED layout: succeed * * Return: Success: 0 * Failure: -1 @@ -862,15 +862,15 @@ error: static herr_t test_layout_extend(hid_t fapl) { - char filename[FILENAME_BUF_SIZE]; /* File name */ - hid_t fid = -1; /* File id */ - hid_t sid_fix = -1, sid_unlim = -1; /* Dataspace id */ + char filename[FILENAME_BUF_SIZE]; /* File name */ + hid_t fid = -1; /* File id */ + hid_t sid_fix = -1, sid_unlim = -1; /* Dataspace id */ hid_t dcpl_compact = -1, dcpl_contig = -1, dcpl_chunked = -1; /* Dataset creation property list id */ - hid_t did_fixed = -1, did_unlim = -1; /* Dataset id */ - hsize_t cur_size[1] = {10}; /* Current size of dataspace */ - hsize_t max_unlim[1] = {H5S_UNLIMITED}; /* Maximum size of dataspace (unlimited) */ - hsize_t max_fix[1] = {100}; /* Maximum size of dataspace (fixed) */ - hsize_t chunk_dim[1] = {10}; /* Chunk size */ + hid_t did_fixed = -1, did_unlim = -1; /* Dataset id */ + hsize_t cur_size[1] = {10}; /* Current size of dataspace */ + hsize_t max_unlim[1] = {H5S_UNLIMITED}; /* Maximum size of dataspace (unlimited) */ + hsize_t max_fix[1] = {100}; /* Maximum size of dataspace (fixed) */ + hsize_t chunk_dim[1] = {10}; /* Chunk size */ TESTING("extendible dataset with various layout"); @@ -893,14 +893,14 @@ test_layout_extend(hid_t fapl) /* Create dataset with extendible dataspace (fixed max_dims) should fail */ H5E_BEGIN_TRY { - if(H5Dcreate2(fid, "compact", H5T_NATIVE_INT, sid_fix, H5P_DEFAULT, dcpl_compact, H5P_DEFAULT) != FAIL) - TEST_ERROR + if(H5Dcreate2(fid, "compact", H5T_NATIVE_INT, sid_fix, H5P_DEFAULT, dcpl_compact, H5P_DEFAULT) != FAIL) + TEST_ERROR } H5E_END_TRY; /* Create dataset with extendible dataspace (unlimited max_dims) should fail */ H5E_BEGIN_TRY { - if(H5Dcreate2(fid, "compact", H5T_NATIVE_INT, sid_unlim, H5P_DEFAULT, dcpl_compact, H5P_DEFAULT) != FAIL) - TEST_ERROR + if(H5Dcreate2(fid, "compact", H5T_NATIVE_INT, sid_unlim, H5P_DEFAULT, dcpl_compact, H5P_DEFAULT) != FAIL) + TEST_ERROR } H5E_END_TRY; /* Create property list for contiguous dataset creation */ @@ -911,14 +911,14 @@ test_layout_extend(hid_t fapl) /* Create dataset with extendible dataspace (fixed max_dims) should fail */ H5E_BEGIN_TRY { - if(H5Dcreate2(fid, "contig", H5T_NATIVE_INT, sid_fix, H5P_DEFAULT, dcpl_contig, H5P_DEFAULT) != FAIL) - TEST_ERROR + if(H5Dcreate2(fid, "contig", H5T_NATIVE_INT, sid_fix, H5P_DEFAULT, dcpl_contig, H5P_DEFAULT) != FAIL) + TEST_ERROR } H5E_END_TRY; /* Create dataset with extendible dataspace (unlimited max_dims) should fail*/ H5E_BEGIN_TRY { - if(H5Dcreate2(fid, "contig", H5T_NATIVE_INT, sid_unlim, H5P_DEFAULT, dcpl_contig, H5P_DEFAULT) != FAIL) - TEST_ERROR + if(H5Dcreate2(fid, "contig", H5T_NATIVE_INT, sid_unlim, H5P_DEFAULT, dcpl_contig, H5P_DEFAULT) != FAIL) + TEST_ERROR } H5E_END_TRY; /* Create property list for chunked dataset creation */ @@ -930,11 +930,11 @@ test_layout_extend(hid_t fapl) /* Create dataset with extendible dataspace (fixed max_dims) should succeed */ if((did_fixed = H5Dcreate2(fid, "chunked_fixed", H5T_NATIVE_INT, sid_fix, H5P_DEFAULT, dcpl_chunked, H5P_DEFAULT)) < 0) - FAIL_STACK_ERROR + FAIL_STACK_ERROR /* Create dataset with extendible dataspace (unlimited max_dims) should succeed */ if((did_unlim = H5Dcreate2(fid, "chunked_unlim", H5T_NATIVE_INT, sid_unlim, H5P_DEFAULT, dcpl_chunked, H5P_DEFAULT)) < 0) - FAIL_STACK_ERROR + FAIL_STACK_ERROR /* Closing */ if(H5Sclose(sid_fix) < 0) FAIL_STACK_ERROR @@ -969,16 +969,16 @@ error: /*------------------------------------------------------------------------- - * Function: test_conv_buffer + * Function: test_conv_buffer * - * Purpose: Test size of data type conversion buffer. + * Purpose: Test size of data type conversion buffer. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Raymond Lu - * Monday, May 12, 2003 + * Programmer: Raymond Lu + * Monday, May 12, 2003 * *------------------------------------------------------------------------- */ @@ -1020,15 +1020,15 @@ test_conv_buffer(hid_t fid) /* Populate the data members */ for(j = 0; j < DIM1; j++) - for(k = 0; k < DIM2; k++) - for(l = 0; l < DIM3; l++) - cf->a[j][k][l] = 10*(j+1) + l + k; + for(k = 0; k < DIM2; k++) + for(l = 0; l < DIM3; l++) + cf->a[j][k][l] = 10*(j+1) + l + k; for(j = 0; j < DIM2; j++) - cf->b[j] = (float)(100.0f*(j+1) + 0.01f*j); + cf->b[j] = (float)(100.0f*(j+1) + 0.01f*j); for(j = 0; j < DIM3; j++) - cf->c[j] = 100.0f*(j+1) + 0.02f*j; + cf->c[j] = 100.0f*(j+1) + 0.02f*j; /* Create data space */ @@ -1113,26 +1113,26 @@ error: /*------------------------------------------------------------------------- - * Function: test_tconv + * Function: test_tconv * - * Purpose: Test some simple data type conversion stuff. + * Purpose: Test some simple data type conversion stuff. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Robb Matzke - * Wednesday, January 14, 1998 + * Programmer: Robb Matzke + * Wednesday, January 14, 1998 * *------------------------------------------------------------------------- */ static herr_t test_tconv(hid_t file) { - char *out = NULL, *in = NULL; - hsize_t dims[1]; - hid_t space = -1, dataset = -1; - int i; + char *out = NULL, *in = NULL; + hsize_t dims[1]; + hid_t space = -1, dataset = -1; + int i; if ((out = (char *)HDmalloc((size_t)(4 * 1000 * 1000))) == NULL) goto error; @@ -1155,7 +1155,7 @@ test_tconv(hid_t file) /* Create the data set */ if((dataset = H5Dcreate2(file, DSET_TCONV_NAME, H5T_STD_I32LE, space, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) + H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error; /* Write the data to the dataset */ @@ -1203,25 +1203,25 @@ error: /* This message derives from H5Z */ const H5Z_class2_t H5Z_BOGUS[1] = {{ H5Z_CLASS_T_VERS, /* H5Z_class_t version */ - H5Z_FILTER_BOGUS, /* Filter id number */ + H5Z_FILTER_BOGUS, /* Filter id number */ 1, 1, /* Encoding and decoding enabled */ - "bogus", /* Filter name for debugging */ + "bogus", /* Filter name for debugging */ NULL, /* The "can apply" callback */ NULL, /* The "set local" callback */ - filter_bogus, /* The actual filter function */ + filter_bogus, /* The actual filter function */ }}; /*------------------------------------------------------------------------- - * Function: can_apply_bogus + * Function: can_apply_bogus * - * Purpose: A bogus 'can apply' callback that returns 0 for H5T_NATIVE_DOUBLE + * Purpose: A bogus 'can apply' callback that returns 0 for H5T_NATIVE_DOUBLE * dataype, but returns 1 for all other datatypes * - * Return: Success: Described above - * Failure: 0 + * Return: Success: Described above + * Failure: 0 * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Friday, April 5, 2003 * *------------------------------------------------------------------------- @@ -1239,15 +1239,15 @@ can_apply_bogus(hid_t H5_ATTR_UNUSED dcpl_id, hid_t type_id, hid_t H5_ATTR_UNUSE /*------------------------------------------------------------------------- - * Function: filter_bogus + * Function: filter_bogus * - * Purpose: A bogus compression method that doesn't do anything. + * Purpose: A bogus compression method that doesn't do anything. * - * Return: Success: Data chunk size + * Return: Success: Data chunk size * - * Failure: 0 + * Failure: 0 * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Tuesday, April 21, 1998 * *------------------------------------------------------------------------- @@ -1262,16 +1262,16 @@ filter_bogus(unsigned int H5_ATTR_UNUSED flags, size_t H5_ATTR_UNUSED cd_nelmts, /*------------------------------------------------------------------------- - * Function: set_local_bogus2 + * Function: set_local_bogus2 * - * Purpose: A 'set local' callback that stores the size of the datatype + * Purpose: A 'set local' callback that stores the size of the datatype * and adds it to all the H5T_NATIVE_INT values during * filter operation. * - * Return: Success: non-negative - * Failure: negative + * Return: Success: non-negative + * Failure: negative * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Friday, April 5, 2003 * *------------------------------------------------------------------------- @@ -1312,17 +1312,17 @@ set_local_bogus2(hid_t dcpl_id, hid_t type_id, hid_t H5_ATTR_UNUSED space_id) /*------------------------------------------------------------------------- - * Function: filter_bogus2 + * Function: filter_bogus2 * - * Purpose: A filter method that adds a value to data values on writing + * Purpose: A filter method that adds a value to data values on writing * (if the parameter is set), but does not modify data values on * reading (so that correct operation of the filter can be * checked). * - * Return: Success: Data chunk size - * Failure: 0 + * Return: Success: Data chunk size + * Failure: 0 * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, April 7, 2003 * *------------------------------------------------------------------------- @@ -1370,15 +1370,15 @@ filter_bogus2(unsigned int flags, size_t cd_nelmts, /*------------------------------------------------------------------------- - * Function: filter_bogus3 + * Function: filter_bogus3 * - * Purpose: A bogus compression method that returns a failure. + * Purpose: A bogus compression method that returns a failure. * - * Return: Success: Data chunk size + * Return: Success: Data chunk size * - * Failure: 0 + * Failure: 0 * - * Programmer: Raymond Lu + * Programmer: Raymond Lu * 4 August 2010 * *------------------------------------------------------------------------- @@ -1394,12 +1394,12 @@ filter_bogus3(unsigned int H5_ATTR_UNUSED flags, size_t H5_ATTR_UNUSED cd_nelmts /* This message derives from H5Z */ const H5Z_class2_t H5Z_CORRUPT[1] = {{ H5Z_CLASS_T_VERS, /* H5Z_class_t version */ - H5Z_FILTER_CORRUPT, /* Filter id number */ + H5Z_FILTER_CORRUPT, /* Filter id number */ 1, 1, /* Encoding and decoding enabled */ - "corrupt", /* Filter name for debugging */ + "corrupt", /* Filter name for debugging */ NULL, /* The "can apply" callback */ NULL, /* The "set local" callback */ - filter_corrupt, /* The actual filter function */ + filter_corrupt, /* The actual filter function */ }}; @@ -1410,11 +1410,11 @@ const H5Z_class2_t H5Z_CORRUPT[1] = {{ * writing so that when data is read back, the checksum should * fail. * - * Return: Success: Data chunk size + * Return: Success: Data chunk size * - * Failure: 0 + * Failure: 0 * - * Programmer: Raymond Lu + * Programmer: Raymond Lu * Jan 14, 2003 * *------------------------------------------------------------------------- @@ -1439,7 +1439,7 @@ filter_corrupt(unsigned int flags, size_t cd_nelmts, if(offset > nbytes || (offset + length) > nbytes || length < sizeof(unsigned int)) TEST_ERROR - if(NULL == (data = HDmalloc((size_t)length))) + if(NULL == (data = HDmalloc((size_t)length))) TEST_ERROR HDmemset(data, (int)value, (size_t)length); @@ -1474,7 +1474,7 @@ error: * * Return: continue * - * Programmer: Raymond Lu + * Programmer: Raymond Lu * Jan 14, 2003 * *------------------------------------------------------------------------- @@ -1497,7 +1497,7 @@ filter_cb_cont(H5Z_filter_t filter, void H5_ATTR_UNUSED *buf, size_t H5_ATTR_UNU * * Return: fail * - * Programmer: Raymond Lu + * Programmer: Raymond Lu * Jan 14, 2003 * *------------------------------------------------------------------------- @@ -1514,17 +1514,17 @@ filter_cb_fail(H5Z_filter_t filter, void H5_ATTR_UNUSED *buf, size_t H5_ATTR_UNU /*------------------------------------------------------------------------- - * Function: test_filter_internal + * Function: test_filter_internal * - * Purpose: Tests dataset compression. If compression is requested when - * it hasn't been compiled into the library (such as when - * updating an existing compressed dataset) then data is sent to - * the file uncompressed but no errors are returned. + * Purpose: Tests dataset compression. If compression is requested when + * it hasn't been compiled into the library (such as when + * updating an existing compressed dataset) then data is sent to + * the file uncompressed but no errors are returned. * - * Return: Success: 0 - * Failure: -1 + * Return: Success: 0 + * Failure: -1 * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Wednesday, April 15, 1998 * *------------------------------------------------------------------------- @@ -1533,15 +1533,15 @@ static herr_t test_filter_internal(hid_t fid, const char *name, hid_t dcpl, int if_fletcher32, int corrupted, hsize_t *dset_size) { - hid_t dataset; /* Dataset ID */ - hid_t dxpl; /* Dataset xfer property list ID */ - hid_t write_dxpl; /* Dataset xfer property list ID for writing */ - hid_t sid; /* Dataspace ID */ - const hsize_t size[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */ - const hsize_t hs_offset[2] = {FILTER_HS_OFFSET1, FILTER_HS_OFFSET2}; /* Hyperslab offset */ - const hsize_t hs_size[2] = {FILTER_HS_SIZE1, FILTER_HS_SIZE2}; /* Hyperslab size */ - void *tconv_buf = NULL; /* Temporary conversion buffer */ - size_t i, j, n; /* Local index variables */ + hid_t dataset; /* Dataset ID */ + hid_t dxpl; /* Dataset xfer property list ID */ + hid_t write_dxpl; /* Dataset xfer property list ID for writing */ + hid_t sid; /* Dataspace ID */ + const hsize_t size[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */ + const hsize_t hs_offset[2] = {FILTER_HS_OFFSET1, FILTER_HS_OFFSET2}; /* Hyperslab offset */ + const hsize_t hs_size[2] = {FILTER_HS_SIZE1, FILTER_HS_SIZE2}; /* Hyperslab size */ + void *tconv_buf = NULL; /* Temporary conversion buffer */ + size_t i, j, n; /* Local index variables */ herr_t status; /* Error status */ /* Create the data space */ @@ -1574,7 +1574,7 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl, int if_fletcher32, /* Create the dataset */ if((dataset = H5Dcreate2(fid, name, H5T_NATIVE_INT, sid, H5P_DEFAULT, - dcpl, H5P_DEFAULT)) < 0) goto error; + dcpl, H5P_DEFAULT)) < 0) goto error; PASSED(); @@ -1585,18 +1585,18 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl, int if_fletcher32, TESTING(" filters (uninitialized read)"); if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check) < 0) - TEST_ERROR; + TEST_ERROR; for(i=0; i<(size_t)size[0]; i++) { - for(j=0; j<(size_t)size[1]; j++) { - if(0!=check[i][j]) { - H5_FAILED(); - printf(" Read a non-zero value.\n"); - printf(" At index %lu,%lu\n", - (unsigned long)i, (unsigned long)j); - goto error; - } - } + for(j=0; j<(size_t)size[1]; j++) { + if(0!=check[i][j]) { + H5_FAILED(); + printf(" Read a non-zero value.\n"); + printf(" At index %lu,%lu\n", + (unsigned long)i, (unsigned long)j); + goto error; + } + } } PASSED(); @@ -1608,13 +1608,13 @@ test_filter_internal(hid_t fid, const char *name, hid_t dcpl, int if_fletcher32, TESTING(" filters (write)"); for(i=n=0; i=0) TEST_ERROR; } else { if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check) < 0) - TEST_ERROR; + TEST_ERROR; /* Check that the values read are the same as the values written */ for(i=0; i=0) TEST_ERROR; } else { if(H5Dread (dataset, H5T_NATIVE_INT, sid, sid, dxpl, check) < 0) - TEST_ERROR; + TEST_ERROR; /* Check that the values read are the same as the values written */ for(i=0; i<(size_t)hs_size[0]; i++) { - for(j=0; j<(size_t)hs_size[1]; j++) { - if(points[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j] != + for(j=0; j<(size_t)hs_size[1]; j++) { + if(points[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j] != check[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j]) { - H5_FAILED(); - fprintf(stderr," Read different values than written.\n"); - fprintf(stderr," At index %lu,%lu\n", - (unsigned long)((size_t)hs_offset[0]+i), - (unsigned long)((size_t)hs_offset[1]+j)); - fprintf(stderr," At original: %d\n", - (int)points[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j]); - fprintf(stderr," At returned: %d\n", - (int)check[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j]); - goto error; - } - } + H5_FAILED(); + fprintf(stderr," Read different values than written.\n"); + fprintf(stderr," At index %lu,%lu\n", + (unsigned long)((size_t)hs_offset[0]+i), + (unsigned long)((size_t)hs_offset[1]+j)); + fprintf(stderr," At original: %d\n", + (int)points[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j]); + fprintf(stderr," At returned: %d\n", + (int)check[(size_t)hs_offset[0]+i][(size_t)hs_offset[1]+j]); + goto error; + } + } } } @@ -1861,16 +1861,16 @@ error: } /*------------------------------------------------------------------------- - * Function: test_filter_noencoder + * Function: test_filter_noencoder * - * Purpose: Tests filters with no encoder present. Ensures that data - * can still be decoded correctly and that errors are thrown - * when the application tries to write. + * Purpose: Tests filters with no encoder present. Ensures that data + * can still be decoded correctly and that errors are thrown + * when the application tries to write. * - * Return: Success: 0 - * Failure: -1 + * Return: Success: 0 + * Failure: -1 * - * Programmer: Nat Furrer and James Laird + * Programmer: Nat Furrer and James Laird * Monday, June 7, 2004 * *------------------------------------------------------------------------- @@ -2030,7 +2030,7 @@ test_get_filter_info(void) #ifdef H5_HAVE_FILTER_SZIP if(H5Zget_filter_info(H5Z_FILTER_SZIP, &flags) < 0) TEST_ERROR - if(SZ_encoder_enabled()) { + if(H5Z_SZIP->encoder_present) { if(((flags & H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((flags & H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) TEST_ERROR @@ -2057,14 +2057,14 @@ error: } /*------------------------------------------------------------------------- - * Function: test_filters + * Function: test_filters * - * Purpose: Tests dataset filter. + * Purpose: Tests dataset filter. * - * Return: Success: 0 - * Failure: -1 + * Return: Success: 0 + * Failure: -1 * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Wednesday, April 15, 1998 * *------------------------------------------------------------------------- @@ -2076,7 +2076,7 @@ H5_ATTR_UNUSED #endif /* H5_HAVE_FILTER_SZIP */ fapl) { - hid_t dc; /* Dataset creation property list ID */ + hid_t dc; /* Dataset creation property list ID */ const hsize_t chunk_size[2] = {FILTER_CHUNK_DIM1, FILTER_CHUNK_DIM2}; /* Chunk dimensions */ hsize_t null_size; /* Size of dataset with null filter */ @@ -2191,21 +2191,21 @@ H5_ATTR_UNUSED if((dc = H5Pcreate(H5P_DATASET_CREATE)) < 0) goto error; if(H5Pset_chunk (dc, 2, chunk_size) < 0) goto error; - puts(""); - if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; - if(test_filter_internal(file,DSET_SZIP_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&szip_size) < 0) goto error; + puts(""); + if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; + if(test_filter_internal(file,DSET_SZIP_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&szip_size) < 0) goto error; if(H5Pclose (dc) < 0) goto error; } else { - SKIPPED(); + SKIPPED(); } TESTING("szip filter (without encoder)"); if( h5_szip_can_encode() != 1) { - puts(""); - if(test_filter_noencoder(NOENCODER_SZIP_DATASET) < 0) goto error; + puts(""); + if(test_filter_noencoder(NOENCODER_SZIP_DATASET) < 0) goto error; } else { - SKIPPED(); + SKIPPED(); } #else /* H5_HAVE_FILTER_SZIP */ @@ -2279,22 +2279,22 @@ H5_ATTR_UNUSED if(H5Pset_fletcher32 (dc) < 0) goto error; if(H5Pset_shuffle (dc) < 0) goto error; - /* Make sure encoding is enabled */ + /* Make sure encoding is enabled */ if( h5_szip_can_encode() == 1) { - puts(""); - if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; - if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size) < 0) goto error; + puts(""); + if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; + if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size) < 0) goto error; } else { - SKIPPED(); + SKIPPED(); } TESTING("shuffle+szip+checksum filters(checksum first, without encoder)"); if( h5_szip_can_encode() != 1) { - puts(""); - if(test_filter_noencoder(NOENCODER_SZIP_SHUFF_FLETCH_DATASET) < 0) goto error; + puts(""); + if(test_filter_noencoder(NOENCODER_SZIP_SHUFF_FLETCH_DATASET) < 0) goto error; } else { - SKIPPED(); + SKIPPED(); } /* Clean up objects used for this test */ @@ -2304,20 +2304,20 @@ H5_ATTR_UNUSED /* Make sure encoding is enabled */ if( h5_szip_can_encode() == 1) { - puts(""); - if((dc = H5Pcreate(H5P_DATASET_CREATE)) < 0) goto error; - if(H5Pset_chunk (dc, 2, chunk_size) < 0) goto error; - if(H5Pset_shuffle (dc) < 0) goto error; - if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; - if(H5Pset_fletcher32 (dc) < 0) goto error; + puts(""); + if((dc = H5Pcreate(H5P_DATASET_CREATE)) < 0) goto error; + if(H5Pset_chunk (dc, 2, chunk_size) < 0) goto error; + if(H5Pset_shuffle (dc) < 0) goto error; + if(H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block) < 0) goto error; + if(H5Pset_fletcher32 (dc) < 0) goto error; - if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME_2,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size) < 0) goto error; + if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME_2,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size) < 0) goto error; - /* Clean up objects used for this test */ - if(H5Pclose (dc) < 0) goto error; + /* Clean up objects used for this test */ + if(H5Pclose (dc) < 0) goto error; } else { - SKIPPED(); + SKIPPED(); } #else /* H5_HAVE_FILTER_SZIP */ @@ -2333,14 +2333,14 @@ error: /*------------------------------------------------------------------------- - * Function: test_missing_filter + * Function: test_missing_filter * - * Purpose: Tests library behavior when filter is missing + * Purpose: Tests library behavior when filter is missing * - * Return: Success: 0 - * Failure: -1 + * Return: Success: 0 + * Failure: -1 * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Thursday, November 14, 2002 * *------------------------------------------------------------------------- @@ -2468,16 +2468,16 @@ test_missing_filter(hid_t file) /* Compare data */ /* Check that the values read are the same as the values written */ for(i=0; i<(size_t)dims[0]; i++) { - for(j=0; j<(size_t)dims[1]; j++) { - if(points[i][j] != check[i][j]) { - H5_FAILED(); - printf(" Line %d: Read different values than written.\n",__LINE__); - printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j)); - printf(" At original: %d\n",points[i][j]); - printf(" At returned: %d\n",check[i][j]); - goto error; - } /* end if */ - } /* end for */ + for(j=0; j<(size_t)dims[1]; j++) { + if(points[i][j] != check[i][j]) { + H5_FAILED(); + printf(" Line %d: Read different values than written.\n",__LINE__); + printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j)); + printf(" At original: %d\n",points[i][j]); + printf(" At returned: %d\n",check[i][j]); + goto error; + } /* end if */ + } /* end for */ } /* end for */ /* Close dataset */ @@ -2506,8 +2506,8 @@ test_missing_filter(hid_t file) /* Compose the name of the file to open, using the srcdir, if appropriate */ if(srcdir && ((HDstrlen(srcdir) + HDstrlen(FILE_DEFLATE_NAME) + 1) < sizeof(testfile))){ - HDstrcpy(testfile, srcdir); - HDstrcat(testfile, "/"); + HDstrcpy(testfile, srcdir); + HDstrcat(testfile, "/"); } HDstrcat(testfile, FILE_DEFLATE_NAME); @@ -2581,17 +2581,17 @@ error: /*------------------------------------------------------------------------- - * Function: test_onebyte_shuffle + * Function: test_onebyte_shuffle * - * Purpose: Tests the 8-bit array with shuffling algorithm. + * Purpose: Tests the 8-bit array with shuffling algorithm. * The shuffled array should be the same result as * that before the shuffling. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Kent Yang + * Programmer: Kent Yang * Wednesday, Nov. 13th, 2002 * *------------------------------------------------------------------------- @@ -2599,12 +2599,12 @@ error: static herr_t test_onebyte_shuffle(hid_t file) { - hid_t dataset, space,dc; - const hsize_t size[2] = {10, 20}; + hid_t dataset, space,dc; + const hsize_t size[2] = {10, 20}; const hsize_t chunk_size[2] = {10, 20}; unsigned char orig_data[10][20]; unsigned char new_data[10][20]; - size_t i, j; + size_t i, j; TESTING("8-bit shuffling (setup)"); @@ -2618,11 +2618,11 @@ test_onebyte_shuffle(hid_t file) /* Create the dataset */ if((dataset = H5Dcreate2(file, DSET_ONEBYTE_SHUF_NAME, H5T_NATIVE_UCHAR, - space, H5P_DEFAULT, dc, H5P_DEFAULT)) < 0) goto error; + space, H5P_DEFAULT, dc, H5P_DEFAULT)) < 0) goto error; for(i= 0;i< 10; i++) for(j = 0; j < 20; j++) - orig_data[i][j] = (unsigned char)HDrandom(); + orig_data[i][j] = (unsigned char)HDrandom(); PASSED(); @@ -2634,8 +2634,8 @@ test_onebyte_shuffle(hid_t file) TESTING("8-bit shuffling (write)"); if(H5Dwrite(dataset, H5T_NATIVE_UCHAR, H5S_ALL, H5S_ALL, H5P_DEFAULT, - orig_data) < 0) - goto error; + orig_data) < 0) + goto error; PASSED(); @@ -2647,20 +2647,20 @@ test_onebyte_shuffle(hid_t file) /* Read the dataset back */ if(H5Dread(dataset, H5T_NATIVE_UCHAR, H5S_ALL, H5S_ALL, H5P_DEFAULT, - new_data) < 0) - goto error; + new_data) < 0) + goto error; /* Check that the values read are the same as the values written */ for(i=0; i<(size_t)size[0]; i++) { - for(j=0; j<(size_t)size[1]; j++) { - if(new_data[i][j] != orig_data[i][j]) { - H5_FAILED(); - printf(" Read different values than written.\n"); - printf(" At index %lu,%lu\n", - (unsigned long)i, (unsigned long)j); - goto error; - } - } + for(j=0; j<(size_t)size[1]; j++) { + if(new_data[i][j] != orig_data[i][j]) { + H5_FAILED(); + printf(" Read different values than written.\n"); + printf(" At index %lu,%lu\n", + (unsigned long)i, (unsigned long)j); + goto error; + } + } } /*---------------------------------------------------------------------- @@ -2944,12 +2944,12 @@ test_nbit_double(hid_t file) H5_DOUBLE(1.2677579992621376e-61), H5_DOUBLE(64568.289448797700), H5_DOUBLE(-1.0619721778839084e-75) - }, + }, { H5_DOUBLE(2.1499497833454840e+56), - H5_DOUBLE(6.6562295504670740e-3), - H5_DOUBLE(-1.5747263393432150), - H5_DOUBLE(1.0711093225222612), + H5_DOUBLE(6.6562295504670740e-3), + H5_DOUBLE(-1.5747263393432150), + H5_DOUBLE(1.0711093225222612), H5_DOUBLE(-9.8971679387636870e-1) }}; double new_data[2][5]; @@ -3198,7 +3198,7 @@ test_nbit_compound(hid_t file) hid_t dataset, space, dc; const hsize_t size[2] = {2, 5}; const hsize_t chunk_size[2] = {2, 5}; - const float float_val[2][5] = {{188384.0F, 19.103516F, -1.0831790e9F, -84.242188F, 5.2045898F}, + const float float_val[2][5] = {{188384.0F, 19.103516F, -1.0831790e9F, -84.242188F, 5.2045898F}, {-49140.0F, 2350.25F, -3.2110596e-1F, 6.4998865e-5F, -0.0F}}; atomic orig_data[2][5]; atomic new_data[2][5]; @@ -3544,7 +3544,7 @@ test_nbit_compound_2(hid_t file) /* Check that the values read are the same as the values written * Use mask for checking the significant bits, ignoring the padding bits */ - /* The original code + /* The original code * i_mask = ~((unsigned)~0 << (precision[0] + offset[0])) & ((unsigned)~0 << offset[0]); * left shift a 32-bit integer for 32-bit. The result is undefined by C language. A user * discovered it using clang compiler with -fcatch-undefined-behavior option (see Issue 7674 @@ -3865,7 +3865,7 @@ test_nbit_int_size(hid_t file) printf(" line %d: H5Pset_order failed\n",__LINE__); goto error; } /* end if */ - + if(H5Tset_size(datatype, 4)<0) { H5_FAILED(); printf(" line %d: H5Pset_size failed\n",__LINE__); @@ -3919,7 +3919,7 @@ test_nbit_int_size(hid_t file) * Create a new dataset within the file. */ if((dataset = H5Dcreate2 (file, DSET_NBIT_INT_SIZE_NAME, datatype, - dataspace, H5P_DEFAULT, + dataspace, H5P_DEFAULT, dset_create_props, H5P_DEFAULT))<0) { H5_FAILED(); printf(" line %d: H5dwrite failed\n",__LINE__); @@ -3936,7 +3936,7 @@ test_nbit_int_size(hid_t file) goto error; } /* end if */ - /* + /* * Get the precision of the data type */ if((precision = H5Tget_precision(datatype)) == 0) { @@ -3945,10 +3945,10 @@ test_nbit_int_size(hid_t file) goto error; } /* end if */ - /* + /* * The size of the dataset after compression should around 2 * DSET_DIM1 * DSET_DIM2 */ - if((dset_size = H5Dget_storage_size(dataset)) < DSET_DIM1*DSET_DIM2*(precision/8) || + if((dset_size = H5Dget_storage_size(dataset)) < DSET_DIM1*DSET_DIM2*(precision/8) || dset_size > DSET_DIM1*DSET_DIM2*(precision/8) + 1*KB) { H5_FAILED(); HDfprintf(stdout, " Line %d: wrong dataset size: %Hu\n",__LINE__, dset_size); @@ -3972,7 +3972,7 @@ error: /*------------------------------------------------------------------------- * Function: test_nbit_flt_size * - * Purpose: Tests the correct size of the floating-number datatype for + * Purpose: Tests the correct size of the floating-number datatype for * nbit filter * * Return: Success: 0 @@ -4063,15 +4063,15 @@ test_nbit_flt_size(hid_t file) printf(" line %d: H5Pset_order failed\n",__LINE__); goto error; } /* end if */ - + if(H5Tset_ebias(datatype, 31)<0) { H5_FAILED(); printf(" line %d: H5Pset_size failed\n",__LINE__); goto error; } /* end if */ - /* - * Initiliaze data buffer with random data + /* + * Initiliaze data buffer with random data */ for (i=0; i < DSET_DIM1; i++) for (j=0; j < DSET_DIM2; j++) @@ -4117,7 +4117,7 @@ test_nbit_flt_size(hid_t file) * Create a new dataset within the file. */ if((dataset = H5Dcreate2 (file, DSET_NBIT_FLT_SIZE_NAME, datatype, - dataspace, H5P_DEFAULT, + dataspace, H5P_DEFAULT, dset_create_props, H5P_DEFAULT))<0) { H5_FAILED(); printf(" line %d: H5dwrite failed\n",__LINE__); @@ -4134,7 +4134,7 @@ test_nbit_flt_size(hid_t file) goto error; } /* end if */ - /* + /* * Get the precision of the data type */ if((precision = H5Tget_precision(datatype)) == 0) { @@ -4143,10 +4143,10 @@ test_nbit_flt_size(hid_t file) goto error; } /* end if */ - /* + /* * The size of the dataset after compression should around 2 * DSET_DIM1 * DSET_DIM2 */ - if((dset_size = H5Dget_storage_size(dataset)) < DSET_DIM1*DSET_DIM2*(precision/8) || + if((dset_size = H5Dget_storage_size(dataset)) < DSET_DIM1*DSET_DIM2*(precision/8) || dset_size > DSET_DIM1*DSET_DIM2*(precision/8) + 1*KB) { H5_FAILED(); HDfprintf(stdout, " Line %d: wrong dataset size: %Hu\n",__LINE__, dset_size); @@ -4891,18 +4891,18 @@ error: /*------------------------------------------------------------------------- - * Function: test_multiopen + * Function: test_multiopen * - * Purpose: Tests that a bug no longer exists. If a dataset is opened - * twice and one of the handles is used to extend the dataset, - * then the other handle should return the new size when - * queried. + * Purpose: Tests that a bug no longer exists. If a dataset is opened + * twice and one of the handles is used to extend the dataset, + * then the other handle should return the new size when + * queried. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Tuesday, June 9, 1998 * *------------------------------------------------------------------------- @@ -4910,10 +4910,10 @@ error: static herr_t test_multiopen (hid_t file) { - hid_t dcpl = -1, space = -1, dset1 = -1, dset2 = -1; - hsize_t cur_size[1] = {10}; - static hsize_t max_size[1] = {H5S_UNLIMITED}; - hsize_t tmp_size[1]; + hid_t dcpl = -1, space = -1, dset1 = -1, dset2 = -1; + hsize_t cur_size[1] = {10}; + static hsize_t max_size[1] = {H5S_UNLIMITED}; + hsize_t tmp_size[1]; TESTING("multi-open with extending"); @@ -4933,9 +4933,9 @@ test_multiopen (hid_t file) if((space = H5Dget_space(dset2)) < 0) goto error; if(H5Sget_simple_extent_dims(space, tmp_size, NULL) < 0) goto error; if(cur_size[0] != tmp_size[0]) { - H5_FAILED(); - printf(" Got %d instead of %d!\n", (int)tmp_size[0], (int)cur_size[0]); - goto error; + H5_FAILED(); + printf(" Got %d instead of %d!\n", (int)tmp_size[0], (int)cur_size[0]); + goto error; } /* end if */ if(H5Dclose(dset1) < 0) goto error; @@ -4948,25 +4948,25 @@ test_multiopen (hid_t file) error: H5E_BEGIN_TRY { - H5Dclose(dset1); - H5Dclose(dset2); - H5Sclose(space); - H5Pclose(dcpl); + H5Dclose(dset1); + H5Dclose(dset2); + H5Sclose(space); + H5Pclose(dcpl); } H5E_END_TRY; return -1; } /*------------------------------------------------------------------------- - * Function: test_types + * Function: test_types * - * Purpose: Make some datasets with various types so we can test h5ls. + * Purpose: Make some datasets with various types so we can test h5ls. * - * Return: Success: 0 + * Return: Success: 0 * - * Failure: -1 + * Failure: -1 * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, June 7, 1999 * *------------------------------------------------------------------------- @@ -4974,10 +4974,10 @@ test_multiopen (hid_t file) static herr_t test_types(hid_t file) { - hid_t grp=-1, type=-1, space=-1, dset=-1; - size_t i; - hsize_t nelmts; - unsigned char buf[32]; + hid_t grp=-1, type=-1, space=-1, dset=-1; + size_t i; + hsize_t nelmts; + unsigned char buf[32]; TESTING("various datatypes"); if((grp = H5Gcreate2(file, "typetests", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error; @@ -4985,12 +4985,12 @@ test_types(hid_t file) /* bitfield_1 */ nelmts = sizeof(buf); if((type=H5Tcopy(H5T_STD_B8LE)) < 0 || - (space=H5Screate_simple(1, &nelmts, NULL)) < 0 || - (dset=H5Dcreate2(grp, "bitfield_1", type, space, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) - goto error; + (space=H5Screate_simple(1, &nelmts, NULL)) < 0 || + (dset=H5Dcreate2(grp, "bitfield_1", type, space, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) + goto error; for(i=0; i=0); /* - * Create a dataset using the default dataset creation properties. We're + * Create a dataset using the default dataset creation properties. We're * not sure what they are, so we won't check. */ if((dataset = H5Dcreate1(file, DSET_DEPREC_NAME, H5T_NATIVE_DOUBLE, space, H5P_DEFAULT)) < 0) goto error; @@ -6843,13 +6843,13 @@ test_deprec(hid_t file) * reporting. */ H5E_BEGIN_TRY { - dataset = H5Dcreate1(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space, - H5P_DEFAULT); + dataset = H5Dcreate1(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space, + H5P_DEFAULT); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Library allowed overwrite of existing dataset."); - goto error; + H5_FAILED(); + puts(" Library allowed overwrite of existing dataset."); + goto error; } /* @@ -6865,12 +6865,12 @@ test_deprec(hid_t file) * reporting. */ H5E_BEGIN_TRY { - dataset = H5Dopen1(file, "does_not_exist"); + dataset = H5Dopen1(file, "does_not_exist"); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Opened a non-existent dataset."); - goto error; + H5_FAILED(); + puts(" Opened a non-existent dataset."); + goto error; } /* @@ -6914,12 +6914,12 @@ test_deprec(hid_t file) assert(status >= 0); H5E_BEGIN_TRY { dataset = H5Dcreate1(file, DSET_DEPREC_NAME_CHUNKED, H5T_NATIVE_DOUBLE, space, - create_parms); + create_parms); } H5E_END_TRY; if(dataset >= 0) { - H5_FAILED(); - puts(" Opened a dataset with incorrect chunking parameters."); - goto error; + H5_FAILED(); + puts(" Opened a dataset with incorrect chunking parameters."); + goto error; } csize[0] = 5; @@ -7024,7 +7024,7 @@ test_huge_chunks(hid_t fapl) ret = H5Pset_chunk(dcpl, 1, &chunk_dim); } H5E_END_TRY; if(ret >= 0) - FAIL_PUTS_ERROR(" Set chunk size with too large of chunk dimensions.") + FAIL_PUTS_ERROR(" Set chunk size with too large of chunk dimensions.") /* Try to set too large of a chunk for n-D dataset (# of elements) */ chunk_dim2[0] = TOO_HUGE_CHUNK_DIM2_0; @@ -7034,7 +7034,7 @@ test_huge_chunks(hid_t fapl) ret = H5Pset_chunk(dcpl, 3, chunk_dim2); } H5E_END_TRY; if(ret >= 0) - FAIL_PUTS_ERROR(" Set chunk size with too large of chunk dimensions.") + FAIL_PUTS_ERROR(" Set chunk size with too large of chunk dimensions.") /* Set 1-D chunk size */ chunk_dim = HUGE_CHUNK_DIM; @@ -7049,7 +7049,7 @@ test_huge_chunks(hid_t fapl) dsid = H5Dcreate2(fid, HUGE_DATASET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT); } H5E_END_TRY; if(dsid >= 0) - FAIL_PUTS_ERROR(" 1-D Dataset with too large of chunk dimensions created.") + FAIL_PUTS_ERROR(" 1-D Dataset with too large of chunk dimensions created.") /* Close 1-D dataspace */ if(H5Sclose(sid) < 0) FAIL_STACK_ERROR @@ -7072,7 +7072,7 @@ test_huge_chunks(hid_t fapl) dsid = H5Dcreate2(fid, HUGE_DATASET2, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT); } H5E_END_TRY; if(dsid >= 0) - FAIL_PUTS_ERROR(" n-D Dataset with too large of chunk dimensions created.") + FAIL_PUTS_ERROR(" n-D Dataset with too large of chunk dimensions created.") /* Close n-D dataspace */ if(H5Sclose(sid) < 0) FAIL_STACK_ERROR @@ -7468,12 +7468,12 @@ error: /* This message derives from H5Z */ const H5Z_class2_t H5Z_EXPAND[1] = {{ H5Z_CLASS_T_VERS, /* H5Z_class_t version */ - H5Z_FILTER_EXPAND, /* Filter id number */ + H5Z_FILTER_EXPAND, /* Filter id number */ 1, 1, /* Encoding and decoding enabled */ - "expand", /* Filter name for debugging */ + "expand", /* Filter name for debugging */ NULL, /* The "can apply" callback */ NULL, /* The "set local" callback */ - filter_expand, /* The actual filter function */ + filter_expand, /* The actual filter function */ }}; /* Global "expansion factor" for filter_expand() routine */ @@ -7486,15 +7486,15 @@ static size_t filter_expand_factor_g = 0; * Purpose: For testing library's behavior when a filter expands a chunk * too much. * - * Note: This filter doesn't actually re-allocate the buffer to be - * larger, it just changes the buffer size to a value that's too - * large. The library should throw an error before using the - * incorrect buffer information. + * Note: This filter doesn't actually re-allocate the buffer to be + * larger, it just changes the buffer size to a value that's too + * large. The library should throw an error before using the + * incorrect buffer information. * - * Return: Success: Data chunk size - * Failure: 0 + * Return: Success: Data chunk size + * Failure: 0 * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Mar 31, 2009 * *------------------------------------------------------------------------- @@ -7553,8 +7553,8 @@ test_chunk_expand(hid_t fapl) hid_t scalar_sid = -1;/* Scalar dataspace ID */ hid_t dsid = -1; /* Dataset ID */ hsize_t dim, max_dim, chunk_dim; /* Dataset and chunk dimensions */ - hsize_t hs_offset; /* Hyperslab offset */ - hsize_t hs_size; /* Hyperslab size */ + hsize_t hs_offset; /* Hyperslab offset */ + hsize_t hs_size; /* Hyperslab size */ H5D_alloc_time_t alloc_time; /* Storage allocation time */ unsigned write_elem, read_elem; /* Element written/read */ unsigned u; /* Local index variable */ @@ -7567,8 +7567,8 @@ test_chunk_expand(hid_t fapl) size = sizeof(size_t); if(size <= 4) { - SKIPPED(); - puts(" Current machine can't test for error"); + SKIPPED(); + puts(" Current machine can't test for error"); } /* end if */ else { /* Register "expansion" filter */ @@ -7932,17 +7932,17 @@ error: /*------------------------------------------------------------------------- * * test_idx_compatible(): - * Verify that the 1.8 branch cannot read datasets that use - * Fixed Array indexing method. + * Verify that the 1.8 branch cannot read datasets that use + * Fixed Array indexing method. * *------------------------------------------------------------------------- */ static herr_t test_idx_compatible(void) { - hid_t fid = -1; /* File id */ - hid_t did = -1; /* Dataset id */ - char *srcdir = HDgetenv("srcdir"); /* where the src code is located */ + hid_t fid = -1; /* File id */ + hid_t did = -1; /* Dataset id */ + char *srcdir = HDgetenv("srcdir"); /* where the src code is located */ char filename[FILENAME_BUF_SIZE] = ""; /* old test file name */ /* Output message about test being performed */ @@ -7950,29 +7950,29 @@ test_idx_compatible(void) /* Generate correct name for test file by prepending the source path */ if(srcdir && ((HDstrlen(srcdir) + HDstrlen(FIXED_IDX_FILE) + 1) < sizeof(filename))) { - HDstrcpy(filename, srcdir); - HDstrcat(filename, "/"); + HDstrcpy(filename, srcdir); + HDstrcat(filename, "/"); } HDstrcat(filename, FIXED_IDX_FILE); /* Open the file */ if((fid = H5Fopen(filename, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0) - FAIL_STACK_ERROR + FAIL_STACK_ERROR /* Should not able to read the dataset w/o filter that use Fixed Array indexing */ H5E_BEGIN_TRY { - if((did = H5Dopen2(fid, DSET, H5P_DEFAULT)) != FAIL) - TEST_ERROR + if((did = H5Dopen2(fid, DSET, H5P_DEFAULT)) != FAIL) + TEST_ERROR } H5E_END_TRY; /* Should not able to read the dataset w/ filter that use Fixed Array indexing */ H5E_BEGIN_TRY { - if((did = H5Dopen2(fid, DSET_FILTER, H5P_DEFAULT)) != FAIL) - TEST_ERROR + if((did = H5Dopen2(fid, DSET_FILTER, H5P_DEFAULT)) != FAIL) + TEST_ERROR } H5E_END_TRY; if(H5Fclose(fid) < 0) - FAIL_STACK_ERROR + FAIL_STACK_ERROR PASSED(); return 0; @@ -7980,7 +7980,7 @@ test_idx_compatible(void) error: H5E_BEGIN_TRY { H5Dclose(did); - H5Fclose(fid); + H5Fclose(fid); } H5E_END_TRY; return -1; } /* test_idx_compatible */ @@ -7989,7 +7989,7 @@ error: /*------------------------------------------------------------------------- * Function: test_zero_dim_dset * - * Purpose: Tests support for reading a 1D chunled dataset with + * Purpose: Tests support for reading a 1D chunled dataset with * dimension size = 0. * * Return: Success: 0 @@ -9104,7 +9104,7 @@ test_compact_dirty(hid_t fapl) hid_t dcpl = -1; /* Dataset creation property list */ hsize_t dims[1] = {10}; /* Dimension */ int wbuf[10]; /* Data buffer */ - char filename[FILENAME_BUF_SIZE]; /* Filename */ + char filename[FILENAME_BUF_SIZE]; /* Filename */ int i; /* Local index variable */ hbool_t dirty; /* The dirty flag */ @@ -9120,15 +9120,15 @@ test_compact_dirty(hid_t fapl) wbuf[i] = i; /* Create dataspace */ - if((sid = H5Screate_simple(1, dims, NULL)) < 0) + if((sid = H5Screate_simple(1, dims, NULL)) < 0) TEST_ERROR /* Set compact layout */ - if((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0) + if((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0) TEST_ERROR - if(H5Pset_layout(dcpl, H5D_COMPACT) < 0) + if(H5Pset_layout(dcpl, H5D_COMPACT) < 0) TEST_ERROR - if(H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_EARLY) < 0) + if(H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_EARLY) < 0) TEST_ERROR /* Create a compact dataset */ @@ -9140,7 +9140,7 @@ test_compact_dirty(hid_t fapl) TEST_ERROR /* Close the dataset */ - if(H5Dclose(did) < 0) + if(H5Dclose(did) < 0) TEST_ERROR /* Open the dataset */ @@ -9156,11 +9156,11 @@ test_compact_dirty(hid_t fapl) TEST_ERROR /* Close the dataset */ - if(H5Dclose(did) < 0) + if(H5Dclose(did) < 0) TEST_ERROR /* Close the dataspace */ - if(H5Sclose(sid) < 0) + if(H5Sclose(sid) < 0) TEST_ERROR /* Close the dataset creation property list */ @@ -9186,30 +9186,30 @@ error: /*------------------------------------------------------------------------- - * Function: main + * Function: main * - * Purpose: Tests the dataset interface (H5D) + * Purpose: Tests the dataset interface (H5D) * - * Return: Success: exit(0) + * Return: Success: exit(0) * - * Failure: exit(1) + * Failure: exit(1) * - * Programmer: Robb Matzke - * Tuesday, December 9, 1997 + * Programmer: Robb Matzke + * Tuesday, December 9, 1997 * *------------------------------------------------------------------------- */ int main(void) { - char filename[FILENAME_BUF_SIZE]; - hid_t file, grp, fapl, fapl2; + char filename[FILENAME_BUF_SIZE]; + hid_t file, grp, fapl, fapl2; hbool_t new_format; int mdc_nelmts; size_t rdcc_nelmts; size_t rdcc_nbytes; double rdcc_w0; - int nerrors = 0; + int nerrors = 0; const char *envval; /* Don't run this test using certain file drivers */ @@ -9265,56 +9265,56 @@ main(void) if(H5Gclose(grp) < 0) goto error; - nerrors += (test_create(file) < 0 ? 1 : 0); - nerrors += (test_simple_io(envval, my_fapl) < 0 ? 1 : 0); - nerrors += (test_compact_io(my_fapl) < 0 ? 1 : 0); - nerrors += (test_max_compact(my_fapl) < 0 ? 1 : 0); + nerrors += (test_create(file) < 0 ? 1 : 0); + nerrors += (test_simple_io(envval, my_fapl) < 0 ? 1 : 0); + nerrors += (test_compact_io(my_fapl) < 0 ? 1 : 0); + nerrors += (test_max_compact(my_fapl) < 0 ? 1 : 0); nerrors += (test_compact_dirty(my_fapl) < 0 ? 1 : 0); - nerrors += (test_conv_buffer(file) < 0 ? 1 : 0); - nerrors += (test_tconv(file) < 0 ? 1 : 0); - nerrors += (test_filters(file, my_fapl) < 0 ? 1 : 0); - nerrors += (test_onebyte_shuffle(file) < 0 ? 1 : 0); - nerrors += (test_nbit_int(file) < 0 ? 1 : 0); - nerrors += (test_nbit_float(file) < 0 ? 1 : 0); - nerrors += (test_nbit_double(file) < 0 ? 1 : 0); - nerrors += (test_nbit_array(file) < 0 ? 1 : 0); - nerrors += (test_nbit_compound(file) < 0 ? 1 : 0); - nerrors += (test_nbit_compound_2(file) < 0 ? 1 : 0); - nerrors += (test_nbit_compound_3(file) < 0 ? 1 : 0); - nerrors += (test_nbit_int_size(file) < 0 ? 1 : 0); - nerrors += (test_nbit_flt_size(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_int(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_int_2(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_float(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_float_2(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_double(file) < 0 ? 1 : 0); - nerrors += (test_scaleoffset_double_2(file) < 0 ? 1 : 0); - nerrors += (test_multiopen (file) < 0 ? 1 : 0); - nerrors += (test_types(file) < 0 ? 1 : 0); - nerrors += (test_userblock_offset(envval, my_fapl) < 0 ? 1 : 0); - nerrors += (test_missing_filter(file) < 0 ? 1 : 0); - nerrors += (test_can_apply(file) < 0 ? 1 : 0); - nerrors += (test_can_apply2(file) < 0 ? 1 : 0); - nerrors += (test_set_local(my_fapl) < 0 ? 1 : 0); - nerrors += (test_can_apply_szip(file) < 0 ? 1 : 0); - nerrors += (test_compare_dcpl(file) < 0 ? 1 : 0); - nerrors += (test_copy_dcpl(file, my_fapl) < 0 ? 1 : 0); - nerrors += (test_filter_delete(file) < 0 ? 1 : 0); - nerrors += (test_filters_endianess() < 0 ? 1 : 0); - nerrors += (test_zero_dims(file) < 0 ? 1 : 0); - nerrors += (test_missing_chunk(file) < 0 ? 1 : 0); - nerrors += (test_random_chunks(my_fapl) < 0 ? 1 : 0); + nerrors += (test_conv_buffer(file) < 0 ? 1 : 0); + nerrors += (test_tconv(file) < 0 ? 1 : 0); + nerrors += (test_filters(file, my_fapl) < 0 ? 1 : 0); + nerrors += (test_onebyte_shuffle(file) < 0 ? 1 : 0); + nerrors += (test_nbit_int(file) < 0 ? 1 : 0); + nerrors += (test_nbit_float(file) < 0 ? 1 : 0); + nerrors += (test_nbit_double(file) < 0 ? 1 : 0); + nerrors += (test_nbit_array(file) < 0 ? 1 : 0); + nerrors += (test_nbit_compound(file) < 0 ? 1 : 0); + nerrors += (test_nbit_compound_2(file) < 0 ? 1 : 0); + nerrors += (test_nbit_compound_3(file) < 0 ? 1 : 0); + nerrors += (test_nbit_int_size(file) < 0 ? 1 : 0); + nerrors += (test_nbit_flt_size(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_int(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_int_2(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_float(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_float_2(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_double(file) < 0 ? 1 : 0); + nerrors += (test_scaleoffset_double_2(file) < 0 ? 1 : 0); + nerrors += (test_multiopen (file) < 0 ? 1 : 0); + nerrors += (test_types(file) < 0 ? 1 : 0); + nerrors += (test_userblock_offset(envval, my_fapl) < 0 ? 1 : 0); + nerrors += (test_missing_filter(file) < 0 ? 1 : 0); + nerrors += (test_can_apply(file) < 0 ? 1 : 0); + nerrors += (test_can_apply2(file) < 0 ? 1 : 0); + nerrors += (test_set_local(my_fapl) < 0 ? 1 : 0); + nerrors += (test_can_apply_szip(file) < 0 ? 1 : 0); + nerrors += (test_compare_dcpl(file) < 0 ? 1 : 0); + nerrors += (test_copy_dcpl(file, my_fapl) < 0 ? 1 : 0); + nerrors += (test_filter_delete(file) < 0 ? 1 : 0); + nerrors += (test_filters_endianess() < 0 ? 1 : 0); + nerrors += (test_zero_dims(file) < 0 ? 1 : 0); + nerrors += (test_missing_chunk(file) < 0 ? 1 : 0); + nerrors += (test_random_chunks(my_fapl) < 0 ? 1 : 0); #ifndef H5_NO_DEPRECATED_SYMBOLS - nerrors += (test_deprec(file) < 0 ? 1 : 0); + nerrors += (test_deprec(file) < 0 ? 1 : 0); #endif /* H5_NO_DEPRECATED_SYMBOLS */ - nerrors += (test_huge_chunks(my_fapl) < 0 ? 1 : 0); - nerrors += (test_chunk_cache(my_fapl) < 0 ? 1 : 0); + nerrors += (test_huge_chunks(my_fapl) < 0 ? 1 : 0); + nerrors += (test_chunk_cache(my_fapl) < 0 ? 1 : 0); nerrors += (test_big_chunks_bypass_cache(my_fapl) < 0 ? 1 : 0); - nerrors += (test_chunk_expand(my_fapl) < 0 ? 1 : 0); - nerrors += (test_idx_compatible() < 0 ? 1 : 0); - nerrors += (test_layout_extend(my_fapl) < 0 ? 1 : 0); - nerrors += (test_large_chunk_shrink(my_fapl) < 0 ? 1 : 0); - nerrors += (test_zero_dim_dset(my_fapl) < 0 ? 1 : 0); + nerrors += (test_chunk_expand(my_fapl) < 0 ? 1 : 0); + nerrors += (test_idx_compatible() < 0 ? 1 : 0); + nerrors += (test_layout_extend(my_fapl) < 0 ? 1 : 0); + nerrors += (test_large_chunk_shrink(my_fapl) < 0 ? 1 : 0); + nerrors += (test_zero_dim_dset(my_fapl) < 0 ? 1 : 0); if(H5Fclose(file) < 0) goto error; -- cgit v0.12 From c3da7ac06fefe2a4f58d375391447197d6bdbdf1 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 09:01:55 -0600 Subject: HDFFV-10328 - fix typo --- src/H5Z.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Z.c b/src/H5Z.c index 0cab303..2e7691f 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -324,7 +324,7 @@ H5Z_register (const H5Z_class2_t *cls) } /* end if */ /* Filter already registered */ else { - H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+i) + H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+i); /* deallocate plugin info name */ if (old_cls->name) old_cls->name = (char *)H5MM_xfree(old_cls->name); -- cgit v0.12 From ef2857ec3809dfd2eb3f813471f4621004a76b78 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 09:04:16 -0600 Subject: HDFFV-10328 - move declaration to top of function --- src/H5Z.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/H5Z.c b/src/H5Z.c index 2e7691f..c207aee 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -386,6 +386,7 @@ H5Z_unregister(H5Z_filter_t filter_id) size_t filter_index; /* Local index variable for filter */ H5Z_object_t object; herr_t ret_value = SUCCEED; /* Return value */ + H5Z_class2_t *old_cls = NULL; FUNC_ENTER_NOAPI(FAIL) @@ -423,7 +424,7 @@ H5Z_unregister(H5Z_filter_t filter_id) HGOTO_ERROR(H5E_FILE, H5E_BADITER, FAIL, "iteration failed") /* deallocate plugin info name */ - H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+filter_index); + old_cls = (H5Z_class2_t *)(H5Z_table_g+filter_index); if (old_cls->name) old_cls->name = (char *)H5MM_xfree(old_cls->name); /* Remove filter from table */ -- cgit v0.12 From 64b2f1277bd3c589f8b406eed23214445e1b00df Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 09:54:03 -0600 Subject: HDFFV-10328 Updated notes --- release_docs/RELEASE.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 6c7e1a3..48e2f98 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -192,6 +192,25 @@ Bug Fixes since HDF5-1.8.19 Library ------- + - filter plugin handling in H5PL.c and H5Z.c + + It was discovered that the dynamic loading process used by + filter plugins had issues with memory allocation and library + dependencies. + + CMake build process changed to use LINK INTERFACE keywords, which + allowed HDF5 C library to make dependent libraries private. The + filter plugin libraries no longer require dependent libraries + (such as szip or zlib) to be available. + (ADB - 2017/11/16, HDFFV-10328) + + The H5Z_class2_t structure returned by the filter plugins are + now dynamically allocated in H5Zregister function. Access to + the functions in the filter library now always use the dynamic + library API. + + (ADB - 2017/11/16, HDFFV-10329) + - Fix rare object header corruption bug In certain cases, such as when converting large attributes to dense -- cgit v0.12 From 90f5daedef42dbc438b211380b1e576aa48cd25b Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 09:55:22 -0600 Subject: Fix windows link error --- test/tattr.c | 740 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 370 insertions(+), 370 deletions(-) diff --git a/test/tattr.c b/test/tattr.c index 85e82b0..135b46c 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -13,7 +13,7 @@ /*********************************************************** * -* Test program: tattr +* Test program: tattr * * Test the attribute functionality * @@ -29,7 +29,7 @@ */ #define H5O_PACKAGE #define H5O_TESTING -#include "H5Opkg.h" /* Object headers */ +#include "H5Opkg.h" /* Object headers */ /* * This file needs to access private information from the H5A package. @@ -37,7 +37,7 @@ */ #define H5A_PACKAGE #define H5A_TESTING -#include "H5Apkg.h" /* Attributes */ +#include "H5Apkg.h" /* Attributes */ /* * This file needs to access private information from the H5F package. @@ -45,7 +45,7 @@ */ #define H5F_PACKAGE #define H5F_TESTING -#include "H5Fpkg.h" /* File access */ +#include "H5Fpkg.h" /* File access */ #define FILENAME "tattr.h5" #define NAME_BUF_SIZE 1024 @@ -55,10 +55,10 @@ #define CORDER_ITER_STOP 3 /* 3-D dataset with fixed dimensions */ -#define SPACE1_RANK 3 -#define SPACE1_DIM1 3 -#define SPACE1_DIM2 15 -#define SPACE1_DIM3 13 +#define SPACE1_RANK 3 +#define SPACE1_DIM1 3 +#define SPACE1_DIM2 15 +#define SPACE1_DIM3 13 /* Dataset Information */ #define DSET1_NAME "Dataset1" @@ -76,8 +76,8 @@ /* Attribute Rank & Dimensions */ #define ATTR1_NAME "Attr1" -#define ATTR1_RANK 1 -#define ATTR1_DIM1 3 +#define ATTR1_RANK 1 +#define ATTR1_DIM1 3 int attr_data1[ATTR1_DIM1]={512,-234,98123}; /* Test data for 1st attribute */ /* rank & dimensions for another attribute */ @@ -85,25 +85,25 @@ int attr_data1[ATTR1_DIM1]={512,-234,98123}; /* Test data for 1st attribute */ int attr_data1a[ATTR1_DIM1]={256,11945,-22107}; #define ATTR2_NAME "Attr2" -#define ATTR2_RANK 2 -#define ATTR2_DIM1 2 -#define ATTR2_DIM2 2 +#define ATTR2_RANK 2 +#define ATTR2_DIM1 2 +#define ATTR2_DIM2 2 int attr_data2[ATTR2_DIM1][ATTR2_DIM2]={{7614,-416},{197814,-3}}; /* Test data for 2nd attribute */ #define ATTR3_NAME "Attr3" -#define ATTR3_RANK 3 -#define ATTR3_DIM1 2 -#define ATTR3_DIM2 2 -#define ATTR3_DIM3 2 +#define ATTR3_RANK 3 +#define ATTR3_DIM1 2 +#define ATTR3_DIM2 2 +#define ATTR3_DIM3 2 double attr_data3[ATTR3_DIM1][ATTR3_DIM2][ATTR3_DIM3]={{{2.3F,-26.1F}, {0.123F,-10.0F}},{{973.23F,-0.91827F},{2.0F,23.0F}}}; /* Test data for 3rd attribute */ #define ATTR4_NAME "Attr4" -#define ATTR4_RANK 2 -#define ATTR4_DIM1 2 -#define ATTR4_DIM2 2 -#define ATTR4_FIELDNAME1 "i" -#define ATTR4_FIELDNAME2 "d" -#define ATTR4_FIELDNAME3 "c" +#define ATTR4_RANK 2 +#define ATTR4_DIM1 2 +#define ATTR4_DIM2 2 +#define ATTR4_FIELDNAME1 "i" +#define ATTR4_FIELDNAME2 "d" +#define ATTR4_FIELDNAME3 "c" size_t attr4_field1_off=0; size_t attr4_field2_off=0; size_t attr4_field3_off=0; @@ -115,13 +115,13 @@ struct attr4_struct { {{-23,981724.2F,'Q'},{0,2.0F,'\n'}}}; /* Test data for 4th attribute */ #define ATTR5_NAME "Attr5" -#define ATTR5_RANK 0 +#define ATTR5_RANK 0 float attr_data5=-5.123F; /* Test data for 5th attribute */ -#define ATTR6_RANK 3 -#define ATTR6_DIM1 100 -#define ATTR6_DIM2 100 -#define ATTR6_DIM3 100 +#define ATTR6_RANK 3 +#define ATTR6_DIM1 100 +#define ATTR6_DIM2 100 +#define ATTR6_DIM3 100 #define ATTR7_NAME "attr 1 - 000000" #define ATTR8_NAME "attr 2" @@ -163,20 +163,20 @@ static herr_t attr_op1(hid_t loc_id, const char *name, const H5A_info_t *ainfo, static void test_attr_basic_write(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t group; /* Group ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr, attr2; /* Attribute ID */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t group; /* Group ID */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr, attr2; /* Attribute ID */ hsize_t attr_size; /* storage size for attribute */ ssize_t attr_name_size; /* size of attribute name */ char *attr_name=NULL; /* name of attribute */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - hsize_t dims2[] = {ATTR1_DIM1}; - hsize_t dims3[] = {ATTR2_DIM1,ATTR2_DIM2}; + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + hsize_t dims2[] = {ATTR1_DIM1}; + hsize_t dims3[] = {ATTR2_DIM1,ATTR2_DIM2}; int read_data1[ATTR1_DIM1]={0}; /* Buffer for reading 1st attribute */ int i; - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Scalar Attribute Writing Functions\n")); @@ -277,7 +277,7 @@ test_attr_basic_write(hid_t fapl) if(attr_name_size > 0) { attr_name = (char*)HDcalloc((size_t)(attr_name_size + 1), sizeof(char)); CHECK(attr_name, NULL, "HDcalloc"); - + if(attr_name) { ret = (herr_t)H5Aget_name(attr, (size_t)(attr_name_size + 1), attr_name); CHECK(ret, FAIL, "H5Aget_name"); @@ -313,7 +313,7 @@ test_attr_basic_write(hid_t fapl) if(attr_name_size > 0) { attr_name = (char*)HDcalloc((size_t)(attr_name_size+1), sizeof(char)); CHECK(attr_name, NULL, "HDcalloc"); - + if(attr_name) { ret = (herr_t)H5Aget_name(attr2, (size_t)(attr_name_size + 1), attr_name); CHECK(ret, FAIL, "H5Aget_name"); @@ -401,15 +401,15 @@ test_attr_basic_write(hid_t fapl) static void test_attr_basic_read(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t group; /* Group ID */ - hid_t attr; /* Attribute ID */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t group; /* Group ID */ + hid_t attr; /* Attribute ID */ H5O_info_t oinfo; /* Object info */ int read_data1[ATTR1_DIM1] = {0}; /* Buffer for reading 1st attribute */ int read_data2[ATTR2_DIM1][ATTR2_DIM2] = {{0}}; /* Buffer for reading 2nd attribute */ int i, j; /* Local index variables */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -499,7 +499,7 @@ test_attr_flush(hid_t fapl) set; /* Dataset ID */ double wdata=3.14159F; /* Data to write */ double rdata; /* Data read in */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Attribute Flushing\n")); @@ -559,15 +559,15 @@ test_attr_flush(hid_t fapl) static void test_attr_plist(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ hid_t plist; /* Property list ID */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - hsize_t dims2[] = {ATTR1_DIM1}; + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + hsize_t dims2[] = {ATTR1_DIM1}; H5T_cset_t cset; /* Character set for attributes */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Attribute Property Lists\n")); @@ -673,14 +673,14 @@ test_attr_plist(hid_t fapl) static void test_attr_compound_write(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ hid_t tid1; /* Attribute datatype ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - hsize_t dims2[] = {ATTR4_DIM1,ATTR4_DIM2}; - herr_t ret; /* Generic return value */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + hsize_t dims2[] = {ATTR4_DIM1,ATTR4_DIM2}; + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Multiple Attribute Functions\n")); @@ -760,11 +760,11 @@ test_attr_compound_write(hid_t fapl) static void test_attr_compound_read(hid_t fapl) { - hid_t fid1; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ + hid_t fid1; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ hid_t space; /* Attribute dataspace */ hid_t type; /* Attribute datatype */ - hid_t attr; /* Attribute ID */ + hid_t attr; /* Attribute ID */ char attr_name[ATTR_NAME_LEN]; /* Buffer for attribute names */ int rank; /* Attribute rank */ hsize_t dims[ATTR_MAX_DIMS]; /* Attribute dimensions */ @@ -779,7 +779,7 @@ test_attr_compound_read(hid_t fapl) size_t name_len; /* Length of attribute name */ H5O_info_t oinfo; /* Object info */ int i, j; /* Local index variables */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -910,12 +910,12 @@ test_attr_compound_read(hid_t fapl) static void test_attr_scalar_write(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - herr_t ret; /* Generic return value */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -975,14 +975,14 @@ test_attr_scalar_write(hid_t fapl) static void test_attr_scalar_read(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ H5S_class_t stype; /* Dataspace class */ float rdata = 0.0F; /* Buffer for reading 1st attribute */ H5O_info_t oinfo; /* Object info */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Scalar Attribute Reading Functions\n")); @@ -1010,8 +1010,8 @@ test_attr_scalar_read(hid_t fapl) /* Verify the floating-poing value in this way to avoid compiler warning. */ if(!FLT_ABS_EQUAL(rdata, attr_data5)) - printf("*** UNEXPECTED VALUE from %s should be %f, but is %f at line %4d in %s\n", - "H5Aread", attr_data5, rdata, (int)__LINE__, __FILE__); + printf("*** UNEXPECTED VALUE from %s should be %f, but is %f at line %4d in %s\n", + "H5Aread", attr_data5, rdata, (int)__LINE__, __FILE__); /* Get the attribute's dataspace */ sid = H5Aget_space(attr); @@ -1047,15 +1047,15 @@ test_attr_scalar_read(hid_t fapl) static void test_attr_mult_write(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - hsize_t dims2[] = {ATTR1_DIM1}; - hsize_t dims3[] = {ATTR2_DIM1,ATTR2_DIM2}; - hsize_t dims4[] = {ATTR3_DIM1,ATTR3_DIM2,ATTR3_DIM3}; - herr_t ret; /* Generic return value */ + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + hsize_t dims2[] = {ATTR1_DIM1}; + hsize_t dims3[] = {ATTR2_DIM1,ATTR2_DIM2}; + hsize_t dims4[] = {ATTR3_DIM1,ATTR3_DIM2,ATTR3_DIM3}; + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Multiple Attribute Functions\n")); @@ -1166,11 +1166,11 @@ test_attr_mult_write(hid_t fapl) static void test_attr_mult_read(hid_t fapl) { - hid_t fid1; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ + hid_t fid1; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ hid_t space; /* Attribute dataspace */ hid_t type; /* Attribute datatype */ - hid_t attr; /* Attribute ID */ + hid_t attr; /* Attribute ID */ char attr_name[ATTR_NAME_LEN]; /* Buffer for attribute names */ char temp_name[ATTR_NAME_LEN]; /* Buffer for mangling attribute names */ int rank; /* Attribute rank */ @@ -1184,7 +1184,7 @@ test_attr_mult_read(hid_t fapl) size_t name_len; /* Length of attribute name */ H5O_info_t oinfo; /* Object info */ int i, j, k; /* Local index values */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -1428,12 +1428,12 @@ attr_op1(hid_t H5_ATTR_UNUSED loc_id, const char *name, const H5A_info_t H5_ATTR static void test_attr_iterate(hid_t fapl) { - hid_t file; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ + hid_t file; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ int count; /* operator data for the iterator */ H5O_info_t oinfo; /* Object info */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -1500,13 +1500,13 @@ test_attr_iterate(hid_t fapl) static void test_attr_delete(hid_t fapl) { - hid_t fid1; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t attr; /* Attribute ID */ + hid_t fid1; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t attr; /* Attribute ID */ char attr_name[ATTR_NAME_LEN]; /* Buffer for attribute names */ size_t name_len; /* Length of attribute name */ H5O_info_t oinfo; /* Object info */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Attribute Functions\n")); @@ -1631,7 +1631,7 @@ test_attr_dtype_shared(hid_t fapl) H5O_info_t oinfo; /* Object's information */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Shared Datatypes with Attributes\n")); @@ -1798,17 +1798,17 @@ test_attr_dtype_shared(hid_t fapl) static void test_attr_duplicate_ids(hid_t fapl) { - hid_t fid1; /* HDF5 File IDs */ - hid_t dataset; /* Dataset ID */ - hid_t gid1, gid2; /* Group ID */ - hid_t sid1,sid2; /* Dataspace ID */ - hid_t attr, attr2; /* Attribute ID */ - hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; - hsize_t dims2[] = {ATTR1_DIM1}; + hid_t fid1; /* HDF5 File IDs */ + hid_t dataset; /* Dataset ID */ + hid_t gid1, gid2; /* Group ID */ + hid_t sid1,sid2; /* Dataspace ID */ + hid_t attr, attr2; /* Attribute ID */ + hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; + hsize_t dims2[] = {ATTR1_DIM1}; int read_data1[ATTR1_DIM1]={0}; /* Buffer for reading 1st attribute */ int rewrite_data[ATTR1_DIM1]={1234, -423, 9907256}; /* Test data for rewrite */ int i; - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing operations with two ID handles\n")); @@ -2043,12 +2043,12 @@ test_attr_duplicate_ids(hid_t fapl) static int test_attr_dense_verify(hid_t loc_id, unsigned max_attr) { - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ - hid_t attr; /* Attribute ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t attr; /* Attribute ID */ unsigned value; /* Attribute value */ unsigned u; /* Local index variable */ int old_nerrs; /* Number of errors when entering this check */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Retrieve the current # of reported errors */ old_nerrs = GetTestNumErrs(); @@ -2113,19 +2113,19 @@ test_attr_dense_verify(hid_t loc_id, unsigned max_attr) static void test_attr_dense_create(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Dense Attribute Storage Creation\n")); @@ -2244,19 +2244,19 @@ test_attr_dense_create(hid_t fcpl, hid_t fapl) static void test_attr_dense_open(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Opening Attributes in Dense Storage\n")); @@ -2383,20 +2383,20 @@ test_attr_dense_open(hid_t fcpl, hid_t fapl) static void test_attr_dense_delete(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ H5O_info_t oinfo; /* Object info */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Deleting Attributes in Dense Storage\n")); @@ -2561,21 +2561,21 @@ test_attr_dense_delete(hid_t fcpl, hid_t fapl) static void test_attr_dense_rename(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ - char new_attrname[NAME_BUF_SIZE]; /* New name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char new_attrname[NAME_BUF_SIZE]; /* New name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ H5O_info_t oinfo; /* Object info */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Renaming Attributes in Dense Storage\n")); @@ -2720,21 +2720,21 @@ test_attr_dense_rename(hid_t fcpl, hid_t fapl) static void test_attr_dense_unlink(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ size_t mesg_count; /* # of shared messages */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ H5O_info_t oinfo; /* Object info */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Unlinking Object with Attributes in Dense Storage\n")); @@ -2850,19 +2850,19 @@ test_attr_dense_unlink(hid_t fcpl, hid_t fapl) static void test_attr_dense_limits(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact, rmax_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense, rmin_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Phase Change Limits For Attributes in Dense Storage\n")); @@ -3015,23 +3015,23 @@ test_attr_dense_limits(hid_t fcpl, hid_t fapl) static void test_attr_dense_dup_ids(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t gid1, gid2; /* Group ID */ - hid_t sid, sid2; /* Dataspace ID */ - hid_t attr, attr2, add_attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ - hsize_t dims[] = {ATTR1_DIM1}; + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t gid1, gid2; /* Group ID */ + hid_t sid, sid2; /* Dataspace ID */ + hid_t attr, attr2, add_attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hsize_t dims[] = {ATTR1_DIM1}; int read_data1[ATTR1_DIM1]={0}; /* Buffer for reading attribute */ int rewrite_data[ATTR1_DIM1]={1234, -423, 9907256}; /* Test data for rewrite */ unsigned scalar_data = 1317; /* scalar data for attribute */ unsigned read_scalar; /* variable for reading attribute*/ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u, i; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing operations with two IDs for Dense Storage\n")); @@ -3538,24 +3538,24 @@ test_attr_dense_dup_ids(hid_t fcpl, hid_t fapl) static void test_attr_big(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t big_sid; /* "Big" dataspace ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t big_sid; /* "Big" dataspace ID */ hsize_t dims[ATTR6_RANK] = {ATTR6_DIM1, ATTR6_DIM2, ATTR6_DIM3}; /* Attribute dimensions */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ unsigned nshared_indices; /* # of shared message indices */ H5F_libver_t low, high; /* File format bounds */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Storing 'Big' Attributes in Dense Storage\n")); @@ -3808,20 +3808,20 @@ test_attr_big(hid_t fcpl, hid_t fapl) static void test_attr_null_space(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t null_sid; /* "null" dataspace ID */ - hid_t attr_sid; /* Attribute's dataspace ID */ - hid_t attr; /* Attribute ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t null_sid; /* "null" dataspace ID */ + hid_t attr_sid; /* Attribute's dataspace ID */ + hid_t attr; /* Attribute ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned value; /* Attribute value */ htri_t cmp; /* Results of comparison */ hsize_t storage_size; /* Size of storage for attribute */ H5A_info_t ainfo; /* Attribute info */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Storing Attributes with 'null' dataspace\n")); @@ -4027,11 +4027,11 @@ static void test_attr_deprec(hid_t fcpl, hid_t fapl) { #ifndef H5_NO_DEPRECATED_SYMBOLS - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - herr_t ret; /* Generic return value */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Deprecated Attribute Routines\n")); @@ -4135,15 +4135,15 @@ test_attr_deprec(hid_t fcpl, hid_t fapl) static void test_attr_many(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t gid; /* Group ID */ - hid_t sid; /* Dataspace ID */ - hid_t aid; /* Attribute ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* HDF5 File ID */ + hid_t gid; /* Group ID */ + hid_t sid; /* Dataspace ID */ + hid_t aid; /* Attribute ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned nattr = (new_format ? NATTR_MANY_NEW : NATTR_MANY_OLD); /* Number of attributes */ htri_t exists; /* Whether the attribute exists or not */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Storing Many Attributes\n")); @@ -4264,14 +4264,14 @@ test_attr_many(hbool_t new_format, hid_t fcpl, hid_t fapl) static void test_attr_corder_create_basic(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dataset; /* Dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dataset; /* Dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned crt_order_flags;/* Creation order flags */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ - herr_t ret; /* Generic return value */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Basic Code for Attributes with Creation Order Info\n")); @@ -4380,21 +4380,21 @@ test_attr_corder_create_basic(hid_t fcpl, hid_t fapl) static void test_attr_corder_create_compact(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Compact Storage of Attributes with Creation Order Info\n")); @@ -4578,23 +4578,23 @@ test_attr_corder_create_compact(hid_t fcpl, hid_t fapl) static void test_attr_corder_create_dense(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Dense Storage of Attributes with Creation Order Info\n")); @@ -4812,7 +4812,7 @@ test_attr_corder_create_reopen(hid_t fcpl, hid_t fapl) hid_t sid = -1; /* Dataspace ID */ hid_t aid = -1; /* Attribute ID */ int buf; /* Attribute data */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Creating Attributes w/New & Old Format\n")); @@ -4913,23 +4913,23 @@ test_attr_corder_create_reopen(hid_t fcpl, hid_t fapl) static void test_attr_corder_transition(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Storage Transitions of Attributes with Creation Order Info\n")); @@ -5319,28 +5319,28 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) static void test_attr_corder_delete(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ hbool_t reopen_file; /* Whether to re-open the file before deleting group */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ #ifdef LATER h5_stat_size_t empty_size; /* Size of empty file */ h5_stat_size_t file_size; /* Size of file after operating on it */ #endif /* LATER */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Deleting Object w/Dense Attribute Storage and Creation Order Info\n")); @@ -5517,7 +5517,7 @@ test_attr_corder_delete(hid_t fcpl, hid_t fapl) * Purpose: Support routine for attr_info_by_idx, to verify the attribute * info is correct for a attribute * - * Note: This routine assumes that the attributes have been added to the + * Note: This routine assumes that the attributes have been added to the * object in alphabetical order. * * Return: Success: 0 @@ -5535,7 +5535,7 @@ attr_info_by_idx_check(hid_t obj_id, const char *attrname, hsize_t n, char tmpname[NAME_BUF_SIZE]; /* Temporary attribute name */ H5A_info_t ainfo; /* Attribute info struct */ int old_nerrs; /* Number of errors when entering this check */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Retrieve the current # of reported errors */ old_nerrs = GetTestNumErrs(); @@ -5667,26 +5667,26 @@ attr_info_by_idx_check(hid_t obj_id, const char *attrname, hsize_t n, static void test_attr_info_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ H5A_info_t ainfo; /* Attribute information */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ hbool_t use_index; /* Use index on creation order values */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ char tmpname[NAME_BUF_SIZE]; /* Temporary attribute name */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -5877,28 +5877,28 @@ test_attr_info_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl) static void test_attr_delete_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ H5A_info_t ainfo; /* Attribute information */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ H5_index_t idx_type; /* Type of index to operate on */ H5_iter_order_t order; /* Order within in the index */ hbool_t use_index; /* Use index on creation order values */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ char tmpname[NAME_BUF_SIZE]; /* Temporary attribute name */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -6818,16 +6818,16 @@ attr_iterate_check(hid_t fid, const char *dsetname, hid_t obj_id, static void test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ @@ -6838,10 +6838,10 @@ test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl) hsize_t idx; /* Start index for iteration */ hbool_t use_index; /* Use index on creation order values */ const char *dsetname; /* Name of dataset for attributes */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -7134,7 +7134,7 @@ attr_open_by_idx_check(hid_t obj_id, H5_index_t idx_type, H5_iter_order_t order, H5A_info_t ainfo; /* Attribute info */ int old_nerrs; /* Number of errors when entering this check */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Retrieve the current # of reported errors */ old_nerrs = GetTestNumErrs(); @@ -7182,26 +7182,26 @@ attr_open_by_idx_check(hid_t obj_id, H5_index_t idx_type, H5_iter_order_t order, static void test_attr_open_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ H5_index_t idx_type; /* Type of index to operate on */ H5_iter_order_t order; /* Order within in the index */ hbool_t use_index; /* Use index on creation order values */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -7453,10 +7453,10 @@ attr_open_check(hid_t fid, const char *dsetname, hid_t obj_id, { hid_t attr_id; /* ID of attribute to test */ H5A_info_t ainfo; /* Attribute info */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ int old_nerrs; /* Number of errors when entering this check */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Retrieve the current # of reported errors */ old_nerrs = GetTestNumErrs(); @@ -7529,25 +7529,25 @@ attr_open_check(hid_t fid, const char *dsetname, hid_t obj_id, static void test_attr_open_by_name(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ hbool_t use_index; /* Use index on creation order values */ const char *dsetname; /* Name of dataset for attributes */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -7783,25 +7783,25 @@ test_attr_open_by_name(hbool_t new_format, hid_t fcpl, hid_t fapl) static void test_attr_create_by_name(hbool_t new_format, hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t dset1, dset2, dset3; /* Dataset IDs */ - hid_t my_dataset; /* Current dataset ID */ - hid_t sid; /* Dataspace ID */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ + hid_t fid; /* HDF5 File ID */ + hid_t dset1, dset2, dset3; /* Dataset IDs */ + hid_t my_dataset; /* Current dataset ID */ + hid_t sid; /* Dataspace ID */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ unsigned max_compact; /* Maximum # of links to store in group compactly */ unsigned min_dense; /* Minimum # of links to store in group "densely" */ - htri_t is_empty; /* Are there any attributes? */ - htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_empty; /* Are there any attributes? */ + htri_t is_dense; /* Are attributes stored densely? */ hsize_t nattrs; /* Number of attributes on object */ hsize_t name_count; /* # of records in name index */ hsize_t corder_count; /* # of records in creation order index */ hbool_t use_index; /* Use index on creation order values */ const char *dsetname; /* Name of dataset for attributes */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned curr_dset; /* Current dataset to work on */ unsigned u; /* Local index variable */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Create dataspace for dataset & attributes */ sid = H5Screate(H5S_SCALAR); @@ -8006,28 +8006,28 @@ test_attr_create_by_name(hbool_t new_format, hid_t fcpl, hid_t fapl) static void test_attr_shared_write(hid_t fcpl, hid_t fapl) { - hid_t fid; /* File ID */ - hid_t my_fcpl; /* File creation property list ID */ - hid_t dataset, dataset2; /* Dataset IDs */ - hid_t attr_tid; /* Attribute's datatype ID */ - hid_t sid, big_sid; /* Dataspace IDs */ - hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute */ + hid_t fid; /* File ID */ + hid_t my_fcpl; /* File creation property list ID */ + hid_t dataset, dataset2; /* Dataset IDs */ + hid_t attr_tid; /* Attribute's datatype ID */ + hid_t sid, big_sid; /* Dataspace IDs */ + hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ - htri_t is_shared; /* Is attributes shared? */ + htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_shared; /* Is attributes shared? */ hsize_t shared_refcount; /* Reference count of shared attribute */ unsigned attr_value; /* Attribute value */ - unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ + unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ size_t mesg_count; /* # of shared messages */ unsigned test_shared; /* Index over shared component type */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Writing Shared & Unshared Attributes in Compact & Dense Storage\n")); @@ -8331,29 +8331,29 @@ test_attr_shared_write(hid_t fcpl, hid_t fapl) static void test_attr_shared_rename(hid_t fcpl, hid_t fapl) { - hid_t fid; /* HDF5 File ID */ - hid_t my_fcpl; /* File creation property list ID */ - hid_t dataset, dataset2; /* Dataset ID2 */ - hid_t attr_tid; /* Attribute's datatype ID */ - hid_t sid, big_sid; /* Dataspace IDs */ - hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ - char attrname2[NAME_BUF_SIZE]; /* Name of attribute on second dataset */ + hid_t fid; /* HDF5 File ID */ + hid_t my_fcpl; /* File creation property list ID */ + hid_t dataset, dataset2; /* Dataset ID2 */ + hid_t attr_tid; /* Attribute's datatype ID */ + hid_t sid, big_sid; /* Dataspace IDs */ + hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ + char attrname2[NAME_BUF_SIZE]; /* Name of attribute on second dataset */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ - htri_t is_shared; /* Is attributes shared? */ + htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_shared; /* Is attributes shared? */ hsize_t shared_refcount; /* Reference count of shared attribute */ unsigned attr_value; /* Attribute value */ - unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ + unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ size_t mesg_count; /* # of shared messages */ unsigned test_shared; /* Index over shared component type */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Renaming Shared & Unshared Attributes in Compact & Dense Storage\n")); @@ -8773,28 +8773,28 @@ test_attr_shared_rename(hid_t fcpl, hid_t fapl) static void test_attr_shared_delete(hid_t fcpl, hid_t fapl) { - hid_t fid; /* File ID */ - hid_t my_fcpl; /* File creation property list ID */ - hid_t dataset, dataset2; /* Dataset IDs */ - hid_t attr_tid; /* Attribute's datatype ID */ - hid_t sid, big_sid; /* Dataspace IDs */ - hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ + hid_t fid; /* File ID */ + hid_t my_fcpl; /* File creation property list ID */ + hid_t dataset, dataset2; /* Dataset IDs */ + hid_t attr_tid; /* Attribute's datatype ID */ + hid_t sid, big_sid; /* Dataspace IDs */ + hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ - htri_t is_shared; /* Is attributes shared? */ + htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_shared; /* Is attributes shared? */ hsize_t shared_refcount; /* Reference count of shared attribute */ unsigned attr_value; /* Attribute value */ - unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ + unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ size_t mesg_count; /* # of shared messages */ unsigned test_shared; /* Index over shared component type */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Deleting Shared & Unshared Attributes in Compact & Dense Storage\n")); @@ -9137,28 +9137,28 @@ test_attr_shared_delete(hid_t fcpl, hid_t fapl) static void test_attr_shared_unlink(hid_t fcpl, hid_t fapl) { - hid_t fid; /* File ID */ - hid_t my_fcpl; /* File creation property list ID */ - hid_t dataset, dataset2; /* Dataset IDs */ - hid_t attr_tid; /* Attribute's datatype ID */ - hid_t sid, big_sid; /* Dataspace IDs */ - hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ - hid_t attr; /* Attribute ID */ - hid_t dcpl; /* Dataset creation property list ID */ - char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ + hid_t fid; /* File ID */ + hid_t my_fcpl; /* File creation property list ID */ + hid_t dataset, dataset2; /* Dataset IDs */ + hid_t attr_tid; /* Attribute's datatype ID */ + hid_t sid, big_sid; /* Dataspace IDs */ + hsize_t big_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3}; /* Dimensions for "big" attribute */ + hid_t attr; /* Attribute ID */ + hid_t dcpl; /* Dataset creation property list ID */ + char attrname[NAME_BUF_SIZE]; /* Name of attribute on first dataset */ unsigned max_compact; /* Maximum # of attributes to store compactly */ unsigned min_dense; /* Minimum # of attributes to store "densely" */ - htri_t is_dense; /* Are attributes stored densely? */ - htri_t is_shared; /* Is attributes shared? */ + htri_t is_dense; /* Are attributes stored densely? */ + htri_t is_shared; /* Is attributes shared? */ hsize_t shared_refcount; /* Reference count of shared attribute */ unsigned attr_value; /* Attribute value */ - unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ + unsigned big_value[SPACE1_DIM1 * SPACE1_DIM2 * SPACE1_DIM3]; /* Data for "big" attribute */ size_t mesg_count; /* # of shared messages */ unsigned test_shared; /* Index over shared component type */ unsigned u; /* Local index variable */ h5_stat_size_t empty_filesize; /* Size of empty file */ h5_stat_size_t filesize; /* Size of file after modifications */ - herr_t ret; /* Generic return value */ + herr_t ret; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Unlinking Object with Shared Attributes in Compact & Dense Storage\n")); @@ -10613,7 +10613,7 @@ test_attr_bug9(hid_t fcpl, hid_t fapl) /* Create enough attributes to cause a change to dense storage */ for(i = 0; i < max_compact + 1; i++) { /* Create attribute */ - snprintf(aname, sizeof(aname), "%u", i); + HDsnprintf(aname, sizeof(aname), "%u", i); aid = H5Acreate2(gid, aname, H5T_NATIVE_CHAR, sid, H5P_DEFAULT, H5P_DEFAULT); CHECK(aid, FAIL, "H5Acreate2"); @@ -10654,8 +10654,8 @@ test_attr_bug9(hid_t fcpl, hid_t fapl) void test_attr(void) { - hid_t fapl = (-1), fapl2 = (-1); /* File access property lists */ - hid_t fcpl = (-1), fcpl2 = (-1); /* File creation property lists */ + hid_t fapl = (-1), fapl2 = (-1); /* File access property lists */ + hid_t fcpl = (-1), fcpl2 = (-1); /* File creation property lists */ hbool_t new_format; /* Whether to use the new format or not */ hbool_t use_shared; /* Whether to use shared attributes or not */ herr_t ret; /* Generic return value */ @@ -10842,13 +10842,13 @@ test_attr(void) /*------------------------------------------------------------------------- - * Function: cleanup_attr + * Function: cleanup_attr * - * Purpose: Cleanup temporary test files + * Purpose: Cleanup temporary test files * - * Return: none + * Return: none * - * Programmer: Albert Cheng + * Programmer: Albert Cheng * July 2, 1998 * * Modifications: -- cgit v0.12 From 7644154a6ed5885e76e33e8d73c454e7effe956a Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 10:29:04 -0600 Subject: HDFFV-10328 set external reference before copy --- src/H5PL.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/H5PL.c b/src/H5PL.c index 3ed63a7..67aba8a 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -914,6 +914,9 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) /* allocate local copy of plugin info */ if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") + /* Set the plugin info to return */ + *pl_info = (const void *)plugin_copy; + plugin_copy->version = plugin_info->version; plugin_copy->id = plugin_info->id; plugin_copy->encoder_present = plugin_info->encoder_present; @@ -925,9 +928,6 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") - /* Set the plugin info to return */ - *pl_info = (const void *)plugin_copy; - /* Indicate success */ ret_value = TRUE; } /* end if */ @@ -940,8 +940,6 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) done: /* unallocate local copy of plugin info on failure */ if (FAIL == ret_value && *pl_info) { - if (((H5Z_class2_t *)(*pl_info))->name) - ((H5Z_class2_t *)(*pl_info))->name = (char *)H5MM_xfree(((H5Z_class2_t *)(*pl_info))->name); *pl_info = (H5Z_class2_t *)H5MM_xfree(*pl_info); } FUNC_LEAVE_NOAPI(ret_value) -- cgit v0.12 From d45f14904bab7d998c25d05b47d8fe841049d6d5 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 11:06:48 -0600 Subject: HDFFV-10328 fix whitespace --- src/H5Z.c | 52 +++++++++++++++++++++++----------------------------- 1 file changed, 23 insertions(+), 29 deletions(-) diff --git a/src/H5Z.c b/src/H5Z.c index c207aee..0c03f6f 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -671,8 +671,7 @@ done: * * Return: Non-negative on success/Negative on failure * - * Notes: - * The chunk dimensions are used to create a dataspace, instead + * Notes: The chunk dimensions are used to create a dataspace, instead * of passing in the dataset's dataspace, since the chunk * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- @@ -754,8 +753,7 @@ done: * * Return: Non-negative on success/Negative on failure * - * Notes: - * The chunk dimensions are used to create a dataspace, instead + * Notes: The chunk dimensions are used to create a dataspace, instead * of passing in the dataset's dataspace, since the chunk * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- @@ -835,8 +833,7 @@ done: * Return: Non-negative on success * Negative on failure * - * Notes: - * The chunk dimensions are used to create a dataspace, instead + * Notes: The chunk dimensions are used to create a dataspace, instead * of passing in the dataset's dataspace, since the chunk * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- @@ -867,8 +864,7 @@ done: * Return: Non-negative on success * Negative on failure * - * Notes: - * The chunk dimensions are used to create a dataspace, instead + * Notes: The chunk dimensions are used to create a dataspace, instead * of passing in the dataset's dataspace, since the chunk * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- @@ -928,8 +924,7 @@ done: * Return: Non-negative on success * Negative on failure * - * Notes: - * This callback will almost certainly not do anything + * Notes: This callback will almost certainly not do anything * useful, other than to make certain that the filter will * accept opaque data. *------------------------------------------------------------------------- @@ -963,7 +958,7 @@ done: */ herr_t H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { size_t idx; /* Index of filter in pipeline */ herr_t ret_value = SUCCEED; /* Return value */ @@ -982,7 +977,7 @@ H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, /* Check if the filter was not already in the pipeline */ if (idx > pline->nused) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") /* Change parameters for filter */ pline->filter[idx].flags = flags; @@ -990,7 +985,7 @@ H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, /* Free any existing parameters */ if (pline->filter[idx].cd_values != NULL && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) - H5MM_xfree(pline->filter[idx].cd_values); + H5MM_xfree(pline->filter[idx].cd_values); /* Set parameters */ if (cd_nelmts > 0) { @@ -1006,8 +1001,8 @@ H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, pline->filter[idx].cd_values = pline->filter[idx]._cd_values; /* Copy client data values */ - for (i = 0; i < cd_nelmts; i++) - pline->filter[idx].cd_values[i] = cd_values[i]; + for (i = 0; i < cd_nelmts; i++) + pline->filter[idx].cd_values[i] = cd_values[i]; } /* end if */ else pline->filter[idx].cd_values = NULL; @@ -1028,7 +1023,7 @@ done: */ herr_t H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { size_t idx; herr_t ret_value = SUCCEED; /* Return value */ @@ -1135,8 +1130,8 @@ H5Z_find_idx(H5Z_filter_t id) FUNC_ENTER_NOAPI_NOINIT_NOERR for (i = 0; i < H5Z_table_used_g; i++) - if (H5Z_table_g[i].id == id) - HGOTO_DONE ((int)i) + if (H5Z_table_g[i].id == id) + HGOTO_DONE ((int)i) done: FUNC_LEAVE_NOAPI(ret_value) @@ -1156,14 +1151,14 @@ done: H5Z_class2_t * H5Z_find(H5Z_filter_t id) { - int idx; /* Filter index in global table */ + int idx; /* Filter index in global table */ H5Z_class2_t *ret_value = NULL; /* Return value */ FUNC_ENTER_NOAPI(NULL) /* Get the index in the global table */ if ((idx = H5Z_find_idx(id)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, NULL, "required filter is not registered") + HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, NULL, "required filter %d is not registered", id) /* Set return value */ ret_value = H5Z_table_g+idx; @@ -1237,7 +1232,6 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags, */ if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { hbool_t issue_error = FALSE; - H5Z_class2_t *filter_info; /* Try loading the filter */ @@ -1306,13 +1300,13 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags, continue; /*filter excluded*/ } if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { - /* Check if filter is optional -- If it isn't, then error */ + /* Check if filter is optional -- If it isn't, then error */ if ((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0) HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered") - failed |= (unsigned)1 << idx; - H5E_clear_stack (NULL); - continue; /*filter excluded*/ + failed |= (unsigned)1 << idx; + H5E_clear_stack (NULL); + continue; /*filter excluded*/ } fclass = &H5Z_table_g[fclass_idx]; #ifdef H5Z_DEBUG @@ -1363,13 +1357,13 @@ done: H5Z_filter_info_t * H5Z_filter_info(const H5O_pline_t *pline, H5Z_filter_t filter) { - size_t idx; /* Index of filter in pipeline */ - H5Z_filter_info_t *ret_value; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + H5Z_filter_info_t *ret_value = NULL; /* Return value */ FUNC_ENTER_NOAPI(NULL) HDassert (pline); - HDassert (filter>=0 && filter<=H5Z_FILTER_MAX); + HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); /* Locate the filter in the pipeline */ for (idx = 0; idx < pline->nused; idx++) @@ -1585,7 +1579,7 @@ herr_t H5Z_get_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags) { H5Z_class2_t *fclass; - herr_t ret_value = SUCCEED; + herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI(FAIL) -- cgit v0.12 From 191f4c1e6d4060541958d960c7f96ec014e8194f Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 16 Nov 2017 11:23:58 -0600 Subject: Another fix for error handling --- src/H5PL.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/H5PL.c b/src/H5PL.c index 67aba8a..c829bf9 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -986,6 +986,9 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") + /* Set the plugin info to return */ + *info = (const void *)plugin_copy; + plugin_copy->version = plugin_info->version; plugin_copy->id = plugin_info->id; plugin_copy->encoder_present = plugin_info->encoder_present; @@ -997,15 +1000,16 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") - /* Set the plugin info to return */ - *info = (const void *)plugin_copy; - HGOTO_DONE(TRUE) } /* end if */ } /* end for */ } /* end if */ done: + /* unallocate local copy of plugin info on failure */ + if (FAIL == ret_value && *info) { + *info = (H5Z_class2_t *)H5MM_xfree(*info); + } FUNC_LEAVE_NOAPI(ret_value) } /* end H5PL__search_table() */ -- cgit v0.12 From d113b892320d8c428707c4dd71f2c144bc68546c Mon Sep 17 00:00:00 2001 From: lrknox Date: Fri, 17 Nov 2017 16:15:34 -0600 Subject: Update .so numbers in hdf5_1_8 to match updates for hdf5_1_8_20 branch. --- c++/src/Makefile.in | 14 +++++++------- config/lt_vers.am | 14 +++++++------- fortran/src/Makefile.in | 14 +++++++------- hl/c++/src/Makefile.in | 14 +++++++------- hl/fortran/src/Makefile.in | 14 +++++++------- hl/src/Makefile.in | 14 +++++++------- src/Makefile.in | 14 +++++++------- 7 files changed, 49 insertions(+), 49 deletions(-) diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index b096c9f..11fb9b4 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -683,25 +683,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 # This is our main target diff --git a/config/lt_vers.am b/config/lt_vers.am index 9612772..bf5ad87 100644 --- a/config/lt_vers.am +++ b/config/lt_vers.am @@ -17,7 +17,7 @@ # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 ## If the API changes *at all*, increment LT_VERS_INTERFACE and @@ -39,27 +39,27 @@ LT_VERS_AGE = 3 ## the effects of the H5_V1_x_COMPAT flag. ## Version numbers for wrapper shared library files. -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index 300cb0b..a182618 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -735,25 +735,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 AM_FCLIBS = $(LIBHDF5) diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in index fc57136..14ce2a1 100644 --- a/hl/c++/src/Makefile.in +++ b/hl/c++/src/Makefile.in @@ -674,25 +674,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 # This is our main target diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 2399369..0d02034 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -692,25 +692,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 # Our main target, the high-level fortran library diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in index 965457f..9aea58a 100644 --- a/hl/src/Makefile.in +++ b/hl/src/Makefile.in @@ -673,25 +673,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 # This library is our main target. diff --git a/src/Makefile.in b/src/Makefile.in index 9af0c2f..f6a7526 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -731,25 +731,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 0 +LT_VERS_REVISION = 1 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 14 +LT_CXX_VERS_INTERFACE = 15 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 4 +LT_F_VERS_REVISION = 5 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 0 +LT_HL_VERS_REVISION = 1 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 0 +LT_HL_CXX_VERS_REVISION = 1 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 3 +LT_HL_F_VERS_REVISION = 4 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 5 +LT_TOOLS_VERS_REVISION = 6 LT_TOOLS_VERS_AGE = 0 # Our main target, the HDF5 library -- cgit v0.12 From 59d30acb9f2b48d6717a32c067fb56c9d4f4551a Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 20 Nov 2017 12:33:10 -0600 Subject: HDFFV-10328 Undo changes --- release_docs/RELEASE.txt | 10 +- src/H5PL.c | 43 +- src/H5Z.c | 1008 +++++++++++++++++++++++++--------------------- 3 files changed, 545 insertions(+), 516 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 48e2f98..8830d98 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -195,8 +195,7 @@ Bug Fixes since HDF5-1.8.19 - filter plugin handling in H5PL.c and H5Z.c It was discovered that the dynamic loading process used by - filter plugins had issues with memory allocation and library - dependencies. + filter plugins had issues with library dependencies. CMake build process changed to use LINK INTERFACE keywords, which allowed HDF5 C library to make dependent libraries private. The @@ -204,13 +203,6 @@ Bug Fixes since HDF5-1.8.19 (such as szip or zlib) to be available. (ADB - 2017/11/16, HDFFV-10328) - The H5Z_class2_t structure returned by the filter plugins are - now dynamically allocated in H5Zregister function. Access to - the functions in the filter library now always use the dynamic - library API. - - (ADB - 2017/11/16, HDFFV-10329) - - Fix rare object header corruption bug In certain cases, such as when converting large attributes to dense diff --git a/src/H5PL.c b/src/H5PL.c index c829bf9..5d750fa 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -881,7 +881,6 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) } /* end if */ else { const H5Z_class2_t *plugin_info; - H5Z_class2_t *plugin_copy = NULL; /* Invoke H5PLget_plugin_info to verify this is the right library we are looking for. * Move on if it isn't. @@ -911,22 +910,8 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) (H5PL_table_g[H5PL_table_used_g]).pl_id = plugin_info->id; H5PL_table_used_g++; - /* allocate local copy of plugin info */ - if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) - HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") /* Set the plugin info to return */ - *pl_info = (const void *)plugin_copy; - - plugin_copy->version = plugin_info->version; - plugin_copy->id = plugin_info->id; - plugin_copy->encoder_present = plugin_info->encoder_present; - plugin_copy->decoder_present = plugin_info->decoder_present; - plugin_copy->can_apply = plugin_info->can_apply; - plugin_copy->set_local = plugin_info->set_local; - plugin_copy->filter = plugin_info->filter; - /* copy the user's string into the property */ - if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) - HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") + *pl_info = (const void *)plugin_info; /* Indicate success */ ret_value = TRUE; @@ -938,10 +923,6 @@ H5PL__open(H5PL_type_t pl_type, char *libname, int pl_id, const void **pl_info) } /* end else */ done: - /* unallocate local copy of plugin info on failure */ - if (FAIL == ret_value && *pl_info) { - *pl_info = (H5Z_class2_t *)H5MM_xfree(*pl_info); - } FUNC_LEAVE_NOAPI(ret_value) } /* end H5PL__open() */ @@ -976,7 +957,6 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if((plugin_type == (H5PL_table_g[i]).pl_type) && (type_id == (H5PL_table_g[i]).pl_id)) { H5PL_get_plugin_info_t get_plugin_info; const H5Z_class2_t *plugin_info; - H5Z_class2_t *plugin_copy = NULL; if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PLget_plugin_info"))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function for H5PLget_plugin_info") @@ -984,32 +964,13 @@ H5PL__search_table(H5PL_type_t plugin_type, int type_id, const void **info) if(NULL == (plugin_info = (const H5Z_class2_t *)(*get_plugin_info)())) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get plugin info") - if (NULL == (plugin_copy = (H5Z_class2_t *)H5MM_calloc(sizeof(H5Z_class2_t)))) - HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for plugin info") - /* Set the plugin info to return */ - *info = (const void *)plugin_copy; - - plugin_copy->version = plugin_info->version; - plugin_copy->id = plugin_info->id; - plugin_copy->encoder_present = plugin_info->encoder_present; - plugin_copy->decoder_present = plugin_info->decoder_present; - plugin_copy->can_apply = plugin_info->can_apply; - plugin_copy->set_local = plugin_info->set_local; - plugin_copy->filter = plugin_info->filter; - /* copy the user's string into the property */ - if(NULL == (plugin_copy->name = (char *)H5MM_xstrdup(plugin_info->name))) - HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "can't allocate memory for plugin info name") - + *info = plugin_info; HGOTO_DONE(TRUE) } /* end if */ } /* end for */ } /* end if */ done: - /* unallocate local copy of plugin info on failure */ - if (FAIL == ret_value && *info) { - *info = (H5Z_class2_t *)H5MM_xfree(*info); - } FUNC_LEAVE_NOAPI(ret_value) } /* end H5PL__search_table() */ diff --git a/src/H5Z.c b/src/H5Z.c index 0c03f6f..a74d726 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -122,8 +122,8 @@ done: int H5Z_term_interface(void) { - size_t i; #ifdef H5Z_DEBUG + size_t i; int dir; int nprint = 0; char comment[16]; @@ -178,12 +178,6 @@ H5Z_term_interface(void) } } #endif /* H5Z_DEBUG */ - for (i = 0; i < H5Z_table_used_g; i++) { - H5Z_class2_t *cls = (H5Z_class2_t *)(H5Z_table_g+i); - /* deallocate plugin info name */ - if (cls->name) - cls->name = (char *)H5MM_xfree(cls->name); - } /* Free the table of filters */ H5Z_table_g = (H5Z_class2_t *)H5MM_xfree(H5Z_table_g); #ifdef H5Z_DEBUG @@ -217,7 +211,7 @@ H5Zregister(const void *cls) /* Check args */ if (cls_real==NULL) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter class") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter class") /* Check H5Z_class_t version number; this is where a function to convert * from an outdated version should be called. @@ -249,20 +243,20 @@ H5Zregister(const void *cls) #else /* H5_NO_DEPRECATED_SYMBOLS */ /* Deprecated symbols not allowed, throw an error */ - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid H5Z_class_t version number"); + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid H5Z_class_t version number"); #endif /* H5_NO_DEPRECATED_SYMBOLS */ } /* end if */ if (cls_real->id < 0 || cls_real->id > H5Z_FILTER_MAX) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") if (cls_real->id < H5Z_FILTER_RESERVED) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "unable to modify predefined filters") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "unable to modify predefined filters") if (cls_real->filter == NULL) - HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "no filter function specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no filter function specified") /* Do it */ if (H5Z_register (cls_real) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") done: FUNC_LEAVE_API(ret_value) @@ -308,7 +302,7 @@ H5Z_register (const H5Z_class2_t *cls) H5Z_table_g = table; #ifdef H5Z_DEBUG if (!stat_table) - HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter statistics table") + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend filter statistics table") H5Z_stat_table_g = stat_table; #endif /* H5Z_DEBUG */ H5Z_table_alloc_g = n; @@ -317,20 +311,14 @@ H5Z_register (const H5Z_class2_t *cls) /* Initialize */ i = H5Z_table_used_g++; HDmemcpy (H5Z_table_g+i, cls, sizeof(H5Z_class2_t)); - H5Z_table_g[i].name = (char *)H5MM_xstrdup(cls->name); #ifdef H5Z_DEBUG HDmemset (H5Z_stat_table_g+i, 0, sizeof(H5Z_stats_t)); #endif /* H5Z_DEBUG */ } /* end if */ /* Filter already registered */ else { - H5Z_class2_t *old_cls = (H5Z_class2_t *)(H5Z_table_g+i); - /* deallocate plugin info name */ - if (old_cls->name) - old_cls->name = (char *)H5MM_xfree(old_cls->name); /* Replace old contents */ HDmemcpy (old_cls, cls, sizeof(H5Z_class2_t)); - old_cls->name = (char *)H5MM_xstrdup(cls->name); } /* end else */ done: @@ -386,7 +374,6 @@ H5Z_unregister(H5Z_filter_t filter_id) size_t filter_index; /* Local index variable for filter */ H5Z_object_t object; herr_t ret_value = SUCCEED; /* Return value */ - H5Z_class2_t *old_cls = NULL; FUNC_ENTER_NOAPI(FAIL) @@ -423,10 +410,6 @@ H5Z_unregister(H5Z_filter_t filter_id) if (H5I_iterate(H5I_FILE, H5Z__flush_file_cb, NULL, FALSE) < 0) HGOTO_ERROR(H5E_FILE, H5E_BADITER, FAIL, "iteration failed") - /* deallocate plugin info name */ - old_cls = (H5Z_class2_t *)(H5Z_table_g+filter_index); - if (old_cls->name) - old_cls->name = (char *)H5MM_xfree(old_cls->name); /* Remove filter from table */ /* Don't worry about shrinking table size (for now) */ HDmemmove (&H5Z_table_g[filter_index], &H5Z_table_g[filter_index+1], sizeof(H5Z_class2_t)*((H5Z_table_used_g-1)-filter_index)); @@ -459,11 +442,11 @@ H5Z__check_unregister(hid_t ocpl_id, H5Z_filter_t filter_id) /* Get the plist structure of object creation */ if (NULL == (plist = H5P_object_verify(ocpl_id, H5P_OBJECT_CREATE))) - HGOTO_ERROR (H5E_PLINE, H5E_BADATOM, FAIL, "can't find object for ID") + HGOTO_ERROR(H5E_PLINE, H5E_BADATOM, FAIL, "can't find object for ID") /* Check if the object creation property list uses the filter */ if ((ret_value = H5P_filter_in_pline(plist, filter_id)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") done: FUNC_LEAVE_NOAPI(ret_value) @@ -471,15 +454,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z__check_unregister_group_cb + * Function: H5Z__check_unregister_group_cb + * + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened objects. If the object is a dataset + * or a group and it uses the filter to be unregistered, the + * function returns TRUE. * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened objects. If the object is a dataset - * or a group and it uses the filter to be unregistered, the - * function returns TRUE. + * Return: TRUE if the object uses the filter. + * FALSE otherwise. + * + * Programmer: Raymond Lu + * 6 May 2013 * - * Return: TRUE if the object uses the filter. - * FALSE otherwise. *------------------------------------------------------------------------- */ static int @@ -495,40 +482,44 @@ H5Z__check_unregister_group_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void HDassert(obj_ptr); /* Get the group creation property */ - if ((ocpl_id = H5G_get_create_plist((H5G_t *)obj_ptr)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't get group creation property list") + if((ocpl_id = H5G_get_create_plist((H5G_t *)obj_ptr)) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't get group creation property list") /* Check if the filter is in the group creation property list */ - if ((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + if((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") /* H5I_iterate expects TRUE to stop the loop over objects. Stop the loop and * let H5Z_unregister return failure. - */ - if (filter_in_pline) { + */ + if(filter_in_pline) { object->found = TRUE; ret_value = TRUE; } /* end if */ done: - if (ocpl_id > 0) - if (H5I_dec_app_ref(ocpl_id) < 0) - HDONE_ERROR (H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") + if(ocpl_id > 0) + if(H5I_dec_app_ref(ocpl_id) < 0) + HDONE_ERROR(H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") FUNC_LEAVE_NOAPI(ret_value) } /* end H5Z__check_unregister_group_cb() */ /*------------------------------------------------------------------------- - * Function: H5Z__check_unregister_dset_cb + * Function: H5Z__check_unregister_dset_cb * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened objects. If the object is a dataset - * or a group and it uses the filter to be unregistered, the - * function returns TRUE. + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened objects. If the object is a dataset + * or a group and it uses the filter to be unregistered, the + * function returns TRUE. + * + * Return: TRUE if the object uses the filter. + * FALSE otherwise. + * + * Programmer: Raymond Lu + * 6 May 2013 * - * Return: TRUE if the object uses the filter. - * FALSE otherwise. *------------------------------------------------------------------------- */ static int @@ -541,57 +532,61 @@ H5Z__check_unregister_dset_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void * FUNC_ENTER_STATIC - HDassert (obj_ptr); + HDassert(obj_ptr); /* Get the dataset creation property */ - if ((ocpl_id = H5D_get_create_plist((H5D_t *)obj_ptr)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't get dataset creation property list") + if((ocpl_id = H5D_get_create_plist((H5D_t *)obj_ptr)) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't get dataset creation property list") /* Check if the filter is in the dataset creation property list */ - if ((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") + if((filter_in_pline = H5Z__check_unregister(ocpl_id, object->filter_id)) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "can't check filter in pipeline") /* H5I_iterate expects TRUE to stop the loop over objects. Stop the loop and * let H5Z_unregister return failure. - */ - if (filter_in_pline) { + */ + if(filter_in_pline) { object->found = TRUE; ret_value = TRUE; } /* end if */ done: - if (ocpl_id > 0) - if (H5I_dec_app_ref(ocpl_id) < 0) - HDONE_ERROR (H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") + if(ocpl_id > 0) + if(H5I_dec_app_ref(ocpl_id) < 0) + HDONE_ERROR(H5E_PLINE, H5E_CANTDEC, FAIL, "can't release plist") FUNC_LEAVE_NOAPI(ret_value) } /* end H5Z__check_unregister_dset_cb() */ /*------------------------------------------------------------------------- - * Function: H5Z__flush_file_cb + * Function: H5Z__flush_file_cb + * + * Purpose: The callback function for H5Z_unregister. It iterates + * through all opened files and flush them. * - * Purpose: The callback function for H5Z_unregister. It iterates - * through all opened files and flush them. + * Return: FALSE if finishes flushing and moves on + * FAIL if there is an error + * + * Programmer: Raymond Lu + * 6 May 2013 * - * Return: FALSE if finishes flushing and moves on - * FAIL if there is an error *------------------------------------------------------------------------- */ static int H5Z__flush_file_cb(void *obj_ptr, hid_t H5_ATTR_UNUSED obj_id, void H5_ATTR_UNUSED *key) { - int ret_value = FALSE; /* Return value */ + int ret_value = FALSE; /* Return value */ FUNC_ENTER_STATIC - HDassert (obj_ptr); + HDassert(obj_ptr); - /* Call the flush routine for mounted file hierarchies. Do a global flush + /* Call the flush routine for mounted file hierarchies. Do a global flush * if the file is opened for write */ - if (H5F_ACC_RDWR & H5F_INTENT((H5F_t *)obj_ptr)) { - if (H5F_flush_mounts((H5F_t *)obj_ptr, H5AC_dxpl_id) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTFLUSH, FAIL, "unable to flush file hierarchy") + if(H5F_ACC_RDWR & H5F_INTENT((H5F_t *)obj_ptr)) { + if(H5F_flush_mounts((H5F_t *)obj_ptr, H5AC_dxpl_id) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTFLUSH, FAIL, "unable to flush file hierarchy") } /* end if */ done: @@ -600,27 +595,33 @@ done: /*------------------------------------------------------------------------- - * Function: H5Zfilter_avail + * Function: H5Zfilter_avail + * + * Purpose: Check if a filter is available * - * Purpose: Check if a filter is available + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure + * + * Programmer: Quincey Koziol + * Thursday, November 14, 2002 + * + * Modifications: * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure *------------------------------------------------------------------------- */ htri_t H5Zfilter_avail(H5Z_filter_t id) { - htri_t ret_value = FALSE; /* Return value */ + htri_t ret_value=FALSE; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE1("t", "Zf", id); /* Check args */ - if (id < 0 || id > H5Z_FILTER_MAX) + if(id<0 || id>H5Z_FILTER_MAX) HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid filter identification number") - if ((ret_value = H5Z_filter_avail(id)) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "unable to check the availability of the filter") + if((ret_value = H5Z_filter_avail(id)) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "unable to check the availability of the filter") done: FUNC_LEAVE_API(ret_value) @@ -628,35 +629,35 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_avail + * Function: H5Z_filter_avail + * + * Purpose: Private function to check if a filter is available * - * Purpose: Private function to check if a filter is available + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure + * + * Programmer: Raymond Lu + * 13 February 2013 * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure *------------------------------------------------------------------------- */ htri_t H5Z_filter_avail(H5Z_filter_t id) { - size_t i; /* Local index variable */ - H5Z_class2_t *filter_info; - htri_t ret_value = FALSE; /* Return value */ + size_t i; /* Local index variable */ + const H5Z_class2_t *filter_info; + htri_t ret_value = FALSE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) /* Is the filter already registered? */ - for (i = 0; i < H5Z_table_used_g; i++) - if (H5Z_table_g[i].id == id) - HGOTO_DONE (TRUE) + for(i = 0; i < H5Z_table_used_g; i++) + if(H5Z_table_g[i].id == id) + HGOTO_DONE(TRUE) if (NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)id))) { - herr_t status = H5Z_register(filter_info); - if (filter_info->name) - filter_info->name = (char *)H5MM_xfree(filter_info->name); - filter_info = (H5Z_class2_t *)H5MM_xfree(filter_info); - if (status < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register loaded filter") - HGOTO_DONE (TRUE) + if (H5Z_register(filter_info) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register loaded filter") + HGOTO_DONE(TRUE) } done: FUNC_LEAVE_NOAPI(ret_value) @@ -664,16 +665,21 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_prelude_callback + * Function: H5Z_prelude_callback * - * Purpose: Makes a dataset creation "prelude" callback for the "can_apply" - * or "set_local" routines. + * Purpose: Makes a dataset creation "prelude" callback for the "can_apply" + * or "set_local" routines. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Friday, April 4, 2003 + * + * Notes: + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see * - * Notes: The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ static herr_t @@ -682,59 +688,59 @@ H5Z_prelude_callback(const H5O_pline_t *pline, hid_t dcpl_id, hid_t type_id, { H5Z_class2_t *fclass; /* Individual filter information */ size_t u; /* Local index variable */ - htri_t ret_value = TRUE; /* Return value */ + htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_NOAPI_NOINIT HDassert(pline->nused > 0); /* Iterate over filters */ - for (u = 0; u < pline->nused; u++) { + for(u = 0; u < pline->nused; u++) { /* Get filter information */ - if (NULL == (fclass = H5Z_find(pline->filter[u].id))) { + if(NULL == (fclass = H5Z_find(pline->filter[u].id))) { /* Ignore errors from optional filters */ - if (pline->filter[u].flags & H5Z_FLAG_OPTIONAL) - H5E_clear_stack (NULL); + if(pline->filter[u].flags & H5Z_FLAG_OPTIONAL) + H5E_clear_stack(NULL); else - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "required filter was not located") + HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "required filter was not located") } /* end if */ else { /* Make correct callback */ - switch (prelude_type) { + switch(prelude_type) { case H5Z_PRELUDE_CAN_APPLY: /* Check if filter is configured to be able to encode */ - if (!fclass->encoder_present) - HGOTO_ERROR (H5E_PLINE, H5E_NOENCODER, FAIL, "Filter present but encoding is disabled."); + if(!fclass->encoder_present) + HGOTO_ERROR(H5E_PLINE, H5E_NOENCODER, FAIL, "Filter present but encoding is disabled."); /* Check if there is a "can apply" callback */ - if (fclass->can_apply) { + if(fclass->can_apply) { /* Make callback to filter's "can apply" function */ htri_t status = (fclass->can_apply)(dcpl_id, type_id, space_id); /* Indicate error during filter callback */ - if (status < 0) + if(status < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "error during user callback") - /* Indicate filter can't apply to this combination of parameters. + /* Indicate filter can't apply to this combination of parameters. * If the filter is NOT optional, returns failure. */ - if (status == FALSE && !(pline->filter[u].flags & H5Z_FLAG_OPTIONAL)) + if(status == FALSE && !(pline->filter[u].flags & H5Z_FLAG_OPTIONAL)) HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "filter parameters not appropriate") } /* end if */ break; case H5Z_PRELUDE_SET_LOCAL: /* Check if there is a "set local" callback */ - if (fclass->set_local) { + if(fclass->set_local) { /* Make callback to filter's "set local" function */ - if ((fclass->set_local)(dcpl_id, type_id, space_id) < 0) + if((fclass->set_local)(dcpl_id, type_id, space_id) < 0) /* Indicate error during filter callback */ - HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "error during user callback") + HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "error during user callback") } /* end if */ break; default: - HDassert ("invalid prelude type" && 0); + HDassert("invalid prelude type" && 0); } /* end switch */ } /* end else */ } /* end for */ @@ -746,77 +752,82 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_prepare_prelude_callback_dcpl + * Function: H5Z_prepare_prelude_callback_dcpl * - * Purpose: Prepares to make a dataset creation "prelude" callback - * for the "can_apply" or "set_local" routines. + * Purpose: Prepares to make a dataset creation "prelude" callback + * for the "can_apply" or "set_local" routines. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Friday, April 4, 2003 + * + * Notes: + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see * - * Notes: The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ static herr_t H5Z_prepare_prelude_callback_dcpl(hid_t dcpl_id, hid_t type_id, H5Z_prelude_type_t prelude_type) { - hid_t space_id = -1; /* ID for dataspace describing chunk */ - herr_t ret_value = SUCCEED; /* Return value */ + hid_t space_id = -1; /* ID for dataspace describing chunk */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT - HDassert (H5I_GENPROP_LST == H5I_get_type(dcpl_id)); - HDassert (H5I_DATATYPE == H5I_get_type(type_id)); + HDassert(H5I_GENPROP_LST == H5I_get_type(dcpl_id)); + HDassert(H5I_DATATYPE == H5I_get_type(type_id)); /* Check if the property list is non-default */ - if (dcpl_id != H5P_DATASET_CREATE_DEFAULT) { - H5P_genplist_t *dc_plist; /* Dataset creation property list object */ - H5O_layout_t dcpl_layout; /* Dataset's layout information */ + if(dcpl_id != H5P_DATASET_CREATE_DEFAULT) { + H5P_genplist_t *dc_plist; /* Dataset creation property list object */ + H5O_layout_t dcpl_layout; /* Dataset's layout information */ /* Get dataset creation property list object */ - if (NULL == (dc_plist = (H5P_genplist_t *)H5I_object(dcpl_id))) - HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "can't get dataset creation property list") + if(NULL == (dc_plist = (H5P_genplist_t *)H5I_object(dcpl_id))) + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "can't get dataset creation property list") /* Get layout information */ - if (H5P_get(dc_plist, H5D_CRT_LAYOUT_NAME, &dcpl_layout) < 0) - HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve layout") + if(H5P_get(dc_plist, H5D_CRT_LAYOUT_NAME, &dcpl_layout) < 0) + HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve layout") /* Check if the dataset is chunked */ - if (H5D_CHUNKED == dcpl_layout.type) { + if(H5D_CHUNKED == dcpl_layout.type) { H5O_pline_t dcpl_pline; /* Object's I/O pipeline information */ /* Get I/O pipeline information */ - if (H5P_get(dc_plist, H5O_CRT_PIPELINE_NAME, &dcpl_pline) < 0) - HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve pipeline filter") + if(H5P_get(dc_plist, H5O_CRT_PIPELINE_NAME, &dcpl_pline) < 0) + HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve pipeline filter") /* Check if the chunks have filters */ - if (dcpl_pline.nused > 0) { + if(dcpl_pline.nused > 0) { hsize_t chunk_dims[H5O_LAYOUT_NDIMS]; /* Size of chunk dimensions */ - H5S_t *space; /* Dataspace describing chunk */ - size_t u; /* Local index variable */ + H5S_t *space; /* Dataspace describing chunk */ + size_t u; /* Local index variable */ /* Create a dataspace for a chunk & set the extent */ - for (u = 0; u < dcpl_layout.u.chunk.ndims; u++) + for(u = 0; u < dcpl_layout.u.chunk.ndims; u++) chunk_dims[u] = dcpl_layout.u.chunk.dim[u]; - if (NULL == (space = H5S_create_simple(dcpl_layout.u.chunk.ndims, chunk_dims, NULL))) - HGOTO_ERROR (H5E_DATASPACE, H5E_CANTCREATE, FAIL, "can't create simple dataspace") + if(NULL == (space = H5S_create_simple(dcpl_layout.u.chunk.ndims, chunk_dims, NULL))) + HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCREATE, FAIL, "can't create simple dataspace") /* Get ID for dataspace to pass to filter routines */ - if ((space_id = H5I_register(H5I_DATASPACE, space, FALSE)) < 0) { - (void)H5S_close (space); - HGOTO_ERROR (H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace ID") + if((space_id = H5I_register(H5I_DATASPACE, space, FALSE)) < 0) { + (void)H5S_close(space); + HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace ID") } /* end if */ /* Make the callbacks */ - if (H5Z_prelude_callback(&dcpl_pline, dcpl_id, type_id, space_id, prelude_type) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if(H5Z_prelude_callback(&dcpl_pline, dcpl_id, type_id, space_id, prelude_type) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") } /* end if */ } /* end if */ } /* end if */ done: - if (space_id > 0 && H5I_dec_ref(space_id) < 0) + if(space_id > 0 && H5I_dec_ref(space_id) < 0) HDONE_ERROR(H5E_PLINE, H5E_CANTRELEASE, FAIL, "unable to close dataspace") FUNC_LEAVE_NOAPI(ret_value) @@ -824,18 +835,22 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_can_apply + * Function: H5Z_can_apply * - * Purpose: Checks if all the filters defined in the dataset creation - * property list can be applied to a particular combination of - * datatype and dataspace for a dataset. + * Purpose: Checks if all the filters defined in the dataset creation + * property list can be applied to a particular combination of + * datatype and dataspace for a dataset. * - * Return: Non-negative on success - * Negative on failure + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Thursday, April 3, 2003 + * + * Notes: + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see * - * Notes: The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ herr_t @@ -846,8 +861,8 @@ H5Z_can_apply(hid_t dcpl_id, hid_t type_id) FUNC_ENTER_NOAPI(FAIL) /* Make "can apply" callbacks for filters in pipeline */ - if (H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_CAN_APPLY) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if(H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_CAN_APPLY) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") done: FUNC_LEAVE_NOAPI(ret_value) @@ -855,18 +870,22 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_set_local + * Function: H5Z_set_local * - * Purpose: Makes callbacks to modify dataset creation list property - * settings for filters on a new dataset, based on the datatype - * and dataspace of that dataset (chunk). + * Purpose: Makes callbacks to modify dataset creation list property + * settings for filters on a new dataset, based on the datatype + * and dataspace of that dataset (chunk). * - * Return: Non-negative on success - * Negative on failure + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Friday, April 4, 2003 + * + * Notes: + * The chunk dimensions are used to create a dataspace, instead + * of passing in the dataset's dataspace, since the chunk + * dimensions are what the I/O filter will actually see * - * Notes: The chunk dimensions are used to create a dataspace, instead - * of passing in the dataset's dataspace, since the chunk - * dimensions are what the I/O filter will actually see *------------------------------------------------------------------------- */ herr_t @@ -877,8 +896,8 @@ H5Z_set_local(hid_t dcpl_id, hid_t type_id) FUNC_ENTER_NOAPI(FAIL) /* Make "set local" callbacks for filters in pipeline */ - if (H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_SET_LOCAL) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") + if(H5Z_prepare_prelude_callback_dcpl(dcpl_id, type_id, H5Z_PRELUDE_SET_LOCAL) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") done: FUNC_LEAVE_NOAPI(ret_value) @@ -886,14 +905,17 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_can_apply_direct + * Function: H5Z_can_apply_direct * - * Purpose: Checks if all the filters defined in the pipeline can be - * applied to an opaque byte stream (currently only a group). - * The pipeline is assumed to have at least one filter. + * Purpose: Checks if all the filters defined in the pipeline can be + * applied to an opaque byte stream (currently only a group). + * The pipeline is assumed to have at least one filter. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Neil Fortner + * Tuesday, September 22, 2009 * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ herr_t @@ -903,11 +925,11 @@ H5Z_can_apply_direct(const H5O_pline_t *pline) FUNC_ENTER_NOAPI(FAIL) - HDassert (pline->nused > 0); + HDassert(pline->nused > 0); /* Make "can apply" callbacks for filters in pipeline */ - if (H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_CAN_APPLY) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") + if(H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_CAN_APPLY) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANAPPLY, FAIL, "unable to apply filter") done: FUNC_LEAVE_NOAPI(ret_value) @@ -915,18 +937,22 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_set_local_direct + * Function: H5Z_set_local_direct * - * Purpose: Makes callbacks to modify local settings for filters on a - * new opaque object. The pipeline is assumed to have at - * least one filter. + * Purpose: Makes callbacks to modify local settings for filters on a + * new opaque object. The pipeline is assumed to have at + * least one filter. * - * Return: Non-negative on success - * Negative on failure + * Return: Non-negative on success/Negative on failure + * + * Programmer: Neil Fortner + * Tuesday, September 22, 2009 + * + * Notes: + * This callback will almost certainly not do anything + * useful, other than to make certain that the filter will + * accept opque data. * - * Notes: This callback will almost certainly not do anything - * useful, other than to make certain that the filter will - * accept opaque data. *------------------------------------------------------------------------- */ herr_t @@ -936,11 +962,11 @@ H5Z_set_local_direct(const H5O_pline_t *pline) FUNC_ENTER_NOAPI(FAIL) - HDassert (pline->nused > 0); + HDassert(pline->nused > 0); /* Make "set local" callbacks for filters in pipeline */ - if (H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_SET_LOCAL) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") + if(H5Z_prelude_callback(pline, (hid_t)-1, (hid_t)-1, (hid_t)-1, H5Z_PRELUDE_SET_LOCAL) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_SETLOCAL, FAIL, "local filter parameters not set") done: FUNC_LEAVE_NOAPI(ret_value) @@ -948,61 +974,66 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_modify + * Function: H5Z_modify * - * Purpose: Modify filter parameters for specified pipeline. + * Purpose: Modify filter parameters for specified pipeline. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Friday, April 5, 2003 + * + * Modifications: * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_modify(const H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { - size_t idx; /* Index of filter in pipeline */ - herr_t ret_value = SUCCEED; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert (pline); - HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); - HDassert (0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); - HDassert (0 == cd_nelmts || cd_values); + HDassert(pline); + HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert(0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); + HDassert(0 == cd_nelmts || cd_values); /* Locate the filter in the pipeline */ - for (idx = 0; idx < pline->nused; idx++) - if (pline->filter[idx].id == filter) + for(idx = 0; idx < pline->nused; idx++) + if(pline->filter[idx].id == filter) break; /* Check if the filter was not already in the pipeline */ - if (idx > pline->nused) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") + if(idx > pline->nused) + HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") /* Change parameters for filter */ pline->filter[idx].flags = flags; pline->filter[idx].cd_nelmts = cd_nelmts; /* Free any existing parameters */ - if (pline->filter[idx].cd_values != NULL && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) - H5MM_xfree(pline->filter[idx].cd_values); + if(pline->filter[idx].cd_values != NULL && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + H5MM_xfree(pline->filter[idx].cd_values); /* Set parameters */ - if (cd_nelmts > 0) { - size_t i; /* Local index variable */ + if(cd_nelmts > 0) { + size_t i; /* Local index variable */ /* Allocate memory or point at internal buffer */ - if (cd_nelmts > H5Z_COMMON_CD_VALUES) { + if(cd_nelmts > H5Z_COMMON_CD_VALUES) { pline->filter[idx].cd_values = (unsigned *)H5MM_malloc(cd_nelmts * sizeof(unsigned)); - if (NULL == pline->filter[idx].cd_values) - HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter parameters") + if(NULL == pline->filter[idx].cd_values) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter parameters") } /* end if */ else pline->filter[idx].cd_values = pline->filter[idx]._cd_values; /* Copy client data values */ - for (i = 0; i < cd_nelmts; i++) - pline->filter[idx].cd_values[i] = cd_values[i]; + for(i = 0; i < cd_nelmts; i++) + pline->filter[idx].cd_values[i] = cd_values[i]; } /* end if */ else pline->filter[idx].cd_values = NULL; @@ -1013,42 +1044,47 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_append + * Function: H5Z_append * - * Purpose: Append another filter to the specified pipeline. + * Purpose: Append another filter to the specified pipeline. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Robb Matzke + * Tuesday, August 4, 1998 + * + * Modifications: * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, - size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) + size_t cd_nelmts, const unsigned int cd_values[/*cd_nelmts*/]) { - size_t idx; - herr_t ret_value = SUCCEED; /* Return value */ + size_t idx; + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert (pline); - HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); - HDassert (0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); - HDassert (0 == cd_nelmts || cd_values); + HDassert(pline); + HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert(0 == (flags & ~((unsigned)H5Z_FLAG_DEFMASK))); + HDassert(0 == cd_nelmts || cd_values); /* * Check filter limit. We do it here for early warnings although we may * decide to relax this restriction in the future. */ - if (pline->nused >= H5Z_MAX_NFILTERS) - HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "too many filters in pipeline") + if(pline->nused >= H5Z_MAX_NFILTERS) + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "too many filters in pipeline") /* Check for freshly allocated filter pipeline */ - if (pline->version == 0) + if(pline->version == 0) pline->version = H5O_PLINE_VERSION_1; /* Allocate additional space in the pipeline if it's full */ - if (pline->nused >= pline->nalloc) { - H5O_pline_t x; + if(pline->nused >= pline->nalloc) { + H5O_pline_t x; size_t n; /* Each filter's data may be stored internally or may be @@ -1058,14 +1094,14 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, * filter struct is reallocated. Set these pointers to ~NULL * so that we can reset them after reallocating the filters array. */ - for (n = 0; n < pline->nalloc; ++n) - if (pline->filter[n].cd_values == pline->filter[n]._cd_values) + for(n = 0; n < pline->nalloc; ++n) + if(pline->filter[n].cd_values == pline->filter[n]._cd_values) pline->filter[n].cd_values = (unsigned *)((void *) ~((size_t)NULL)); - x.nalloc = MAX(H5Z_MAX_NFILTERS, 2 * pline->nalloc); - x.filter = (H5Z_filter_info_t *)H5MM_realloc(pline->filter, x.nalloc * sizeof(x.filter[0])); - if (NULL == x.filter) - HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter pipeline") + x.nalloc = MAX(H5Z_MAX_NFILTERS, 2 * pline->nalloc); + x.filter = (H5Z_filter_info_t *)H5MM_realloc(pline->filter, x.nalloc * sizeof(x.filter[0])); + if(NULL == x.filter) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter pipeline") /* Fix pointers in previous filters that need to point to their own * internal data. @@ -1075,8 +1111,8 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, x.filter[n].cd_values = x.filter[n]._cd_values; /* Point to newly allocated buffer */ - pline->nalloc = x.nalloc; - pline->filter = x.filter; + pline->nalloc = x.nalloc; + pline->filter = x.filter; } /* end if */ /* Add the new filter to the pipeline */ @@ -1085,21 +1121,21 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, pline->filter[idx].flags = flags; pline->filter[idx].name = NULL; /*we'll pick it up later*/ pline->filter[idx].cd_nelmts = cd_nelmts; - if (cd_nelmts > 0) { - size_t i; /* Local index variable */ + if(cd_nelmts > 0) { + size_t i; /* Local index variable */ /* Allocate memory or point at internal buffer */ - if (cd_nelmts > H5Z_COMMON_CD_VALUES) { + if(cd_nelmts > H5Z_COMMON_CD_VALUES) { pline->filter[idx].cd_values = (unsigned *)H5MM_malloc(cd_nelmts * sizeof(unsigned)); - if (NULL == pline->filter[idx].cd_values) - HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter") + if(NULL == pline->filter[idx].cd_values) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for filter") } /* end if */ else pline->filter[idx].cd_values = pline->filter[idx]._cd_values; /* Copy client data values */ - for (i = 0; i < cd_nelmts; i++) - pline->filter[idx].cd_values[i] = cd_values[i]; + for(i = 0; i < cd_nelmts; i++) + pline->filter[idx].cd_values[i] = cd_values[i]; } /* end if */ else pline->filter[idx].cd_values = NULL; @@ -1112,26 +1148,32 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_find_idx + * Function: H5Z_find_idx + * + * Purpose: Given a filter ID return the offset in the global array + * that holds all the registered filters. * - * Purpose: Given a filter ID return the offset in the global array - * that holds all the registered filters. + * Return: Success: Non-negative index of entry in global filter table. + * Failure: Negative + * + * Programmer: Quincey Koziol + * Friday, April 5, 2003 + * + * Modifications: * - * Return: Success: Non-negative index of entry in global filter table. - * Failure: Negative *------------------------------------------------------------------------- */ static int H5Z_find_idx(H5Z_filter_t id) { size_t i; /* Local index variable */ - int ret_value = FAIL; /* Return value */ + int ret_value=FAIL; /* Return value */ FUNC_ENTER_NOAPI_NOINIT_NOERR - for (i = 0; i < H5Z_table_used_g; i++) - if (H5Z_table_g[i].id == id) - HGOTO_DONE ((int)i) + for (i=0; ifilter[].flags). The filters are processed in - * definition order unless the H5Z_FLAG_REVERSE is set. The - * FILTER_MASK is a bit-mask to indicate which filters to skip - * and on exit will indicate which filters failed. Each - * filter has an index number in the pipeline and that index - * number is the filter's bit in the FILTER_MASK. NBYTES is the - * number of bytes of data to filter and on exit should be the - * number of resulting bytes while BUF_SIZE holds the total - * allocated size of the buffer, which is pointed to BUF. - * - * If the buffer must grow during processing of the pipeline - * then the pipeline function should free the original buffer - * and return a fresh buffer, adjusting BUF_SIZE accordingly. + * Function: H5Z_pipeline + * + * Purpose: Process data through the filter pipeline. The FLAGS argument + * is the filter invocation flags (definition flags come from + * the PLINE->filter[].flags). The filters are processed in + * definition order unless the H5Z_FLAG_REVERSE is set. The + * FILTER_MASK is a bit-mask to indicate which filters to skip + * and on exit will indicate which filters failed. Each + * filter has an index number in the pipeline and that index + * number is the filter's bit in the FILTER_MASK. NBYTES is the + * number of bytes of data to filter and on exit should be the + * number of resulting bytes while BUF_SIZE holds the total + * allocated size of the buffer, which is pointed to BUF. + * + * If the buffer must grow during processing of the pipeline + * then the pipeline function should free the original buffer + * and return a fresh buffer, adjusting BUF_SIZE accordingly. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Robb Matzke + * Tuesday, August 4, 1998 + * + * Modifications: * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_pipeline(const H5O_pline_t *pline, unsigned flags, - unsigned *filter_mask/*in,out*/, H5Z_EDC_t edc_read, - H5Z_cb_t cb_struct, size_t *nbytes/*in,out*/, - size_t *buf_size/*in,out*/, void **buf/*in,out*/) + unsigned *filter_mask/*in,out*/, H5Z_EDC_t edc_read, + H5Z_cb_t cb_struct, size_t *nbytes/*in,out*/, + size_t *buf_size/*in,out*/, void **buf/*in,out*/) { - size_t i, idx, new_nbytes; - int fclass_idx; /* Index of filter class in global table */ - H5Z_class2_t *fclass=NULL; /* Filter class pointer */ + size_t i, idx, new_nbytes; + int fclass_idx; /* Index of filter class in global table */ + H5Z_class2_t *fclass=NULL; /* Filter class pointer */ #ifdef H5Z_DEBUG - H5Z_stats_t *fstats=NULL; /* Filter stats pointer */ - H5_timer_t timer; + H5Z_stats_t *fstats=NULL; /* Filter stats pointer */ + H5_timer_t timer; #endif - unsigned failed = 0; - unsigned tmp_flags; - herr_t ret_value = SUCCEED; /* Return value */ + unsigned failed = 0; + unsigned tmp_flags; + herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert (0 == (flags & ~((unsigned)H5Z_FLAG_INVMASK))); - HDassert (filter_mask); - HDassert (nbytes && *nbytes>0); - HDassert (buf_size && *buf_size>0); - HDassert (buf && *buf); - HDassert (!pline || pline->nused0); + HDassert(buf_size && *buf_size>0); + HDassert(buf && *buf); + HDassert(!pline || pline->nusednused; i > 0; --i) { - idx = i-1; + for (i=pline->nused; i>0; --i) { + idx = i-1; - if (*filter_mask & ((unsigned)1 << idx)) { - failed |= (unsigned)1 << idx; - continue; /* filter excluded */ - } + if (*filter_mask & ((unsigned)1<filter[idx].id)) < 0) { + if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { hbool_t issue_error = FALSE; - H5Z_class2_t *filter_info; - - /* Try loading the filter */ - if (NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) { - /* Register the filter we loaded */ - herr_t status = H5Z_register(filter_info); - if (filter_info->name) - filter_info->name = (char *)H5MM_xfree(filter_info->name); - filter_info = (H5Z_class2_t *)H5MM_xfree(filter_info); - if (status < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") - - /* Search in the table of registered filters again to find the dynamic filter just loaded and registered */ - if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) + + const H5Z_class2_t *filter_info; + + /* Try loading the filter */ + if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) { + /* Register the filter we loaded */ + if(H5Z_register(filter_info) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter") + + /* Search in the table of registered filters again to find the dynamic filter just loaded and registered */ + if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) + issue_error = TRUE; + } /* end if */ + else issue_error = TRUE; - } /* end if */ - else - issue_error = TRUE; /* Check for error */ if(issue_error) { - /* Print out the filter name to give more info. But the name is optional for + /* Print out the filter name to give more info. But the name is optional for * the filter */ - if (pline->filter[idx].name) + if(pline->filter[idx].name) HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "required filter '%s' is not registered", pline->filter[idx].name) else HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "required filter (name unavailable) is not registered") } /* end if */ } /* end if */ - fclass = &H5Z_table_g[fclass_idx]; + fclass=&H5Z_table_g[fclass_idx]; #ifdef H5Z_DEBUG - fstats = &H5Z_stat_table_g[fclass_idx]; - H5_timer_begin (&timer); + fstats=&H5Z_stat_table_g[fclass_idx]; + H5_timer_begin(&timer); #endif - tmp_flags = flags | (pline->filter[idx].flags); - tmp_flags |= (edc_read== H5Z_DISABLE_EDC) ? H5Z_FLAG_SKIP_EDC : 0; - new_nbytes = (fclass->filter)(tmp_flags, pline->filter[idx].cd_nelmts, + tmp_flags=flags|(pline->filter[idx].flags); + tmp_flags|=(edc_read== H5Z_DISABLE_EDC) ? H5Z_FLAG_SKIP_EDC : 0; + new_nbytes = (fclass->filter)(tmp_flags, pline->filter[idx].cd_nelmts, pline->filter[idx].cd_values, *nbytes, buf_size, buf); #ifdef H5Z_DEBUG - H5_timer_end (&(fstats->stats[1].timer), &timer); - fstats->stats[1].total += MAX(*nbytes, new_nbytes); - if (0 == new_nbytes) fstats->stats[1].errors += *nbytes; + H5_timer_end(&(fstats->stats[1].timer), &timer); + fstats->stats[1].total += MAX(*nbytes, new_nbytes); + if (0==new_nbytes) fstats->stats[1].errors += *nbytes; #endif - if (0 == new_nbytes) { - if ((cb_struct.func && - (H5Z_CB_FAIL == cb_struct.func (pline->filter[idx].id, *buf, *buf_size, cb_struct.op_data))) || - !cb_struct.func) - HGOTO_ERROR (H5E_PLINE, H5E_READERROR, FAIL, "filter returned failure during read") + if(0==new_nbytes) { + if((cb_struct.func && (H5Z_CB_FAIL==cb_struct.func(pline->filter[idx].id, *buf, *buf_size, cb_struct.op_data))) + || !cb_struct.func) + HGOTO_ERROR(H5E_PLINE, H5E_READERROR, FAIL, "filter returned failure during read") *nbytes = *buf_size; failed |= (unsigned)1 << idx; - H5E_clear_stack (NULL); - } - else { + H5E_clear_stack(NULL); + } else { *nbytes = new_nbytes; } - } - } - else if (pline) { /* Write */ - for (idx = 0; idx < pline->nused; idx++) { - if (*filter_mask & ((unsigned)1 << idx)) { - failed |= (unsigned)1 << idx; - continue; /*filter excluded*/ - } - if ((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) { + } + } else if (pline) { /* Write */ + for (idx=0; idxnused; idx++) { + if (*filter_mask & ((unsigned)1<filter[idx].id))<0) { /* Check if filter is optional -- If it isn't, then error */ - if ((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0) - HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered") - - failed |= (unsigned)1 << idx; - H5E_clear_stack (NULL); - continue; /*filter excluded*/ - } - fclass = &H5Z_table_g[fclass_idx]; + if ((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0) + HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered") + + failed |= (unsigned)1 << idx; + H5E_clear_stack(NULL); + continue; /*filter excluded*/ + } + fclass=&H5Z_table_g[fclass_idx]; #ifdef H5Z_DEBUG - fstats = &H5Z_stat_table_g[fclass_idx]; - H5_timer_begin (&timer); + fstats=&H5Z_stat_table_g[fclass_idx]; + H5_timer_begin(&timer); #endif - new_nbytes = (fclass->filter)(flags | (pline->filter[idx].flags), pline->filter[idx].cd_nelmts, - pline->filter[idx].cd_values, *nbytes, buf_size, buf); + new_nbytes = (fclass->filter)(flags|(pline->filter[idx].flags), pline->filter[idx].cd_nelmts, + pline->filter[idx].cd_values, *nbytes, buf_size, buf); #ifdef H5Z_DEBUG - H5_timer_end (&(fstats->stats[0].timer), &timer); - fstats->stats[0].total += MAX(*nbytes, new_nbytes); - if (0 == new_nbytes) fstats->stats[0].errors += *nbytes; + H5_timer_end(&(fstats->stats[0].timer), &timer); + fstats->stats[0].total += MAX(*nbytes, new_nbytes); + if (0==new_nbytes) fstats->stats[0].errors += *nbytes; #endif - if (0 == new_nbytes) { - if (0 == (pline->filter[idx].flags & H5Z_FLAG_OPTIONAL)) { - if ((cb_struct.func && - (H5Z_CB_FAIL == cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data))) || - !cb_struct.func) - HGOTO_ERROR (H5E_PLINE, H5E_WRITEERROR, FAIL, "filter returned failure") + if(0==new_nbytes) { + if (0==(pline->filter[idx].flags & H5Z_FLAG_OPTIONAL)) { + if((cb_struct.func && (H5Z_CB_FAIL==cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data))) + || !cb_struct.func) + HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "filter returned failure") *nbytes = *buf_size; } failed |= (unsigned)1 << idx; - H5E_clear_stack (NULL); - } - else + H5E_clear_stack(NULL); + } else { *nbytes = new_nbytes; - } + } + } } *filter_mask = failed; @@ -1346,36 +1394,41 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_info + * Function: H5Z_filter_info * - * Purpose: Get pointer to filter info for pipeline + * Purpose: Get pointer to filter info for pipeline + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Friday, April 5, 2003 + * + * Modifications: * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ H5Z_filter_info_t * H5Z_filter_info(const H5O_pline_t *pline, H5Z_filter_t filter) { - size_t idx; /* Index of filter in pipeline */ - H5Z_filter_info_t *ret_value = NULL; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + H5Z_filter_info_t *ret_value; /* Return value */ FUNC_ENTER_NOAPI(NULL) - HDassert (pline); - HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert(pline); + HDassert(filter>=0 && filter<=H5Z_FILTER_MAX); /* Locate the filter in the pipeline */ - for (idx = 0; idx < pline->nused; idx++) - if (pline->filter[idx].id == filter) + for(idx=0; idxnused; idx++) + if(pline->filter[idx].id==filter) break; /* Check if the filter was not already in the pipeline */ - if (idx >= pline->nused) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, NULL, "filter not in pipeline") + if(idx>=pline->nused) + HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, NULL, "filter not in pipeline") /* Set return value */ - ret_value = &pline->filter[idx]; + ret_value=&pline->filter[idx]; done: FUNC_LEAVE_NOAPI(ret_value) @@ -1383,35 +1436,41 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_filter_in_pline + * Function: H5Z_filter_in_pline + * + * Purpose: Check wheter a filter is in the filter pipeline using the + * filter ID. This function is very similar to H5Z_filter_info + * + * Return: TRUE - found filter + * FALSE - not found + * FAIL - error + * + * Programmer: Raymond Lu + * 26 April 2013 * - * Purpose: Check wheter a filter is in the filter pipeline using the - * filter ID. This function is very similar to H5Z_filter_info + * Modifications: * - * Return: TRUE - found filter - * FALSE - not found - * FAIL - error *------------------------------------------------------------------------- */ htri_t H5Z_filter_in_pline(const H5O_pline_t *pline, H5Z_filter_t filter) { - size_t idx; /* Index of filter in pipeline */ - htri_t ret_value = TRUE; /* Return value */ + size_t idx; /* Index of filter in pipeline */ + htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) - HDassert (pline); - HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert(pline); + HDassert(filter>=0 && filter<=H5Z_FILTER_MAX); /* Locate the filter in the pipeline */ - for (idx = 0; idx < pline->nused; idx++) - if (pline->filter[idx].id == filter) + for(idx=0; idxnused; idx++) + if(pline->filter[idx].id==filter) break; /* Check if the filter was not already in the pipeline */ - if (idx >= pline->nused) - ret_value = FALSE; + if(idx>=pline->nused) + ret_value = FALSE; done: FUNC_LEAVE_NOAPI(ret_value) @@ -1420,36 +1479,42 @@ done: /*------------------------------------------------------------------------- - * Function: H5Z_all_filters_avail + * Function: H5Z_all_filters_avail * - * Purpose: Verify that all the filters in a pipeline are currently - * available (i.e. registered) + * Purpose: Verify that all the filters in a pipeline are currently + * available (i.e. registered) + * + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure + * + * Programmer: Quincey Koziol + * Tuesday, April 8, 2003 + * + * Modifications: * - * Return: Non-negative (TRUE/FALSE) on success - * Negative on failure *------------------------------------------------------------------------- */ htri_t H5Z_all_filters_avail(const H5O_pline_t *pline) { - size_t i, j; /* Local index variable */ - htri_t ret_value = TRUE; /* Return value */ + size_t i,j; /* Local index variable */ + htri_t ret_value=TRUE; /* Return value */ FUNC_ENTER_NOAPI(FAIL) /* Check args */ - HDassert (pline); + HDassert(pline); /* Iterate through all the filters in pipeline */ - for (i = 0; i < pline->nused; i++) { + for(i=0; inused; i++) { + /* Look for each filter in the list of registered filters */ - for (j = 0; j < H5Z_table_used_g; j++) - if (H5Z_table_g[j].id == pline->filter[i].id) + for(j=0; jfilter[i].id) break; /* Check if we didn't find the filter */ - if (j == H5Z_table_used_g) - HGOTO_DONE (FALSE) + if(j==H5Z_table_used_g) + HGOTO_DONE(FALSE) } /* end for */ done: @@ -1461,11 +1526,16 @@ done: /*------------------------------------------------------------------------- * Function: H5Z_delete * - * Purpose: Delete filter FILTER from pipeline PLINE; - * deletes all filters if FILTER is H5Z_FILTER_NONE + * Purpose: Delete filter FILTER from pipeline PLINE; + * deletes all filters if FILTER is H5Z_FILTER_NONE + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Pedro Vicente + * Monday, January 26, 2004 + * + * Modifications: * - * Return: Non-negative on success - * Negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1476,52 +1546,52 @@ H5Z_delete(H5O_pline_t *pline, H5Z_filter_t filter) FUNC_ENTER_NOAPI(FAIL) /* Check args */ - HDassert (pline); - HDassert (filter >= 0 && filter <= H5Z_FILTER_MAX); + HDassert(pline); + HDassert(filter >= 0 && filter <= H5Z_FILTER_MAX); /* if the pipeline has no filters, just return */ - if (pline->nused == 0) - HGOTO_DONE (SUCCEED) + if(pline->nused==0) + HGOTO_DONE(SUCCEED) /* Delete all filters */ - if (H5Z_FILTER_ALL == filter) { - if (H5O_msg_reset(H5O_PLINE_ID, pline) < 0) + if(H5Z_FILTER_ALL == filter) { + if(H5O_msg_reset(H5O_PLINE_ID, pline) < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANTFREE, FAIL, "can't release pipeline info") } /* end if */ /* Delete filter */ else { - size_t idx; /* Index of filter in pipeline */ - hbool_t found = FALSE; /* Indicate filter was found in pipeline */ + size_t idx; /* Index of filter in pipeline */ + hbool_t found = FALSE; /* Indicate filter was found in pipeline */ /* Locate the filter in the pipeline */ - for (idx = 0; idx < pline->nused; idx++) - if (pline->filter[idx].id == filter) { + for(idx = 0; idx < pline->nused; idx++) + if(pline->filter[idx].id == filter) { found = TRUE; break; } /* end if */ /* filter was not found in the pipeline */ - if (!found) - HGOTO_ERROR (H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") + if(!found) + HGOTO_ERROR(H5E_PLINE, H5E_NOTFOUND, FAIL, "filter not in pipeline") /* Free information for deleted filter */ - if (pline->filter[idx].name && pline->filter[idx].name != pline->filter[idx]._name) - HDassert ((HDstrlen(pline->filter[idx].name) + 1) > H5Z_COMMON_NAME_LEN); - if (pline->filter[idx].name != pline->filter[idx]._name) + if(pline->filter[idx].name && pline->filter[idx].name != pline->filter[idx]._name) + HDassert((HDstrlen(pline->filter[idx].name) + 1) > H5Z_COMMON_NAME_LEN); + if(pline->filter[idx].name != pline->filter[idx]._name) pline->filter[idx].name = (char *)H5MM_xfree(pline->filter[idx].name); - if (pline->filter[idx].cd_values && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) - HDassert (pline->filter[idx].cd_nelmts > H5Z_COMMON_CD_VALUES); - if (pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + if(pline->filter[idx].cd_values && pline->filter[idx].cd_values != pline->filter[idx]._cd_values) + HDassert(pline->filter[idx].cd_nelmts > H5Z_COMMON_CD_VALUES); + if(pline->filter[idx].cd_values != pline->filter[idx]._cd_values) pline->filter[idx].cd_values = (unsigned *)H5MM_xfree(pline->filter[idx].cd_values); /* Remove filter from pipeline array */ - if ((idx + 1) < pline->nused) { + if((idx + 1) < pline->nused) { /* Copy filters down & fix up any client data value arrays using internal storage */ - for (; (idx + 1) < pline->nused; idx++) { + for(; (idx + 1) < pline->nused; idx++) { pline->filter[idx] = pline->filter[idx + 1]; - if (pline->filter[idx].name && (HDstrlen(pline->filter[idx].name) + 1) <= H5Z_COMMON_NAME_LEN) + if(pline->filter[idx].name && (HDstrlen(pline->filter[idx].name) + 1) <= H5Z_COMMON_NAME_LEN) pline->filter[idx].name = pline->filter[idx]._name; - if (pline->filter[idx].cd_nelmts <= H5Z_COMMON_CD_VALUES) + if(pline->filter[idx].cd_nelmts <= H5Z_COMMON_CD_VALUES) pline->filter[idx].cd_values = pline->filter[idx]._cd_values; } /* end for */ } /* end if */ @@ -1530,7 +1600,7 @@ H5Z_delete(H5O_pline_t *pline, H5Z_filter_t filter) pline->nused--; /* Reset information for previous last filter in pipeline */ - HDmemset (&pline->filter[pline->nused], 0, sizeof(H5Z_filter_info_t)); + HDmemset(&pline->filter[pline->nused], 0, sizeof(H5Z_filter_info_t)); } /* end else */ done: @@ -1541,11 +1611,14 @@ done: /*------------------------------------------------------------------------- * Function: H5Zget_filter_info * - * Purpose: Gets information about a pipeline data filter and stores it - * in filter_config_flags. + * Purpose: Gets information about a pipeline data filter and stores it + * in filter_config_flags. + * + * Return: zero on success / negative on failure + * + * Programmer: James Laird and Nat Furrer + * Monday, June 7, 2004 * - * Return: zero on success - * negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1557,8 +1630,8 @@ H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags) H5TRACE2("e", "Zf*Iu", filter, filter_config_flags); /* Get the filter info */ - if (H5Z_get_filter_info(filter, filter_config_flags) < 0) - HGOTO_ERROR (H5E_PLINE, H5E_CANTGET, FAIL, "Filter info not retrieved") + if(H5Z_get_filter_info(filter, filter_config_flags) < 0) + HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "Filter info not retrieved") done: FUNC_LEAVE_API(ret_value) @@ -1568,32 +1641,35 @@ done: /*------------------------------------------------------------------------- * Function: H5Z_get_filter_info * - * Purpose: Gets information about a pipeline data filter and stores it - * in filter_config_flags. + * Purpose: Gets information about a pipeline data filter and stores it + * in filter_config_flags. + * + * Return: zero on success / negative on failure + * + * Programmer: Quincey Koziol + * Saturday, May 11, 2013 * - * Return: zero on success - * negative on failure *------------------------------------------------------------------------- */ herr_t H5Z_get_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags) { H5Z_class2_t *fclass; - herr_t ret_value = SUCCEED; + herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI(FAIL) /* Look up the filter class info */ - if (NULL == (fclass = H5Z_find(filter))) - HGOTO_ERROR (H5E_PLINE, H5E_BADVALUE, FAIL, "Filter not defined") + if(NULL == (fclass = H5Z_find(filter))) + HGOTO_ERROR(H5E_PLINE, H5E_BADVALUE, FAIL, "Filter not defined") /* Set the filter config flags for the application */ - if (filter_config_flags != NULL) { + if(filter_config_flags != NULL) { *filter_config_flags = 0; - if (fclass->encoder_present) + if(fclass->encoder_present) *filter_config_flags |= H5Z_FILTER_CONFIG_ENCODE_ENABLED; - if (fclass->decoder_present) + if(fclass->decoder_present) *filter_config_flags |= H5Z_FILTER_CONFIG_DECODE_ENABLED; } /* end if */ -- cgit v0.12 From cb8cb07758db67825ea1dbccde11fa8185f8667a Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 20 Nov 2017 12:44:24 -0600 Subject: Fix change typo --- src/H5Z.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Z.c b/src/H5Z.c index a74d726..a5cf1be 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -318,7 +318,7 @@ H5Z_register (const H5Z_class2_t *cls) /* Filter already registered */ else { /* Replace old contents */ - HDmemcpy (old_cls, cls, sizeof(H5Z_class2_t)); + HDmemcpy (H5Z_table_g+i, cls, sizeof(H5Z_class2_t)); } /* end else */ done: -- cgit v0.12 From 38035669b5983c579303fea7c2dbcaabc1dfbdee Mon Sep 17 00:00:00 2001 From: Larry Knox Date: Tue, 14 Nov 2017 11:14:18 -0600 Subject: Merge pull request #776 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop Add check for realtimeOutput environment variable set containing characters to indicate test output should be piped through tee to chklog files in order to send output to stdout as tests run instead of waiting to cat chklog file to stdout when each set of tests is completed. This should stop buildbot from timing out when a test set doesn't complete in less than 20 minutes. * commit '10a9fb5319ab0dcd0e14e40a8ab5c38e8211f764': Remove extra '&'s that cause syntax errors on Macs. --- config/conclude.am | 76 +++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 55 insertions(+), 21 deletions(-) diff --git a/config/conclude.am b/config/conclude.am index 617c371..c076ddc 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -124,28 +124,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi -- cgit v0.12 From 4ce226f73829a0c115e4d78c19ca65b85872fe82 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 27 Nov 2017 13:06:54 -0600 Subject: Update macro --- config/cmake_ext_mod/HDFMacros.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 602b6bf..192a5c8 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -108,6 +108,7 @@ macro (HDF_SET_LIB_OPTIONS libtarget libname libtype) set_target_properties (${libtarget} PROPERTIES + OUTPUT_NAME ${LIB_RELEASE_NAME} OUTPUT_NAME_DEBUG ${LIB_DEBUG_NAME} OUTPUT_NAME_RELEASE ${LIB_RELEASE_NAME} OUTPUT_NAME_MINSIZEREL ${LIB_RELEASE_NAME} -- cgit v0.12 From e26a95c95a62ddf15fb509ff2273b274f648384d Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 30 Nov 2017 16:25:42 -0600 Subject: Test increase of version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 02bb516..da2382b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.3) PROJECT (HDF5 C CXX) #----------------------------------------------------------------------------- -- cgit v0.12 From cf09927977d43fe5036224f4c3d163d0218bb8d3 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 1 Dec 2017 13:34:10 -0600 Subject: H5detect and make_libsettings need the include folder --- src/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a825958..616b53d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -613,6 +613,9 @@ set (H5_PRIVATE_HEADERS #----------------------------------------------------------------------------- add_executable (H5detect ${HDF5_SRC_DIR}/H5detect.c) TARGET_C_PROPERTIES (H5detect STATIC " " " ") +if (H5_HAVE_PARALLEL AND MPI_C_FOUND) + target_include_directories (H5detect PUBLIC ${MPI_C_INCLUDE_DIRS}) +endif () if (MSVC OR MINGW) target_link_libraries (H5detect "ws2_32.lib") endif () @@ -627,6 +630,9 @@ add_custom_command ( add_executable (H5make_libsettings ${HDF5_SRC_DIR}/H5make_libsettings.c) TARGET_C_PROPERTIES (H5make_libsettings STATIC " " " ") +if (H5_HAVE_PARALLEL AND MPI_C_FOUND) + target_include_directories (H5make_libsettings PUBLIC ${MPI_C_INCLUDE_DIRS}) +endif () if (MSVC OR MINGW) target_link_libraries (H5make_libsettings "ws2_32.lib") endif () -- cgit v0.12 From b233f18db47301191c6487f39a8cc78749e62af1 Mon Sep 17 00:00:00 2001 From: lrknox Date: Fri, 1 Dec 2017 14:32:00 -0600 Subject: Add HDF5 1.8.20 RELEASE.txt file to HISTORY-1_8.txt. Removed new features and bug fixes released in HDF5 1.8.20 from RELEASE.txt. Copied Platforms Tested, Tested Configuration Features Summary, More Tested Platforms, and Known Problems sections from 1.8.20 RELEASE.txt to hdf5_1_8 RELEASE.txt. --- release_docs/HISTORY-1_8.txt | 495 ++++++++++++++++++++++++++++++++++++++++++- release_docs/RELEASE.txt | 256 +++------------------- 2 files changed, 529 insertions(+), 222 deletions(-) diff --git a/release_docs/HISTORY-1_8.txt b/release_docs/HISTORY-1_8.txt index a7aad02..2aa7bde 100644 --- a/release_docs/HISTORY-1_8.txt +++ b/release_docs/HISTORY-1_8.txt @@ -3,7 +3,8 @@ HDF5 History This file contains development history of HDF5 1.8 branch -21. Release Information for hdff5-1.8.19 +22. Release Information for hdf5-1.8.20 +21. Release Information for hdf5-1.8.19 20. Release Information for hdf5-1.8.18 19. Release Information for hdf5-1.8.17 18. Release Information for hdf5-1.8.16 @@ -27,6 +28,498 @@ This file contains development history of HDF5 1.8 branch [Search on the string '%%%%' for section breaks of each release.] +%%%%1.8.20%%%% + + +HDF5 version 1.8.20 released on 2017-11-28 +================================================================================ + +INTRODUCTION +============ + +This document describes the differences between HDF5-1.8.19 and +HDF5-1.8.20, and contains information on the platforms tested and +known problems in HDF5-1.8.20. +For more details, see the files HISTORY-1_0-1_8_0_rc3.txt +and HISTORY-1_8.txt in the release_docs/ directory of the HDF5 source. + +Links to the HDF5 1.8.20 source code, documentation, and additional materials +can be found on the HDF5 web page at: + + https://support.hdfgroup.org/HDF5/ + +The HDF5 1.8.20 release can be obtained from: + + https://support.hdfgroup.org/HDF5/release/obtain518.html + +User documentation for 1.8.20 can be accessed directly at this location: + + https://support.hdfgroup.org/HDF5/doc1.8/ + +New features in the HDF5-1.8.x release series, including brief general +descriptions of some new and modified APIs, are described in the "What's New +in 1.8.0?" document: + + https://support.hdfgroup.org/HDF5/doc/ADGuide/WhatsNew180.html + +All new and modified APIs are listed in detail in the "HDF5 Software Changes +from Release to Release" document, in the section "Release 1.8.20 (current +release) versus Release 1.8.19 + + https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html + +If you have any questions or comments, please send them to the HDF Help Desk: + + help@hdfgroup.org + + +CONTENTS +======== + +- New Features +- Support for New Platforms, Languages, and Compilers +- Bug Fixes since HDF5-1.8.20 +- Supported Platforms +- Supported Configuration Features Summary +- More Tested Platforms +- Known Problems + + +New Features +============ + + Tools + ----- + - h5diff + + h5diff has new option enable-error-stack. + + Updated h5diff with the --enable-error-stack argument, which + enables the display of the hdf5 error stack. This completes the + improvement to the main tools; h5copy, h5diff, h5dump, h5ls and + h5repack. + + (ADB - 2017/08/30, HDFFV-9774) + + + C++ API + ------- + - The following C++ API wrappers have been added to the C++ Library: + + // Creates a binary object description of this datatype. + void DataType::encode() - C API H5Tencode() + + // Returns the decoded type from the binary object description. + DataType::decode() - C API H5Tdecode() + ArrayType::decode() - C API H5Tdecode() + CompType::decode() - C API H5Tdecode() + DataType::decode() - C API H5Tdecode() + EnumType::decode() - C API H5Tdecode() + FloatType::decode() - C API H5Tdecode() + IntType::decode() - C API H5Tdecode() + StrType::decode() - C API H5Tdecode() + VarLenType::decode() - C API H5Tdecode() + + // Three overloaded functions to retrieve information about an object + H5Location::getObjectInfo() - H5Oget_info()/H5Oget_info_by_name() + + (BMR - 2017/10/17, HDFFV-10175) + + - New constructors to open existing datatypes added in ArrayType, + CompType, DataType, EnumType, FloatType, IntType, StrType, and + VarLenType. + + (BMR - 2017/10/17, HDFFV-10175) + + - A document is added to the HDF5 C++ API Reference Manual to show the + mapping from a C API to C++ wrappers. It can be found from the main + page of the C++ API Reference Manual. + + (BMR - 2017/10/17, HDFFV-10151) + + + High-Level APIs + --------------- + - H5DOread_chunk + + Users wanted to read compressed data directly from a file without any + processing by the HDF5 data transfer pipeline, just as they were able + to write it directly to a file with H5DOwrite_chunk. + + New API function, corresponding to existing function H5DOwrite_chunk. + H5DOread_chunk reads a raw data chunk directly from a chunked dataset + in the file into the application buffer, bypassing the library’s internal + data transfer pipeline, including filters. + + (VC - 2017/05/02, HDFFV-9934) + + +Support for New Platforms, Languages, and Compilers +=================================================== + + - Added NAG compiler + + +Bug Fixes since HDF5-1.8.19 +=========================== + + Configuration + ------------- + - cmake + + The hdf5 library used shared szip and zlib, which needlessly required + applications to link with the same szip and zlib libraries. + + Changed the target_link_libraries commands to use the static libs. + Removed improper link duplication of szip and zlib. + Adjusted the link dependencies and the link interface values of + the target_link_libraries commands. + + (ADB - 2017/11/14, HDFFV-10329) + + - cmake MPI + + CMake implementation for MPI was problematic and would create incorrect + MPI library references in the hdf5 libraries. + + Reworked the CMake MPI code to properly create CMake targets.Also merged + the latest CMake FindMPI.cmake changes to the local copy. This is necessary + until HDF changes the CMake minimum to 3.9 or greater. + + (ADB - 2017/11/02, HDFFV-10321) + + + - Fixed Fortran linker flags when using the NAG Fortran compiler (autotools). + + (HDFFV-10037, MSB, 2017/10/21) + + - cmake + + Too many commands for POST_BUILD step caused command line to be + too big on windows. + + Changed foreach of copy command to use a custom command with the + use of the HDFTEST_COPY_FILE macro. + + (ADB - 2017/07/12, HDFFV-10254) + + + Library + ------- + - filter plugin handling in H5PL.c and H5Z.c + + It was discovered that the dynamic loading process used by + filter plugins had issues with library dependencies. + + CMake build process changed to use LINK INTERFACE keywords, which + allowed HDF5 C library to make dependent libraries private. The + filter plugin libraries no longer require dependent libraries + (such as szip or zlib) to be available. + (ADB - 2017/11/16, HDFFV-10328) + + - Fix rare object header corruption bug + + In certain cases, such as when converting large attributes to dense + storage, an error could occur which would either fail an assertion or + cause file corruption. Fixed and added test. + + (NAF - 2017/11/14, HDFFV-10274) + + - H5Zfilter_avail in H5Z.c + + The public function checked for plugins, while the private + function did not. + + Modified H5Zfilter_avail and private function, H5Z_filter_avail. + Moved check for plugin from public to private function. Updated + H5P__set_filter due to change in H5Z_filter_avail. Updated tests. + + (ADB - 2017/10/10, HDFFV-10297, HDFFV-10319) + + - Fix H5Sencode bug when num points selected is >2^32 + + Modified to fail if the 32 bit limit is exceeded when encoding either + offsets or counts in the selection. + + (HDFFV-10323, VC, 2017/09/07) + + - Fix H5HL_offset_into() + + (1) Fix H5HL_offset_into() to return error when offset exceeds heap data + block size. + (2) Fix other places in the library that call this routine to detect + error routine. + + (HDFFV-10216, VC, 2017/09/05) + + + Tools + ----- + - h5repack + + h5repack failed to copy a dataset with existing filter. + + Reworked code for h5repack and h5diff code in tools library. Added + improved error handling, cleanup of resources and checks of calls. + Modified H5Zfilter_avail and private function, H5Z_filter_avail. + Moved check for plugin from public to private function. Updated + H5P__set_filter due to change in H5Z_filter_avail. Updated tests. + Note, h5repack output display has changed to clarify the individual + steps of the repack process. The output indicates if an operation + applies to all objects. Lines with notation and no information + have been removed. + + (ADB - 2017/10/10, HDFFV-10297, HDFFV-10319) + + - h5repack + + h5repack always set the User Defined filter flag to H5Z_FLAG_MANDATORY. + + Added another parameter to the 'UD=' option to set the flag by default + to '0' or H5Z_FLAG_MANDATORY, the other choice is '1' or H5Z_FLAG_OPTIONAL. + + (ADB - 2017/08/31, HDFFV-10269) + + - h5ls + + h5ls generated error on stack when it encountered a H5S_NULL + dataspace. + + Adding checks for H5S_NULL before calling H5Sis_simple (located + in the h5tools_dump_mem function) fixed the issue. + + (ADB - 2017/08/17, HDFFV-10188) + + - h5dump + + h5dump segfaulted on output of XML file. + + Function that escape'd strings used the full buffer length + instead of just the length of the replacement string in a + strncpy call. Using the correct length fixed the issue. + + (ADB - 2017/08/01, HDFFV-10256) + + - h5diff + + h5diff segfaulted on compare of a NULL variable length string. + + Improved h5diff compare of strings by adding a check for + NULL strings and setting the lengths to zero. + + (ADB - 2017/07/25, HDFFV-10246) + + - h5import + + h5import crashed trying to import data from a subset of a dataset. + + Improved h5import by adding the SUBSET keyword. h5import understands + to use the Count times the Block as the size of the dimensions. + Added INPUT_B_ORDER keyword to old-style configuration files. + The import from h5dump function expects the binary files to use native + types (FILE '-b' option) in the binary file. + + (ADB - 2017/06/15, HDFFV-10219) + + + C++ API + ------- + - Marked the following functions deprecated because they were moved to + class H5Object: + H5Location::createAttribute() + H5Location::openAttribute() + H5Location::attrExists() + H5Location::removeAttr() + H5Location::renameAttr() + H5Location::getNumAttrs() + + (BMR - 2017/10/17) + + +Supported Platforms +=================== +The following platforms are supported and have been tested for this release. +They are built with the configure process unless specified otherwise. + + Linux 2.6.32-573.22.1.el6 GNU C (gcc), Fortran (gfortran), C++ (g++) + #1 SMP x86_64 GNU/Linux compilers: + (platypus/mayll) Version 4.4.7 20120313 + Versions 4.9.3, 5.3.0, 6.2.0 + PGI C, Fortran, C++ for 64-bit target on + x86-64; + Version 16.10-0 + Intel(R) C (icc), C++ (icpc), Fortran (icc) + compilers: + Version 17.0.0.196 Build 20160721 + MPICH 3.1.4 compiled with GCC 4.9.3 + OpenMPI 2.0.1 compiled with GCC 4.9.3 + + Linux 2.6.32-573.18.1.el6 gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-16) + #1 SMP ppc64 GNU/Linux g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-16) + (ostrich) GNU Fortran (GCC) 4.4.7 20120313 (Red Hat 4.4.7-16) + IBM XL C/C++ V13.1 + IBM XL Fortran V15.1 + + Linux 3.10.0-327.10.1.el7 GNU C (gcc), Fortran (gfortran), C++ (g++) + #1 SMP x86_64 GNU/Linux compilers: + (kituo/moohan/jelly Version 4.8.5 20150623 (Red Hat 4.8.5-4) + Versions 4.9.3, 5.3.0, 6.2.0 + Intel(R) C (icc), C++ (icpc), Fortran (icc) + compilers: + Version 17.0.4.196 Build 20170411 + MPICH 3.1.4 compiled with GCC 4.9.3 + NAG Fortran Compiler Release 6.1(Tozai) Build 6116 + + SunOS 5.11 32- and 64-bit Sun C 5.12 SunOS_sparc + (emu) Sun Fortran 95 8.6 SunOS_sparc + Sun C++ 5.12 SunOS_sparc + + Windows 7 Visual Studio 2012 w/ Intel Fortran 15 (cmake) + Visual Studio 2013 w/ Intel Fortran 15 (cmake) + Visual Studio 2015 w/ Intel Fortran 16 (cmake) + + Windows 7 x64 Visual Studio 2012 w/ Intel Fortran 15 (cmake) + Visual Studio 2013 w/ Intel Fortran 15 (cmake) + Visual Studio 2015 w/ Intel Fortran 16 (cmake) + Visual Studio 2015 w/ Intel C, Fortran 2017 (cmake) + Visual Studio 2015 w/ MSMPI 8 (cmake) + Cygwin(CYGWIN_NT-6.1 2.8.0(0.309/5/3) + gcc and gfortran compilers (GCC 5.4.0) + (cmake and autotools) + + Windows 10 Visual Studio 2015 w/ Intel Fortran 16 (cmake) + Cygwin(CYGWIN_NT-6.1 2.8.0(0.309/5/3) + gcc and gfortran compilers (GCC 5.4.0) + (cmake and autotools) + + Windows 10 x64 Visual Studio 2015 w/ Intel Fortran 16 (cmake) + + Mac OS X Mavericks 10.9.5 Apple LLVM version 6.0 (clang-600.0.57) + 64-bit gfortran GNU Fortran (GCC) 4.9.2 + (wren/quail) Intel icc/icpc/ifort version 15.0.3 + + Mac OS X Yosemite 10.10.5 Apple LLVM version 6.1 (clang-602.0.53) + 64-bit gfortran GNU Fortran (GCC) 4.9.2 + (osx1010dev/osx1010test) Intel icc/icpc/ifort version 15.0.3 + + Mac OS X El Capitan 10.11.6 Apple LLVM version 7.3.0 (clang-703.0.29) + 64-bit gfortran GNU Fortran (GCC) 5.2.0 + (VM osx1011dev/osx1011test) Intel icc/icpc/ifort version 16.0.2 + + Mac OS Sierra 10.12.6 Apple LLVM version 8.1 (clang-802.0.42) + 64-bit gfortran GNU Fortran (GCC) 7.1.0 + (kite) Intel icc/icpc/ifort version 17.0.2 + +Tested Configuration Features Summary +===================================== + + In the tables below + y = tested + n = not tested in this release + C = Cluster + W = Workstation + x = not working in this release + dna = does not apply + ( ) = footnote appears below second table + = testing incomplete on this feature or platform + +Platform C F90/ F90 C++ zlib SZIP + parallel F2003 parallel +SunOS 5.11 32-bit n y/y n y y y +SunOS 5.11 64-bit n y/y n y y y +Windows 7 y y/y n y y y +Windows 7 x64 y y/y n y y y +Windows 7 Cygwin n y/n n y y y +Windows 7 x64 Cygwin n y/n n y y y +Windows 10 y y/y n y y y +Windows 10 x64 y y/y n y y y +Mac OS X Mavericks 10.9.5 64-bit n y/y n y y y +Mac OS X Yosemite 10.10.5 64-bit n y/y n y y y +Mac OS X El Capitan 10.11.6 64-bit n y/y n y y y +Mac OS Sierra 10.12.6 64-bit n y/y n y y y +AIX 6.1 32- and 64-bit n y/n n y y y +CentOS 6.7 Linux 2.6.32 x86_64 GNU y y/y y y y y +CentOS 6.7 Linux 2.6.32 x86_64 Intel n y/y n y y y +CentOS 6.7 Linux 2.6.32 x86_64 PGI n y/y n y y y +CentOS 7.1 Linux 3.10.0 x86_64 GNU y y/y y y y y +CentOS 7.1 Linux 3.10.0 x86_64 Intel n y/y n y y y +Linux 2.6.32-431.11.2.el6.ppc64 n y/n n y y y + +Platform Shared Shared Shared Thread- + C libs F90 libs C++ libs safe +SunOS 5.11 32-bit y y y y +SunOS 5.11 64-bit y y y y +Windows 7 y y y y +Windows 7 x64 y y y y +Windows 7 Cygwin n n n y +Windows 7 x64 Cygwin n n n y +Windows 10 y y y y +Windows 10 x64 y y y y +Mac OS X Mavericks 10.9.5 64-bit y n y y +Mac OS X Yosemite 10.10.5 64-bit y n y y +Mac OS X El Capitan 10.11.6 64-bit y n y y +Mac OS Sierra 10.12.6 64-bit y n y y +AIX 6.1 32- and 64-bit y n n y +CentOS 6.7 Linux 2.6.32 x86_64 GNU y y y y +CentOS 6.7 Linux 2.6.32 x86_64 Intel y y y y +CentOS 6.7 Linux 2.6.32 x86_64 PGI y y y y +CentOS 7.1 Linux 3.10.0 x86_64 GNU y y y y +CentOS 7.1 Linux 3.10.0 x86_64 Intel y y y y +Linux 2.6.32-431.11.2.el6.ppc64 y y y y + +Compiler versions for each platform are listed in the preceding +"Supported Platforms" table. + + +More Tested Platforms +===================== +The following platforms are not supported but have been tested for this release. + + Linux 2.6.32-573.22.1.el6 g95 (GCC 4.0.3 (g95 0.94!) + #1 SMP x86_64 GNU/Linux + (mayll) + + Debian8.4.0 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1 x86_64 GNU/Linux + gcc (Debian 4.9.2-10) 4.9.2 + GNU Fortran (Debian 4.9.2-10) 4.9.2 + (cmake and autotools) + + Fedora24 4.7.2-201.fc24.x86_64 #1 SMP x86_64 x86_64 x86_64 GNU/Linux + gcc (GCC) 6.1.1 20160621 (Red Hat 6.1.1-3) + GNU Fortran (GCC) 6.1.1 20160621 (Red Hat 6.1.1-3) + (cmake and autotools) + + CentOS 7.2 3.10.0-327.28.2.el7.x86_64 #1 SMP x86_64 x86_64 x86_64 GNU/Linux + gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) + GNU Fortran (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) + (cmake and autotools) + + Ubuntu 16.04 4.4.0-38-generic #62-Ubuntu SMP x86_64 GNU/Linux + gcc (Ubuntu 5.4.0-6ubuntu1~16.04.2) 5.4.0 + GNU Fortran (Ubuntu 5.4.0-6ubuntu1~16.04.2) 5.4.0 + (cmake and autotools) + + +Known Problems +============== + + The dynamically loaded plugin test libraries require undefined references + to HDF5 functions to be resolved at runtime in order to function properly. + With autotools on CYGWIN this results in build errors, and we have not + found a solution that satisfies both. Therefore the dynamically loaded + plugin tests have been disabled on CYGWIN. + + Mac OS X 10.13 added additional subdirectory structure in .libs for shared + libraries. Consequently "make check" will fail testing java and dynamically + loaded plugin test libraries attempting to copy files from the previous + locations in .libs directories. This will be addressed in the next release + when support for the Mac OS X 10.13 platform is added. + + Known problems in previous releases can be found in the HISTORY*.txt files + in the HDF5 source. Please report any new problems found to + help@hdfgroup.org. + + %%%%1.8.19%%%% diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 8830d98..d346fe9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -4,22 +4,22 @@ HDF5 version 1.8.21-snap0 currently under development INTRODUCTION ============ -This document describes the differences between HDF5-1.8.18 and -HDF5-1.8.19, and contains information on the platforms tested and -known problems in HDF5-1.8.19. +This document describes the differences between HDF5-1.8.20 and +HDF5-1.8.21, and contains information on the platforms tested and +known problems in HDF5-1.8.21. For more details, see the files HISTORY-1_0-1_8_0_rc3.txt and HISTORY-1_8.txt in the release_docs/ directory of the HDF5 source. -Links to the HDF5 1.8.19 source code, documentation, and additional materials +Links to the HDF5 1.8.21 source code, documentation, and additional materials can be found on the HDF5 web page at: https://support.hdfgroup.org/HDF5/ -The HDF5 1.8.19 release can be obtained from: +The HDF5 1.8.21 release can be obtained from: https://support.hdfgroup.org/HDF5/release/obtain518.html -User documentation for 1.8.19 can be accessed directly at this location: +User documentation for 1.8.21 can be accessed directly at this location: https://support.hdfgroup.org/HDF5/doc1.8/ @@ -30,8 +30,8 @@ in 1.8.0?" document: https://support.hdfgroup.org/HDF5/doc/ADGuide/WhatsNew180.html All new and modified APIs are listed in detail in the "HDF5 Software Changes -from Release to Release" document, in the section "Release 1.8.19 (current -release) versus Release 1.8.18 +from Release to Release" document, in the section "Release 1.8.21 (current +release) versus Release 1.8.20 https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html @@ -45,7 +45,7 @@ CONTENTS - New Features - Support for New Platforms, Languages, and Compilers -- Bug Fixes since HDF5-1.8.19 +- Bug Fixes since HDF5-1.8.20 - Supported Platforms - Supported Configuration Features Summary - More Tested Platforms @@ -72,16 +72,7 @@ New Features Tools ----- - - h5diff - - h5diff has new option enable-error-stack. - - Updated h5diff with the --enable-error-stack argument, which - enables the display of the hdf5 error stack. This completes the - improvement to the main tools; h5copy, h5diff, h5dump, h5ls and - h5repack. - - (ADB - 2017/08/30, HDFFV-9774) + - None High-Level APIs @@ -96,54 +87,11 @@ New Features C++ API ------- - - The following C++ API wrappers have been added to the C++ Library: - - // Creates a binary object description of this datatype. - void DataType::encode() - C API H5Tencode() - - // Returns the decoded type from the binary object description. - DataType::decode() - C API H5Tdecode() - ArrayType::decode() - C API H5Tdecode() - CompType::decode() - C API H5Tdecode() - DataType::decode() - C API H5Tdecode() - EnumType::decode() - C API H5Tdecode() - FloatType::decode() - C API H5Tdecode() - IntType::decode() - C API H5Tdecode() - StrType::decode() - C API H5Tdecode() - VarLenType::decode() - C API H5Tdecode() - - // Three overloaded functions to retrieve information about an object - H5Location::getObjectInfo() - H5Oget_info()/H5Oget_info_by_name() - - (BMR - 2017/10/17, HDFFV-10175) - - - New constructors to open existing datatypes added in ArrayType, - CompType, DataType, EnumType, FloatType, IntType, StrType, and - VarLenType. - - (BMR - 2017/10/17, HDFFV-10175) - - - A document is added to the HDF5 C++ API Reference Manual to show the - mapping from a C API to C++ wrappers. It can be found from the main - page of the C++ API Reference Manual. - - (BMR - 2017/10/17, HDFFV-10151) - + - None High-Level APIs --------------- - - H5DOread_chunk - - Users wanted to read compressed data directly from a file without any - processing by the HDF5 data transfer pipeline, just as they were able - to write it directly to a file with H5DOwrite_chunk. - - New API function, corresponding to existing function H5DOwrite_chunk. - H5DOread_chunk reads a raw data chunk directly from a chunked dataset - in the file into the application buffer, bypassing the library’s internal - data transfer pipeline, including filters. - - (VC - 2017/05/02, HDFFV-9934) + - None Support for New Platforms, Languages, and Compilers @@ -151,85 +99,17 @@ Support for New Platforms, Languages, and Compilers -Bug Fixes since HDF5-1.8.19 +Bug Fixes since HDF5-1.8.20 =========================== Configuration ------------- - - cmake - - The hdf5 library used shared szip and zlib, which needlessly required - applications to link with the same szip and zlib libraries. - - Changed the target_link_libraries commands to use the static libs. - Removed improper link duplication of szip and zlib. - Adjusted the link dependencies and the link interface values of - the target_link_libraries commands. - - (ADB - 2017/11/14, HDFFV-10329) - - - cmake MPI - - CMake implementation for MPI was problematic and would create incorrect - MPI library references in the hdf5 libraries. - - Reworked the CMake MPI code to properly create CMake targets.Also merged - the latest CMake FindMPI.cmake changes to the local copy. This is necessary - until HDF changes the CMake minimum to 3.9 or greater. - - (ADB - 2017/11/02, HDFFV-10321) - - - cmake - - Too many commands for POST_BUILD step caused command line to be - too big on windows. - - Changed foreach of copy command to use a custom command with the - use of the HDFTEST_COPY_FILE macro. - - (ADB - 2017/07/12, HDFFV-10254) + - None Library ------- - - filter plugin handling in H5PL.c and H5Z.c - - It was discovered that the dynamic loading process used by - filter plugins had issues with library dependencies. - - CMake build process changed to use LINK INTERFACE keywords, which - allowed HDF5 C library to make dependent libraries private. The - filter plugin libraries no longer require dependent libraries - (such as szip or zlib) to be available. - (ADB - 2017/11/16, HDFFV-10328) - - - Fix rare object header corruption bug - - In certain cases, such as when converting large attributes to dense - storage, an error could occur which would either fail an assertion or - cause file corruption. Fixed and added test. - - (NAF - 2017/11/14, HDFFV-10274) - - - H5Zfilter_avail in H5Z.c - - The public function checked for plugins, while the private - function did not. - - Modified H5Zfilter_avail and private function, H5Z_filter_avail. - Moved check for plugin from public to private function. Updated - H5P__set_filter due to change in H5Z_filter_avail. Updated tests. - - (ADB - 2017/10/10, HDFFV-10297, HDFFV-10319) - - - Fix H5HL_offset_into() - - (1) Fix H5HL_offset_into() to return error when offset exceeds heap data - block size. - (2) Fix other places in the library that call this routine to detect - error routine. - - (HDFFV-10216, VC, 2017/09/05) + - None Parallel Library @@ -244,71 +124,7 @@ Bug Fixes since HDF5-1.8.19 Tools ----- - - h5repack - - h5repack failed to copy a dataset with existing filter. - - Reworked code for h5repack and h5diff code in tools library. Added - improved error handling, cleanup of resources and checks of calls. - Modified H5Zfilter_avail and private function, H5Z_filter_avail. - Moved check for plugin from public to private function. Updated - H5P__set_filter due to change in H5Z_filter_avail. Updated tests. - Note, h5repack output display has changed to clarify the individual - steps of the repack process. The output indicates if an operation - applies to all objects. Lines with notation and no information - have been removed. - - (ADB - 2017/10/10, HDFFV-10297, HDFFV-10319) - - - h5repack - - h5repack always set the User Defined filter flag to H5Z_FLAG_MANDATORY. - - Added another parameter to the 'UD=' option to set the flag by default - to '0' or H5Z_FLAG_MANDATORY, the other choice is '1' or H5Z_FLAG_OPTIONAL. - - (ADB - 2017/08/31, HDFFV-10269) - - - h5ls - - h5ls generated error on stack when it encountered a H5S_NULL - dataspace. - - Adding checks for H5S_NULL before calling H5Sis_simple (located - in the h5tools_dump_mem function) fixed the issue. - - (ADB - 2017/08/17, HDFFV-10188) - - - h5dump - - h5dump segfaulted on output of XML file. - - Function that escape'd strings used the full buffer length - instead of just the length of the replacement string in a - strncpy call. Using the correct length fixed the issue. - - (ADB - 2017/08/01, HDFFV-10256) - - - h5diff - - h5diff segfaulted on compare of a NULL variable length string. - - Improved h5diff compare of strings by adding a check for - NULL strings and setting the lengths to zero. - - (ADB - 2017/07/25, HDFFV-10246) - - - h5import - - h5import crashed trying to import data from a subset of a dataset. - - Improved h5import by adding the SUBSET keyword. h5import understands - to use the Count times the Block as the size of the dimensions. - Added INPUT_B_ORDER keyword to old-style configuration files. - The import from h5dump function expects the binary files to use native - types (FILE '-b' option) in the binary file. - - (ADB - 2017/06/15, HDFFV-10219) + - None Fortran API @@ -318,16 +134,7 @@ Bug Fixes since HDF5-1.8.19 C++ API ------- - - Marked the following functions deprecated because they were moved to - class H5Object: - H5Location::createAttribute() - H5Location::openAttribute() - H5Location::attrExists() - H5Location::removeAttr() - H5Location::renameAttr() - H5Location::getNumAttrs() - - (BMR - 2017/10/17) + - None High-Level APIs: @@ -348,13 +155,13 @@ They are built with the configure process unless specified otherwise. Linux 2.6.32-573.22.1.el6 GNU C (gcc), Fortran (gfortran), C++ (g++) #1 SMP x86_64 GNU/Linux compilers: (platypus/mayll) Version 4.4.7 20120313 - Versions 4.9.3, 5.2.0, 6.2.0 + Versions 4.9.3, 5.3.0, 6.2.0 PGI C, Fortran, C++ for 64-bit target on x86-64; Version 16.10-0 Intel(R) C (icc), C++ (icpc), Fortran (icc) compilers: - Version 17.0.0.098 Build 20160721 + Version 17.0.0.196 Build 20160721 MPICH 3.1.4 compiled with GCC 4.9.3 OpenMPI 2.0.1 compiled with GCC 4.9.3 @@ -366,12 +173,13 @@ They are built with the configure process unless specified otherwise. Linux 3.10.0-327.10.1.el7 GNU C (gcc), Fortran (gfortran), C++ (g++) #1 SMP x86_64 GNU/Linux compilers: - (kituo/moohan) Version 4.8.5 20150623 (Red Hat 4.8.5-4) - Versions 4.9.3, 5.3.0, 6.2.0 + (kituo/moohan/jelly Version 4.8.5 20150623 (Red Hat 4.8.5-4) + Versions 4.9.3, 5.3.0, 6.2.0 Intel(R) C (icc), C++ (icpc), Fortran (icc) compilers: Version 17.0.4.196 Build 20170411 MPICH 3.1.4 compiled with GCC 4.9.3 + NAG Fortran Compiler Release 6.1(Tozai) Build 6116 SunOS 5.11 32- and 64-bit Sun C 5.12 SunOS_sparc (emu) Sun Fortran 95 8.6 SunOS_sparc @@ -397,10 +205,6 @@ They are built with the configure process unless specified otherwise. Windows 10 x64 Visual Studio 2015 w/ Intel Fortran 16 (cmake) - Mac OS X Mt. Lion 10.8.5 Apple LLVM version 5.1 (clang-503.0.40) - 64-bit gfortran GNU Fortran (GCC) 4.8.2 - (swallow/kite) Intel icc/icpc/ifort version 15.0.3 - Mac OS X Mavericks 10.9.5 Apple LLVM version 6.0 (clang-600.0.57) 64-bit gfortran GNU Fortran (GCC) 4.9.2 (wren/quail) Intel icc/icpc/ifort version 15.0.3 @@ -409,10 +213,14 @@ They are built with the configure process unless specified otherwise. 64-bit gfortran GNU Fortran (GCC) 4.9.2 (osx1010dev/osx1010test) Intel icc/icpc/ifort version 15.0.3 - Mac OS X El Capitan 10.11.4 Apple LLVM version 7.3.0 (clang-703.0.29) + Mac OS X El Capitan 10.11.6 Apple LLVM version 7.3.0 (clang-703.0.29) 64-bit gfortran GNU Fortran (GCC) 5.2.0 (VM osx1011dev/osx1011test) Intel icc/icpc/ifort version 16.0.2 + Mac OS Sierra 10.12.6 Apple LLVM version 8.1 (clang-802.0.42) + 64-bit gfortran GNU Fortran (GCC) 7.1.0 + (kite) Intel icc/icpc/ifort version 17.0.2 + Tested Configuration Features Summary ===================================== @@ -446,7 +254,7 @@ CentOS 6.7 Linux 2.6.32 x86_64 Intel n y/y n y y y CentOS 6.7 Linux 2.6.32 x86_64 PGI n y/y n y y y CentOS 7.1 Linux 3.10.0 x86_64 GNU y y/y y y y y CentOS 7.1 Linux 3.10.0 x86_64 Intel n y/y n y y y -Linux 2.6.32-431.11.2.el6.ppc64 n y/n n y y y +Linux 2.6.32-573.18.1.el6.ppc64 n y/n n y y y Platform Shared Shared Shared Thread- C libs F90 libs C++ libs safe @@ -467,7 +275,7 @@ CentOS 6.7 Linux 2.6.32 x86_64 Intel y y y y CentOS 6.7 Linux 2.6.32 x86_64 PGI y y y y CentOS 7.1 Linux 3.10.0 x86_64 GNU y y y y CentOS 7.1 Linux 3.10.0 x86_64 Intel y y y y -Linux 2.6.32-431.11.2.el6.ppc64 y y y y +Linux 2.6.32-573.18.1.el6.ppc64 y y y y Compiler versions for each platform are listed in the preceding "Supported Platforms" table. @@ -511,6 +319,12 @@ Known Problems found a solution that satisfies both. Therefore the dynamically loaded plugin tests have been disabled on CYGWIN. + Mac OS X 10.13 added additional subdirectory structure in .libs for shared + libraries. Consequently "make check" will fail testing java and dynamically + loaded plugin test libraries attempting to copy files from the previous + locations in .libs directories. This will be addressed in the next release + when support for the Mac OS X 10.13 platform is added. + Known problems in previous releases can be found in the HISTORY*.txt files in the HDF5 source. Please report any new problems found to help@hdfgroup.org. -- cgit v0.12 From 2c3bde7f7448d2b41c953ffe4a32a9456ada2a5b Mon Sep 17 00:00:00 2001 From: lrknox Date: Sat, 2 Dec 2017 16:06:07 -0600 Subject: Add assignment to get value from environment variable realtimeOutput. Propagate changes to Makefile.ins with bin/reconfigure. --- c++/Makefile.in | 78 +++++++++++++++++++++++++++++------------ c++/examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ c++/src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ c++/test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ config/conclude.am | 2 +- examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ fortran/Makefile.in | 78 +++++++++++++++++++++++++++++------------ fortran/examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ fortran/src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ fortran/test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ fortran/testpar/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/c++/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/c++/examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/c++/src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/c++/test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/fortran/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/fortran/examples/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/fortran/src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/fortran/test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/tools/Makefile.in | 78 +++++++++++++++++++++++++++++------------ hl/tools/gif2h5/Makefile.in | 78 +++++++++++++++++++++++++++++------------ src/Makefile.in | 78 +++++++++++++++++++++++++++++------------ test/Makefile.in | 78 +++++++++++++++++++++++++++++------------ testpar/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5copy/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5diff/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5dump/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5import/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5jam/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5ls/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5repack/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/h5stat/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/lib/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/misc/Makefile.in | 78 +++++++++++++++++++++++++++++------------ tools/perform/Makefile.in | 78 +++++++++++++++++++++++++++++------------ 40 files changed, 2185 insertions(+), 859 deletions(-) diff --git a/c++/Makefile.in b/c++/Makefile.in index 4a2eb21..8598ae7 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -683,6 +683,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1178,7 +1179,6 @@ check-clean :: (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ fi; \ done - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1266,28 +1266,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 88f92e8..1bd5fb1 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -663,6 +663,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1131,7 +1132,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1219,28 +1219,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index 11fb9b4..a566368 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -759,6 +759,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1339,7 +1340,6 @@ mostlyclean-local: @if test -d ii_files; then \ $(RM) -rf ii_files; \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1427,28 +1427,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index 841a797..4ea9261 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -701,6 +701,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1185,7 +1186,6 @@ mostlyclean-local: @if test -d ii_files; then \ $(RM) -rf ii_files; \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1273,28 +1273,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/config/conclude.am b/config/conclude.am index c076ddc..e6635d0 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -31,7 +31,7 @@ TESTS = $(TEST_PROG) $(TEST_SCRIPT) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = - +REALTIMEOUTPUT = $(realtimeOutput) # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) diff --git a/examples/Makefile.in b/examples/Makefile.in index 3d1a9c5..76cf389 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -674,6 +674,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1161,7 +1162,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1249,28 +1249,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/fortran/Makefile.in b/fortran/Makefile.in index d46c86d..0183f58 100644 --- a/fortran/Makefile.in +++ b/fortran/Makefile.in @@ -692,6 +692,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1187,7 +1188,6 @@ check-clean :: (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ fi; \ done - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1275,28 +1275,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index 208bd44..7cc5bff 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -675,6 +675,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1152,7 +1153,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1240,28 +1240,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index a182618..f2d01db 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -844,6 +844,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1484,7 +1485,6 @@ HDF5mpio.lo: $(srcdir)/H5FDmpioff.f90 H5f90global.lo H5_ff$(F_STATUS).lo H5Off.lo H5Off$(F_STATUS).lo H5Pff.lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo H5Rff.lo \ H5Sff.lo H5Tff.lo H5Tff$(F_STATUS).lo H5Zff.lo \ H5_DBLE_Interface$(F_DBLE).lo H5FDmpioff.lo - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1572,28 +1572,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index 4764b8f..b715720 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -808,6 +808,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1460,7 +1461,6 @@ clean-local: # fflush2 depends on files created by fflush1 fflush2.chkexe_: fflush1.chkexe_ - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1548,28 +1548,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index f318ce6..ea20988 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -695,6 +695,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1132,7 +1133,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1220,28 +1220,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/Makefile.in b/hl/Makefile.in index 825621a..59a622d 100644 --- a/hl/Makefile.in +++ b/hl/Makefile.in @@ -689,6 +689,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1188,7 +1189,6 @@ check-clean :: done build-check-clean: - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1276,28 +1276,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/c++/Makefile.in b/hl/c++/Makefile.in index 840696a..4b9d254 100644 --- a/hl/c++/Makefile.in +++ b/hl/c++/Makefile.in @@ -683,6 +683,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1178,7 +1179,6 @@ check-clean :: (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ fi; \ done - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1266,28 +1266,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/c++/examples/Makefile.in b/hl/c++/examples/Makefile.in index de7f8c1..f69cc76 100644 --- a/hl/c++/examples/Makefile.in +++ b/hl/c++/examples/Makefile.in @@ -653,6 +653,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1096,7 +1097,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1184,28 +1184,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in index 14ce2a1..4126183 100644 --- a/hl/c++/src/Makefile.in +++ b/hl/c++/src/Makefile.in @@ -726,6 +726,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1229,7 +1230,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1317,28 +1317,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/c++/test/Makefile.in b/hl/c++/test/Makefile.in index 05742b6..388c00c 100644 --- a/hl/c++/test/Makefile.in +++ b/hl/c++/test/Makefile.in @@ -692,6 +692,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1152,7 +1153,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1240,28 +1240,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/examples/Makefile.in b/hl/examples/Makefile.in index d6e4acd..8e10146 100644 --- a/hl/examples/Makefile.in +++ b/hl/examples/Makefile.in @@ -668,6 +668,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1135,7 +1136,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1223,28 +1223,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in index f3f2dc2..9afdbdc 100644 --- a/hl/fortran/Makefile.in +++ b/hl/fortran/Makefile.in @@ -687,6 +687,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1182,7 +1183,6 @@ check-clean :: (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ fi; \ done - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1270,28 +1270,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/fortran/examples/Makefile.in b/hl/fortran/examples/Makefile.in index fbf6d58..0ccde89 100644 --- a/hl/fortran/examples/Makefile.in +++ b/hl/fortran/examples/Makefile.in @@ -661,6 +661,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1100,7 +1101,6 @@ installcheck-local: (cd $(EXAMPLEDIR); \ /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ fi - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1188,28 +1188,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 0d02034..3ff4e5e 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -747,6 +747,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1277,7 +1278,6 @@ H5DSff.lo: $(srcdir)/H5DSff.f90 H5LTff.lo: $(srcdir)/H5LTff.f90 H5IMff.lo: $(srcdir)/H5IMff.f90 H5TBff.lo: $(srcdir)/H5TBff.f90 - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1365,28 +1365,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in index 67cd706..df99dac 100644 --- a/hl/fortran/test/Makefile.in +++ b/hl/fortran/test/Makefile.in @@ -710,6 +710,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1187,7 +1188,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1275,28 +1275,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in index 9aea58a..0ec7bfc 100644 --- a/hl/src/Makefile.in +++ b/hl/src/Makefile.in @@ -724,6 +724,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1234,7 +1235,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1322,28 +1322,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in index f9b3c73..4a8cc5a 100644 --- a/hl/test/Makefile.in +++ b/hl/test/Makefile.in @@ -744,6 +744,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1294,7 +1295,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1382,28 +1382,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/tools/Makefile.in b/hl/tools/Makefile.in index 1416a66..ba103e3 100644 --- a/hl/tools/Makefile.in +++ b/hl/tools/Makefile.in @@ -685,6 +685,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1164,7 +1165,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1252,28 +1252,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/hl/tools/gif2h5/Makefile.in b/hl/tools/gif2h5/Makefile.in index 05cb213..3898ea6 100644 --- a/hl/tools/gif2h5/Makefile.in +++ b/hl/tools/gif2h5/Makefile.in @@ -710,6 +710,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1234,7 +1235,6 @@ uninstall-am: uninstall-binPROGRAMS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1322,28 +1322,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/src/Makefile.in b/src/Makefile.in index f6a7526..ebb4af0 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -862,6 +862,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1726,7 +1727,6 @@ trace: $(libhdf5_la_SOURCES) esac; \ fi; \ done - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1814,28 +1814,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/test/Makefile.in b/test/Makefile.in index a064197..e3fea25 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1170,6 +1170,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -2414,7 +2415,6 @@ timings _timings: testmeta # The flush1 test must run before the flush2 test flush2.chkexe_: flush1.chkexe_ - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -2502,28 +2502,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/testpar/Makefile.in b/testpar/Makefile.in index 6d17ef2..2f88b44 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -732,6 +732,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1234,7 +1235,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1322,28 +1322,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/Makefile.in b/tools/Makefile.in index d5b5ef8..138ebd2 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -688,6 +688,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1167,7 +1168,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1255,28 +1255,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5copy/Makefile.in b/tools/h5copy/Makefile.in index 981c7a2..c2aaa70 100644 --- a/tools/h5copy/Makefile.in +++ b/tools/h5copy/Makefile.in @@ -707,6 +707,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1228,7 +1229,6 @@ uninstall-am: uninstall-binPROGRAMS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1316,28 +1316,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index 5f44cfd..218b7b8 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -740,6 +740,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1295,7 +1296,6 @@ help: @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@libdynlibdiff.la: $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_DEPENDENCIES) $(EXTRA_libdynlibdiff_la_DEPENDENCIES) @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@ $(AM_V_CCLD)$(libdynlibdiff_la_LINK) $(am_libdynlibdiff_la_rpath) $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_LIBADD) - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1383,28 +1383,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5dump/Makefile.in b/tools/h5dump/Makefile.in index a48e5ba..6b17ba3 100644 --- a/tools/h5dump/Makefile.in +++ b/tools/h5dump/Makefile.in @@ -733,6 +733,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1291,7 +1292,6 @@ help: @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES) @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@ $(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD) - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1379,28 +1379,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5import/Makefile.in b/tools/h5import/Makefile.in index fa4dceb..186562e 100644 --- a/tools/h5import/Makefile.in +++ b/tools/h5import/Makefile.in @@ -704,6 +704,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1225,7 +1226,6 @@ uninstall-am: uninstall-binPROGRAMS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1313,28 +1313,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5jam/Makefile.in b/tools/h5jam/Makefile.in index 0939991..133b1bd 100644 --- a/tools/h5jam/Makefile.in +++ b/tools/h5jam/Makefile.in @@ -716,6 +716,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1246,7 +1247,6 @@ uninstall-am: uninstall-binPROGRAMS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1334,28 +1334,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5ls/Makefile.in b/tools/h5ls/Makefile.in index 1ea9bb3..5bcf480 100644 --- a/tools/h5ls/Makefile.in +++ b/tools/h5ls/Makefile.in @@ -709,6 +709,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1235,7 +1236,6 @@ help: @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@libdynlibls.la: $(libdynlibls_la_OBJECTS) $(libdynlibls_la_DEPENDENCIES) $(EXTRA_libdynlibls_la_DEPENDENCIES) @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@ $(AM_V_CCLD)$(libdynlibls_la_LINK) $(am_libdynlibls_la_rpath) $(libdynlibls_la_OBJECTS) $(libdynlibls_la_LIBADD) - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1323,28 +1323,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5repack/Makefile.in b/tools/h5repack/Makefile.in index 2031191..8697a3c 100644 --- a/tools/h5repack/Makefile.in +++ b/tools/h5repack/Makefile.in @@ -758,6 +758,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1340,7 +1341,6 @@ h5repack.sh.chkexe_: h5repacktst.chkexe_ @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@ $(AM_V_CCLD)$(libdynlibadd_la_LINK) $(am_libdynlibadd_la_rpath) $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_LIBADD) @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@libdynlibvers.la: $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_DEPENDENCIES) $(EXTRA_libdynlibvers_la_DEPENDENCIES) @HAVE_SHARED_CONDITIONAL_TRUE@@NOT_UNAME_CYGWIN_TRUE@ $(AM_V_CCLD)$(libdynlibvers_la_LINK) $(am_libdynlibvers_la_rpath) $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_LIBADD) - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1428,28 +1428,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/h5stat/Makefile.in b/tools/h5stat/Makefile.in index adbc776..08d608f 100644 --- a/tools/h5stat/Makefile.in +++ b/tools/h5stat/Makefile.in @@ -715,6 +715,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1274,7 +1275,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1362,28 +1362,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/lib/Makefile.in b/tools/lib/Makefile.in index 342b4e8..49be556 100644 --- a/tools/lib/Makefile.in +++ b/tools/lib/Makefile.in @@ -693,6 +693,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1170,7 +1171,6 @@ uninstall-am: help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1258,28 +1258,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in index 7075597..0df01c9 100644 --- a/tools/misc/Makefile.in +++ b/tools/misc/Makefile.in @@ -747,6 +747,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1348,7 +1349,6 @@ uninstall-local: # How to build h5redeploy script h5redeploy: h5redeploy.in @cp $(srcdir)/$@.in $@ - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1436,28 +1436,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi diff --git a/tools/perform/Makefile.in b/tools/perform/Makefile.in index 1baa196..5af1830 100644 --- a/tools/perform/Makefile.in +++ b/tools/perform/Makefile.in @@ -754,6 +754,7 @@ chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) @@ -1341,7 +1342,6 @@ uninstall-am: uninstall-binPROGRAMS help: @$(top_srcdir)/bin/makehelp - # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) @@ -1429,28 +1429,62 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ echo "No need to test $${tname} again."; \ else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ fi; \ fi -- cgit v0.12 From 8f181ff0c17c31ea40d0c043212af1702e4f5d11 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Thu, 7 Dec 2017 09:51:03 -0600 Subject: Miscellaneous cleanup Description: Moved items around to remove Doxygen warnings. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test) --- c++/src/H5DataType.cpp | 102 ++++++++++++++++++++++++------------------------- c++/src/H5DataType.h | 3 +- 2 files changed, 53 insertions(+), 52 deletions(-) diff --git a/c++/src/H5DataType.cpp b/c++/src/H5DataType.cpp index ffa2a21..7b385d2 100644 --- a/c++/src/H5DataType.cpp +++ b/c++/src/H5DataType.cpp @@ -243,35 +243,6 @@ void DataType::copy(const DataSet& dset) } //-------------------------------------------------------------------------- -// Function: DataType::p_decode -// Purpose Returns an id of a type by decoding the binary object -/// description of this datatype. -///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Sept 2017 -//-------------------------------------------------------------------------- -hid_t DataType::p_decode() const -{ - // Make sure that the buffer can be decoded - if (encoded_buf == NULL) - { - throw DataTypeIException("DataType::p_decode", "No encoded buffer"); - } - - // Call C function to decode the binary object description - hid_t encoded_dtype_id = H5Tdecode(encoded_buf); - - // If H5Tdecode fails, raise exception - if (encoded_dtype_id < 0) - { - throw DataTypeIException("DataType::p_decode", "H5Tdecode failed"); - } - else - { - return(encoded_dtype_id); - } -} - -//-------------------------------------------------------------------------- // Function: DataType::decode ///\brief Returns a DataType instance by decoding the binary object /// description of this datatype. @@ -391,28 +362,6 @@ bool DataType::operator==(const DataType& compared_type) const } //-------------------------------------------------------------------------- -// Function: DataType::p_commit (private) -//\brief Commits a transient datatype to a file, creating a new -// named datatype -//\param loc_id - IN: The id of either a file, group, dataset, named -// datatype, or attribute. -//\param name - IN: Name of the datatype -//\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 -// Modification: -// Copied from DataType::commit and made into private function -// to be commonly used by several overloads of DataType::commit. -// BMR - Jan, 2007 -//-------------------------------------------------------------------------- -void DataType::p_commit(hid_t loc_id, const char* name) -{ - // Call C routine to commit the transient datatype - herr_t ret_value = H5Tcommit2(loc_id, name, id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if(ret_value < 0) - throw DataTypeIException(inMemFunc("p_commit"), "H5Tcommit2 failed"); -} - -//-------------------------------------------------------------------------- // Function: DataType::commit ///\brief Commits a transient datatype to a file, creating a new /// named datatype @@ -857,6 +806,57 @@ hid_t DataType::getId() const #ifndef DOXYGEN_SHOULD_SKIP_THIS //-------------------------------------------------------------------------- +// Function: DataType::p_commit (private) +//\brief Commits a transient datatype to a file, creating a new +// named datatype +//\param loc_id - IN: The id of either a file, group, dataset, named +// datatype, or attribute. +//\param name - IN: Name of the datatype +//\exception H5::DataTypeIException +// Programmer Binh-Minh Ribler - 2000 +// Modification: +// Copied from DataType::commit and made into private function +// to be commonly used by several overloads of DataType::commit. +// BMR - Jan, 2007 +//-------------------------------------------------------------------------- +void DataType::p_commit(hid_t loc_id, const char* name) +{ + // Call C routine to commit the transient datatype + herr_t ret_value = H5Tcommit2(loc_id, name, id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + if(ret_value < 0) + throw DataTypeIException(inMemFunc("p_commit"), "H5Tcommit2 failed"); +} + +//-------------------------------------------------------------------------- +// Function: DataType::p_decode +// Purpose Returns an id of a type by decoding the binary object +/// description of this datatype. +///\exception H5::DataTypeIException +// Programmer Binh-Minh Ribler - Sept 2017 +//-------------------------------------------------------------------------- +hid_t DataType::p_decode() const +{ + // Make sure that the buffer can be decoded + if (encoded_buf == NULL) + { + throw DataTypeIException("DataType::p_decode", "No encoded buffer"); + } + + // Call C function to decode the binary object description + hid_t encoded_dtype_id = H5Tdecode(encoded_buf); + + // If H5Tdecode fails, raise exception + if (encoded_dtype_id < 0) + { + throw DataTypeIException("DataType::p_decode", "H5Tdecode failed"); + } + else + { + return(encoded_dtype_id); + } +} + +//-------------------------------------------------------------------------- // Function: DataType::p_opentype (private) ///\brief Opens an HDF5 datatype given its name ///\param loc - IN: Location of the type diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h index 5e10c20..29cc990 100644 --- a/c++/src/H5DataType.h +++ b/c++/src/H5DataType.h @@ -150,7 +150,6 @@ class H5_DLLCPP DataType : public H5Object { // Opens a datatype and returns the id. hid_t p_opentype(const H5Location& loc, const char* dtype_name) const; - #endif // DOXYGEN_SHOULD_SKIP_THIS private: @@ -162,7 +161,9 @@ class H5_DLLCPP DataType : public H5Object { // Friend function to set DataType id. For library use only. friend void f_DataType_setId(DataType* dtype, hid_t new_id); +#ifndef DOXYGEN_SHOULD_SKIP_THIS void p_commit(hid_t loc_id, const char* name); +#endif // DOXYGEN_SHOULD_SKIP_THIS }; // end of DataType } // namespace H5 -- cgit v0.12 From e475727aeb3c31d7aac754448e85a8e5082b6caa Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sun, 10 Dec 2017 12:06:46 -0600 Subject: Adding tests for version bounds Description: - Added test program, tverbounds18.c, that reads various files of different layout versions - Added the data files: bounds_earliest_latest.h5 bounds_earliest_v18.h5 bounds_latest_latest.h5 bounds_v18_latest.h5 bounds_v18_v18.h5 Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test) --- test/Makefile.am | 2 +- test/bounds_earliest_latest.h5 | Bin 0 -> 166064 bytes test/bounds_earliest_v18.h5 | Bin 0 -> 84016 bytes test/bounds_latest_latest.h5 | Bin 0 -> 82048 bytes test/bounds_v18_latest.h5 | Bin 0 -> 83095 bytes test/bounds_v18_v18.h5 | Bin 0 -> 165143 bytes test/testhdf5.c | 1 + test/testhdf5.h | 92 ++++++------- test/tverbounds18.c | 284 +++++++++++++++++++++++++++++++++++++++++ 9 files changed, 333 insertions(+), 46 deletions(-) create mode 100644 test/bounds_earliest_latest.h5 create mode 100644 test/bounds_earliest_v18.h5 create mode 100644 test/bounds_latest_latest.h5 create mode 100644 test/bounds_v18_latest.h5 create mode 100644 test/bounds_v18_v18.h5 create mode 100644 test/tverbounds18.c diff --git a/test/Makefile.am b/test/Makefile.am index 7c55e5b..fd7f9b5 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -166,7 +166,7 @@ CHECK_CLEANFILES+=accum.h5 cmpd_dset.h5 compact_dataset.h5 dataset.h5 dset_offse testhdf5_SOURCES=testhdf5.c tarray.c tattr.c tchecksum.c tconfig.c tfile.c \ tgenprop.c th5o.c th5s.c tcoords.c theap.c tid.c titerate.c tmeta.c tmisc.c \ trefer.c trefstr.c tselect.c tskiplist.c tsohm.c ttime.c ttst.c tunicode.c \ - tvlstr.c tvltypes.c + tvlstr.c tvltypes.c tverbounds18.c # Temporary files. DISTCLEANFILES=testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_plugin.sh diff --git a/test/bounds_earliest_latest.h5 b/test/bounds_earliest_latest.h5 new file mode 100644 index 0000000..a05d461 Binary files /dev/null and b/test/bounds_earliest_latest.h5 differ diff --git a/test/bounds_earliest_v18.h5 b/test/bounds_earliest_v18.h5 new file mode 100644 index 0000000..929c6f8 Binary files /dev/null and b/test/bounds_earliest_v18.h5 differ diff --git a/test/bounds_latest_latest.h5 b/test/bounds_latest_latest.h5 new file mode 100644 index 0000000..6e8bcad Binary files /dev/null and b/test/bounds_latest_latest.h5 differ diff --git a/test/bounds_v18_latest.h5 b/test/bounds_v18_latest.h5 new file mode 100644 index 0000000..f401ebb Binary files /dev/null and b/test/bounds_v18_latest.h5 differ diff --git a/test/bounds_v18_v18.h5 b/test/bounds_v18_v18.h5 new file mode 100644 index 0000000..2f7837b Binary files /dev/null and b/test/bounds_v18_v18.h5 differ diff --git a/test/testhdf5.c b/test/testhdf5.c index e52d1e8..de1c23d 100644 --- a/test/testhdf5.c +++ b/test/testhdf5.c @@ -66,6 +66,7 @@ main(int argc, char *argv[]) AddTest("unicode", test_unicode, cleanup_unicode, "UTF-8 Encoding", NULL); AddTest("id", test_ids, NULL, "User-Created Identifiers", NULL); AddTest("misc", test_misc, cleanup_misc, "Miscellaneous", NULL); + AddTest("verbounds18", test_verbounds_18, cleanup_verbounds_18, "Version Bounds", NULL); /* Display testing information */ TestInfo(argv[0]); diff --git a/test/testhdf5.h b/test/testhdf5.h index 2cbe6c6..fd9d68d 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -167,53 +167,55 @@ extern "C" { #endif /* Prototypes for the test routines */ -void test_metadata(void); -void test_checksum(void); -void test_tst(void); -void test_heap(void); -void test_refstr(void); -void test_file(void); -void test_h5o(void); -void test_h5t(void); -void test_h5s(void); -void test_coords(void); -void test_h5d(void); -void test_attr(void); -void test_select(void); -void test_time(void); -void test_reference(void); -void test_vltypes(void); -void test_vlstrings(void); -void test_iterate(void); -void test_array(void); -void test_genprop(void); -void test_configure(void); -void test_misc(void); -void test_ids(void); -void test_skiplist(void); -void test_sohm(void); -void test_unicode(void); +void test_metadata(void); +void test_checksum(void); +void test_tst(void); +void test_heap(void); +void test_refstr(void); +void test_file(void); +void test_h5o(void); +void test_h5t(void); +void test_h5s(void); +void test_coords(void); +void test_h5d(void); +void test_attr(void); +void test_select(void); +void test_time(void); +void test_reference(void); +void test_vltypes(void); +void test_vlstrings(void); +void test_iterate(void); +void test_array(void); +void test_genprop(void); +void test_configure(void); +void test_misc(void); +void test_ids(void); +void test_skiplist(void); +void test_sohm(void); +void test_unicode(void); +void test_verbounds_18(void); /* Prototypes for the cleanup routines */ -void cleanup_metadata(void); -void cleanup_checksum(void); -void cleanup_file(void); -void cleanup_h5o(void); -void cleanup_h5s(void); -void cleanup_coords(void); -void cleanup_attr(void); -void cleanup_select(void); -void cleanup_time(void); -void cleanup_reference(void); -void cleanup_vltypes(void); -void cleanup_vlstrings(void); -void cleanup_iterate(void); -void cleanup_array(void); -void cleanup_genprop(void); -void cleanup_configure(void); -void cleanup_sohm(void); -void cleanup_misc(void); -void cleanup_unicode(void); +void cleanup_metadata(void); +void cleanup_checksum(void); +void cleanup_file(void); +void cleanup_h5o(void); +void cleanup_h5s(void); +void cleanup_coords(void); +void cleanup_attr(void); +void cleanup_select(void); +void cleanup_time(void); +void cleanup_reference(void); +void cleanup_vltypes(void); +void cleanup_vlstrings(void); +void cleanup_iterate(void); +void cleanup_array(void); +void cleanup_genprop(void); +void cleanup_configure(void); +void cleanup_sohm(void); +void cleanup_misc(void); +void cleanup_unicode(void); +void cleanup_verbounds_18(void); #ifdef __cplusplus } diff --git a/test/tverbounds18.c b/test/tverbounds18.c new file mode 100644 index 0000000..563d084 --- /dev/null +++ b/test/tverbounds18.c @@ -0,0 +1,284 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/*********************************************************** +* +* Test program: tverbounds18 +* +* Test 1.8 compatibility with version bounds +* +* Description +* =========== +* This file tests the compatibility in the files generated +* by gen_bounds.c in HDF5 1.10.2: +* - bounds_earliest_latest.h5 +* - bounds_earliest_v18.h5 +* - bounds_latest_latest.h5 +* - bounds_v18_latest.h5 +* - bounds_v18_v18.h5 +* +* Oct 30, 2017 +* +*************************************************************/ + + /* #include "hdf5.h" + */ +#include "h5test.h" +#include "H5srcdir.h" +#include "testhdf5.h" + +/*********************************************************************** + * test_earliest_latest() creates file "bounds_earliest_latest.h5" + * + * Description: + * This test shows that the 1.8 library is able to open a chunked dataset + * with layout version 3 in a file with superblock version 0 and + * earliest and latest bounds. However, it cannot open the chunked + * dataset with layout version 4 in the same file. + * + ***********************************************************************/ +#define FILENAME_E_L "bounds_earliest_latest.h5" +static void test_earliest_latest(void) +{ + hid_t fid = FAIL; /* File ID */ + hid_t dset = FAIL; /* Dataset ID */ + herr_t ret; /* Return value */ + + /* Test file name must have correct path when srcdir is used */ + const char *testfile = H5_get_srcdir_filename(FILENAME_E_L); + + /* Open file */ + fid = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT); + CHECK(fid, FAIL, "H5Fopen"); + + /* + * Open the chunked dataset with layout version 3 + */ + + /* Open the dataset */ + dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen"); + + ret = H5Dclose(dset); + CHECK(ret, FAIL, "H5Dclose"); + + /* + * Open the chunked dataset with layout version 4. This should fail + * with HDF5 1.8. + */ + + /* Open the dataset */ + H5E_BEGIN_TRY { + dset = H5Dopen(fid, "DS_chunked_layout_4", H5P_DEFAULT); + } H5E_END_TRY; + VERIFY(dset, FAIL, "H5Dopen"); + + /* Close the file */ + ret = H5Fclose(fid); + CHECK(ret, FAIL, "H5Fclose"); +} + +/*********************************************************************** + * test_earliest_v18() creates file "bounds_earliest_v18.h5" + * + * Description: + * This test shows that the 1.8 library is able to open a chunked dataset + * with layout version 3 in a file with superblock version 0 and + * earliest and version 1.8 bounds. + * + ***********************************************************************/ +#define FILENAME_E_18 "bounds_earliest_v18.h5" + +static void test_earliest_v18(void) +{ + hid_t fid = FAIL; /* File ID */ + hid_t dset = FAIL; /* Dataset ID */ + herr_t ret; /* Return value */ + + /* Test file name must have correct path when srcdir is used */ + const char *testfile = H5_get_srcdir_filename(FILENAME_E_18); + + /* Open file */ + fid = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT); + CHECK(fid, FAIL, "H5Fopen"); + + /* + * Open the chunked dataset with layout version 3 + */ + + /* Open the dataset */ + dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen"); + + ret = H5Dclose(dset); + CHECK(ret, FAIL, "H5Dclose"); + + /* Close the file */ + ret = H5Fclose(fid); + CHECK(ret, FAIL, "H5Fclose"); +} + +/*********************************************************************** + * test_latest_latest() creates file "bounds_latest_latest.h5" + * + * Description: + * This test shows that the 1.8 library is able to open a file with + * superblock version 3. + * + ***********************************************************************/ +#define FILENAME_L_L "bounds_latest_latest.h5" + +static void test_latest_latest(void) +{ + hid_t fid = FAIL; /* File ID */ + + /* Test file name must have correct path when srcdir is used */ + const char *testfile = H5_get_srcdir_filename(FILENAME_L_L); + + /* Opening the file of latest version bounds should fail with HDF5 1.8. */ + H5E_BEGIN_TRY { + fid = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT); + } H5E_END_TRY; + VERIFY(fid, FAIL, "H5Fopen file with latest version bounds"); +} + +/*********************************************************************** + * test_v18_latest() creates file "bounds_v18_latest.h5" + * + * Description: + * This test shows that the 1.8 library is able to open a chunked dataset + * with layout version 3 in a file with superblock version 2. + * + ***********************************************************************/ +#define FILENAME_18_L "bounds_v18_latest.h5" + +static void test_v18_latest(void) +{ + hid_t fid = FAIL; /* File ID */ + hid_t dset = FAIL; /* Dataset ID */ + herr_t ret; /* Return value */ + + /* Test file name must have correct path when srcdir is used */ + const char *testfile = H5_get_srcdir_filename(FILENAME_18_L); + + /* Open file */ + fid = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT); + CHECK(fid, FAIL, "H5Fopen"); + + /* + * Open the chunked dataset with layout version 3 + */ + + /* Open the dataset */ + dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen"); + + ret = H5Dclose(dset); + CHECK(ret, FAIL, "H5Dclose"); + + /* Close the file */ + ret = H5Fclose(fid); + CHECK(ret, FAIL, "H5Fclose"); +} + +/*********************************************************************** + * test_v18_v18() creates file "bounds_v18_v18.h5" + * + * Description: + * This test shows that the 1.8 library is able to open a chunked dataset + * with layout version 3 in a file with superblock version 2 and + * version 1.8 bounds. However, it cannot open the chunked + * dataset with layout version 4 in the same file. + * + ***********************************************************************/ +#define FILENAME_18_18 "bounds_v18_v18.h5" + +static void test_v18_v18(void) +{ + hid_t fid = FAIL; /* File ID */ + hid_t dset = FAIL; /* Dataset ID */ + herr_t ret; /* Return value */ + + /* Test file name must have correct path when srcdir is used */ + const char *testfile = H5_get_srcdir_filename(FILENAME_18_18); + + /* Open file */ + fid = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT); + CHECK(fid, FAIL, "H5Fopen"); + + /* + * Open the chunked dataset with layout version 3 + */ + + /* Open the dataset */ + dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen"); + + ret = H5Dclose(dset); + CHECK(ret, FAIL, "H5Dclose"); + + /* + * Open the chunked dataset with layout version 4. This should fail + * with HDF5 1.8. + */ + + /* Open the dataset */ + H5E_BEGIN_TRY { + dset = H5Dopen(fid, "DS_chunked_layout_4", H5P_DEFAULT); + } H5E_END_TRY; + VERIFY(dset, FAIL, "H5Dopen"); + + /* Close the file */ + ret = H5Fclose(fid); + CHECK(ret, FAIL, "H5Fclose"); +} + +/************************************************************************* +** +** test_libver_bounds_withv18(): +** Main routine to test library version bounds with HDF5 1.8 library. +** +*************************************************************************/ +void test_verbounds_18(void) +{ + /* Output message about test being performed */ + MESSAGE(5, ("Testing Compatibility of Version Bounds with 1.8\n")); + + /* Test with file bounds_earliest_latest.h5 */ + test_earliest_latest(); + + /* Test with file bounds_earliest_v18.h5 */ + test_earliest_v18(); + + /* Test with file bounds_latest_latest.h5 */ + test_latest_latest(); + + /* Test with file bounds_v18_latest.h5 */ + test_v18_latest(); + + /* Test with file bounds_v18_v18.h5 */ + test_v18_v18(); +} + +/*------------------------------------------------------------------------- + * Function: cleanup_verbounds_18 + * + * Purpose: Cleanup temporary test files + * + * Return: none + * + *------------------------------------------------------------------------- + */ +void cleanup_verbounds_18(void) +{ +} -- cgit v0.12 From 4d336d26b1f14db4dec821009310f72a23f5af48 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 10 Dec 2017 21:36:02 -0600 Subject: Snapshot version 1.8 release 21 (snap0) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- hl/src/H5LTparse.c | 144 +++++++++++++++++----------------- hl/src/H5LTparse.h | 4 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 +- 8 files changed, 81 insertions(+), 81 deletions(-) diff --git a/README.txt b/README.txt index bb722d5..cae4018 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap0 currently under development +HDF5 version 1.8.21-snap1 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 6a31946..f0aaa51 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap0, currently under development" +PROJECT_NUMBER = "1.8.21-snap1, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 9e77888..769db0e 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap0") +set (CTEST_SOURCE_VERSEXT "-snap1") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index 8b6fe53..4d3ba3d 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap0], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap1], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/hl/src/H5LTparse.c b/hl/src/H5LTparse.c index 16a0bcf..2a0f267 100644 --- a/hl/src/H5LTparse.c +++ b/hl/src/H5LTparse.c @@ -1641,229 +1641,229 @@ yyreduce: switch (yyn) { case 2: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 99 "H5LTparse.y" { memset(arr_stack, 0, STACK_SIZE*sizeof(struct arr_info)); /*initialize here?*/ } break; case 3: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 100 "H5LTparse.y" { return (yyval.hid);} break; case 13: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 114 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8BE); } break; case 14: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 115 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8LE); } break; case 15: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 116 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16BE); } break; case 16: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 117 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16LE); } break; case 17: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 118 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32BE); } break; case 18: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 119 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32LE); } break; case 19: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 120 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64BE); } break; case 20: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 121 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64LE); } break; case 21: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 122 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8BE); } break; case 22: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 123 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8LE); } break; case 23: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 124 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16BE); } break; case 24: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 125 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16LE); } break; case 25: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 126 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32BE); } break; case 26: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 127 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32LE); } break; case 27: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 128 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64BE); } break; case 28: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 129 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64LE); } break; case 29: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 130 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_CHAR); } break; case 30: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 131 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SCHAR); } break; case 31: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 132 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UCHAR); } break; case 32: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 133 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SHORT); } break; case 33: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 134 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_USHORT); } break; case 34: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 135 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_INT); } break; case 35: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 136 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UINT); } break; case 36: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 137 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LONG); } break; case 37: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 138 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULONG); } break; case 38: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 139 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LLONG); } break; case 39: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 140 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULLONG); } break; case 40: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 143 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32BE); } break; case 41: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 144 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32LE); } break; case 42: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 145 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64BE); } break; case 43: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 146 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64LE); } break; case 44: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 147 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_FLOAT); } break; case 45: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 148 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_DOUBLE); } break; case 46: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 149 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LDOUBLE); } break; case 47: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 153 "H5LTparse.y" { csindex++; cmpd_stack[csindex].id = H5Tcreate(H5T_COMPOUND, 1); /*temporarily set size to 1*/ } break; case 48: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 155 "H5LTparse.y" { (yyval.hid) = cmpd_stack[csindex].id; cmpd_stack[csindex].id = 0; @@ -1873,13 +1873,13 @@ yyreduce: break; case 51: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 164 "H5LTparse.y" { cmpd_stack[csindex].is_field = 1; /*notify lexer a compound member is parsed*/ } break; case 52: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 166 "H5LTparse.y" { size_t origin_size, new_size; @@ -1915,7 +1915,7 @@ yyreduce: break; case 53: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 199 "H5LTparse.y" { (yyval.sval) = yylval.sval; @@ -1923,25 +1923,25 @@ yyreduce: break; case 54: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 204 "H5LTparse.y" { (yyval.ival) = 0; } break; case 55: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 206 "H5LTparse.y" { (yyval.ival) = yylval.ival; } break; case 57: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 210 "H5LTparse.y" { asindex++; /*pushd onto the stack*/ } break; case 58: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 212 "H5LTparse.y" { (yyval.hid) = H5Tarray_create2((yyvsp[(5) - (6)].hid), arr_stack[asindex].ndims, arr_stack[asindex].dims); @@ -1952,13 +1952,13 @@ yyreduce: break; case 61: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 222 "H5LTparse.y" { arr_stack[asindex].is_dim = 1; /*notice lexer of dimension size*/ } break; case 62: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 223 "H5LTparse.y" { unsigned ndims = arr_stack[asindex].ndims; arr_stack[asindex].dims[ndims] = (hsize_t)yylval.ival; @@ -1968,19 +1968,19 @@ yyreduce: break; case 65: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 234 "H5LTparse.y" { (yyval.hid) = H5Tvlen_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 66: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 239 "H5LTparse.y" { is_opq_size = 1; } break; case 67: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 240 "H5LTparse.y" { size_t size = (size_t)yylval.ival; @@ -1990,13 +1990,13 @@ yyreduce: break; case 68: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 245 "H5LTparse.y" { is_opq_tag = 1; } break; case 69: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 246 "H5LTparse.y" { H5Tset_tag((yyvsp[(7) - (13)].hid), yylval.sval); @@ -2005,19 +2005,19 @@ yyreduce: break; case 70: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 250 "H5LTparse.y" { (yyval.hid) = (yyvsp[(7) - (15)].hid); } break; case 73: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 258 "H5LTparse.y" { is_str_size = 1; } break; case 74: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 259 "H5LTparse.y" { if((yyvsp[(5) - (6)].ival) == H5T_VARIABLE_TOKEN) @@ -2029,7 +2029,7 @@ yyreduce: break; case 75: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 267 "H5LTparse.y" { if((yyvsp[(9) - (10)].ival) == H5T_STR_NULLTERM_TOKEN) @@ -2042,7 +2042,7 @@ yyreduce: break; case 76: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 276 "H5LTparse.y" { if((yyvsp[(13) - (14)].ival) == H5T_CSET_ASCII_TOKEN) @@ -2053,7 +2053,7 @@ yyreduce: break; case 77: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 283 "H5LTparse.y" { if((yyvsp[(17) - (18)].hid) == H5T_C_S1_TOKEN) @@ -2064,7 +2064,7 @@ yyreduce: break; case 78: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 290 "H5LTparse.y" { hid_t str_id = (yyvsp[(19) - (20)].hid); @@ -2085,67 +2085,67 @@ yyreduce: break; case 79: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 307 "H5LTparse.y" {(yyval.ival) = H5T_VARIABLE_TOKEN;} break; case 81: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 310 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLTERM_TOKEN;} break; case 82: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 311 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLPAD_TOKEN;} break; case 83: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 312 "H5LTparse.y" {(yyval.ival) = H5T_STR_SPACEPAD_TOKEN;} break; case 84: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 314 "H5LTparse.y" {(yyval.ival) = H5T_CSET_ASCII_TOKEN;} break; case 85: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 315 "H5LTparse.y" {(yyval.ival) = H5T_CSET_UTF8_TOKEN;} break; case 86: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 317 "H5LTparse.y" {(yyval.hid) = H5T_C_S1_TOKEN;} break; case 87: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 318 "H5LTparse.y" {(yyval.hid) = H5T_FORTRAN_S1_TOKEN;} break; case 88: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 322 "H5LTparse.y" { is_enum = 1; enum_id = H5Tenum_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 89: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 324 "H5LTparse.y" { is_enum = 0; /*reset*/ (yyval.hid) = enum_id; } break; case 92: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 329 "H5LTparse.y" { is_enum_memb = 1; /*indicate member of enum*/ @@ -2158,7 +2158,7 @@ yyreduce: break; case 93: -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 338 "H5LTparse.y" { char char_val=(char)yylval.ival; @@ -2205,7 +2205,7 @@ yyreduce: break; -/* Line 1792 of yacc.c */ +/* Line 1807 of yacc.c */ #line 2191 "H5LTparse.c" default: break; } diff --git a/hl/src/H5LTparse.h b/hl/src/H5LTparse.h index 7481a45..2af0172 100644 --- a/hl/src/H5LTparse.h +++ b/hl/src/H5LTparse.h @@ -109,7 +109,7 @@ extern int H5LTyydebug; #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { -/* Line 2058 of yacc.c */ +/* Line 2065 of yacc.c */ #line 66 "H5LTparse.y" int ival; /*for integer token*/ @@ -117,7 +117,7 @@ typedef union YYSTYPE hid_t hid; /*for hid_t token*/ -/* Line 2058 of yacc.c */ +/* Line 2065 of yacc.c */ #line 122 "H5LTparse.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index d346fe9..e0d37d7 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap0 currently under development +HDF5 version 1.8.21-snap1 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index d8ad851..d01229b 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap0" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap1" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap0" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap1" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From e7e9196daf8adda3d55f2cd638884651c0998d02 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 11 Dec 2017 10:15:23 -0600 Subject: Fixed comments and updated Makefile.in Platforms tested: Linux/32 2.6 (jam) --- test/Makefile.in | 5 +++-- test/tverbounds18.c | 23 ++++++++++------------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/test/Makefile.in b/test/Makefile.in index e3fea25..21b1a63 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -455,7 +455,7 @@ am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) tarray.$(OBJEXT) \ trefer.$(OBJEXT) trefstr.$(OBJEXT) tselect.$(OBJEXT) \ tskiplist.$(OBJEXT) tsohm.$(OBJEXT) ttime.$(OBJEXT) \ ttst.$(OBJEXT) tunicode.$(OBJEXT) tvlstr.$(OBJEXT) \ - tvltypes.$(OBJEXT) + tvltypes.$(OBJEXT) tverbounds18.$(OBJEXT) testhdf5_OBJECTS = $(am_testhdf5_OBJECTS) testhdf5_LDADD = $(LDADD) testhdf5_DEPENDENCIES = libh5test.la $(LIBHDF5) @@ -1149,7 +1149,7 @@ VFD_LIST = sec2 stdio core core_paged split multi family \ testhdf5_SOURCES = testhdf5.c tarray.c tattr.c tchecksum.c tconfig.c tfile.c \ tgenprop.c th5o.c th5s.c tcoords.c theap.c tid.c titerate.c tmeta.c tmisc.c \ trefer.c trefstr.c tselect.c tskiplist.c tsohm.c ttime.c ttst.c tunicode.c \ - tvlstr.c tvltypes.c + tvlstr.c tvltypes.c tverbounds18.c # Temporary files. @@ -1664,6 +1664,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttsafe_error.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttst.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tunicode.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tverbounds18.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tvlstr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tvltypes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlink.Po@am__quote@ diff --git a/test/tverbounds18.c b/test/tverbounds18.c index 563d084..5fef2f9 100644 --- a/test/tverbounds18.c +++ b/test/tverbounds18.c @@ -31,20 +31,18 @@ * *************************************************************/ - /* #include "hdf5.h" - */ #include "h5test.h" #include "H5srcdir.h" #include "testhdf5.h" /*********************************************************************** - * test_earliest_latest() creates file "bounds_earliest_latest.h5" + * test_earliest_latest() reads file "bounds_earliest_latest.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset - * with layout version 3 in a file with superblock version 0 and - * earliest and latest bounds. However, it cannot open the chunked - * dataset with layout version 4 in the same file. + * with layout version 3 in a file with superblock version 0. + * However, it cannot open the chunked dataset with layout version 4 + * in the same file. * ***********************************************************************/ #define FILENAME_E_L "bounds_earliest_latest.h5" @@ -89,12 +87,11 @@ static void test_earliest_latest(void) } /*********************************************************************** - * test_earliest_v18() creates file "bounds_earliest_v18.h5" + * test_earliest_v18() reads file "bounds_earliest_v18.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset - * with layout version 3 in a file with superblock version 0 and - * earliest and version 1.8 bounds. + * with layout version 3 in a file with superblock version 0. * ***********************************************************************/ #define FILENAME_E_18 "bounds_earliest_v18.h5" @@ -129,10 +126,10 @@ static void test_earliest_v18(void) } /*********************************************************************** - * test_latest_latest() creates file "bounds_latest_latest.h5" + * test_latest_latest() reads file "bounds_latest_latest.h5" * * Description: - * This test shows that the 1.8 library is able to open a file with + * This test shows that the 1.8 library is unable to open a file with * superblock version 3. * ***********************************************************************/ @@ -153,7 +150,7 @@ static void test_latest_latest(void) } /*********************************************************************** - * test_v18_latest() creates file "bounds_v18_latest.h5" + * test_v18_latest() reads file "bounds_v18_latest.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset @@ -192,7 +189,7 @@ static void test_v18_latest(void) } /*********************************************************************** - * test_v18_v18() creates file "bounds_v18_v18.h5" + * test_v18_v18() reads file "bounds_v18_v18.h5" * * Description: * This test shows that the 1.8 library is able to open a chunked dataset -- cgit v0.12 From 36a1a13c6198a9090ce2ac5bbe100150faa4909b Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 11 Dec 2017 10:40:03 -0600 Subject: Added new files --- MANIFEST | 6 ++++++ test/CMakeLists.txt | 1 + 2 files changed, 7 insertions(+) diff --git a/MANIFEST b/MANIFEST index 0e4f8fb..83a8f31 100644 --- a/MANIFEST +++ b/MANIFEST @@ -838,6 +838,11 @@ ./test/be_extlink2.h5 ./test/big.c ./test/bittests.c +./test/bounds_earliest_latest.h5 +./test/bounds_earliest_v18.h5 +./test/bounds_latest_latest.h5 +./test/bounds_v18_latest.h5 +./test/bounds_v18_v18.h5 ./test/btree2.c ./test/cache.c ./test/cache_api.c @@ -977,6 +982,7 @@ ./test/ttsafe_dcreate.c ./test/ttsafe_error.c ./test/tunicode.c +./test/tverbounds18.c ./test/tvlstr.c ./test/tvltypes.c ./test/unlink.c diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8d889e4..4f990cf 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -161,6 +161,7 @@ set (testhdf5_SRCS ${HDF5_TEST_SOURCE_DIR}/ttime.c ${HDF5_TEST_SOURCE_DIR}/ttst.c ${HDF5_TEST_SOURCE_DIR}/tunicode.c + ${HDF5_TEST_SOURCE_DIR}/tverbounds18.c ${HDF5_TEST_SOURCE_DIR}/tvltypes.c ${HDF5_TEST_SOURCE_DIR}/tvlstr.c ) -- cgit v0.12 From e22c4bc7eb1c7e144918ba0881dc36e67e895336 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 11 Dec 2017 16:53:05 -0600 Subject: Added data files --- test/CMakeTests.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index 85a49fc..f7b12ee 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -107,6 +107,11 @@ set (HDF5_REFERENCE_TEST_FILES be_data.h5 be_extlink1.h5 be_extlink2.h5 + bounds_earliest_latest.h5 + bounds_earliest_v18.h5 + bounds_latest_latest.h5 + bounds_v18_latest.h5 + bounds_v18_v18.h5 corrupt_stab_msg.h5 deflate.h5 family_v16_00000.h5 -- cgit v0.12 From 3f3e95f65eba1579643e931a3e9d21334285783b Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Tue, 12 Dec 2017 11:10:18 -0600 Subject: Fixed typo. --- test/tverbounds18.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/tverbounds18.c b/test/tverbounds18.c index 5fef2f9..abba767 100644 --- a/test/tverbounds18.c +++ b/test/tverbounds18.c @@ -241,8 +241,7 @@ static void test_v18_v18(void) } /************************************************************************* -** -** test_libver_bounds_withv18(): +** test_verbounds_18() ** Main routine to test library version bounds with HDF5 1.8 library. ** *************************************************************************/ -- cgit v0.12 From 09cdbaaa3fbf01109ef5ef90c282bed443829643 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Thu, 14 Dec 2017 09:31:59 -0600 Subject: Replaced H5Dopen with H5Dopen2. Platform tested: Linux/32 2.6 (jam) --- test/tverbounds18.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/tverbounds18.c b/test/tverbounds18.c index abba767..2ae87c1 100644 --- a/test/tverbounds18.c +++ b/test/tverbounds18.c @@ -64,8 +64,8 @@ static void test_earliest_latest(void) */ /* Open the dataset */ - dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); - CHECK(dset, FAIL, "H5Dopen"); + dset = H5Dopen2(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen2"); ret = H5Dclose(dset); CHECK(ret, FAIL, "H5Dclose"); @@ -77,9 +77,9 @@ static void test_earliest_latest(void) /* Open the dataset */ H5E_BEGIN_TRY { - dset = H5Dopen(fid, "DS_chunked_layout_4", H5P_DEFAULT); + dset = H5Dopen2(fid, "DS_chunked_layout_4", H5P_DEFAULT); } H5E_END_TRY; - VERIFY(dset, FAIL, "H5Dopen"); + VERIFY(dset, FAIL, "H5Dopen2"); /* Close the file */ ret = H5Fclose(fid); @@ -114,8 +114,8 @@ static void test_earliest_v18(void) */ /* Open the dataset */ - dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); - CHECK(dset, FAIL, "H5Dopen"); + dset = H5Dopen2(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen2"); ret = H5Dclose(dset); CHECK(ret, FAIL, "H5Dclose"); @@ -177,8 +177,8 @@ static void test_v18_latest(void) */ /* Open the dataset */ - dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); - CHECK(dset, FAIL, "H5Dopen"); + dset = H5Dopen2(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen2"); ret = H5Dclose(dset); CHECK(ret, FAIL, "H5Dclose"); @@ -218,8 +218,8 @@ static void test_v18_v18(void) */ /* Open the dataset */ - dset = H5Dopen(fid, "DS_chunked_layout_3", H5P_DEFAULT); - CHECK(dset, FAIL, "H5Dopen"); + dset = H5Dopen2(fid, "DS_chunked_layout_3", H5P_DEFAULT); + CHECK(dset, FAIL, "H5Dopen2"); ret = H5Dclose(dset); CHECK(ret, FAIL, "H5Dclose"); @@ -231,9 +231,9 @@ static void test_v18_v18(void) /* Open the dataset */ H5E_BEGIN_TRY { - dset = H5Dopen(fid, "DS_chunked_layout_4", H5P_DEFAULT); + dset = H5Dopen2(fid, "DS_chunked_layout_4", H5P_DEFAULT); } H5E_END_TRY; - VERIFY(dset, FAIL, "H5Dopen"); + VERIFY(dset, FAIL, "H5Dopen2"); /* Close the file */ ret = H5Fclose(fid); -- cgit v0.12 From fd4de809a743ed32a2042e611851eb6acb623c34 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 17 Dec 2017 21:29:50 -0600 Subject: Snapshot version 1.8 release 21 (snap1) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index cae4018..2f71026 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap1 currently under development +HDF5 version 1.8.21-snap2 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index f0aaa51..a44864f 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap1, currently under development" +PROJECT_NUMBER = "1.8.21-snap2, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 769db0e..492a6b7 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap1") +set (CTEST_SOURCE_VERSEXT "-snap2") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index 4d3ba3d..b236963 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap1], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap2], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index e0d37d7..f430106 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap1 currently under development +HDF5 version 1.8.21-snap2 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index d01229b..9d54967 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap1" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap2" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap1" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap2" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From a608cd4e09213433ec7799777da4a0a98a03ed42 Mon Sep 17 00:00:00 2001 From: hdftest Date: Tue, 19 Dec 2017 09:19:51 -0600 Subject: napshot version 1.8 release 21 (snap1) --- configure | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/configure b/configure index 58ff0e9..1671c32 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap0. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap2. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap0' -PACKAGE_STRING='HDF5 1.8.21-snap0' +PACKAGE_VERSION='1.8.21-snap2' +PACKAGE_STRING='HDF5 1.8.21-snap2' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap0 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap0:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap2:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap0 +HDF5 configure 1.8.21-snap2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap0, which was +It was created by HDF5 $as_me 1.8.21-snap2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap0' + VERSION='1.8.21-snap2' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap0 +HDF5 config.lt 1.8.21-snap2 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap0, which was +This file was extended by HDF5 $as_me 1.8.21-snap2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap0 +HDF5 config.status 1.8.21-snap2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" -- cgit v0.12 From 1aa2c22264c70dcbff7cfefef08a6b588261b27e Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 20 Dec 2017 10:28:00 -0600 Subject: HDFFV-10307 Add HDtupper() call for Windows drive --- src/H5system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5system.c b/src/H5system.c index be21d83..398ffee 100644 --- a/src/H5system.c +++ b/src/H5system.c @@ -782,7 +782,7 @@ H5_build_extpath(const char *name, char **extpath /*out*/) * Unix: does not apply */ if(H5_CHECK_ABS_DRIVE(name)) { - drive = name[0] - 'A' + 1; + drive = HDtoupper(name[0]) - 'A' + 1; retcwd = HDgetdcwd(drive, cwdpath, MAX_PATH_LEN); HDstrncpy(new_name, &name[2], name_len); } /* end if */ @@ -876,7 +876,7 @@ H5_combine_path(const char* path1, const char* path2, char **full_name /*out*/) if(NULL == (*full_name = (char *)H5MM_strdup(path2))) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed") - } /* end if */ + } /* end if */ else if(H5_CHECK_ABS_PATH(path2)) { /* On windows path2 is a path absolute name */ -- cgit v0.12 From 1dbec5a7c30115f98f7ff1785772fd30b1a4f7e9 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 20 Dec 2017 12:46:53 -0600 Subject: Update with latest from CMake master --- config/cmake_ext_mod/FindMPI.cmake | 287 ++++++++++++++++++++++--------------- 1 file changed, 170 insertions(+), 117 deletions(-) diff --git a/config/cmake_ext_mod/FindMPI.cmake b/config/cmake_ext_mod/FindMPI.cmake index 8084472..d01dd35 100644 --- a/config/cmake_ext_mod/FindMPI.cmake +++ b/config/cmake_ext_mod/FindMPI.cmake @@ -347,7 +347,7 @@ function (_MPI_check_compiler LANG QUERY_FLAG OUTPUT_VARIABLE RESULT_VARIABLE) # library that has invalid or missing version information there would be warning # messages emitted by ld.so in the compiler output. In either case, we'll treat # the output as invalid. - if("${WRAPPER_OUTPUT}" MATCHES "undefined reference|unrecognized|need to set|no version information available") + if("${WRAPPER_OUTPUT}" MATCHES "undefined reference|unrecognized|need to set|no version information available|command not found") set(WRAPPER_RETURN 255) endif() # Ensure that no error output might be passed upwards. @@ -615,6 +615,16 @@ function (_MPI_interrogate_compiler lang) endif() endif() + if(MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS) + list(APPEND MPI_COMPILE_DEFINITIONS_WORK "${MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS}") + endif() + if(MPI_${LANG}_EXTRA_COMPILE_OPTIONS) + list(APPEND MPI_COMPILE_OPTIONS_WORK "${MPI_${LANG}_EXTRA_COMPILE_OPTIONS}") + endif() + if(MPI_${LANG}_EXTRA_LIB_NAMES) + list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${MPI_${LANG}_EXTRA_LIB_NAMES}") + endif() + # If we found MPI, set up all of the appropriate cache entries if(NOT MPI_${LANG}_COMPILE_OPTIONS) set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_COMPILE_OPTIONS_WORK} CACHE STRING "MPI ${LANG} compilation options" FORCE) @@ -823,33 +833,43 @@ endfunction() macro(_MPI_assemble_libraries LANG) set(MPI_${LANG}_LIBRARIES "") - foreach(mpilib IN LISTS MPI_${LANG}_LIB_NAMES) - list(APPEND MPI_${LANG}_LIBRARIES ${MPI_${mpilib}_LIBRARY}) - endforeach() + # Only for libraries do we need to check whether the compiler's linking stage is separate. + if(NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}" OR NOT MPI_${LANG}_WORKS_IMPLICIT) + foreach(mpilib IN LISTS MPI_${LANG}_LIB_NAMES) + list(APPEND MPI_${LANG}_LIBRARIES ${MPI_${mpilib}_LIBRARY}) + endforeach() + endif() endmacro() macro(_MPI_assemble_include_dirs LANG) - set(MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS}") - if("${LANG}" MATCHES "(C|CXX)") - if(MPI_${LANG}_HEADER_DIR) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") - endif() - else() # Fortran - if(MPI_${LANG}_F77_HEADER_DIR) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_F77_HEADER_DIR}") + if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") + set(MPI_${LANG}_INCLUDE_DIRS "") + else() + set(MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS}") + if("${LANG}" MATCHES "(C|CXX)") + if(MPI_${LANG}_HEADER_DIR) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") + endif() + else() # Fortran + if(MPI_${LANG}_F77_HEADER_DIR) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_F77_HEADER_DIR}") + endif() + if(MPI_${LANG}_MODULE_DIR AND NOT "${MPI_${LANG}_MODULE_DIR}" IN_LIST MPI_${LANG}_INCLUDE_DIRS) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_MODULE_DIR}") + endif() endif() - if(MPI_${LANG}_MODULE_DIR AND NOT "${MPI_${LANG}_MODULE_DIR}" IN_LIST MPI_${LANG}_INCLUDE_DIRS) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_MODULE_DIR}") + if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + foreach(MPI_ADDITIONAL_INC_DIR IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) + list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${MPI_ADDITIONAL_INC_DIR}_INCLUDE_DIR}") + endforeach() endif() endif() - if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - foreach(mpiadditionalinclude IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${mpiadditionalinclude}_INCLUDE_DIR}") - endforeach() - endif() endmacro() function(_MPI_split_include_dirs LANG) + if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") + return() + endif() # Backwards compatibility: Search INCLUDE_PATH if given. if(MPI_${LANG}_INCLUDE_PATH) list(APPEND MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_${LANG}_INCLUDE_PATH}") @@ -885,6 +905,13 @@ function(_MPI_split_include_dirs LANG) endif() mark_as_advanced(MPI_${LANG}_F77_HEADER_DIR MPI_${LANG}_MODULE_DIR) endif() + # Remove duplicates and default system directories from the list. + if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + list(REMOVE_DUPLICATES MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) + foreach(MPI_IMPLICIT_INC_DIR IN LISTS CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES) + list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_IMPLICIT_INC_DIR}) + endforeach() + endif() set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories" FORCE) endfunction() @@ -1014,7 +1041,7 @@ elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "FreeBSD") # FreeBSD ships mpich under the normal system paths - but available openmpi implementations # will be found in /usr/local/mpi/ - MPI_search_mpi_prefix_folder("/usr/local/mpi/") + MPI_search_mpi_prefix_folder("/usr/local/mpi") endif() # Most MPI distributions have some form of mpiexec or mpirun which gives us something we can look for. @@ -1050,48 +1077,54 @@ mark_as_advanced(MPIEXEC_EXECUTABLE MPIEXEC_NUMPROC_FLAG MPIEXEC_PREFLAGS MPIEXE # # Once we find the new variables, we translate them back into their old # equivalents below. -foreach (LANG IN ITEMS C CXX) - # Old input variables. - set(_MPI_OLD_INPUT_VARS COMPILER COMPILE_FLAGS INCLUDE_PATH LINK_FLAGS) - - # Set new vars based on their old equivalents, if the new versions are not already set. - foreach (var ${_MPI_OLD_INPUT_VARS}) - if (NOT MPI_${LANG}_${var} AND MPI_${var}) - set(MPI_${LANG}_${var} "${MPI_${var}}") - endif() - endforeach() - - # Chop the old compile flags into options and definitions - if(MPI_${LANG}_COMPILE_FLAGS) - unset(MPI_${LANG}_COMPILE_OPTIONS) - unset(MPI_${LANG}_COMPILE_DEFINITIONS) - separate_arguments(MPI_SEPARATE_FLAGS NATIVE_COMMAND "${MPI_${LANG}_COMPILE_FLAGS}") - foreach(_MPI_FLAG IN LISTS MPI_SEPARATE_FLAGS) - if("${_MPI_FLAG}" MATCHES "^ *[-/D]([^ ]+)") - list(APPEND MPI_${LANG}_COMPILE_DEFINITIONS "${CMAKE_MATCH_1}") - else() - list(APPEND MPI_${LANG}_COMPILE_FLAGS "${_MPI_FLAG}") +if(NOT MPI_IGNORE_LEGACY_VARIABLES) + foreach (LANG IN ITEMS C CXX) + # Old input variables. + set(_MPI_OLD_INPUT_VARS COMPILER COMPILE_FLAGS INCLUDE_PATH LINK_FLAGS) + + # Set new vars based on their old equivalents, if the new versions are not already set. + foreach (var ${_MPI_OLD_INPUT_VARS}) + if (NOT MPI_${LANG}_${var} AND MPI_${var}) + set(MPI_${LANG}_${var} "${MPI_${var}}") endif() endforeach() - unset(MPI_SEPARATE_FLAGS) - endif() - # If a list of libraries was given, we'll split it into new-style cache variables - if(NOT MPI_${LANG}_LIB_NAMES) - foreach(_MPI_LIB IN LISTS MPI_${LANG}_LIBRARIES MPI_LIBRARY MPI_EXTRA_LIBRARY) - get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB}" NAME_WE) - get_filename_component(_MPI_LIB_NAME "${_MPI_LIB}" NAME) - get_filename_component(_MPI_LIB_DIR "${_MPI_LIB}" DIRECTORY) - list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") - find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY - NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" - HINTS ${_MPI_LIB_DIR} $ENV{MPI_LIB} - DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" - ) - mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) - endforeach() - endif() -endforeach() + # Chop the old compile flags into options and definitions + + unset(MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS) + unset(MPI_${LANG}_EXTRA_COMPILE_OPTIONS) + if(MPI_${LANG}_COMPILE_FLAGS) + separate_arguments(MPI_SEPARATE_FLAGS NATIVE_COMMAND "${MPI_${LANG}_COMPILE_FLAGS}") + foreach(_MPI_FLAG IN LISTS MPI_SEPARATE_FLAGS) + if("${_MPI_FLAG}" MATCHES "^ *[-/D]([^ ]+)") + list(APPEND MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS "${CMAKE_MATCH_1}") + else() + list(APPEND MPI_${LANG}_EXTRA_COMPILE_OPTIONS "${_MPI_FLAG}") + endif() + endforeach() + unset(MPI_SEPARATE_FLAGS) + endif() + + # If a list of libraries was given, we'll split it into new-style cache variables + unset(MPI_${LANG}_EXTRA_LIB_NAMES) + if(NOT MPI_${LANG}_LIB_NAMES) + foreach(_MPI_LIB IN LISTS MPI_${LANG}_LIBRARIES MPI_LIBRARY MPI_EXTRA_LIBRARY) + if(_MPI_LIB) + get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB}" NAME_WE) + get_filename_component(_MPI_LIB_NAME "${_MPI_LIB}" NAME) + get_filename_component(_MPI_LIB_DIR "${_MPI_LIB}" DIRECTORY) + list(APPEND MPI_${LANG}_EXTRA_LIB_NAMES "${_MPI_PLAIN_LIB_NAME}") + find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY + NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" + HINTS ${_MPI_LIB_DIR} $ENV{MPI_LIB} + DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" + ) + mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) + endif() + endforeach() + endif() + endforeach() +endif() #============================================================================= unset(MPI_VERSION) @@ -1100,6 +1133,11 @@ unset(MPI_VERSION_MINOR) unset(_MPI_MIN_VERSION) +# If the user specified a library name we assume they prefer that library over a wrapper. If not, they can disable skipping manually. +if(NOT DEFINED MPI_SKIP_COMPILER_WRAPPER AND MPI_GUESS_LIBRARY_NAME) + set(MPI_SKIP_COMPILER_WRAPPER TRUE) +endif() + # This loop finds the compilers and sends them off for interrogation. foreach(LANG IN ITEMS C CXX Fortran) if(CMAKE_${LANG}_COMPILER_LOADED) @@ -1121,6 +1159,8 @@ foreach(LANG IN ITEMS C CXX Fortran) mark_as_advanced(MPI_CXX_SKIP_MPICXX) endif() if(NOT (MPI_${LANG}_LIB_NAMES AND (MPI_${LANG}_INCLUDE_PATH OR MPI_${LANG}_INCLUDE_DIRS OR MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS))) + set(MPI_${LANG}_TRIED_IMPLICIT FALSE) + set(MPI_${LANG}_WORKS_IMPLICIT FALSE) if(NOT MPI_${LANG}_COMPILER AND NOT MPI_ASSUME_NO_BUILTIN_MPI) # Should the imported targets be empty, we effectively try whether the compiler supports MPI on its own, which is the case on e.g. # Cray PrgEnv. @@ -1130,80 +1170,90 @@ foreach(LANG IN ITEMS C CXX Fortran) # If the compiler can build MPI code on its own, it functions as an MPI compiler and we'll set the variable to point to it. if(MPI_${LANG}_WORKS) set(MPI_${LANG}_COMPILER "${CMAKE_${LANG}_COMPILER}" CACHE FILEPATH "MPI compiler for ${LANG}" FORCE) + set(MPI_${LANG}_WORKS_IMPLICIT TRUE) endif() + set(MPI_${LANG}_TRIED_IMPLICIT TRUE) endif() - # If the user specified a library name we assume they prefer that library over a wrapper. If not, they can disable skipping manually. - if(NOT DEFINED MPI_SKIP_COMPILER_WRAPPER AND MPI_GUESS_LIBRARY_NAME) - set(MPI_SKIP_COMPILER_WRAPPER TRUE) - endif() - if(NOT MPI_SKIP_COMPILER_WRAPPER) - if(MPI_${LANG}_COMPILER) - # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. - if (NOT IS_ABSOLUTE "${MPI_${LANG}_COMPILER}") - # Get rid of our default list of names and just search for the name the user wants. - set(_MPI_${LANG}_COMPILER_NAMES "${MPI_${LANG}_COMPILER}") - unset(MPI_${LANG}_COMPILER CACHE) + if(NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}" OR NOT MPI_${LANG}_WORKS) + set(MPI_${LANG}_WRAPPER_FOUND FALSE) + set(MPI_PINNED_COMPILER FALSE) + + if(NOT MPI_SKIP_COMPILER_WRAPPER) + if(MPI_${LANG}_COMPILER) + # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. + if (NOT IS_ABSOLUTE "${MPI_${LANG}_COMPILER}") + # Get rid of our default list of names and just search for the name the user wants. + set(_MPI_${LANG}_COMPILER_NAMES "${MPI_${LANG}_COMPILER}") + unset(MPI_${LANG}_COMPILER CACHE) + endif() + # If the user specifies a compiler, we don't want to try to search libraries either. + set(MPI_PINNED_COMPILER TRUE) + endif() + + # If we have an MPI base directory, we'll try all compiler names in that one first. + # This should prevent mixing different MPI environments + if(_MPI_BASE_DIR) + find_program(MPI_${LANG}_COMPILER + NAMES ${_MPI_${LANG}_COMPILER_NAMES} + PATH_SUFFIXES bin sbin + HINTS ${_MPI_BASE_DIR} + NO_DEFAULT_PATH + DOC "MPI compiler for ${LANG}" + ) endif() - # If the user specifies a compiler, we don't want to try to search libraries either. - set(MPI_PINNED_COMPILER TRUE) - else() - set(MPI_PINNED_COMPILER FALSE) - endif() - # If we have an MPI base directory, we'll try all compiler names in that one first. - # This should prevent mixing different MPI environments - if(_MPI_BASE_DIR) + # If the base directory did not help (for example because the mpiexec isn't in the same directory as the compilers), + # we shall try searching in the default paths. find_program(MPI_${LANG}_COMPILER NAMES ${_MPI_${LANG}_COMPILER_NAMES} PATH_SUFFIXES bin sbin - HINTS ${_MPI_BASE_DIR} - NO_DEFAULT_PATH DOC "MPI compiler for ${LANG}" ) - endif() - # If the base directory did not help (for example because the mpiexec isn't in the same directory as the compilers), - # we shall try searching in the default paths. - find_program(MPI_${LANG}_COMPILER - NAMES ${_MPI_${LANG}_COMPILER_NAMES} - PATH_SUFFIXES bin sbin - DOC "MPI compiler for ${LANG}" - ) - - if(MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) - set(MPI_SKIP_GUESSING TRUE) - elseif(MPI_${LANG}_COMPILER) - _MPI_interrogate_compiler(${LANG}) - else() - set(MPI_${LANG}_WRAPPER_FOUND FALSE) + if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") + set(MPI_PINNED_COMPILER TRUE) + + # If we haven't made the implicit compiler test yet, perform it now. + if(NOT MPI_${LANG}_TRIED_IMPLICIT) + _MPI_create_imported_target(${LANG}) + _MPI_check_lang_works(${LANG}) + endif() + + # Should the MPI compiler not work implicitly for MPI, still interrogate it. + # Otherwise, MPI compilers for which CMake has separate linking stages, e.g. Intel MPI on Windows where link.exe is being used + # directly during linkage instead of CMAKE__COMPILER will not work. + if(NOT MPI_${LANG}_WORKS) + set(MPI_${LANG}_WORKS_IMPLICIT FALSE) + _MPI_interrogate_compiler(${LANG}) + else() + set(MPI_${LANG}_WORKS_IMPLICIT TRUE) + endif() + elseif(MPI_${LANG}_COMPILER) + _MPI_interrogate_compiler(${LANG}) + endif() endif() - else() - set(MPI_${LANG}_WRAPPER_FOUND FALSE) - set(MPI_PINNED_COMPILER FALSE) - endif() - if(NOT MPI_${LANG}_WRAPPER_FOUND AND NOT MPI_PINNED_COMPILER) - # For C++, we may use the settings for C. Should a given compiler wrapper for C++ not exist, but one for C does, we copy over the - # settings for C. An MPI distribution that is in this situation would be IBM Platform MPI. - if("${LANG}" STREQUAL "CXX" AND MPI_C_WRAPPER_FOUND) - set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_C_COMPILE_OPTIONS} CACHE STRING "MPI ${LANG} compilation options" ) - set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_C_COMPILE_DEFINITIONS} CACHE STRING "MPI ${LANG} compilation definitions" ) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_C_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories") - set(MPI_${LANG}_LINK_FLAGS ${MPI_C_LINK_FLAGS} CACHE STRING "MPI ${LANG} linker flags" ) - set(MPI_${LANG}_LIB_NAMES ${MPI_C_LIB_NAMES} CACHE STRING "MPI ${LANG} libraries to link against" ) - set(MPI_${LANG}_WRAPPER_FOUND TRUE) - elseif(NOT MPI_SKIP_GUESSING) - _MPI_guess_settings(${LANG}) + if(NOT MPI_SKIP_GUESSING AND NOT MPI_${LANG}_WRAPPER_FOUND AND NOT MPI_PINNED_COMPILER) + # For C++, we may use the settings for C. Should a given compiler wrapper for C++ not exist, but one for C does, we copy over the + # settings for C. An MPI distribution that is in this situation would be IBM Platform MPI. + if("${LANG}" STREQUAL "CXX" AND MPI_C_WRAPPER_FOUND) + set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_C_COMPILE_OPTIONS} CACHE STRING "MPI ${LANG} compilation options" ) + set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_C_COMPILE_DEFINITIONS} CACHE STRING "MPI ${LANG} compilation definitions" ) + set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_C_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories") + set(MPI_${LANG}_LINK_FLAGS ${MPI_C_LINK_FLAGS} CACHE STRING "MPI ${LANG} linker flags" ) + set(MPI_${LANG}_LIB_NAMES ${MPI_C_LIB_NAMES} CACHE STRING "MPI ${LANG} libraries to link against" ) + else() + _MPI_guess_settings(${LANG}) + endif() endif() endif() endif() _MPI_split_include_dirs(${LANG}) - if(NOT MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) - _MPI_assemble_include_dirs(${LANG}) - _MPI_assemble_libraries(${LANG}) - endif() + _MPI_assemble_include_dirs(${LANG}) + _MPI_assemble_libraries(${LANG}) + _MPI_adjust_compile_definitions(${LANG}) # We always create imported targets even if they're empty _MPI_create_imported_target(${LANG}) @@ -1217,7 +1267,9 @@ foreach(LANG IN ITEMS C CXX Fortran) set(MPI_${LANG}_COMPILE_DEFINITIONS "" CACHE STRING "MPI ${LANG} compilation definitions" ) set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "MPI ${LANG} additional include directories") set(MPI_${LANG}_LINK_FLAGS "" CACHE STRING "MPI ${LANG} linker flags" ) - set(MPI_${LANG}_LIB_NAMES "" CACHE STRING "MPI ${LANG} libraries to link against" ) + if(NOT MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) + set(MPI_${LANG}_LIB_NAMES "" CACHE STRING "MPI ${LANG} libraries to link against" ) + endif() mark_as_advanced(MPI_${LANG}_COMPILE_OPTIONS MPI_${LANG}_COMPILE_DEFINITIONS MPI_${LANG}_LINK_FLAGS MPI_${LANG}_LIB_NAMES MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS MPI_${LANG}_COMPILER) @@ -1337,7 +1389,7 @@ foreach(LANG IN ITEMS C CXX Fortran) set(MPI_${LANG}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT}) unset(MPI_${LANG}_REQUIRED_VARS) - if (MPI_${LANG}_WRAPPER_FOUND OR MPI_${LANG}_GUESS_FOUND) + if (NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") foreach(mpilibname IN LISTS MPI_${LANG}_LIB_NAMES) list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${mpilibname}_LIBRARY") endforeach() @@ -1448,6 +1500,7 @@ if (MPI_NUMLIBS GREATER 1) else() set(MPI_EXTRA_LIBRARY "MPI_EXTRA_LIBRARY-NOTFOUND") endif() +set(MPI_IGNORE_LEGACY_VARIABLES TRUE) #============================================================================= # unset these vars to cleanup namespace -- cgit v0.12 From c7bf2222f1cbe97b9fc1e29e21717632874b63b9 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 20 Dec 2017 13:42:41 -0600 Subject: Reworked MPI includes to be used as default with parallel --- CMakeLists.txt | 1 + examples/CMakeLists.txt | 4 ++-- src/CMakeLists.txt | 16 ++-------------- 3 files changed, 5 insertions(+), 16 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index da2382b..759530b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -542,6 +542,7 @@ if (HDF5_ENABLE_PARALLEL) # Used by Fortran + MPI CHECK_SYMBOL_EXISTS (MPI_Comm_c2f "${MPI_C_INCLUDE_DIRS}/mpi.h" H5_HAVE_MPI_MULTI_LANG_Comm) CHECK_SYMBOL_EXISTS (MPI_Info_c2f "${MPI_C_INCLUDE_DIRS}/mpi.h" H5_HAVE_MPI_MULTI_LANG_Info) + INCLUDE_DIRECTORIES (${MPI_C_INCLUDE_DIRS}) else () message (STATUS "Parallel libraries not found") endif () diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index c9dfed6..e310026 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -55,13 +55,13 @@ if (H5_HAVE_PARALLEL) add_executable (ph5example ${HDF5_EXAMPLES_SOURCE_DIR}/ph5example.c) TARGET_NAMING (ph5example STATIC) TARGET_C_PROPERTIES (ph5example STATIC " " " ") - target_link_libraries (ph5example ${HDF5_LIB_TARGET}) + target_link_libraries (ph5example ${HDF5_LIB_TARGET} ${MPI_C_LIBRARIES}) set_target_properties (ph5example PROPERTIES FOLDER examples) if (BUILD_SHARED_LIBS) add_executable (ph5example-shared ${HDF5_EXAMPLES_SOURCE_DIR}/ph5example.c) TARGET_NAMING (ph5example-shared SHARED) TARGET_C_PROPERTIES (ph5example-shared SHARED " " " ") - target_link_libraries (ph5example-shared ${HDF5_LIBSH_TARGET}) + target_link_libraries (ph5example-shared ${HDF5_LIBSH_TARGET} ${MPI_C_LIBRARIES}) set_target_properties (ph5example-shared PROPERTIES FOLDER examples) endif () endif () diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 616b53d..dc180c3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -613,9 +613,6 @@ set (H5_PRIVATE_HEADERS #----------------------------------------------------------------------------- add_executable (H5detect ${HDF5_SRC_DIR}/H5detect.c) TARGET_C_PROPERTIES (H5detect STATIC " " " ") -if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_include_directories (H5detect PUBLIC ${MPI_C_INCLUDE_DIRS}) -endif () if (MSVC OR MINGW) target_link_libraries (H5detect "ws2_32.lib") endif () @@ -630,9 +627,6 @@ add_custom_command ( add_executable (H5make_libsettings ${HDF5_SRC_DIR}/H5make_libsettings.c) TARGET_C_PROPERTIES (H5make_libsettings STATIC " " " ") -if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_include_directories (H5make_libsettings PUBLIC ${MPI_C_INCLUDE_DIRS}) -endif () if (MSVC OR MINGW) target_link_libraries (H5make_libsettings "ws2_32.lib") endif () @@ -702,10 +696,7 @@ add_library (${HDF5_LIB_TARGET} STATIC ${common_SRCS} ${H5_PUBLIC_HEADERS} ${H5_ TARGET_C_PROPERTIES (${HDF5_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_LIB_TARGET} PRIVATE ${LINK_LIBS} ${LINK_COMP_LIBS}) if (NOT WIN32) - target_link_libraries (${HDF5_LIB_TARGET} PUBLIC dl) -endif () -if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_include_directories (${HDF5_LIB_TARGET} PUBLIC ${MPI_C_INCLUDE_DIRS}) + target_link_libraries (${HDF5_LIB_TARGET} PUBLIC ${CMAKE_DL_LIBS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT ${HDF5_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_LIB_TARGET} ${HDF5_LIB_NAME} STATIC) @@ -728,10 +719,7 @@ if (BUILD_SHARED_LIBS) TARGET_C_PROPERTIES (${HDF5_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${LINK_LIBS} ${LINK_COMP_LIBS}) if (NOT WIN32) - target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC dl) - endif () - if (H5_HAVE_PARALLEL AND MPI_C_FOUND) - target_include_directories (${HDF5_LIBSH_TARGET} PUBLIC ${MPI_C_INCLUDE_DIRS}) + target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC ${CMAKE_DL_LIBS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_LIBSH_TARGET} ${HDF5_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) -- cgit v0.12 From 68c9914f9b5501cc8470775e689cb2c2c64fe912 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 20 Dec 2017 13:53:54 -0600 Subject: Skip test if 1.6 API enabled --- test/CMakeTests.cmake | 74 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 44 insertions(+), 30 deletions(-) diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index f7b12ee..4a71f43 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -505,21 +505,28 @@ add_test (NAME H5TEST-clear-error_test-objects WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST ) -add_test (NAME H5TEST-error_test COMMAND "${CMAKE_COMMAND}" - -D "TEST_PROGRAM=$" - -D "TEST_ARGS:STRING=" - -D "TEST_EXPECT=0" - -D "TEST_MASK_ERROR=true" - -D "TEST_OUTPUT=error_test.txt" - -D "TEST_REFERENCE=error_test_1" - -D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST" - -P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake" -) -set_tests_properties (H5TEST-error_test PROPERTIES - DEPENDS H5TEST-clear-error_test-objects - ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST;HDF5_PLUGIN_PRELOAD=::" - WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST -) +if (HDF5_USE_16_API_DEFAULT) + add_test ( + NAME H5TEST-error_test-SKIPPED + COMMAND ${CMAKE_COMMAND} -E echo "SKIP $" + ) +else () + add_test (NAME H5TEST-error_test COMMAND "${CMAKE_COMMAND}" + -D "TEST_PROGRAM=$" + -D "TEST_ARGS:STRING=" + -D "TEST_EXPECT=0" + -D "TEST_MASK_ERROR=true" + -D "TEST_OUTPUT=error_test.txt" + -D "TEST_REFERENCE=error_test_1" + -D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST" + -P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake" + ) + set_tests_properties (H5TEST-error_test PROPERTIES + DEPENDS H5TEST-clear-error_test-objects + ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST;HDF5_PLUGIN_PRELOAD=::" + WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST + ) +endif () #-- Adding test for links_env add_test (NAME H5TEST-clear-links_env-objects @@ -660,21 +667,28 @@ if (BUILD_SHARED_LIBS AND TEST_SHARED_PROGRAMS) WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared ) - add_test (NAME H5TEST-shared-error_test COMMAND "${CMAKE_COMMAND}" - -D "TEST_PROGRAM=$" - -D "TEST_ARGS:STRING=" - -D "TEST_EXPECT=0" - -D "TEST_MASK_ERROR=true" - -D "TEST_OUTPUT=error_test.txt" - -D "TEST_REFERENCE=error_test_1" - -D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST-shared" - -P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake" - ) - set_tests_properties (H5TEST-shared-error_test PROPERTIES - DEPENDS H5TEST-shared-clear-error_test-objects - ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared;HDF5_PLUGIN_PRELOAD=::" - WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared - ) + if (HDF5_USE_16_API_DEFAULT) + add_test ( + NAME H5TEST-shared-error_test-SKIPPED + COMMAND ${CMAKE_COMMAND} -E echo "SKIP $" + ) + else () + add_test (NAME H5TEST-shared-error_test COMMAND "${CMAKE_COMMAND}" + -D "TEST_PROGRAM=$" + -D "TEST_ARGS:STRING=" + -D "TEST_EXPECT=0" + -D "TEST_MASK_ERROR=true" + -D "TEST_OUTPUT=error_test.txt" + -D "TEST_REFERENCE=error_test_1" + -D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST-shared" + -P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake" + ) + set_tests_properties (H5TEST-shared-error_test PROPERTIES + DEPENDS H5TEST-shared-clear-error_test-objects + ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared;HDF5_PLUGIN_PRELOAD=::" + WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared + ) + endif () #-- Adding test for links_env add_test (NAME H5TEST-shared-clear-links_env-objects -- cgit v0.12 From ef2ac0784508083ac057586feb6ad9bbdd98e5bd Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 21 Dec 2017 14:41:48 -0600 Subject: Update link target commands --- CMakeLists.txt | 2 -- c++/examples/CMakeTests.cmake | 2 +- c++/src/CMakeLists.txt | 4 ++-- c++/test/CMakeTests.cmake | 2 +- examples/CMakeTests.cmake | 2 +- fortran/src/CMakeLists.txt | 2 ++ hl/c++/src/CMakeLists.txt | 12 ++---------- hl/fortran/src/CMakeLists.txt | 8 ++++---- hl/src/CMakeLists.txt | 4 ++-- test/CMakeLists.txt | 22 ++++++++++++---------- test/CMakeTests.cmake | 2 +- testpar/CMakeLists.txt | 10 ++++++++-- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 759530b..1322804 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -765,7 +765,6 @@ if (EXISTS "${HDF5_SOURCE_DIR}/fortran" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/for include (${HDF_RESOURCES_EXT_DIR}/HDFUseFortran.cmake) set (LINK_Fortran_LIBS ${LINK_LIBS}) - set (LINK_Fortran_SHARED_LIBS ${LINK_SHARED_LIBS}) if (HDF5_ENABLE_F2003) if (NOT FORTRAN_HAVE_ISO_C_BINDING) @@ -776,7 +775,6 @@ if (EXISTS "${HDF5_SOURCE_DIR}/fortran" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/for # Parallel IO usage requires MPI to be Linked and Included if (H5_HAVE_PARALLEL) set (LINK_Fortran_LIBS ${LINK_Fortran_LIBS} ${MPI_Fortran_LIBRARIES}) - set (LINK_Fortran_SHARED_LIBS ${LINK_Fortran_SHARED_LIBS} ${MPI_Fortran_LIBRARIES}) if (MPI_Fortran_LINK_FLAGS) set (CMAKE_Fortran_EXE_LINKER_FLAGS "${MPI_Fortran_LINK_FLAGS} ${CMAKE_EXE_LINKER_FLAGS}") endif () diff --git a/c++/examples/CMakeTests.cmake b/c++/examples/CMakeTests.cmake index 8043863..264a7e7 100644 --- a/c++/examples/CMakeTests.cmake +++ b/c++/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 579ef64..82ece33 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -82,7 +82,7 @@ set (CPP_HDRS add_library (${HDF5_CPP_LIB_TARGET} STATIC ${CPP_SRCS} ${CPP_HDRS}) TARGET_C_PROPERTIES (${HDF5_CPP_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (${HDF5_CPP_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_CPP_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_CPP_LIB_TARGET} ${HDF5_CPP_LIB_NAME} STATIC) set_target_properties (${HDF5_CPP_LIB_TARGET} PROPERTIES @@ -94,7 +94,7 @@ set (install_targets ${HDF5_CPP_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_CPP_LIBSH_TARGET} SHARED ${CPP_SRCS} ${CPP_HDRS}) TARGET_C_PROPERTIES (${HDF5_CPP_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_CPP_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${HDF5_CPP_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_CPP_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_CPP_LIBSH_TARGET} ${HDF5_CPP_LIB_NAME} SHARED ${HDF5_CXX_PACKAGE_SOVERSION}) set_target_properties (${HDF5_CPP_LIBSH_TARGET} PROPERTIES diff --git a/c++/test/CMakeTests.cmake b/c++/test/CMakeTests.cmake index 4f5ba94..11463a0 100644 --- a/c++/test/CMakeTests.cmake +++ b/c++/test/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# HDFTEST_COPY_FILE("${HDF5_CPP_TEST_SOURCE_DIR}/th5s.h5" "${PROJECT_BINARY_DIR}/th5s.h5" "cpp_testhdf5_files") add_custom_target(cpp_testhdf5_files ALL COMMENT "Copying files needed by cpp_testhdf5 tests" DEPENDS ${cpp_testhdf5_files_list}) diff --git a/examples/CMakeTests.cmake b/examples/CMakeTests.cmake index ed7561e..592f762 100644 --- a/examples/CMakeTests.cmake +++ b/examples/CMakeTests.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################## ############################################################################## diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 89fc1a5..b745f3e 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -293,6 +293,7 @@ set (SHARED_LINK_FLAGS " ") TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET}) target_link_libraries (${HDF5_F90_LIB_TARGET} PRIVATE ${LINK_Fortran_LIBS}) +target_include_directories (${HDF5_F90_LIB_TARGET} PUBLIC ${CMAKE_Fortran_MODULE_DIRECTORY}/static) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_include_directories (${HDF5_F90_LIB_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () @@ -320,6 +321,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) TARGET_FORTRAN_PROPERTIES (${HDF5_F90_LIBSH_TARGET} SHARED " " ${SHARED_LINK_FLAGS}) target_link_libraries (${HDF5_F90_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET}) target_link_libraries (${HDF5_F90_LIBSH_TARGET} PRIVATE ${LINK_Fortran_LIBS}) + target_include_directories (${HDF5_F90_LIBSH_TARGET} PUBLIC ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_include_directories (${HDF5_F90_LIBSH_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () diff --git a/hl/c++/src/CMakeLists.txt b/hl/c++/src/CMakeLists.txt index e872eb1..fca96fb 100644 --- a/hl/c++/src/CMakeLists.txt +++ b/hl/c++/src/CMakeLists.txt @@ -12,11 +12,7 @@ set (HDF5_HL_CPP_HDRS ${HDF5_HL_CPP_SRC_SOURCE_DIR}/H5PacketTable.h) add_library (${HDF5_HL_CPP_LIB_TARGET} STATIC ${HDF5_HL_CPP_SRCS}) TARGET_C_PROPERTIES (${HDF5_HL_CPP_LIB_TARGET} STATIC " " " ") -target_link_libraries ( - ${HDF5_HL_CPP_LIB_TARGET} - ${HDF5_HL_LIB_TARGET} - ${HDF5_LIB_TARGET} -) +target_link_libraries (${HDF5_HL_CPP_LIB_TARGET} PUBLIC ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_CPP_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIB_TARGET} ${HDF5_HL_CPP_LIB_NAME} STATIC) set_target_properties (${HDF5_HL_CPP_LIB_TARGET} PROPERTIES @@ -28,11 +24,7 @@ set (install_targets ${HDF5_HL_CPP_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_HL_CPP_LIBSH_TARGET} SHARED ${HDF5_HL_CPP_SRCS}) TARGET_C_PROPERTIES (${HDF5_HL_CPP_LIBSH_TARGET} SHARED " " " ") - target_link_libraries ( - ${HDF5_HL_CPP_LIBSH_TARGET} - ${HDF5_HL_LIBSH_TARGET} - ${HDF5_LIBSH_TARGET} - ) + target_link_libraries (${HDF5_HL_CPP_LIBSH_TARGET} PUBLIC ${HDF5_HL_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_CPP_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIBSH_TARGET} ${HDF5_HL_CPP_LIB_NAME} SHARED ${HDF5_HL_CXX_PACKAGE_SOVERSION}) set_target_properties (${HDF5_HL_CPP_LIBSH_TARGET} PROPERTIES diff --git a/hl/fortran/src/CMakeLists.txt b/hl/fortran/src/CMakeLists.txt index 3c8bc46..b3a0495 100644 --- a/hl/fortran/src/CMakeLists.txt +++ b/hl/fortran/src/CMakeLists.txt @@ -42,7 +42,7 @@ set (HDF5_HL_F90_HEADERS ${HDF5_HL_F90_SRC_SOURCE_DIR}/H5LTf90proto.h) add_library (${HDF5_HL_F90_C_LIB_TARGET} STATIC ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} ${HDF5_HL_LIB_TARGET}) +target_link_libraries (${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET} ${HDF5_HL_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_HL_F90_C_LIB_NAME} STATIC) set_target_properties (${HDF5_HL_F90_C_LIB_TARGET} PROPERTIES @@ -55,7 +55,7 @@ set (install_targets ${HDF5_HL_F90_C_LIB_TARGET}) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_HL_LIBSH_TARGET}) + target_link_libraries (${HDF5_HL_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_HL_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_HL_F90_C_LIB_NAME} SHARED ${HDF5_HL_F_PACKAGE_SOVERSION}) set_target_properties (${HDF5_HL_F90_C_LIBSH_TARGET} PROPERTIES @@ -81,7 +81,7 @@ set_source_files_properties (${HDF5_HL_F90_F_SRCS} PROPERTIES LANGUAGE Fortran) add_library (${HDF5_HL_F90_LIB_TARGET} STATIC ${HDF5_HL_F90_F_SRCS}) TARGET_FORTRAN_PROPERTIES (${HDF5_HL_F90_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_HL_F90_LIB_TARGET} ${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) +target_link_libraries (${HDF5_HL_F90_LIB_TARGET} PUBLIC ${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIB_TARGET} ${HDF5_HL_F90_LIB_NAME} STATIC) set_target_properties (${HDF5_HL_F90_LIB_TARGET} PROPERTIES @@ -104,7 +104,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set (SHARED_LINK_FLAGS "/DLL") endif () TARGET_FORTRAN_PROPERTIES (${HDF5_HL_F90_LIBSH_TARGET} SHARED " " ${SHARED_LINK_FLAGS}) - target_link_libraries (${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) + target_link_libraries (${HDF5_HL_F90_LIBSH_TARGET} PUBLIC ${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_HL_F90_LIB_NAME} SHARED ${HDF5_HL_F_PACKAGE_SOVERSION}) set_target_properties (${HDF5_HL_F90_LIBSH_TARGET} PROPERTIES diff --git a/hl/src/CMakeLists.txt b/hl/src/CMakeLists.txt index e15bc46..0a48f77 100644 --- a/hl/src/CMakeLists.txt +++ b/hl/src/CMakeLists.txt @@ -28,7 +28,7 @@ set (HL_HEADERS add_library (${HDF5_HL_LIB_TARGET} STATIC ${HL_SRCS} ${HL_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (${HDF5_HL_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_HL_LIB_TARGET} ${HDF5_HL_LIB_NAME} STATIC) set_target_properties (${HDF5_HL_LIB_TARGET} PROPERTIES FOLDER libraries/hl @@ -40,7 +40,7 @@ set (install_targets ${HDF5_HL_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_HL_LIBSH_TARGET} SHARED ${HL_SRCS} ${HL_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_HL_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${HDF5_HL_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_HL_LIBSH_TARGET} ${HDF5_HL_LIB_NAME} SHARED ${HDF5_HL_PACKAGE_SOVERSION}) set_target_properties (${HDF5_HL_LIBSH_TARGET} PROPERTIES FOLDER libraries/hl diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 4f990cf..afd0197 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -29,12 +29,13 @@ set (TEST_LIB_HEADERS add_library (${HDF5_TEST_LIB_TARGET} STATIC ${TEST_LIB_SRCS} ${TEST_LIB_HEADERS}) TARGET_C_PROPERTIES (${HDF5_TEST_LIB_TARGET} STATIC " " " ") if (MSVC) - target_link_libraries (${HDF5_TEST_LIB_TARGET} "ws2_32.lib") + target_link_libraries (${HDF5_TEST_LIB_TARGET} PRIVATE "ws2_32.lib") endif () if (MINGW) - target_link_libraries (${HDF5_TEST_LIB_TARGET} "wsock32.lib") + target_link_libraries (${HDF5_TEST_LIB_TARGET} PRIVATE "wsock32.lib") endif () -target_link_libraries (${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET} ${LINK_LIBS}) +target_link_libraries (${HDF5_TEST_LIB_TARGET} PUBLIC ${LINK_LIBS}) +target_link_libraries (${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_TEST_LIB_TARGET} ${HDF5_TEST_LIB_NAME} STATIC) set_target_properties (${HDF5_TEST_LIB_TARGET} PROPERTIES FOLDER libraries/test @@ -45,12 +46,13 @@ if (BUILD_SHARED_LIBS) add_library (${HDF5_TEST_LIBSH_TARGET} SHARED ${TEST_LIB_SRCS} ${TEST_LIB_HEADERS}) TARGET_C_PROPERTIES (${HDF5_TEST_LIBSH_TARGET} SHARED " " " ") if (MSVC) - target_link_libraries (${HDF5_TEST_LIBSH_TARGET} "ws2_32.lib") + target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PRIVATE "ws2_32.lib") endif () if (MINGW) - target_link_libraries (${HDF5_TEST_LIBSH_TARGET} "wsock32.lib") + target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PRIVATE "wsock32.lib") endif () - target_link_libraries (${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ${LINK_LIBS}) + target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PUBLIC ${LINK_LIBS}) + target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_TEST_LIBSH_TARGET} ${HDF5_TEST_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) set_target_properties (${HDF5_TEST_LIBSH_TARGET} PROPERTIES FOLDER libraries/test @@ -170,13 +172,13 @@ set (testhdf5_SRCS add_executable (testhdf5 ${testhdf5_SRCS}) TARGET_NAMING (testhdf5 STATIC) TARGET_C_PROPERTIES (testhdf5 STATIC " " " ") -target_link_libraries (testhdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (testhdf5 ${HDF5_TEST_LIB_TARGET}) set_target_properties (testhdf5 PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (testhdf5-shared ${testhdf5_SRCS}) TARGET_NAMING (testhdf5-shared SHARED) TARGET_C_PROPERTIES (testhdf5-shared SHARED " " " ") - target_link_libraries (testhdf5-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (testhdf5-shared PUBLIC ${HDF5_TEST_LIBSH_TARGET}) set_target_properties (testhdf5-shared PROPERTIES FOLDER test) endif () @@ -184,13 +186,13 @@ MACRO (ADD_H5_EXE file) add_executable (${file} ${HDF5_TEST_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") - target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) + target_link_libraries (${file} PUBLIC ${HDF5_TEST_LIB_TARGET}) set_target_properties (${file} PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (${file}-shared ${HDF5_TEST_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file}-shared SHARED) TARGET_C_PROPERTIES (${file}-shared SHARED " " " ") - target_link_libraries (${file}-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${file}-shared PUBLIC ${HDF5_TEST_LIBSH_TARGET}) set_target_properties (${file}-shared PROPERTIES FOLDER test) endif () ENDMACRO () diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index 4a71f43..786ac0a 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -1,4 +1,4 @@ -# + # Copyright by The HDF Group. # All rights reserved. # diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 0be5961..1043cd6 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -29,14 +29,20 @@ set (testphdf5_SRCS add_executable (testphdf5 ${testphdf5_SRCS}) TARGET_NAMING (testphdf5 STATIC) TARGET_C_PROPERTIES (testphdf5 STATIC " " " ") -target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) +if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) + target_link_libraries (testphdf5 PRIVATE ${MPI_C_LIBRARIES}) +endif () set_target_properties (testphdf5 PROPERTIES FOLDER test/par) MACRO (ADD_H5P_EXE file) add_executable (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") - target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) + target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) + if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) + target_link_libraries (${file} PRIVATE ${MPI_C_LIBRARIES}) + endif () set_target_properties (${file} PROPERTIES FOLDER test/par) ENDMACRO (ADD_H5P_EXE file) -- cgit v0.12 From d3acc019dc51b249dd939a5e429f32fa26ace5f1 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 31 Dec 2017 21:02:49 -0600 Subject: Snapshot version 1.8 release 21 (snap2) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index 2f71026..4eacab4 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap2 currently under development +HDF5 version 1.8.21-snap3 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index a44864f..7a4dede 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap2, currently under development" +PROJECT_NUMBER = "1.8.21-snap3, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 492a6b7..e875dbe 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap2") +set (CTEST_SOURCE_VERSEXT "-snap3") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index b236963..b430b7c 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap2], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap3], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f430106..478f9fc 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap2 currently under development +HDF5 version 1.8.21-snap3 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 9d54967..554d0a3 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap2" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap3" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap2" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap3" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 531f4d839d92f3991fed30b1587eddabb949a2b0 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 5 Jan 2018 14:30:23 -0600 Subject: Fix link_libs and static CRT fortran --- config/cmake_ext_mod/HDFUseFortran.cmake | 8 ++++++++ testpar/CMakeLists.txt | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/config/cmake_ext_mod/HDFUseFortran.cmake b/config/cmake_ext_mod/HDFUseFortran.cmake index 7bf4d81..5be2c49 100644 --- a/config/cmake_ext_mod/HDFUseFortran.cmake +++ b/config/cmake_ext_mod/HDFUseFortran.cmake @@ -15,6 +15,14 @@ #------------------------------------------------------------------------------- ENABLE_LANGUAGE (Fortran) +#------------------------------------------------------------------------------- +# Fix Fortran flags if we are compiling staticly on Windows using +# Windows_MT.cmake from config/cmake/UserMacros +#------------------------------------------------------------------------------- +if (BUILD_STATIC_CRT_LIBS) + TARGET_STATIC_CRT_FLAGS () +endif () + #----------------------------------------------------------------------------- # Detect name mangling convention used between Fortran and C #----------------------------------------------------------------------------- diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 1043cd6..629216f 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -29,7 +29,7 @@ set (testphdf5_SRCS add_executable (testphdf5 ${testphdf5_SRCS}) TARGET_NAMING (testphdf5 STATIC) TARGET_C_PROPERTIES (testphdf5 STATIC " " " ") -target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) +target_link_libraries (testphdf5 PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) target_link_libraries (testphdf5 PRIVATE ${MPI_C_LIBRARIES}) endif () @@ -39,7 +39,7 @@ MACRO (ADD_H5P_EXE file) add_executable (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") - target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) + target_link_libraries (${file} PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) target_link_libraries (${file} PRIVATE ${MPI_C_LIBRARIES}) endif () -- cgit v0.12 From c9e0dc95335b07724ae20b5f84c37f1350f3ec5c Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 7 Jan 2018 21:39:19 -0600 Subject: Snapshot version 1.8 release 21 (snap3) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index 4eacab4..2281894 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap3 currently under development +HDF5 version 1.8.21-snap4 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 7a4dede..f3a2180 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap3, currently under development" +PROJECT_NUMBER = "1.8.21-snap4, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index e875dbe..724d4f0 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap3") +set (CTEST_SOURCE_VERSEXT "-snap4") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index b430b7c..6284a02 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap3], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap4], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 478f9fc..ad22351 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap3 currently under development +HDF5 version 1.8.21-snap4 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 554d0a3..a6001d9 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap3" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap4" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap3" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap4" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From e994a90cdf664113b443aa93a83b8bed0159d2f3 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 10 Jan 2018 11:27:41 -0600 Subject: HDFFV-10385 fix CMAKE_BUILD_TYPE usage --- CMakeLists.txt | 11 +++--- config/cmake/HDFCompilerFlags.cmake | 6 ++-- config/cmake/hdf5-config.cmake.in | 14 ++++---- config/cmake/libhdf5.settings.cmake.in | 2 +- config/cmake_ext_mod/HDFMacros.cmake | 25 ++++++++++--- fortran/examples/h5_crtatt.f90 | 4 +++ fortran/src/CMakeLists.txt | 66 ++++++++++++++++++---------------- fortran/test/CMakeLists.txt | 11 +++++- hl/fortran/src/CMakeLists.txt | 15 +++----- release_docs/RELEASE.txt | 23 +++++++++++- test/CMakeTests.cmake | 2 +- 11 files changed, 114 insertions(+), 65 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1322804..e028b55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -210,7 +210,7 @@ if (NOT HDF5_INSTALL_DATA_DIR) set (HDF5_INSTALL_FWRK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) endif () set (HDF5_INSTALL_DATA_DIR share) - set (HDF5_INSTALL_CMAKE_DIR share/cmake) + set (HDF5_INSTALL_CMAKE_DIR share/cmake/hdf5) else () set (HDF5_INSTALL_DATA_DIR ".") set (HDF5_INSTALL_CMAKE_DIR cmake) @@ -328,6 +328,8 @@ include (${HDF_RESOURCES_EXT_DIR}/HDFMacros.cmake) include (${HDF_RESOURCES_EXT_DIR}/HDFLibMacros.cmake) include (${HDF_RESOURCES_DIR}/HDF5Macros.cmake) +SET_HDF5_BUILD_TYPE() + #----------------------------------------------------------------------------- # Setup output Directories #----------------------------------------------------------------------------- @@ -345,12 +347,12 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED) ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all fortran modules." ) if (WIN32) - set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}) + set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) set (CMAKE_PDB_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all pdb files." ) else () - set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) endif () else () # if we are externally configured, but the project uses old cmake scripts @@ -493,7 +495,7 @@ option (HDF5_BUILD_GENERATORS "Build Test Generators" OFF) #----------------------------------------------------------------------------- option (HDF5_ENABLE_TRACE "Enable API tracing capability" OFF) mark_as_advanced (HDF5_ENABLE_TRACE) -if (CMAKE_BUILD_TYPE MATCHES Debug) +if (HDF5_BUILD_TYPE MATCHES Debug) add_definitions (-DDEBUG) # Enable tracing of the API if (HDF5_ENABLE_TRACE) @@ -551,7 +553,6 @@ endif () # Parallel IO usage requires MPI to be Linked and Included if (H5_HAVE_PARALLEL) set (LINK_LIBS ${LINK_LIBS} ${MPI_C_LIBRARIES}) - set (LINK_SHARED_LIBS ${LINK_SHARED_LIBS} ${MPI_C_LIBRARIES}) if (MPI_C_LINK_FLAGS) set (CMAKE_EXE_LINKER_FLAGS "${MPI_C_LINK_FLAGS} ${CMAKE_EXE_LINKER_FLAGS}") endif () diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake index 5f71f33..eeb4b97 100644 --- a/config/cmake/HDFCompilerFlags.cmake +++ b/config/cmake/HDFCompilerFlags.cmake @@ -13,12 +13,12 @@ # Compiler specific flags : Shouldn't there be compiler tests for these #----------------------------------------------------------------------------- if (CMAKE_COMPILER_IS_GNUCC) - if (CMAKE_BUILD_TYPE MATCHES Debug) + if (HDF5_BUILD_TYPE MATCHES Debug) set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS} -std=c99") if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Og -ftrapv -fno-common") endif () - else (CMAKE_BUILD_TYPE MATCHES Debug) + else (HDF5_BUILD_TYPE MATCHES Debug) set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS} -std=c99") if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstdarg-opt") @@ -26,7 +26,7 @@ if (CMAKE_COMPILER_IS_GNUCC) endif () endif () if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_LOADED) - if (CMAKE_BUILD_TYPE MATCHES Debug) + if (HDF5_BUILD_TYPE MATCHES Debug) set (CMAKE_CXX_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_CXX_FLAGS}") if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Og -ftrapv -fno-common") diff --git a/config/cmake/hdf5-config.cmake.in b/config/cmake/hdf5-config.cmake.in index 14859c1..4bb5616 100644 --- a/config/cmake/hdf5-config.cmake.in +++ b/config/cmake/hdf5-config.cmake.in @@ -49,14 +49,18 @@ set (${HDF5_PACKAGE_NAME}_TOOLSET "@CMAKE_GENERATOR_TOOLSET@") # Dependencies #----------------------------------------------------------------------------- if (${HDF5_PACKAGE_NAME}_ENABLE_PARALLEL) - set (${HDF5_PACKAGE_NAME}_MPI_C_INCLUDE_PATH "@MPI_C_INCLUDE_PATH@") + set (${HDF5_PACKAGE_NAME}_MPI_C_INCLUDE_PATH "@MPI_C_INCLUDE_DIRS@") set (${HDF5_PACKAGE_NAME}_MPI_C_LIBRARIES "@MPI_C_LIBRARIES@") + if (${HDF5_PACKAGE_NAME}_BUILD_FORTRAN) + set (${HDF5_PACKAGE_NAME}_MPI_Fortran_INCLUDE_PATH "@MPI_Fortran_INCLUDE_DIRS@") + set (${HDF5_PACKAGE_NAME}_MPI_Fortran_LIBRARIES "@MPI_Fortran_LIBRARIES@") + endif () endif () #----------------------------------------------------------------------------- # Directories #----------------------------------------------------------------------------- -set (${HDF5_PACKAGE_NAME}_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@" "${${HDF5_PACKAGE_NAME}_MPI_C_INCLUDE_PATH}") +set (${HDF5_PACKAGE_NAME}_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@" "${${HDF5_PACKAGE_NAME}_MPI_C_INCLUDE_DIRS}") set (${HDF5_PACKAGE_NAME}_SHARE_DIR "@PACKAGE_SHARE_INSTALL_DIR@") set_and_check (${HDF5_PACKAGE_NAME}_BUILD_DIR "@PACKAGE_CURRENT_BUILD_DIR@") @@ -90,12 +94,6 @@ set (HDF5_VERSION_MINOR @HDF5_VERSION_MINOR@) # project which has already built hdf5 as a subproject #----------------------------------------------------------------------------- if (NOT TARGET "@HDF5_PACKAGE@") - if (${HDF5_PACKAGE_NAME}_ENABLE_Z_LIB_SUPPORT AND ${HDF5_PACKAGE_NAME}_PACKAGE_EXTLIBS AND NOT TARGET "zlib") - include (@PACKAGE_SHARE_INSTALL_DIR@/@ZLIB_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) - endif () - if (${HDF5_PACKAGE_NAME}_ENABLE_SZIP_SUPPORT AND ${HDF5_PACKAGE_NAME}_PACKAGE_EXTLIBS AND NOT TARGET "szip") - include (@PACKAGE_SHARE_INSTALL_DIR@/@SZIP_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) - endif () include (@PACKAGE_SHARE_INSTALL_DIR@/@HDF5_PACKAGE@@HDF_PACKAGE_EXT@-targets.cmake) endif () diff --git a/config/cmake/libhdf5.settings.cmake.in b/config/cmake/libhdf5.settings.cmake.in index 8ef67a5..e9b1a39 100644 --- a/config/cmake/libhdf5.settings.cmake.in +++ b/config/cmake/libhdf5.settings.cmake.in @@ -15,7 +15,7 @@ General Information: Compiling Options: ------------------ - Compilation Mode: @CMAKE_BUILD_TYPE@ + Compilation Mode: @HDF5_BUILD_TYPE@ C Compiler: @CMAKE_C_COMPILER@ CFLAGS: @CMAKE_C_FLAGS@ H5_CFLAGS: @H5_CFLAGS@ diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 192a5c8..4c2aeb9 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -9,6 +9,23 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # + +#------------------------------------------------------------------------------- +macro (SET_HDF5_BUILD_TYPE) + if(CMAKE_CONFIGURATION_TYPES) + set(HDF5_BUILD_TYPE ${CMAKE_CFG_INTDIR}) + set(HDF5_CFG_BUILD_TYPE \${CMAKE_INSTALL_CONFIG_NAME}) + else() + if(CMAKE_BUILD_TYPE) + set(HDF5_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + set(HDF5_CFG_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + else() + set(HDF5_BUILD_TYPE "Release") + set(HDF5_CFG_BUILD_TYPE "Release") + endif() + endif() +endmacro () + #------------------------------------------------------------------------------- macro (SET_GLOBAL_VARIABLE name value) set (${name} ${value} CACHE INTERNAL "Used to pass variables between directories" FORCE) @@ -145,7 +162,7 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) if (${importtype} MATCHES "IMPORT") set (importprefix "${CMAKE_STATIC_LIBRARY_PREFIX}") endif () - if (${CMAKE_BUILD_TYPE} MATCHES "Debug") + if (${HDF5_BUILD_TYPE} MATCHES "Debug") set (IMPORT_LIB_NAME ${LIB_DEBUG_NAME}) else () set (IMPORT_LIB_NAME ${LIB_RELEASE_NAME}) @@ -160,8 +177,8 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) ) else () set_target_properties (${libtarget} PROPERTIES - IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" - IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" + IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" + IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) endif () else () @@ -181,7 +198,7 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) else () if (WIN32 AND NOT MINGW) set_target_properties (${libtarget} PROPERTIES - IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" + IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) else () diff --git a/fortran/examples/h5_crtatt.f90 b/fortran/examples/h5_crtatt.f90 index 7e287c6..d3df380 100644 --- a/fortran/examples/h5_crtatt.f90 +++ b/fortran/examples/h5_crtatt.f90 @@ -84,6 +84,10 @@ PROGRAM H5_CRTATT ! CALL h5aclose_f(attr_id, error) ! + ! Close the attribute datatype. + ! + CALL h5tclose_f(atype_id, error) + ! ! Terminate access to the data space. ! CALL h5sclose_f(aspace_id, error) diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index b745f3e..e4df0f9 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -117,17 +117,10 @@ add_custom_command ( if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/shared") - if (WIN32) - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${CMAKE_BUILD_TYPE}) - else () - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) - endif () -endif () -if (WIN32) - set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${CMAKE_BUILD_TYPE}) -else () - set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static) + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) endif () +file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/static") +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) INCLUDE_DIRECTORIES (${HDF5_F90_BINARY_DIR} ${CMAKE_Fortran_MODULE_DIRECTORY}) @@ -138,19 +131,31 @@ add_executable (H5match_types ) set (CMD $) add_custom_command ( - OUTPUT ${HDF5_F90_BINARY_DIR}/H5f90i_gen.h - ${HDF5_F90_BINARY_DIR}/H5fortran_types.f90 + OUTPUT ${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h + ${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 COMMAND ${CMD} - WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR} + WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR}/static DEPENDS H5match_types ) -set_source_files_properties (${HDF5_F90_BINARY_DIR}/H5f90i_gen.h PROPERTIES GENERATED TRUE) -set_source_files_properties (${HDF5_F90_BINARY_DIR}/H5fortran_types.F90 PROPERTIES GENERATED TRUE) +set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h PROPERTIES GENERATED TRUE) +set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 PROPERTIES GENERATED TRUE) +if (BUILD_SHARED_LIBS) + set (CMDSH $) + add_custom_command ( + OUTPUT ${HDF5_F90_BINARY_DIR}/shared/H5f90i_gen.h + ${HDF5_F90_BINARY_DIR}/shared/H5fortran_types.f90 + COMMAND ${CMDSH} + WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR}/shared + DEPENDS H5match_types + ) + set_source_files_properties (${HDF5_F90_BINARY_DIR}/shared/H5f90i_gen.h PROPERTIES GENERATED TRUE) + set_source_files_properties (${HDF5_F90_BINARY_DIR}/shared/H5fortran_types.f90 PROPERTIES GENERATED TRUE) +endif () #----------------------------------------------------------------------------- # f90CStub lib #----------------------------------------------------------------------------- -set (f90CStub_C_SRCS +set (f90CStub_C_SOURCES # normal distribution ${HDF5_F90_SRC_SOURCE_DIR}/H5f90kit.c ${HDF5_F90_SRC_SOURCE_DIR}/H5_f.c @@ -168,21 +173,19 @@ set (f90CStub_C_SRCS ${HDF5_F90_SRC_SOURCE_DIR}/H5Tf.c ${HDF5_F90_SRC_SOURCE_DIR}/H5Zf.c ) - -if (H5_HAVE_PARALLEL) - set (f90CStub_C_SRCS - ${f90CStub_C_SRCS} - ${HDF5_F90_SRC_SOURCE_DIR}/H5FDmpiof.c - ) -endif () -set_source_files_properties (${f90CStub_C_SRCS} PROPERTIES LANGUAGE C) +set_source_files_properties (${f90CStub_C_SOURCES} PROPERTIES LANGUAGE C) set (f90CStub_C_HDRS # generated files - ${HDF5_F90_BINARY_DIR}/H5f90i_gen.h + ${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h +) +set (f90CStub_C_SHHDRS + # generated files + ${HDF5_F90_BINARY_DIR}/shared/H5f90i_gen.h ) -add_library (${HDF5_F90_C_LIB_TARGET} STATIC ${f90CStub_C_SRCS} ${f90CStub_C_HDRS}) +add_library (${HDF5_F90_C_LIB_TARGET} STATIC ${f90CStub_C_SOURCES} ${f90CStub_C_HDRS}) +target_include_directories(${HDF5_F90_C_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIB_TARGET}") @@ -194,8 +197,9 @@ set_target_properties (${HDF5_F90_C_LIB_TARGET} PROPERTIES ) set (install_targets ${HDF5_F90_C_LIB_TARGET}) -if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) - add_library (${HDF5_F90_C_LIBSH_TARGET} SHARED ${f90CStub_C_SRCS} ${f90CStub_C_HDRS}) +if (BUILD_SHARED_LIBS) + add_library (${HDF5_F90_C_LIBSH_TARGET} SHARED ${f90CStub_C_SOURCES} ${f90CStub_C_SHHDRS}) + target_include_directories(${HDF5_F90_C_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIBSH_TARGET}") @@ -237,7 +241,7 @@ endif () #----------------------------------------------------------------------------- set (f90_F_SRCS # generated files - ${HDF5_F90_BINARY_DIR}/H5fortran_types.f90 + ${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 # normal distribution ${HDF5_F90_SRC_SOURCE_DIR}/H5f90global.f90 @@ -351,8 +355,8 @@ install ( ${HDF5_F90_SRC_SOURCE_DIR}/H5f90.h ${HDF5_F90_SRC_SOURCE_DIR}/H5f90i.h ${HDF5_F90_SRC_SOURCE_DIR}/H5f90proto.h - ${HDF5_F90_BINARY_DIR}/H5f90i_gen.h - ${HDF5_F90_BINARY_DIR}/H5fortran_types.f90 + ${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h + ${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 DESTINATION ${HDF5_INSTALL_INCLUDE_DIR} COMPONENT diff --git a/fortran/test/CMakeLists.txt b/fortran/test/CMakeLists.txt index c362564..eefb62f 100644 --- a/fortran/test/CMakeLists.txt +++ b/fortran/test/CMakeLists.txt @@ -4,13 +4,21 @@ PROJECT (HDF5_FORTRAN_TESTS C CXX Fortran) #----------------------------------------------------------------------------- # Setup include Directories #----------------------------------------------------------------------------- -INCLUDE_DIRECTORIES (${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) +INCLUDE_DIRECTORIES (${CMAKE_Fortran_MODULE_DIRECTORY} ${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) + +if (BUILD_SHARED_LIBS) + file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/shared") + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) +endif () +file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/static") +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) #----------------------------------------------------------------------------- # Add Test Lib #----------------------------------------------------------------------------- add_library (${HDF5_F90_C_TEST_LIB_TARGET} STATIC t.c) set_source_files_properties (t.c PROPERTIES LANGUAGE C) +target_include_directories(${HDF5_F90_C_TEST_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_F90_C_TEST_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_C_TEST_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} @@ -24,6 +32,7 @@ set_target_properties (${HDF5_F90_C_TEST_LIB_TARGET} PROPERTIES ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_F90_C_TEST_LIBSH_TARGET} SHARED t.c) + target_include_directories(${HDF5_F90_C_TEST_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_F90_C_TEST_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_F90_C_TEST_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} diff --git a/hl/fortran/src/CMakeLists.txt b/hl/fortran/src/CMakeLists.txt index b3a0495..cd3559a 100644 --- a/hl/fortran/src/CMakeLists.txt +++ b/hl/fortran/src/CMakeLists.txt @@ -3,17 +3,10 @@ PROJECT(HDF5_HL_F90_SRC C CXX Fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) file (MAKE_DIRECTORY "${HDF5_HL_F90_SRC_BINARY_DIR}/shared") - if (WIN32) - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${CMAKE_BUILD_TYPE}) - else () - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) - endif () -endif () -if (WIN32) - set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${CMAKE_BUILD_TYPE}) -else () - set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static) + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) endif () +file (MAKE_DIRECTORY "${HDF5_HL_F90_SRC_BINARY_DIR}/static") +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) #----------------------------------------------------------------------------- # Setup include Directories @@ -41,6 +34,7 @@ set_source_files_properties (${HDF5_HL_F90_C_SRCS} PROPERTIES LANGUAGE C) set (HDF5_HL_F90_HEADERS ${HDF5_HL_F90_SRC_SOURCE_DIR}/H5LTf90proto.h) add_library (${HDF5_HL_F90_C_LIB_TARGET} STATIC ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) +target_include_directories(${HDF5_HL_F90_C_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET} ${HDF5_HL_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIB_TARGET}") @@ -54,6 +48,7 @@ set (install_targets ${HDF5_HL_F90_C_LIB_TARGET}) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) + target_include_directories(${HDF5_HL_F90_C_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_HL_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_HL_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIBSH_TARGET}") diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ad22351..f6f15a1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -57,6 +57,16 @@ New Features Configuration ------------- + - CMake + + Refactor use of CMAKE_BUILD_TYPE for new variable, which understands + the type of generator in use. + + Added new configuration macros to use new HDF5_BUILD_TYPE variable. This + variable is set correctly for the type of generator being used for the build. + + (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) + - None @@ -104,7 +114,18 @@ Bug Fixes since HDF5-1.8.20 Configuration ------------- - - None + - CMake + + Correct usuage of CMAKE_BUILD_TYPE variable. + + The use of the CMAKE_BUILD_TYPE is incorrect for multi-config + generators (Visual Studio and XCode) and is optional for single + config generators. Created a new macro to check + GLOBAL PROPERTY -> GENERATOR_IS_MULTI_CONFIG + Created two new HDF variable, HDF5_BUILD_TYPE and HDF5_CFG_BUILD_TYPE. + Defaults for these variables is "Release". + + (ADB - 2018/01/10, HDFFV-10385) Library diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index 786ac0a..6af1606 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -810,7 +810,7 @@ if (HDF5_TEST_VFD) macro (CHECK_VFD_TEST vfdtest vfdname resultcode) if ("${vfdtest}" STREQUAL "flush1" OR "${vfdtest}" STREQUAL "flush2") if ("${vfdname}" STREQUAL "multi" OR "${vfdname}" STREQUAL "split") - if (NOT BUILD_SHARED_LIBS AND NOT CMAKE_BUILD_TYPE MATCHES Debug) + if (NOT BUILD_SHARED_LIBS AND NOT HDF5_BUILD_TYPE MATCHES Debug) add_test (NAME VFD-${vfdname}-${vfdtest} COMMAND "${CMAKE_COMMAND}" -D "TEST_PROGRAM=$" -- cgit v0.12 From a88e5a95e0608471ff91c6e0d072d5e2014a80f2 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 10 Jan 2018 14:42:11 -0600 Subject: HDFFV-10385 only multi-config builders need a folder --- config/cmake_ext_mod/HDFMacros.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 4c2aeb9..96febde 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -16,12 +16,11 @@ macro (SET_HDF5_BUILD_TYPE) set(HDF5_BUILD_TYPE ${CMAKE_CFG_INTDIR}) set(HDF5_CFG_BUILD_TYPE \${CMAKE_INSTALL_CONFIG_NAME}) else() + set(HDF5_CFG_BUILD_TYPE ".") if(CMAKE_BUILD_TYPE) set(HDF5_BUILD_TYPE ${CMAKE_BUILD_TYPE}) - set(HDF5_CFG_BUILD_TYPE ${CMAKE_BUILD_TYPE}) else() set(HDF5_BUILD_TYPE "Release") - set(HDF5_CFG_BUILD_TYPE "Release") endif() endif() endmacro () -- cgit v0.12 From f5148618649e96f83578b0c415f69bb9016782df Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 11 Jan 2018 09:13:05 -0600 Subject: HDFFV-8745 merge h5diff attribute fix --- MANIFEST | 9 +- tools/h5copy/CMakeLists.txt | 7 +- tools/h5diff/CMakeLists.txt | 7 +- tools/h5diff/CMakeTests.cmake | 13 +- tools/h5diff/h5diff_common.c | 3 + tools/h5diff/h5diffgentest.c | 6714 +++++++++++--------- tools/h5diff/testfiles/h5diff_8625.txt | 10 + tools/h5diff/testfiles/h5diff_8639.txt | 72 + tools/h5diff/testfiles/h5diff_attr1.h5 | Bin 25616 -> 27480 bytes tools/h5diff/testfiles/h5diff_attr2.h5 | Bin 25616 -> 27480 bytes tools/h5diff/testfiles/h5diff_attr3.h5 | Bin 0 -> 27480 bytes tools/h5diff/testfiles/h5diff_tmp1.txt | 5 - tools/h5diff/testfiles/h5diff_tmp2.txt | 13 - .../h5diff/testfiles/tmpSingleSiteBethe.output.h5 | Bin 124440 -> 0 bytes .../testfiles/tmpSingleSiteBethe.reference.h5 | Bin 119464 -> 0 bytes tools/h5diff/testfiles/tmptest.he5 | Bin 4740424 -> 0 bytes tools/h5diff/testfiles/tmptest2.he5 | Bin 4734280 -> 0 bytes tools/h5diff/testh5diff.sh.in | 17 +- tools/h5dump/CMakeLists.txt | 7 +- tools/h5import/CMakeLists.txt | 6 +- tools/h5jam/CMakeLists.txt | 8 +- tools/h5jam/h5jam.c | 6 +- tools/h5ls/CMakeLists.txt | 7 +- tools/h5repack/CMakeLists.txt | 7 +- tools/h5repack/h5repack_copy.c | 2 +- tools/h5repack/h5repack_filters.c | 4 +- tools/h5stat/CMakeLists.txt | 7 +- tools/lib/CMakeLists.txt | 10 +- tools/lib/h5diff_attr.c | 22 - tools/lib/h5diff_dset.c | 50 +- tools/lib/io_timer.c | 4 - tools/lib/ph5diff.h | 4 - tools/misc/CMakeLists.txt | 8 +- tools/misc/h5mkgrp.c | 2 + 34 files changed, 3820 insertions(+), 3204 deletions(-) create mode 100644 tools/h5diff/testfiles/h5diff_8625.txt create mode 100644 tools/h5diff/testfiles/h5diff_8639.txt create mode 100644 tools/h5diff/testfiles/h5diff_attr3.h5 delete mode 100644 tools/h5diff/testfiles/h5diff_tmp1.txt delete mode 100644 tools/h5diff/testfiles/h5diff_tmp2.txt delete mode 100644 tools/h5diff/testfiles/tmpSingleSiteBethe.output.h5 delete mode 100644 tools/h5diff/testfiles/tmpSingleSiteBethe.reference.h5 delete mode 100644 tools/h5diff/testfiles/tmptest.he5 delete mode 100644 tools/h5diff/testfiles/tmptest2.he5 diff --git a/MANIFEST b/MANIFEST index 83a8f31..ff188d1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1991,6 +1991,7 @@ ./tools/h5diff/testfiles/h5diff_attr1.h5 ./tools/h5diff/testfiles/h5diff_attr2.h5 +./tools/h5diff/testfiles/h5diff_attr3.h5 ./tools/h5diff/testfiles/h5diff_attr_v_level1.h5 ./tools/h5diff/testfiles/h5diff_attr_v_level2.h5 ./tools/h5diff/testfiles/h5diff_basic1.h5 @@ -2032,12 +2033,8 @@ ./tools/h5diff/testfiles/compounds_array_vlen2.h5 ./tools/h5diff/testfiles/non_comparables1.h5 ./tools/h5diff/testfiles/non_comparables2.h5 -./tools/h5diff/testfiles/tmptest2.he5 -./tools/h5diff/testfiles/tmpSingleSiteBethe.reference.h5 -./tools/h5diff/testfiles/h5diff_tmp1.txt -./tools/h5diff/testfiles/tmptest.he5 -./tools/h5diff/testfiles/h5diff_tmp2.txt -./tools/h5diff/testfiles/tmpSingleSiteBethe.output.h5 +./tools/h5diff/testfiles/h5diff_8625.txt +./tools/h5diff/testfiles/h5diff_8639.txt ./tools/h5diff/testfiles/tudfilter.h5 ./tools/h5diff/testfiles/tudfilter2.h5 ./tools/h5diff/testfiles/h5diff_ud.txt diff --git a/tools/h5copy/CMakeLists.txt b/tools/h5copy/CMakeLists.txt index 406ca12..ea7bb48 100644 --- a/tools/h5copy/CMakeLists.txt +++ b/tools/h5copy/CMakeLists.txt @@ -53,10 +53,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5copy-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5copy ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/h5diff/CMakeLists.txt b/tools/h5diff/CMakeLists.txt index d26c742..1ab7e40 100644 --- a/tools/h5diff/CMakeLists.txt +++ b/tools/h5diff/CMakeLists.txt @@ -105,10 +105,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5diff-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5diff ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/h5diff/CMakeTests.cmake b/tools/h5diff/CMakeTests.cmake index 14fc534..14fbee7 100644 --- a/tools/h5diff/CMakeTests.cmake +++ b/tools/h5diff/CMakeTests.cmake @@ -26,6 +26,7 @@ ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_dtypes.h5 ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_attr1.h5 ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_attr2.h5 + ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_attr3.h5 ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_dset1.h5 ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_dset2.h5 ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_dset3.h5 @@ -263,6 +264,8 @@ ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_800.txt ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_801.txt ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_90.txt + ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_8625.txt + ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_8639.txt ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_ud.txt ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_udfail.txt ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/testfiles/h5diff_vlstr.txt @@ -978,6 +981,10 @@ h5diff_800.out.err h5diff_801.out h5diff_801.out.err + h5diff_8625.out + h5diff_8625.out.err + h5diff_8639.out + h5diff_8639.out.err h5diff_90.out h5diff_90.out.err h5diff_vlstr.out @@ -1551,7 +1558,11 @@ ADD_H5_TEST (h5diff_487 1 -v --exclude-path "/group1/dset" h5diff_exclude3-1.h5 # ############################################################################## # # diff various multiple vlen and fixed strings in a compound type dataset # ############################################################################## -ADD_H5_TEST (h5diff_530 0 -v ${COMP_VL_STRS_FILE} ${COMP_VL_STRS_FILE} /group /group_copy) +ADD_H5_TEST (h5diff_530 0 -v ${COMP_VL_STRS_FILE} ${COMP_VL_STRS_FILE} /group /group_copy) +# test to verify HDFFV-8625 +ADD_H5_TEST (h5diff_8625 0 -v --enable-error-stack ${COMP_VL_STRS_FILE} ${COMP_VL_STRS_FILE} /group/Compound_dset1 /group_copy/Compound_dset3) +# test to verify HDFFV-8639 +ADD_H5_TEST (h5diff_8639 0 -v h5diff_attr3.h5 h5diff_attr2.h5 /g1) ADD_H5_TEST (h5diff_vlstr 0 -v tvlstr.h5 tvlstr2.h5) # ############################################################################## diff --git a/tools/h5diff/h5diff_common.c b/tools/h5diff/h5diff_common.c index 67977e9..f8e02be 100644 --- a/tools/h5diff/h5diff_common.c +++ b/tools/h5diff/h5diff_common.c @@ -115,14 +115,17 @@ void parse_command_line(int argc, default: usage(); h5diff_exit(EXIT_FAILURE); + break; case 'h': usage(); h5diff_exit(EXIT_SUCCESS); + break; case 'V': print_version(h5tools_getprogname()); h5diff_exit(EXIT_SUCCESS); + break; case 'v': opts->m_verbose = 1; diff --git a/tools/h5diff/h5diffgentest.c b/tools/h5diff/h5diffgentest.c index 7eeb6d3..2955d2c 100644 --- a/tools/h5diff/h5diffgentest.c +++ b/tools/h5diff/h5diffgentest.c @@ -1,15 +1,15 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -* Copyright by The HDF Group. * -* Copyright by the Board of Trustees of the University of Illinois. * -* All rights reserved. * -* * -* This file is part of HDF5. The full HDF5 copyright notice, including * -* terms governing use, modification, and redistribution, is contained in * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * * the COPYING file, which can be found at the root of the source code * * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * -* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include #include @@ -29,16 +29,16 @@ size_t H5TOOLS_MALLOCSIZE = (128 * 1024 * 1024); /*------------------------------------------------------------------------- -* Program: h5diffgentest -* -* Purpose: generate files for h5diff testing -* -* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu -* -* Date: November 12, 2003 -* -*------------------------------------------------------------------------- -*/ + * Program: h5diffgentest + * + * Purpose: generate files for h5diff testing + * + * Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu + * + * Date: November 12, 2003 + * + *------------------------------------------------------------------------- + */ #define FILE1 "h5diff_basic1.h5" #define FILE2 "h5diff_basic2.h5" @@ -46,6 +46,7 @@ size_t H5TOOLS_MALLOCSIZE = (128 * 1024 * 1024); #define FILE4 "h5diff_dtypes.h5" #define FILE5 "h5diff_attr1.h5" #define FILE6 "h5diff_attr2.h5" +#define FILE6a "h5diff_attr3.h5" #define FILE7 "h5diff_dset1.h5" #define FILE8 "h5diff_dset2.h5" #define FILE8A "h5diff_dset3.h5" @@ -108,37 +109,36 @@ size_t H5TOOLS_MALLOCSIZE = (128 * 1024 * 1024); #define SPACE1_DIM2 0 /* A UD link traversal function. Shouldn't actually be called. */ -static hid_t UD_traverse(H5_ATTR_UNUSED const char * link_name, H5_ATTR_UNUSED hid_t cur_group, - H5_ATTR_UNUSED const void * udata, H5_ATTR_UNUSED size_t udata_size, H5_ATTR_UNUSED hid_t lapl_id) -{ +static hid_t UD_traverse(H5_ATTR_UNUSED const char * link_name, + H5_ATTR_UNUSED hid_t cur_group, H5_ATTR_UNUSED const void * udata, + H5_ATTR_UNUSED size_t udata_size, H5_ATTR_UNUSED hid_t lapl_id) { return -1; } -const H5L_class_t UD_link_class[1] = {{ - H5L_LINK_CLASS_T_VERS, /* H5L_class_t version */ - (H5L_type_t)MY_LINKCLASS, /* Link type id number */ - "UD link class", /* name for debugging */ - NULL, /* Creation callback */ - NULL, /* Move/rename callback */ - NULL, /* Copy callback */ - UD_traverse, /* The actual traversal function */ - NULL, /* Deletion callback */ - NULL /* Query callback */ -}}; - +const H5L_class_t UD_link_class[1] = { { + H5L_LINK_CLASS_T_VERS, /* H5L_class_t version */ + (H5L_type_t) MY_LINKCLASS, /* Link type id number */ + "UD link class", /* name for debugging */ + NULL, /* Creation callback */ + NULL, /* Move/rename callback */ + NULL, /* Copy callback */ + UD_traverse, /* The actual traversal function */ + NULL, /* Deletion callback */ + NULL /* Query callback */ +} }; /*------------------------------------------------------------------------- -* prototypes -*------------------------------------------------------------------------- -*/ + * prototypes + *------------------------------------------------------------------------- + */ /* tests called in main() */ static int test_basic(const char *fname1, const char *fname2, const char *fname3); static int test_types(const char *fname); static int test_datatypes(const char *fname); -static int test_attributes(const char *fname,int make_diffs); -static int test_datasets(const char *fname,int make_diffs); -static int test_special_datasets(const char *fname,int make_diffs); -static int test_hyperslab(const char *fname,int make_diffs); +static int test_attributes(const char *fname, int make_diffs); +static int test_datasets(const char *fname, int make_diffs); +static int test_special_datasets(const char *fname, int make_diffs); +static int test_hyperslab(const char *fname, int make_diffs); static int test_link_name(const char *fname1); static int test_soft_links(const char *fname1); static int test_linked_softlinks(const char *fname1); @@ -153,53 +153,59 @@ static int test_exclude_obj3(const char *fname1, const char *fname2); static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int is_file_new); static int test_attributes_verbose_level(const char *fname1, const char *fname2); static int test_enums(const char *fname); -static void test_comps_array (const char *fname, const char *dset, const char *attr,int diff, int is_file_new); -static void test_comps_vlen (const char *fname, const char *dset,const char *attr, int diff, int is_file_new); -static void test_comps_array_vlen (const char *fname, const char *dset, const char *attr, int diff, int is_file_new); -static void test_comps_vlen_arry (const char *fname, const char *dset,const char *attr, int diff, int is_file_new); -static void test_data_nocomparables (const char *fname, int diff); -static void test_objs_nocomparables (const char *fname1, const char *fname2); -static void test_objs_strings (const char *fname, const char *fname2); +static void test_comps_array(const char *fname, const char *dset, + const char *attr, int diff, int is_file_new); +static void test_comps_vlen(const char *fname, const char *dset, + const char *attr, int diff, int is_file_new); +static void test_comps_array_vlen(const char *fname, const char *dset, + const char *attr, int diff, int is_file_new); +static void test_comps_vlen_arry(const char *fname, const char *dset, + const char *attr, int diff, int is_file_new); +static void test_data_nocomparables(const char *fname, int diff); +static void test_objs_nocomparables(const char *fname1, const char *fname2); +static void test_objs_strings(const char *fname, const char *fname2); /* called by test_attributes() and test_datasets() */ -static void write_attr_in(hid_t loc_id,const char* dset_name,hid_t fid,int make_diffs); -static void write_dset_in(hid_t loc_id,const char* dset_name,hid_t fid,int make_diffs); -static void gen_datareg(hid_t fid,int make_diffs); +static void write_attr_strings(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs); +static void write_attr_in(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs); +static void write_dset_in(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs); +static void gen_datareg(hid_t fid, int make_diffs); /* utilities */ -static int write_attr(hid_t loc_id,int rank,hsize_t *dims,const char *name,hid_t tid,void *buf); -static int write_dset(hid_t loc_id,int rank,hsize_t *dims,const char *name,hid_t tid,void *buf); - +static int write_attr(hid_t loc_id, int rank, hsize_t *dims, const char *name, hid_t tid, void *buf); +static int write_dset(hid_t loc_id, int rank, hsize_t *dims, const char *name, hid_t tid, void *buf); /*------------------------------------------------------------------------- -* Function: main -* -* Purpose: main program -* -*------------------------------------------------------------------------- -*/ + * Function: main + * + * Purpose: main program + * + *------------------------------------------------------------------------- + */ int main(void) { test_basic(FILE1, FILE2, FILE11); - test_types (FILE3); + test_types(FILE3); test_datatypes(FILE4); /* generate 2 files, the second call creates a similar file with differences */ - test_attributes(FILE5,0); - test_attributes(FILE6,1); + test_attributes(FILE5, 0); + test_attributes(FILE6, 1); + /* generate file with string datatypes swapped */ + test_attributes(FILE6a, 2); /* test attributes with verbose level */ test_attributes_verbose_level(ATTR_VERBOSE_LEVEL_FILE1, ATTR_VERBOSE_LEVEL_FILE2); /* generate 2 files, the second call creates a similar file with differences */ - test_datasets(FILE7,0); - test_datasets(FILE8,1); - test_datasets(FILE8A,2); + test_datasets(FILE7, 0); + test_datasets(FILE8, 1); + test_datasets(FILE8A, 2); /* generate 2 files, the second call creates a similar file with differences */ - test_hyperslab(FILE9,0); - test_hyperslab(FILE10,1); + test_hyperslab(FILE9, 0); + test_hyperslab(FILE10, 1); test_link_name(FILE12); @@ -212,8 +218,8 @@ int main(void) test_ext2soft_links(FILE17, FILE18); /* generate 2 files, the second call creates a similar file with differences */ - test_special_datasets(FILE19,0); - test_special_datasets(FILE20,1); + test_special_datasets(FILE19, 0); + test_special_datasets(FILE20, 1); test_dangle_links(DANGLE_LINK_FILE1, DANGLE_LINK_FILE2); @@ -229,34 +235,34 @@ int main(void) test_comp_vlen_strings(COMP_VL_STRS_FILE, "group_copy", 0); /* diff when invalid enum values are present. - * This will probably grow to involve more extensive testing of - * enums so it has been given its own test file and test (apart - * from the basic type testing). - */ + * This will probably grow to involve more extensive testing of + * enums so it has been given its own test file and test (apart + * from the basic type testing). + */ test_enums(ENUM_INVALID_VALUES); /* ------------------------------------------------- - * Create test files with dataset and attribute with container types - * (array, vlen) with multiple nested compound types. - */ + * Create test files with dataset and attribute with container types + * (array, vlen) with multiple nested compound types. + */ /* file1 */ - test_comps_array(COMPS_COMPLEX1,"dset1", "attr1", 0, 1); - test_comps_vlen(COMPS_COMPLEX1,"dset2", "attr2", 0, 0); - test_comps_array_vlen(COMPS_COMPLEX1,"dset3", "attr3", 0, 0); - test_comps_vlen_arry(COMPS_COMPLEX1,"dset4", "attr4", 0, 0); + test_comps_array(COMPS_COMPLEX1, "dset1", "attr1", 0, 1); + test_comps_vlen(COMPS_COMPLEX1, "dset2", "attr2", 0, 0); + test_comps_array_vlen(COMPS_COMPLEX1, "dset3", "attr3", 0, 0); + test_comps_vlen_arry(COMPS_COMPLEX1, "dset4", "attr4", 0, 0); /* file2 */ - test_comps_array(COMPS_COMPLEX2,"dset1", "attr1", 5, 1); - test_comps_vlen(COMPS_COMPLEX2,"dset2", "attr2",5, 0); - test_comps_array_vlen(COMPS_COMPLEX2,"dset3", "attr3", 5, 0); - test_comps_vlen_arry(COMPS_COMPLEX2,"dset4", "attr4", 5, 0); + test_comps_array(COMPS_COMPLEX2, "dset1", "attr1", 5, 1); + test_comps_vlen(COMPS_COMPLEX2, "dset2", "attr2", 5, 0); + test_comps_array_vlen(COMPS_COMPLEX2, "dset3", "attr3", 5, 0); + test_comps_vlen_arry(COMPS_COMPLEX2, "dset4", "attr4", 5, 0); /*------------------------------------------------- - * Create test files with non-comparable dataset and attributes with - * comparable datasets and attributes. All the comparables should display - * differences. - */ - test_data_nocomparables(NON_COMPARBLES1,0); - test_data_nocomparables(NON_COMPARBLES2,5); + * Create test files with non-comparable dataset and attributes with + * comparable datasets and attributes. All the comparables should display + * differences. + */ + test_data_nocomparables(NON_COMPARBLES1, 0); + test_data_nocomparables(NON_COMPARBLES2, 5); /* common objects (same name) with different object types. HDFFV-7644 */ test_objs_nocomparables(NON_COMPARBLES1, NON_COMPARBLES2); @@ -268,28 +274,28 @@ int main(void) } /*------------------------------------------------------------------------- -* Function: test_basic -* -* Purpose: Create basic test files, first two contains different data, the -* third one is just an empty file. -* -*------------------------------------------------------------------------- -*/ + * Function: test_basic + * + * Purpose: Create basic test files, first two contains different data, the + * third one is just an empty file. + * + *------------------------------------------------------------------------- + */ static int test_basic(const char *fname1, const char *fname2, const char *fname3) { - hid_t fid1, fid2; - hid_t gid1, gid2, gid3; + hid_t fid1 = -1, fid2 = -1; + hid_t gid1 = -1, gid2 = -1, gid3 = -1; hsize_t dims1[1] = { 6 }; - hsize_t dims2[2] = { 3,2 }; + hsize_t dims2[2] = { 3, 2 }; /* create the empty file */ - if ((fid1=H5Fcreate(fname3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0){ + if ((fid1 = H5Fcreate(fname3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) { fprintf(stderr, "empty file (%s) creation failed.\n", fname3); goto out; } - if (H5Fclose(fid1) < 0){ + if (H5Fclose(fid1) < 0) { fprintf(stderr, "empty file (%s) close failed.\n", fname3); goto out; } @@ -299,9 +305,9 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ - if (( fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0 ) + if ((fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto out; - if (( fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0 ) + if ((fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto out; /*------------------------------------------------------------------------- @@ -324,16 +330,20 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) */ { - double data1[3][2] = {{ 1.0F, 1.0F}, { 1.00F, 1.000F}, { 0.0F, 0.0F}}; - double data2[3][2] = {{ 0.0F, 1.1F}, { 1.01F, 1.001F}, { 0.0F, 1.0F}}; - double data3[3][2] = {{100.0F, 100.0F}, {100.00F, 100.000F}, {100.0F, 100.0F}}; - double data4[3][2] = {{105.0F, 120.0F}, {160.00F, 95.000F}, { 80.0F, 40.0F}}; + double data1[3][2] = + { { 1.0F, 1.0F }, { 1.00F, 1.000F }, { 0.0F, 0.0F } }; + double data2[3][2] = + { { 0.0F, 1.1F }, { 1.01F, 1.001F }, { 0.0F, 1.0F } }; + double data3[3][2] = { { 100.0F, 100.0F }, { 100.00F, 100.000F }, { + 100.0F, 100.0F } }; + double data4[3][2] = { { 105.0F, 120.0F }, { 160.00F, 95.000F }, { + 80.0F, 40.0F } }; - write_dset(gid1,2,dims2,"dset1",H5T_NATIVE_DOUBLE,data1); - write_dset(gid2,2,dims2,"dset2",H5T_NATIVE_DOUBLE,data2); - write_dset(gid1,2,dims2,"dset3",H5T_NATIVE_DOUBLE,data3); - write_dset(gid2,2,dims2,"dset4",H5T_NATIVE_DOUBLE,data4); - write_dset(gid2,2,dims2,"dset1",H5T_NATIVE_DOUBLE,data2); + write_dset(gid1, 2, dims2, "dset1", H5T_NATIVE_DOUBLE, data1); + write_dset(gid2, 2, dims2, "dset2", H5T_NATIVE_DOUBLE, data2); + write_dset(gid1, 2, dims2, "dset3", H5T_NATIVE_DOUBLE, data3); + write_dset(gid2, 2, dims2, "dset4", H5T_NATIVE_DOUBLE, data4); + write_dset(gid2, 2, dims2, "dset1", H5T_NATIVE_DOUBLE, data2); } /*------------------------------------------------------------------------- @@ -342,11 +352,11 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ { - int data5[3][2] = {{100,100},{100,0},{0,100}}; - int data6[3][2] = {{120,80}, {0,100},{0,50}}; + int data5[3][2] = { { 100, 100 }, { 100, 0 }, { 0, 100 } }; + int data6[3][2] = { { 120, 80 }, { 0, 100 }, { 0, 50 } }; - write_dset(gid1,2,dims2,"dset5",H5T_NATIVE_INT,data5); - write_dset(gid1,2,dims2,"dset6",H5T_NATIVE_INT,data6); + write_dset(gid1, 2, dims2, "dset5", H5T_NATIVE_INT, data5); + write_dset(gid1, 2, dims2, "dset6", H5T_NATIVE_INT, data6); } @@ -356,11 +366,12 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ { - unsigned long long data7[3][2] = {{100,100},{100,0},{0,100}}; - unsigned long long data8[3][2] = {{120,80}, {0,100},{0,50}}; + unsigned long long data7[3][2] = + { { 100, 100 }, { 100, 0 }, { 0, 100 } }; + unsigned long long data8[3][2] = { { 120, 80 }, { 0, 100 }, { 0, 50 } }; - write_dset(gid1,2,dims2,"dset7",H5T_NATIVE_ULLONG,data7); - write_dset(gid1,2,dims2,"dset8",H5T_NATIVE_ULLONG,data8); + write_dset(gid1, 2, dims2, "dset7", H5T_NATIVE_ULLONG, data7); + write_dset(gid1, 2, dims2, "dset8", H5T_NATIVE_ULLONG, data8); } @@ -378,45 +389,47 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ { - double data9[3][2] = {{100.0F, 100.0F}, {100.0F, 0.0F}, {0.0F, 100.0F}}; - double data10[3][2] ={{120.0F, 80.0F}, { 0.0F, 100.0F}, {0.0F, 50.0F}}; + double data9[3][2] = { { 100.0F, 100.0F }, { 100.0F, 0.0F }, { 0.0F, + 100.0F } }; + double data10[3][2] = { { 120.0F, 80.0F }, { 0.0F, 100.0F }, { 0.0F, + 50.0F } }; - write_dset(gid1,2,dims2,"dset9",H5T_NATIVE_DOUBLE,data9); - write_dset(gid1,2,dims2,"dset10",H5T_NATIVE_DOUBLE,data10); + write_dset(gid1, 2, dims2, "dset9", H5T_NATIVE_DOUBLE, data9); + write_dset(gid1, 2, dims2, "dset10", H5T_NATIVE_DOUBLE, data10); } - /*------------------------------------------------------------------------- * test floating point comparison *------------------------------------------------------------------------- */ { /* epsilon = 0.0000001 = 1e-7 - * system epsilon for float : FLT_EPSILON = 1.19209E-07 - */ - float data11[3][2] ={{0.000000f,0.0000001f},{0.0000001f, 0.00000022f},{0.0000001f,0.0000001f}}; - float data12[3][2] ={{0.000000f,0.0000002f},{0.0000003f,0.0000001f},{0.000000f,0.0000001f}}; + * system epsilon for float : FLT_EPSILON = 1.19209E-07 + */ + float data11[3][2] = { { 0.000000f, 0.0000001f }, { 0.0000001f, + 0.00000022f }, { 0.0000001f, 0.0000001f } }; + float data12[3][2] = { { 0.000000f, 0.0000002f }, { 0.0000003f, + 0.0000001f }, { 0.000000f, 0.0000001f } }; /* epsilon = 0.0000000000000001 = 1e-16 - * system epsilon for double : DBL_EPSILON = 2.22045E-16 - */ - double data13[3][2] ={ - {H5_DOUBLE(0.0000000000000000), H5_DOUBLE(0.0000000000000001)}, - {H5_DOUBLE(0.0000000000000001), H5_DOUBLE(0.0000000000000000)}, - {H5_DOUBLE(0.00000000000000033), H5_DOUBLE(0.0000000000000001)}}; - double data14[3][2] ={ - {H5_DOUBLE(0.0000000000000000), H5_DOUBLE(0.0000000000000004)}, - {H5_DOUBLE(0.0000000000000002), H5_DOUBLE(0.0000000000000001)}, - {H5_DOUBLE(0.0000000000000001), H5_DOUBLE(0.00000000000000000)}}; + * system epsilon for double : DBL_EPSILON = 2.22045E-16 + */ + double data13[3][2] = { { H5_DOUBLE(0.0000000000000000), H5_DOUBLE( + 0.0000000000000001) }, { H5_DOUBLE(0.0000000000000001), + H5_DOUBLE(0.0000000000000000) }, { H5_DOUBLE( + 0.00000000000000033), H5_DOUBLE(0.0000000000000001) } }; + double data14[3][2] = { { H5_DOUBLE(0.0000000000000000), H5_DOUBLE( + 0.0000000000000004) }, { H5_DOUBLE(0.0000000000000002), + H5_DOUBLE(0.0000000000000001) }, { H5_DOUBLE( + 0.0000000000000001), H5_DOUBLE(0.00000000000000000) } }; - write_dset(gid1,2,dims2,"fp1",H5T_NATIVE_FLOAT,data11); - write_dset(gid1,2,dims2,"fp2",H5T_NATIVE_FLOAT,data12); - write_dset(gid1,2,dims2,"d1",H5T_NATIVE_DOUBLE,data13); - write_dset(gid1,2,dims2,"d2",H5T_NATIVE_DOUBLE,data14); + write_dset(gid1, 2, dims2, "fp1", H5T_NATIVE_FLOAT, data11); + write_dset(gid1, 2, dims2, "fp2", H5T_NATIVE_FLOAT, data12); + write_dset(gid1, 2, dims2, "d1", H5T_NATIVE_DOUBLE, data13); + write_dset(gid1, 2, dims2, "d2", H5T_NATIVE_DOUBLE, data14); } - #if H5_SIZEOF_LONG_DOUBLE !=0 { @@ -425,15 +438,13 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ - long double data15[3][2] ={{1.0L,1.0L},{1.0L,1.0L},{1.0L,1.0L}}; + long double data15[3][2] = { {1.0L,1.0L}, {1.0L,1.0L}, {1.0L,1.0L}}; write_dset(gid1,2,dims2,"ld",H5T_NATIVE_LDOUBLE,data15); } #endif - - /*------------------------------------------------------------------------- * NaNs in H5T_NATIVE_FLOAT *------------------------------------------------------------------------- @@ -443,22 +454,22 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) float data15[6]; float data16[6]; - data15[0] = (float)HDsqrt(-1.0F); + data15[0] = (float) HDsqrt(-1.0F); data15[1] = 1.0F; - data15[2] = (float)HDsqrt(-1.0F); + data15[2] = (float) HDsqrt(-1.0F); data15[3] = 1.0F; data15[4] = 1.0F; data15[5] = 1.0F; - data16[0] = (float)HDsqrt(-1.0F); - data16[1] = (float)HDsqrt(-1.0F); + data16[0] = (float) HDsqrt(-1.0F); + data16[1] = (float) HDsqrt(-1.0F); data16[2] = 1.0F; data16[3] = 1.0F; data16[4] = 1.0F; data16[5] = 1.0F; - write_dset(gid1,1,dims1,"fp15",H5T_NATIVE_FLOAT,data15); - write_dset(gid1,1,dims1,"fp16",H5T_NATIVE_FLOAT,data16); + write_dset(gid1, 1, dims1, "fp15", H5T_NATIVE_FLOAT, data15); + write_dset(gid1, 1, dims1, "fp16", H5T_NATIVE_FLOAT, data16); } @@ -485,29 +496,29 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) data18[4] = 1.0F; data18[5] = 1.0F; - write_dset(gid1,1,dims1,"fp17",H5T_NATIVE_DOUBLE,data17); - write_dset(gid1,1,dims1,"fp18",H5T_NATIVE_DOUBLE,data18); - write_dset(gid1,1,dims1,"fp18_COPY",H5T_NATIVE_DOUBLE,data18); + write_dset(gid1, 1, dims1, "fp17", H5T_NATIVE_DOUBLE, data17); + write_dset(gid1, 1, dims1, "fp18", H5T_NATIVE_DOUBLE, data18); + write_dset(gid1, 1, dims1, "fp18_COPY", H5T_NATIVE_DOUBLE, data18); } /*------------------------------------------------------------------------ - * INFINITY values - *------------------------------------------------------------------------ - */ + * INFINITY values + *------------------------------------------------------------------------ + */ { - float data19[6]; + float data19[6]; double data20[6]; - data19[0] = data19[1] = data19[2] = (float)HDlog(0.0F); - data19[3] = data19[4] = data19[5] = (float)-HDlog(0.0F); + data19[0] = data19[1] = data19[2] = (float) HDlog(0.0F); + data19[3] = data19[4] = data19[5] = (float) -HDlog(0.0F); data20[0] = data20[1] = data20[2] = HDlog(0.0F); data20[3] = data20[4] = data20[5] = -HDlog(0.0F); - write_dset(gid1,1,dims1,"fp19",H5T_NATIVE_FLOAT,data19); - write_dset(gid1,1,dims1,"fp19_COPY",H5T_NATIVE_FLOAT,data19); - write_dset(gid1,1,dims1,"fp20",H5T_NATIVE_DOUBLE,data20); - write_dset(gid1,1,dims1,"fp20_COPY",H5T_NATIVE_DOUBLE,data20); + write_dset(gid1, 1, dims1, "fp19", H5T_NATIVE_FLOAT, data19); + write_dset(gid1, 1, dims1, "fp19_COPY", H5T_NATIVE_FLOAT, data19); + write_dset(gid1, 1, dims1, "fp20", H5T_NATIVE_DOUBLE, data20); + write_dset(gid1, 1, dims1, "fp20_COPY", H5T_NATIVE_DOUBLE, data20); } /*------------------------------------------------------------------------- @@ -515,105 +526,97 @@ int test_basic(const char *fname1, const char *fname2, const char *fname3) *------------------------------------------------------------------------- */ { - typedef struct cmp1_t - { + typedef struct cmp1_t { double d; - float f; + float f; } cmp1_t; - cmp1_t buf1[2]; - cmp1_t buf2[2]; - hsize_t dims[1] = {2}; - size_t type_size; - hid_t tid; + cmp1_t buf1[2]; + cmp1_t buf2[2]; + hsize_t dims[1] = { 2 }; + size_t type_size; + hid_t tid; buf1[0].d = HDsqrt(-1.0F); - buf1[0].f = (float)HDsqrt(-1.0F); + buf1[0].f = (float) HDsqrt(-1.0F); buf2[0].d = HDsqrt(-1.0F); - buf2[0].f = (float)HDsqrt(-1.0F); + buf2[0].f = (float) HDsqrt(-1.0F); buf1[1].d = HDsqrt(-1.0F); - buf1[1].f = (float)HDsqrt(-1.0F); + buf1[1].f = (float) HDsqrt(-1.0F); buf2[1].d = 0.0F; buf2[1].f = 0.0F; - type_size = sizeof( cmp1_t ); - tid = H5Tcreate (H5T_COMPOUND, type_size ); - H5Tinsert(tid, "d", HOFFSET( cmp1_t, d ), H5T_NATIVE_DOUBLE ); - H5Tinsert(tid, "f", HOFFSET( cmp1_t, f ), H5T_NATIVE_FLOAT ); - write_dset(gid1,1,dims,"dset11",tid,buf1); - write_dset(gid1,1,dims,"dset12",tid,buf2); + type_size = sizeof(cmp1_t); + tid = H5Tcreate(H5T_COMPOUND, type_size); + H5Tinsert(tid, "d", HOFFSET(cmp1_t, d), H5T_NATIVE_DOUBLE); + H5Tinsert(tid, "f", HOFFSET(cmp1_t, f), H5T_NATIVE_FLOAT); + write_dset(gid1, 1, dims, "dset11", tid, buf1); + write_dset(gid1, 1, dims, "dset12", tid, buf2); H5Tclose(tid); - } /* not comparable objects */ { - typedef struct cmp1_t - { + typedef struct cmp1_t { double d; - int i; + int i; } cmp1_t; - typedef struct cmp2_t - { - int i; + typedef struct cmp2_t { + int i; double d; } cmp2_t; - typedef struct cmp3_t - { + typedef struct cmp3_t { int i; } cmp3_t; - double data2[6] = {0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F}; - int data3[6] = {0,0,0,0,0,0}; - int data4[3][2] = {{0,0},{0,0},{0,0}}; - int data5[2][2] = {{0,0},{0,0}}; - unsigned int data6[3][2] = {{0,0},{0,0},{0,0}}; - cmp1_t data7[1] = {{1.0f, 2}}; - cmp2_t data8[1] = {{1, 2.0f}}; - hsize_t dims3[2] = {2, 2}; - hsize_t dims4[1] = {1}; - size_t type_size; - hid_t tid; - - - - write_dset(gid3,1,dims1,"dset1",H5T_NATIVE_DOUBLE,NULL); - write_dset(gid3,1,dims1,"dset2",H5T_NATIVE_DOUBLE,data2); - write_dset(gid3,1,dims1,"dset3",H5T_NATIVE_INT,data3); - write_dset(gid3,2,dims2,"dset4",H5T_NATIVE_INT,data4); - write_dset(gid3,2,dims3,"dset5",H5T_NATIVE_INT,data5); - write_dset(gid3,2,dims2,"dset6",H5T_NATIVE_UINT,data6); + double data2[6] = { 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F }; + int data3[6] = { 0, 0, 0, 0, 0, 0 }; + int data4[3][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 } }; + int data5[2][2] = { { 0, 0 }, { 0, 0 } }; + unsigned int data6[3][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 } }; + cmp1_t data7[1] = { { 1.0f, 2 } }; + cmp2_t data8[1] = { { 1, 2.0f } }; + hsize_t dims3[2] = { 2, 2 }; + hsize_t dims4[1] = { 1 }; + size_t type_size; + hid_t tid; + + write_dset(gid3, 1, dims1, "dset1", H5T_NATIVE_DOUBLE, NULL); + write_dset(gid3, 1, dims1, "dset2", H5T_NATIVE_DOUBLE, data2); + write_dset(gid3, 1, dims1, "dset3", H5T_NATIVE_INT, data3); + write_dset(gid3, 2, dims2, "dset4", H5T_NATIVE_INT, data4); + write_dset(gid3, 2, dims3, "dset5", H5T_NATIVE_INT, data5); + write_dset(gid3, 2, dims2, "dset6", H5T_NATIVE_UINT, data6); /* case of compound with different type members */ - type_size = sizeof( cmp1_t ); - tid = H5Tcreate (H5T_COMPOUND, type_size ); - H5Tinsert(tid, "d", HOFFSET( cmp1_t, d ), H5T_NATIVE_DOUBLE ); - H5Tinsert(tid, "i", HOFFSET( cmp1_t, i ), H5T_NATIVE_INT ); - write_dset(gid3,1,dims4,"dset7",tid,data7); + type_size = sizeof(cmp1_t); + tid = H5Tcreate(H5T_COMPOUND, type_size); + H5Tinsert(tid, "d", HOFFSET(cmp1_t, d), H5T_NATIVE_DOUBLE); + H5Tinsert(tid, "i", HOFFSET(cmp1_t, i), H5T_NATIVE_INT); + write_dset(gid3, 1, dims4, "dset7", tid, data7); H5Tclose(tid); - type_size = sizeof( cmp2_t ); - tid = H5Tcreate (H5T_COMPOUND, type_size ); - H5Tinsert(tid, "i", HOFFSET( cmp2_t, i ), H5T_NATIVE_INT ); - H5Tinsert(tid, "d", HOFFSET( cmp2_t, d ), H5T_NATIVE_DOUBLE ); - write_dset(gid3,1,dims4,"dset8",tid,data8); + type_size = sizeof(cmp2_t); + tid = H5Tcreate(H5T_COMPOUND, type_size); + H5Tinsert(tid, "i", HOFFSET(cmp2_t, i), H5T_NATIVE_INT); + H5Tinsert(tid, "d", HOFFSET(cmp2_t, d), H5T_NATIVE_DOUBLE); + write_dset(gid3, 1, dims4, "dset8", tid, data8); H5Tclose(tid); /* case of compound with different number of members */ - type_size = sizeof( cmp3_t ); - tid = H5Tcreate (H5T_COMPOUND, type_size ); - H5Tinsert(tid, "i", HOFFSET( cmp2_t, i ), H5T_NATIVE_INT ); - write_dset(gid3,1,dims4,"dset9",tid,NULL); + type_size = sizeof(cmp3_t); + tid = H5Tcreate(H5T_COMPOUND, type_size); + H5Tinsert(tid, "i", HOFFSET(cmp2_t, i), H5T_NATIVE_INT); + write_dset(gid3, 1, dims4, "dset9", tid, NULL); H5Tclose(tid); } - /*------------------------------------------------------------------------- * close *------------------------------------------------------------------------- @@ -630,46 +633,43 @@ out: return FAIL; } - /*------------------------------------------------------------------------- -* Function: test_types -* -* Purpose: Compare different HDF5 object & link types: -* H5G_DATASET, H5G_TYPE, H5G_GROUP, H5G_LINK, H5G_UDLINK -* -*------------------------------------------------------------------------- -*/ + * Function: test_types + * + * Purpose: Compare different HDF5 object & link types: + * H5G_DATASET, H5G_TYPE, H5G_GROUP, H5G_LINK, H5G_UDLINK + * + *------------------------------------------------------------------------- + */ static int test_types(const char *fname) { - hid_t fid1; - hid_t gid1; - hid_t gid2; - hid_t tid1; - hid_t tid2; - herr_t status; - hsize_t dims[1]={1}; - typedef struct s1_t - { - int a; - float b; + hid_t fid1 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hid_t tid1 = -1; + hid_t tid2 = -1; + herr_t status; + hsize_t dims[1] = { 1 }; + typedef struct s1_t { + int a; + float b; } s1_t; - typedef struct s2_t - { - int a; + typedef struct s2_t { + int a; } s2_t; /*------------------------------------------------------------------------- * Create one file *------------------------------------------------------------------------- */ - fid1 = H5Fcreate (fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + fid1 = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); /*------------------------------------------------------------------------- * H5G_DATASET *------------------------------------------------------------------------- */ - write_dset(fid1,1,dims,"dset",H5T_NATIVE_INT,0); + write_dset(fid1, 1, dims, "dset", H5T_NATIVE_INT, 0); /*------------------------------------------------------------------------- * H5G_GROUP @@ -711,7 +711,7 @@ int test_types(const char *fname) */ H5Lcreate_external("filename", "objname", fid1, "ext_link", H5P_DEFAULT, H5P_DEFAULT); H5Lregister(UD_link_class); - H5Lcreate_ud(fid1, "ud_link", (H5L_type_t)MY_LINKCLASS, NULL, (size_t)0, H5P_DEFAULT, H5P_DEFAULT); + H5Lcreate_ud(fid1, "ud_link", (H5L_type_t) MY_LINKCLASS, NULL, (size_t) 0, H5P_DEFAULT, H5P_DEFAULT); /*------------------------------------------------------------------------- * Close @@ -721,195 +721,192 @@ int test_types(const char *fname) return status; } - /* -# ############################################################################## -# # not comparable types -# ############################################################################## + # ############################################################################## + # # not comparable types + # ############################################################################## -# 2.0 -TOOLTEST h5diff_20.txt file3.h5 file3.h5 -v dset g1 + # 2.0 + TOOLTEST h5diff_20.txt file3.h5 file3.h5 -v dset g1 -# 2.1 -TOOLTEST h5diff_21.txt file3.h5 file3.h5 -v dset l1 + # 2.1 + TOOLTEST h5diff_21.txt file3.h5 file3.h5 -v dset l1 -# 2.2 -TOOLTEST h5diff_22.txt file3.h5 file3.h5 -v dset t1 + # 2.2 + TOOLTEST h5diff_22.txt file3.h5 file3.h5 -v dset t1 -# ############################################################################## -# # compare groups, types, links (no differences and differences) -# ############################################################################## + # ############################################################################## + # # compare groups, types, links (no differences and differences) + # ############################################################################## -# 2.3 -TOOLTEST h5diff_23.txt file3.h5 file3.h5 -v g1 g1 + # 2.3 + TOOLTEST h5diff_23.txt file3.h5 file3.h5 -v g1 g1 -# 2.4 -TOOLTEST h5diff_24.txt file3.h5 file3.h5 -v t1 t1 + # 2.4 + TOOLTEST h5diff_24.txt file3.h5 file3.h5 -v t1 t1 -# 2.5 -TOOLTEST h5diff_25.txt file3.h5 file3.h5 -v l1 l1 + # 2.5 + TOOLTEST h5diff_25.txt file3.h5 file3.h5 -v l1 l1 -# 2.6 -TOOLTEST h5diff_26.txt file3.h5 file3.h5 -v g1 g2 + # 2.6 + TOOLTEST h5diff_26.txt file3.h5 file3.h5 -v g1 g2 -# 2.7 -TOOLTEST h5diff_27.txt file3.h5 file3.h5 -v t1 t2 + # 2.7 + TOOLTEST h5diff_27.txt file3.h5 file3.h5 -v t1 t2 -# 2.8 -TOOLTEST h5diff_28.txt file3.h5 file3.h5 -v l1 l2 -*/ + # 2.8 + TOOLTEST h5diff_28.txt file3.h5 file3.h5 -v l1 l2 + */ /*------------------------------------------------------------------------- -* Function: test_datatypes -* -* Purpose: test dataset datatypes -* -*------------------------------------------------------------------------- -*/ + * Function: test_datatypes + * + * Purpose: test dataset datatypes + * + *------------------------------------------------------------------------- + */ static int test_datatypes(const char *fname) { - - hid_t fid1; - hid_t dset; - hsize_t dims[2]={3,2}; - herr_t status; - char buf1a[3][2] = {{1,1},{1,1},{1,1}}; - char buf1b[3][2] = {{1,1},{3,4},{5,6}}; - short buf2a[3][2] = {{1,1},{1,1},{1,1}}; - short buf2b[3][2] = {{1,1},{3,4},{5,6}}; - int buf3a[3][2] = {{1,1},{1,1},{1,1}}; - int buf3b[3][2] = {{1,1},{3,4},{5,6}}; - long buf4a[3][2] = {{1,1},{1,1},{1,1}}; - long buf4b[3][2] = {{1,1},{3,4},{5,6}}; - float buf5a[3][2] = {{1.0F, 1.0F}, {1.0F, 1.0F}, {1.0F, 1.0F}}; - float buf5b[3][2] = {{1.0F, 1.0F}, {3.0F, 4.0F}, {5.0F, 6.0F}}; - double buf6a[3][2] = {{1.0F, 1.0F}, {1.0F, 1.0F}, {1.0F, 1.0F}}; - double buf6b[3][2] = {{1.0F, 1.0F}, {3.0F, 4.0F}, {5.0F, 6.0F}}; + hid_t fid1 = -1; + hid_t dset = -1; + hsize_t dims[2] = { 3, 2 }; + herr_t status; + char buf1a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + char buf1b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; + short buf2a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + short buf2b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; + int buf3a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + int buf3b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; + long buf4a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + long buf4b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; + float buf5a[3][2] = { { 1.0F, 1.0F }, { 1.0F, 1.0F }, { 1.0F, 1.0F } }; + float buf5b[3][2] = { { 1.0F, 1.0F }, { 3.0F, 4.0F }, { 5.0F, 6.0F } }; + double buf6a[3][2] = { { 1.0F, 1.0F }, { 1.0F, 1.0F }, { 1.0F, 1.0F } }; + double buf6b[3][2] = { { 1.0F, 1.0F }, { 3.0F, 4.0F }, { 5.0F, 6.0F } }; /*unsigned/signed test signed char -128 to 127 unsigned char 0 to 255 */ - char buf7a[3][2] = {{-1,-128},{-1,-1},{-1,-1}}; - unsigned char buf7b[3][2] = {{1,128},{1,1},{1,1}}; + char buf7a[3][2] = { { -1, -128 }, { -1, -1 }, { -1, -1 } }; + unsigned char buf7b[3][2] = { { 1, 128 }, { 1, 1 }, { 1, 1 } }; /* long long test */ - long long buf8a[3][2] = {{1,1},{1,1},{1,1}}; - long long buf8b[3][2] = {{1,1},{3,4},{5,6}}; - unsigned long long buf9a[3][2] = {{1,1},{1,1},{1,1}}; - unsigned long long buf9b[3][2] = {{1,1},{3,4},{5,6}}; + long long buf8a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + long long buf8b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; + unsigned long long buf9a[3][2] = { { 1, 1 }, { 1, 1 }, { 1, 1 } }; + unsigned long long buf9b[3][2] = { { 1, 1 }, { 3, 4 }, { 5, 6 } }; - unsigned int buf10a[3][2] = {{UIMAX,1},{1,1},{1,1}}; - unsigned int buf10b[3][2] = {{UIMAX-1,1},{3,4},{5,6}}; - - unsigned short buf11a[3][2] = {{204,205},{2,3},{1,1}}; - unsigned int buf11b[3][2] = {{204,205},{2,3},{1,1}}; + unsigned int buf10a[3][2] = { { UIMAX, 1 }, { 1, 1 }, { 1, 1 } }; + unsigned int buf10b[3][2] = { { UIMAX - 1, 1 }, { 3, 4 }, { 5, 6 } }; + unsigned short buf11a[3][2] = { { 204, 205 }, { 2, 3 }, { 1, 1 } }; + unsigned int buf11b[3][2] = { { 204, 205 }, { 2, 3 }, { 1, 1 } }; /*------------------------------------------------------------------------- * Create a file *------------------------------------------------------------------------- */ - fid1 = H5Fcreate (fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + fid1 = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); /*------------------------------------------------------------------------- * Check for different storage order. Give a warning if they are different *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset0a",H5T_STD_I16LE,buf2a); - write_dset(fid1,2,dims,"dset0b",H5T_STD_I32LE,buf3b); + write_dset(fid1, 2, dims, "dset0a", H5T_STD_I16LE, buf2a); + write_dset(fid1, 2, dims, "dset0b", H5T_STD_I32LE, buf3b); /*------------------------------------------------------------------------- * H5T_NATIVE_CHAR *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset1a",H5T_NATIVE_CHAR,buf1a); - write_dset(fid1,2,dims,"dset1b",H5T_NATIVE_CHAR,buf1b); + write_dset(fid1, 2, dims, "dset1a", H5T_NATIVE_CHAR, buf1a); + write_dset(fid1, 2, dims, "dset1b", H5T_NATIVE_CHAR, buf1b); /*------------------------------------------------------------------------- * H5T_NATIVE_SHORT *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset2a",H5T_NATIVE_SHORT,buf2a); - write_dset(fid1,2,dims,"dset2b",H5T_NATIVE_SHORT,buf2b); + write_dset(fid1, 2, dims, "dset2a", H5T_NATIVE_SHORT, buf2a); + write_dset(fid1, 2, dims, "dset2b", H5T_NATIVE_SHORT, buf2b); /*------------------------------------------------------------------------- * H5T_NATIVE_INT *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset3a",H5T_NATIVE_INT,buf3a); - write_dset(fid1,2,dims,"dset3b",H5T_NATIVE_INT,buf3b); + write_dset(fid1, 2, dims, "dset3a", H5T_NATIVE_INT, buf3a); + write_dset(fid1, 2, dims, "dset3b", H5T_NATIVE_INT, buf3b); /*------------------------------------------------------------------------- * H5T_NATIVE_LONG *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset4a",H5T_NATIVE_LONG,buf4a); - write_dset(fid1,2,dims,"dset4b",H5T_NATIVE_LONG,buf4b); + write_dset(fid1, 2, dims, "dset4a", H5T_NATIVE_LONG, buf4a); + write_dset(fid1, 2, dims, "dset4b", H5T_NATIVE_LONG, buf4b); /*------------------------------------------------------------------------- * H5T_NATIVE_FLOAT *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset5a",H5T_NATIVE_FLOAT,buf5a); - write_dset(fid1,2,dims,"dset5b",H5T_NATIVE_FLOAT,buf5b); + write_dset(fid1, 2, dims, "dset5a", H5T_NATIVE_FLOAT, buf5a); + write_dset(fid1, 2, dims, "dset5b", H5T_NATIVE_FLOAT, buf5b); /*------------------------------------------------------------------------- * H5T_NATIVE_DOUBLE *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset6a",H5T_NATIVE_DOUBLE,buf6a); - write_dset(fid1,2,dims,"dset6b",H5T_NATIVE_DOUBLE,buf6b); + write_dset(fid1, 2, dims, "dset6a", H5T_NATIVE_DOUBLE, buf6a); + write_dset(fid1, 2, dims, "dset6b", H5T_NATIVE_DOUBLE, buf6b); /*------------------------------------------------------------------------- * H5T_NATIVE_CHAR and H5T_NATIVE_UCHAR *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset7a",H5T_NATIVE_CHAR,buf7a); - write_dset(fid1,2,dims,"dset7b",H5T_NATIVE_UCHAR,buf7b); + write_dset(fid1, 2, dims, "dset7a", H5T_NATIVE_CHAR, buf7a); + write_dset(fid1, 2, dims, "dset7b", H5T_NATIVE_UCHAR, buf7b); /*------------------------------------------------------------------------- * H5T_NATIVE_LLONG *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset8a",H5T_NATIVE_LLONG,buf8a); - write_dset(fid1,2,dims,"dset8b",H5T_NATIVE_LLONG,buf8b); + write_dset(fid1, 2, dims, "dset8a", H5T_NATIVE_LLONG, buf8a); + write_dset(fid1, 2, dims, "dset8b", H5T_NATIVE_LLONG, buf8b); /*------------------------------------------------------------------------- * H5T_NATIVE_ULLONG *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset9a",H5T_NATIVE_ULLONG,buf9a); - write_dset(fid1,2,dims,"dset9b",H5T_NATIVE_ULLONG,buf9b); + write_dset(fid1, 2, dims, "dset9a", H5T_NATIVE_ULLONG, buf9a); + write_dset(fid1, 2, dims, "dset9b", H5T_NATIVE_ULLONG, buf9b); /*------------------------------------------------------------------------- * H5T_NATIVE_INT *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset10a",H5T_NATIVE_UINT,buf10a); - write_dset(fid1,2,dims,"dset10b",H5T_NATIVE_UINT,buf10b); + write_dset(fid1, 2, dims, "dset10a", H5T_NATIVE_UINT, buf10a); + write_dset(fid1, 2, dims, "dset10b", H5T_NATIVE_UINT, buf10b); /*------------------------------------------------------------------------- * Same type class, different size *------------------------------------------------------------------------- */ - write_dset(fid1,2,dims,"dset11a",H5T_STD_U16LE,buf11a); - dset=H5Dopen2 (fid1, "dset11a", H5P_DEFAULT); - write_attr(dset,2,dims,"attr",H5T_STD_U16LE,buf11a); - H5Dclose (dset); + write_dset(fid1, 2, dims, "dset11a", H5T_STD_U16LE, buf11a); + dset = H5Dopen2(fid1, "dset11a", H5P_DEFAULT); + write_attr(dset, 2, dims, "attr", H5T_STD_U16LE, buf11a); + H5Dclose(dset); - write_dset(fid1,2,dims,"dset11b",H5T_STD_U32LE,buf11b); - dset=H5Dopen2 (fid1, "dset11b", H5P_DEFAULT); - write_attr(dset,2,dims,"attr",H5T_STD_U32LE,buf11b); - H5Dclose (dset); + write_dset(fid1, 2, dims, "dset11b", H5T_STD_U32LE, buf11b); + dset = H5Dopen2(fid1, "dset11b", H5P_DEFAULT); + write_attr(dset, 2, dims, "attr", H5T_STD_U32LE, buf11b); + H5Dclose(dset); /*------------------------------------------------------------------------- * Close @@ -920,59 +917,58 @@ int test_datatypes(const char *fname) } /* -# ############################################################################## -# # Dataset datatypes -# ############################################################################## + # ############################################################################## + # # Dataset datatypes + # ############################################################################## -# 5.0 -TOOLTEST h5diff_50.txt file4.h5 file4.h5 -v dset0a dset0b + # 5.0 + TOOLTEST h5diff_50.txt file4.h5 file4.h5 -v dset0a dset0b -# 5.1 -TOOLTEST h5diff_51.txt file4.h5 file4.h5 -v dset1a dset1b + # 5.1 + TOOLTEST h5diff_51.txt file4.h5 file4.h5 -v dset1a dset1b -# 5.2 -TOOLTEST h5diff_52.txt file4.h5 file4.h5 -v dset2a dset2b + # 5.2 + TOOLTEST h5diff_52.txt file4.h5 file4.h5 -v dset2a dset2b -# 5.3 -TOOLTEST h5diff_53.txt file4.h5 file4.h5 -v dset3a dset4b + # 5.3 + TOOLTEST h5diff_53.txt file4.h5 file4.h5 -v dset3a dset4b -# 5.4 -TOOLTEST h5diff_54.txt file4.h5 file4.h5 -v dset4a dset4b + # 5.4 + TOOLTEST h5diff_54.txt file4.h5 file4.h5 -v dset4a dset4b -# 5.5 -TOOLTEST h5diff_55.txt file4.h5 file4.h5 -v dset5a dset5b + # 5.5 + TOOLTEST h5diff_55.txt file4.h5 file4.h5 -v dset5a dset5b -# 5.6 -TOOLTEST h5diff_56.txt file4.h5 file4.h5 -v dset6a dset6b + # 5.6 + TOOLTEST h5diff_56.txt file4.h5 file4.h5 -v dset6a dset6b -# 5.7 -TOOLTEST h5diff_57.txt file4.h5 file4.h5 -v dset7a dset7b + # 5.7 + TOOLTEST h5diff_57.txt file4.h5 file4.h5 -v dset7a dset7b -# 5.8 (region reference) -TOOLTEST h5diff_58.txt file7.h5 file8.h5 -v refreg -*/ + # 5.8 (region reference) + TOOLTEST h5diff_58.txt file7.h5 file8.h5 -v refreg + */ /*------------------------------------------------------------------------- -* Function: test_attributes -* -* Purpose: test attributes -* -*------------------------------------------------------------------------- -*/ + * Function: test_attributes + * + * Purpose: test attributes + * + *------------------------------------------------------------------------- + */ static -int test_attributes(const char *file, - int make_diffs /* flag to modify data buffers */) +int test_attributes(const char *file, int make_diffs /* flag to modify data buffers */) { - hid_t fid; - hid_t did; - hid_t gid; - hid_t root_id; - hid_t sid; - hsize_t dims[1]={2}; - herr_t status; + hid_t fid = -1; + hid_t did = -1; + hid_t gid = -1; + hid_t root_id = -1; + hid_t sid = -1; + hsize_t dims[1] = { 2 }; + herr_t status; /* Create a file */ - if((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) return -1; /* Create a 1D dataset */ @@ -982,18 +978,23 @@ int test_attributes(const char *file, assert(status >= 0); /* Create groups */ - gid = H5Gcreate2(fid, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - root_id = H5Gopen2(fid, "/", H5P_DEFAULT); + gid = H5Gcreate2(fid, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + root_id = H5Gopen2(fid, "/", H5P_DEFAULT); /*------------------------------------------------------------------------- * write a series of attributes on the dataset, group, and root group *------------------------------------------------------------------------- */ - - write_attr_in(did,"dset",fid,make_diffs); - write_attr_in(gid,NULL,(hid_t)0,make_diffs); - write_attr_in(root_id,NULL,(hid_t)0,make_diffs); - + if (make_diffs > 1) { + write_attr_strings(did, "dset", fid, make_diffs); + write_attr_strings(gid, NULL, (hid_t) 0, make_diffs); + write_attr_strings(root_id, NULL, (hid_t) 0, make_diffs); + } + else { + write_attr_in(did, "dset", fid, make_diffs); + write_attr_in(gid, NULL, (hid_t) 0, make_diffs); + write_attr_in(root_id, NULL, (hid_t) 0, make_diffs); + } /* Close */ status = H5Dclose(did); @@ -1009,338 +1010,313 @@ int test_attributes(const char *file, return status; } - /*------------------------------------------------------------------------- -* Function: test_attributes_verbose_level -* -* Purpose: Cresting test files for testing attributes along with -* levels of verbos option -* -*------------------------------------------------------------------------- -*/ + * Function: test_attributes_verbose_level + * + * Purpose: Cresting test files for testing attributes along with + * levels of verbos option + * + *------------------------------------------------------------------------- + */ static int test_attributes_verbose_level(const char *fname1, const char *fname2) { - herr_t status = SUCCEED; - hid_t fid1 = -1, fid2 = -1; - hid_t f1_gid = -1, f2_gid = -1; - hid_t f1_gid2 = -1, f2_gid2 = -1; - hid_t f1_gid3 = -1, f2_gid3 = -1; - hid_t f1_gid4 = -1, f2_gid4 = -1; - hid_t f1_did = -1, f2_did = -1; - hid_t f1_sid = -1, f2_sid = -1; - hid_t f1_tid = -1, f2_tid = -1; + herr_t status = SUCCEED; + hid_t fid1 = -1, fid2 = -1; + hid_t f1_gid = -1, f2_gid = -1; + hid_t f1_gid2 = -1, f2_gid2 = -1; + hid_t f1_gid3 = -1, f2_gid3 = -1; + hid_t f1_gid4 = -1, f2_gid4 = -1; + hid_t f1_did = -1, f2_did = -1; + hid_t f1_sid = -1, f2_sid = -1; + hid_t f1_tid = -1, f2_tid = -1; /* dset */ - hsize_t dset_dims[1]={3}; - int dset_data[3] = {0,1,2}; + hsize_t dset_dims[1] = { 3 }; + int dset_data[3] = { 0, 1, 2 }; /* common attrs dim */ - hsize_t attr_dims[1]={2}; + hsize_t attr_dims[1] = { 2 }; /* file1 attr */ - int f1_attr_idata[2]= {1,2}; /* integer */ - float f1_attr_fdata[2]= {1.1F,2.2F}; /* float */ + int f1_attr_idata[2] = { 1, 2 }; /* integer */ + float f1_attr_fdata[2] = { 1.1F, 2.2F }; /* float */ /* file2 attr */ - int f2_attr_idata[2]= {2,3}; /* integer */ - float f2_attr_fdata[2]= {2.1F,3.2F}; /* float */ - + int f2_attr_idata[2] = { 2, 3 }; /* integer */ + float f2_attr_fdata[2] = { 2.1F, 3.2F }; /* float */ /*---------------------------------------------------------------------- * Create file1 *-----------------------------------------------------------------------*/ - if((fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) - { + if ((fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Groups */ f1_gid = H5Gcreate2(fid1, "g", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f1_gid < 0) - { + if (f1_gid < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } f1_gid2 = H5Gcreate2(fid1, "g2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f1_gid2 < 0) - { + if (f1_gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } f1_gid3 = H5Gcreate2(fid1, "g3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f1_gid3 < 0) - { + if (f1_gid3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } f1_gid4 = H5Gcreate2(fid1, "g4", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f1_gid4 < 0) - { + if (f1_gid4 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Datasets */ f1_sid = H5Screate_simple(1, dset_dims, NULL); f1_did = H5Dcreate2(fid1, "dset", H5T_NATIVE_INT, f1_sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f1_did == FAIL) - { + if (f1_did == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } status = H5Dwrite(f1_did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Named Datatype */ f1_tid = H5Tcopy(H5T_NATIVE_INT); status = H5Tcommit2(fid1, "ntype", f1_tid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tcommit2 failed.\n", fname1); status = FAIL; goto out; } - - - /*---------------------------------------------------------------------- * Create file2 *-----------------------------------------------------------------------*/ - if((fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) - { + if ((fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Groups */ f2_gid = H5Gcreate2(fid2, "g", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f2_gid < 0) - { + if (f2_gid < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } f2_gid2 = H5Gcreate2(fid2, "g2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f2_gid2 < 0) - { + if (f2_gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } f2_gid3 = H5Gcreate2(fid2, "g3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f2_gid3 < 0) - { + if (f2_gid3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } f2_gid4 = H5Gcreate2(fid2, "g4", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f2_gid4 < 0) - { + if (f2_gid4 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Datasets */ f2_sid = H5Screate_simple(1, dset_dims, NULL); f2_did = H5Dcreate2(fid2, "dset", H5T_NATIVE_INT, f2_sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (f2_did == FAIL) - { + if (f2_did == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } status = H5Dwrite(f2_did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname2); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * Named Datatype */ f2_tid = H5Tcopy(H5T_NATIVE_INT); status = H5Tcommit2(fid2, "ntype", f2_tid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tcommit2 failed.\n", fname2); status = FAIL; goto out; } - /*---------------------------------- + /*---------------------------------- * CASE1 - Same attr number, all Same attr name * add attr to group */ - write_attr(f1_gid,1,attr_dims,"integer1",H5T_NATIVE_INT,f1_attr_idata); - write_attr(f1_gid,1,attr_dims,"float1",H5T_NATIVE_FLOAT,f1_attr_fdata); + write_attr(f1_gid, 1, attr_dims, "integer1", H5T_NATIVE_INT, f1_attr_idata); + write_attr(f1_gid, 1, attr_dims, "float1", H5T_NATIVE_FLOAT, f1_attr_fdata); - write_attr(f2_gid,1,attr_dims,"integer1",H5T_NATIVE_INT,f2_attr_idata); - write_attr(f2_gid,1,attr_dims,"float1",H5T_NATIVE_FLOAT,f2_attr_fdata); + write_attr(f2_gid, 1, attr_dims, "integer1", H5T_NATIVE_INT, f2_attr_idata); + write_attr(f2_gid, 1, attr_dims, "float1", H5T_NATIVE_FLOAT, f2_attr_fdata); - /*---------------------------------- + /*---------------------------------- * CASE2 - Same attr number, some Same attr name * add attr to dset */ - write_attr(f1_did,1,attr_dims,"integer1",H5T_NATIVE_INT,f1_attr_idata); - write_attr(f1_did,1,attr_dims,"float2",H5T_NATIVE_FLOAT,f1_attr_fdata); + write_attr(f1_did, 1, attr_dims, "integer1", H5T_NATIVE_INT, f1_attr_idata); + write_attr(f1_did, 1, attr_dims, "float2", H5T_NATIVE_FLOAT, f1_attr_fdata); - write_attr(f2_did,1,attr_dims,"integer1",H5T_NATIVE_INT,f2_attr_idata); - write_attr(f2_did,1,attr_dims,"float3",H5T_NATIVE_FLOAT,f2_attr_fdata); + write_attr(f2_did, 1, attr_dims, "integer1", H5T_NATIVE_INT, f2_attr_idata); + write_attr(f2_did, 1, attr_dims, "float3", H5T_NATIVE_FLOAT, f2_attr_fdata); - /*---------------------------------- + /*---------------------------------- * CASE3 - Same attr number, all different attr name * add attr to ntype */ - write_attr(f1_tid,1,attr_dims,"integer1",H5T_NATIVE_INT,f1_attr_idata); - write_attr(f1_tid,1,attr_dims,"float2",H5T_NATIVE_FLOAT,f1_attr_fdata); - write_attr(f1_tid,1,attr_dims,"float3",H5T_NATIVE_FLOAT,f1_attr_fdata); + write_attr(f1_tid, 1, attr_dims, "integer1", H5T_NATIVE_INT, f1_attr_idata); + write_attr(f1_tid, 1, attr_dims, "float2", H5T_NATIVE_FLOAT, f1_attr_fdata); + write_attr(f1_tid, 1, attr_dims, "float3", H5T_NATIVE_FLOAT, f1_attr_fdata); - write_attr(f2_tid,1,attr_dims,"integer4",H5T_NATIVE_INT,f2_attr_idata); - write_attr(f2_tid,1,attr_dims,"float5",H5T_NATIVE_FLOAT,f2_attr_fdata); - write_attr(f2_tid,1,attr_dims,"float6",H5T_NATIVE_FLOAT,f2_attr_fdata); + write_attr(f2_tid, 1, attr_dims, "integer4", H5T_NATIVE_INT, f2_attr_idata); + write_attr(f2_tid, 1, attr_dims, "float5", H5T_NATIVE_FLOAT, f2_attr_fdata); + write_attr(f2_tid, 1, attr_dims, "float6", H5T_NATIVE_FLOAT, f2_attr_fdata); - /*---------------------------------- + /*---------------------------------- * CASE4 - Different attr number, some same attr name (vs file2-g2) * add attr to g2 */ - write_attr(f1_gid2,1,attr_dims,"integer1",H5T_NATIVE_INT,f1_attr_idata); - write_attr(f1_gid2,1,attr_dims,"float2",H5T_NATIVE_FLOAT,f1_attr_fdata); - write_attr(f1_gid2,1,attr_dims,"float3",H5T_NATIVE_FLOAT,f1_attr_fdata); - - write_attr(f2_gid2,1,attr_dims,"integer1",H5T_NATIVE_INT,f2_attr_idata); - write_attr(f2_gid2,1,attr_dims,"float2",H5T_NATIVE_FLOAT,f2_attr_fdata); + write_attr(f1_gid2, 1, attr_dims, "integer1", H5T_NATIVE_INT, f1_attr_idata); + write_attr(f1_gid2, 1, attr_dims, "float2", H5T_NATIVE_FLOAT, f1_attr_fdata); + write_attr(f1_gid2, 1, attr_dims, "float3", H5T_NATIVE_FLOAT, f1_attr_fdata); + write_attr(f2_gid2, 1, attr_dims, "integer1", H5T_NATIVE_INT, f2_attr_idata); + write_attr(f2_gid2, 1, attr_dims, "float2", H5T_NATIVE_FLOAT, f2_attr_fdata); - /*---------------------------------- + /*---------------------------------- * CASE5 - Different attr number, all different attr name * add attr to g3 */ - write_attr(f1_gid3,1,attr_dims,"integer10",H5T_NATIVE_INT,f1_attr_idata); - write_attr(f1_gid3,1,attr_dims,"float11",H5T_NATIVE_FLOAT,f1_attr_fdata); - write_attr(f1_gid3,1,attr_dims,"float12",H5T_NATIVE_FLOAT,f1_attr_fdata); - - write_attr(f2_gid3,1,attr_dims,"integer3",H5T_NATIVE_INT,f2_attr_idata); - write_attr(f2_gid3,1,attr_dims,"float4",H5T_NATIVE_FLOAT,f2_attr_fdata); + write_attr(f1_gid3, 1, attr_dims, "integer10", H5T_NATIVE_INT, f1_attr_idata); + write_attr(f1_gid3, 1, attr_dims, "float11", H5T_NATIVE_FLOAT, f1_attr_fdata); + write_attr(f1_gid3, 1, attr_dims, "float12", H5T_NATIVE_FLOAT, f1_attr_fdata); + write_attr(f2_gid3, 1, attr_dims, "integer3", H5T_NATIVE_INT, f2_attr_idata); + write_attr(f2_gid3, 1, attr_dims, "float4", H5T_NATIVE_FLOAT, f2_attr_fdata); out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1 > 0) + if (fid1 > 0) H5Fclose(fid1); - if(fid2 > 0) + if (fid2 > 0) H5Fclose(fid2); - if(f1_gid > 0) + if (f1_gid > 0) H5Gclose(f1_gid); - if(f2_gid > 0) + if (f2_gid > 0) H5Gclose(f2_gid); - if(f1_gid2 > 0) + if (f1_gid2 > 0) H5Gclose(f1_gid2); - if(f2_gid2 > 0) + if (f2_gid2 > 0) H5Gclose(f2_gid2); - if(f1_gid3 > 0) + if (f1_gid3 > 0) H5Gclose(f1_gid3); - if(f2_gid3 > 0) + if (f2_gid3 > 0) H5Gclose(f2_gid3); - if(f1_gid4 > 0) + if (f1_gid4 > 0) H5Gclose(f1_gid4); - if(f2_gid4 > 0) + if (f2_gid4 > 0) H5Gclose(f2_gid4); - if(f1_did > 0) + if (f1_did > 0) H5Dclose(f1_did); - if(f2_did > 0) + if (f2_did > 0) H5Dclose(f2_did); - if(f1_sid > 0) + if (f1_sid > 0) H5Sclose(f1_sid); - if(f2_sid > 0) + if (f2_sid > 0) H5Sclose(f2_sid); - if(f1_tid > 0) + if (f1_tid > 0) H5Tclose(f1_tid); - if(f2_tid > 0) + if (f2_tid > 0) H5Tclose(f2_tid); return status; } - /*------------------------------------------------------------------------- -* Function: test_datasets -* -* Purpose: Check all HDF5 classes -* H5T_INTEGER, H5T_FLOAT -* H5T_TIME, H5T_STRING, H5T_BITFIELD, H5T_OPAQUE, H5T_COMPOUND, H5T_REFERENCE, -* H5T_ENUM, H5T_VLEN, H5T_ARRAY -* -*------------------------------------------------------------------------- -*/ + * Function: test_datasets + * + * Purpose: Check all HDF5 classes + * H5T_INTEGER, H5T_FLOAT + * H5T_TIME, H5T_STRING, H5T_BITFIELD, H5T_OPAQUE, H5T_COMPOUND, H5T_REFERENCE, + * H5T_ENUM, H5T_VLEN, H5T_ARRAY + * + *------------------------------------------------------------------------- + */ static -int test_datasets(const char *file, - int make_diffs /* flag to modify data buffers */) +int test_datasets(const char *file, int make_diffs /* flag to modify data buffers */) { - hid_t fid; - hid_t did; - hid_t gid; - hid_t sid; - hsize_t dims[1]={2}; - herr_t status; - int buf[2]={1,2}; - - if(make_diffs > 0) + hid_t fid = -1; + hid_t did = -1; + hid_t gid = -1; + hid_t sid = -1; + hsize_t dims[1] = { 2 }; + herr_t status; + int buf[2] = { 1, 2 }; + + if (make_diffs > 0) memset(buf, 0, sizeof buf); /* Create a file */ - if((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) return -1; /* Create a 1D dataset */ sid = H5Screate_simple(1, dims, NULL); - did = H5Dcreate2(fid, "dset", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + did = H5Dcreate2(fid, "dset", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf); status = H5Sclose(sid); assert(status >= 0); /* Create a group */ - gid = H5Gcreate2(fid, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + gid = H5Gcreate2(fid, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /*------------------------------------------------------------------------- * write a series of datasets on the group *------------------------------------------------------------------------- */ - write_dset_in(gid,"/dset",fid,make_diffs); + write_dset_in(gid, "/dset", fid, make_diffs); /* close */ status = H5Dclose(did); @@ -1355,29 +1331,29 @@ int test_datasets(const char *file, } /*------------------------------------------------------------------------- -* Function: test_special_datasets -* -* Purpose: Check datasets with datasapce of zero dimension size. -*------------------------------------------------------------------------- -*/ + * Function: test_special_datasets + * + * Purpose: Check datasets with datasapce of zero dimension size. + *------------------------------------------------------------------------- + */ static -int test_special_datasets(const char *file, - int make_diffs /* flag to modify data buffers */) +int test_special_datasets(const char *file, int make_diffs /* flag to modify data buffers */) { - hid_t fid; - hid_t did; - hid_t sid0, sid; - hsize_t dims0[SPACE1_RANK]={SPACE1_DIM1, SPACE1_DIM2}; - hsize_t dims[SPACE1_RANK]={SPACE1_DIM1, SPACE1_DIM2}; - herr_t status; + hid_t fid = -1; + hid_t did = -1; + hid_t sid0 = -1; + hid_t sid = -1; + hsize_t dims0[SPACE1_RANK] = { SPACE1_DIM1, SPACE1_DIM2 }; + hsize_t dims[SPACE1_RANK] = { SPACE1_DIM1, SPACE1_DIM2 }; + herr_t status; /* Create a file */ - if((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((fid = H5Fcreate(file, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) return -1; /* Create a dataset with zero dimension size */ sid0 = H5Screate_simple(SPACE1_RANK, dims0, NULL); - did = H5Dcreate2(fid, "dset1", H5T_NATIVE_INT, sid0, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + did = H5Dcreate2(fid, "dset1", H5T_NATIVE_INT, sid0, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* close dataset */ status = H5Dclose(did); @@ -1388,12 +1364,12 @@ int test_special_datasets(const char *file, assert(status >= 0); /* Create a dataset with zero dimension size in one file but the other one - * has a dataset with a non-zero dimension size */ - if(make_diffs) + * has a dataset with a non-zero dimension size */ + if (make_diffs) dims[1] = SPACE1_DIM2 + 4; sid = H5Screate_simple(SPACE1_RANK, dims, NULL); - did = H5Dcreate2(fid, "dset2", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + did = H5Dcreate2(fid, "dset2", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* close dataspace */ status = H5Sclose(sid); @@ -1410,26 +1386,25 @@ int test_special_datasets(const char *file, } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare links, one has longer name than -* the other and short name is subset of long name. -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare links, one has longer name than + * the other and short name is subset of long name. + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_link_name(const char *fname1) { - hid_t fid1=0; - hid_t gid1=0; - hid_t gid2=0; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; @@ -1439,16 +1414,15 @@ static int test_link_name(const char *fname1) * Groups *------------------------------------------------------------------------*/ gid1 = H5Gcreate2(fid1, "group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } - gid2 = H5Gcreate2(fid1, "group_longname", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + gid2 = H5Gcreate2(fid1, "group_longname", H5P_DEFAULT, H5P_DEFAULT, + H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -1458,16 +1432,14 @@ static int test_link_name(const char *fname1) * Soft Links *------------------------------------------------------------------------*/ status = H5Lcreate_soft("group", fid1, "link_g1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("group_longname", fid1, "link_g2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; @@ -1477,38 +1449,37 @@ out: /*----------------------------------------------------------------------- * Close *------------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare soft links in various way -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare soft links in various way + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_soft_links(const char *fname1) { - hid_t fid1=0; - hid_t gid1=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - int data2[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t gid1 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + int data2[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; @@ -1518,8 +1489,7 @@ static int test_soft_links(const char *fname1) * Groups *------------------------------------------------------------------------*/ gid1 = H5Gcreate2(fid1, "target_group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -1529,25 +1499,22 @@ static int test_soft_links(const char *fname1) * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"target_dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "target_dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"target_dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "target_dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; @@ -1558,48 +1525,42 @@ static int test_soft_links(const char *fname1) *------------------------------------------------------------------------*/ /* file 1 */ status = H5Lcreate_soft("/target_dset1", fid1, "softlink_dset1_1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/target_dset1", fid1, "softlink_dset1_2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/target_dset2", fid1, "softlink_dset2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/target_group", fid1, "softlink_group1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/target_group", fid1, "softlink_group2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/no_obj", fid1, "softlink_noexist", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; @@ -1609,38 +1570,37 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(gid1) + if (gid1) H5Gclose(gid1); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare linked soft links in various way -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare linked soft links in various way + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_linked_softlinks(const char *fname1) { - hid_t fid1=0; - hid_t gid1=0; - hid_t gid2=0; - hid_t gid3=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - int data2[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hid_t gid3 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + int data2[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; @@ -1650,24 +1610,21 @@ static int test_linked_softlinks(const char *fname1) * Groups *------------------------------------------------------------------------*/ gid1 = H5Gcreate2(fid1, "target_group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } gid2 = H5Gcreate2(fid1, "target_group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } gid3 = H5Gcreate2(fid1, "target_group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid3 < 0) - { + if (gid3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -1677,24 +1634,21 @@ static int test_linked_softlinks(const char *fname1) * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"target_dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "target_dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"target_dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "target_dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; @@ -1704,98 +1658,86 @@ static int test_linked_softlinks(const char *fname1) * Soft Links (Linked) *------------------------------------------------------------------------*/ /*--------- - * file 1 */ + * file 1 */ status = H5Lcreate_soft("/target_dset1", fid1, "softlink1_to_dset1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink1_to_dset1", fid1, "softlink1_to_slink1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink1_to_slink1", fid1, "softlink1_to_slink2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/target_dset2", fid1, "softlink2_to_dset2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink2_to_dset2", fid1, "softlink2_to_slink1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink2_to_slink1", fid1, "softlink2_to_slink2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("target_group1", fid1, "softlink3_to_group1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink3_to_group1", fid1, "softlink3_to_slink1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink3_to_slink1", fid1, "softlink3_to_slink2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("target_group2", fid1, "softlink4_to_group2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink4_to_group2", fid1, "softlink4_to_slink1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("softlink4_to_slink1", fid1, "softlink4_to_slink2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; @@ -1805,52 +1747,50 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); - if(gid3) + if (gid3) H5Gclose(gid3); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare external links in various way -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare external links in various way + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_external_links(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid1=0; - hid_t gid2=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - int data2[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + int data2[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ /* source file */ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } /* target file */ - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; @@ -1860,18 +1800,16 @@ static int test_external_links(const char *fname1, const char *fname2) * Groups *------------------------------------------------------------------------*/ /*-------------- - * target file */ + * target file */ gid1 = H5Gcreate2(fid2, "target_group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } gid2 = H5Gcreate2(fid2, "target_group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -1880,26 +1818,23 @@ static int test_external_links(const char *fname1, const char *fname2) * Datasets *------------------------------------------------------------------------*/ /*-------------- - * target file */ - status = write_dset(fid2,2,dims2,"target_dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + * target file */ + status = write_dset(fid2, 2, dims2, "target_dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"x_dset",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "x_dset", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2,2,dims2,"x_dset",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid2, 2, dims2, "x_dset", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; @@ -1911,48 +1846,42 @@ static int test_external_links(const char *fname1, const char *fname2) /*--------------*/ /* source file */ status = H5Lcreate_external(fname2, "/target_group/x_dset", fid1, "ext_link_dset1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/target_group2/x_dset", fid1, "ext_link_dset2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/target_group", fid1, "/ext_link_grp1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/target_group2", fid1, "/ext_link_grp2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "no_obj", fid1, "ext_link_noexist1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external("no_file.h5", "no_obj", fid1, "ext_link_noexist2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; @@ -1962,52 +1891,50 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare external links which point to -* soft link in various way -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare external links which point to + * soft link in various way + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_ext2soft_links(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid2=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - int data2[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid2 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + int data2[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ /* source file */ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } /* target file */ - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; @@ -2018,8 +1945,7 @@ static int test_ext2soft_links(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* target file */ gid2 = H5Gcreate2(fid2, "target_group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -2029,18 +1955,16 @@ static int test_ext2soft_links(const char *fname1, const char *fname2) * Datasets *------------------------------------------------------------------------*/ /*-------------- - * target file */ - status = write_dset(fid2,2,dims2,"dset1",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + * target file */ + status = write_dset(fid2, 2, dims2, "dset1", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(fid2,2,dims2,"dset2",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset2", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; @@ -2050,18 +1974,16 @@ static int test_ext2soft_links(const char *fname1, const char *fname2) * Soft Links (Linked) *------------------------------------------------------------------------*/ /*--------------- - * target file */ + * target file */ status = H5Lcreate_soft("/dset1", fid2, "softlink_to_dset1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("/dset2", fid2, "softlink_to_dset2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; @@ -2071,26 +1993,23 @@ static int test_ext2soft_links(const char *fname1, const char *fname2) * External Links *------------------------------------------------------------------------*/ /*--------------- - * source file */ + * source file */ status = H5Lcreate_external(fname2, "/target_group", fid1, "ext_link", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/softlink_to_dset1", fid1, "ext_link_to_slink1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/softlink_to_dset2", fid1, "ext_link_to_slink2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; @@ -2100,46 +2019,44 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid2) + if (gid2) H5Gclose(gid2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files to compare dangling links in various way -* -* Programmer: Jonathan Kim (Feb 17, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files to compare dangling links in various way + * + * Programmer: Jonathan Kim (Feb 17, 2010) + * + *-------------------------------------------------------------------------*/ static int test_dangle_links(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - int data2[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + int data2[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; @@ -2149,34 +2066,30 @@ static int test_dangle_links(const char *fname1, const char *fname2) * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } /* file2 */ - status = write_dset(fid2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(fid2,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; @@ -2187,32 +2100,28 @@ static int test_dangle_links(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* file 1 */ status = H5Lcreate_soft("no_obj", fid1, "soft_link1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/dset1", fid1, "soft_link2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("no_obj", fid1, "soft_link3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("no_obj1", fid1, "soft_link4", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; @@ -2220,32 +2129,28 @@ static int test_dangle_links(const char *fname1, const char *fname2) /* file 2 */ status = H5Lcreate_soft("no_obj", fid2, "soft_link1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("no_obj", fid2, "soft_link2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("/dset2", fid2, "soft_link3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("no_obj2", fid2, "soft_link4", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; @@ -2256,32 +2161,28 @@ static int test_dangle_links(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* file1 */ status = H5Lcreate_external(fname2, "no_obj", fid1, "ext_link1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/dset1", fid1, "ext_link2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "no_obj", fid1, "ext_link3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external("no_file.h5", "no_obj", fid1, "ext_link4", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; @@ -2289,32 +2190,28 @@ static int test_dangle_links(const char *fname1, const char *fname2) /* file2 */ status = H5Lcreate_external(fname1, "no_obj", fid2, "ext_link1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_external(fname1, "no_obj", fid2, "ext_link2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_external(fname1, "/dset2", fid2, "ext_link3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_external("no_file.h5", "no_obj", fid2, "ext_link4", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; @@ -2324,47 +2221,45 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: For testing comparing group member objects recursively -* -* Programmer: Jonathan Kim (Aug 19, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: For testing comparing group member objects recursively + * + * Programmer: Jonathan Kim (Aug 19, 2010) + * + *-------------------------------------------------------------------------*/ static int test_group_recurse(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid1_f1=0, gid2_f1=0, gid3_f1=0, gid10_f1=0; - hid_t gid1_f2=0, gid2_f2=0, gid3_f2=0, gid11_f2=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,1},{0,1},{1,0},{1,0}}; - int data2[4][2] = {{0,2},{0,2},{2,0},{2,0}}; - int data3[4][2] = {{0,3},{0,3},{3,0},{3,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid1_f1 = -1, gid2_f1 = -1, gid3_f1 = -1, gid10_f1 = -1; + hid_t gid1_f2 = -1, gid2_f2 = -1, gid3_f2 = -1, gid11_f2 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 1 }, { 0, 1 }, { 1, 0 }, { 1, 0 } }; + int data2[4][2] = { { 0, 2 }, { 0, 2 }, { 2, 0 }, { 2, 0 } }; + int data3[4][2] = { { 0, 3 }, { 0, 3 }, { 3, 0 }, { 3, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; @@ -2375,32 +2270,28 @@ static int test_group_recurse(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* file1 */ gid1_f1 = H5Gcreate2(fid1, "/grp1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1_f1 < 0) - { + if (gid1_f1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } gid2_f1 = H5Gcreate2(fid1, "/grp1/grp2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2_f1 < 0) - { + if (gid2_f1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } gid3_f1 = H5Gcreate2(fid1, "/grp1/grp2/grp3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid3_f1 < 0) - { + if (gid3_f1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } gid10_f1 = H5Gcreate2(fid1, "/grp10", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid10_f1 < 0) - { + if (gid10_f1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -2408,32 +2299,28 @@ static int test_group_recurse(const char *fname1, const char *fname2) /* file2 */ gid1_f2 = H5Gcreate2(fid2, "/grp1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1_f2 < 0) - { + if (gid1_f2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } gid2_f2 = H5Gcreate2(fid2, "/grp1/grp2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2_f2 < 0) - { + if (gid2_f2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } gid3_f2 = H5Gcreate2(fid2, "/grp1/grp2/grp3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid3_f2 < 0) - { + if (gid3_f2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } gid11_f2 = H5Gcreate2(fid2, "/grp11", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid11_f2 < 0) - { + if (gid11_f2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -2443,50 +2330,44 @@ static int test_group_recurse(const char *fname1, const char *fname2) * Datasets under root *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"dset3",H5T_NATIVE_INT,data3); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset3", H5T_NATIVE_INT, data3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } /* file2 */ - status = write_dset(fid2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(fid2,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(fid2,2,dims2,"dset3",H5T_NATIVE_INT,data3); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset3", H5T_NATIVE_INT, data3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; @@ -2496,163 +2377,142 @@ static int test_group_recurse(const char *fname1, const char *fname2) * Datasets under group *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(gid1_f1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1_f1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid2_f1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid2_f1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid2_f1,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid2_f1, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid3_f1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid3_f1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid3_f1,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid3_f1, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid3_f1,2,dims2,"dset3",H5T_NATIVE_INT,data3); - if (status == FAIL) - { + status = write_dset(gid3_f1, 2, dims2, "dset3", H5T_NATIVE_INT, data3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid10_f1,2,dims2,"dset4",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid10_f1, 2, dims2, "dset4", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid10_f1,2,dims2,"dset5",H5T_NATIVE_INT,data3); - if (status == FAIL) - { + status = write_dset(gid10_f1, 2, dims2, "dset5", H5T_NATIVE_INT, data3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } /* file2 */ - status = write_dset(gid1_f2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1_f2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2_f2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid2_f2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2_f2,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid2_f2, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid3_f2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid3_f2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid3_f2,2,dims2,"dset2",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid3_f2, 2, dims2, "dset2", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid3_f2,2,dims2,"dset3",H5T_NATIVE_INT,data3); - if (status == FAIL) - { + status = write_dset(gid3_f2, 2, dims2, "dset3", H5T_NATIVE_INT, data3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid11_f2,2,dims2,"dset4",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid11_f2, 2, dims2, "dset4", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid11_f2,2,dims2,"dset5",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid11_f2, 2, dims2, "dset5", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - /*----------------------------------------------------------------------- * Soft Links *------------------------------------------------------------------------*/ /* file 1 */ status = H5Lcreate_soft("/grp1", fid1, "slink_grp1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/grp1/grp2", fid1, "slink_grp2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/grp1/grp2/grp3", fid1, "slink_grp3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_soft("/grp10", fid1, "slink_grp10", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname1); status = FAIL; goto out; @@ -2660,32 +2520,28 @@ static int test_group_recurse(const char *fname1, const char *fname2) /* file 2 */ status = H5Lcreate_soft("/grp1", fid2, "slink_grp1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("/grp1/grp2", fid2, "slink_grp2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("/grp1/grp2/grp3", fid2, "slink_grp3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_soft("/grp11", fid2, "slink_grp11", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", fname2); status = FAIL; goto out; @@ -2696,24 +2552,21 @@ static int test_group_recurse(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* file1 */ status = H5Lcreate_external(fname2, "/grp1", fid1, "elink_grp1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/grp1/grp2", fid1, "elink_grp2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } status = H5Lcreate_external(fname2, "/grp1/grp2/grp3", fid1, "elink_grp3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; @@ -2721,225 +2574,210 @@ static int test_group_recurse(const char *fname1, const char *fname2) /* file2 */ status = H5Lcreate_external(fname1, "/grp1", fid2, "elink_grp1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_external(fname1, "/grp1/grp2", fid2, "elink_grp2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } status = H5Lcreate_external(fname1, "/grp1/grp2/grp3", fid2, "elink_grp3", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } /*------------------------------ - * external circle route test - * file1/grp11 <-> file2/grp10 via elink_grp_circle link - */ + * external circle route test + * file1/grp11 <-> file2/grp10 via elink_grp_circle link + */ /* file1 */ status = H5Lcreate_external(fname2, "/grp11", gid10_f1, "elink_grp_circle", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname1); status = FAIL; goto out; } /* file2 */ status = H5Lcreate_external(fname1, "/grp10", gid11_f2, "elink_grp_circle", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", fname2); status = FAIL; goto out; } - out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid1_f1) + if (gid1_f1) H5Gclose(gid1_f1); - if(gid2_f1) + if (gid2_f1) H5Gclose(gid2_f1); - if(gid3_f1) + if (gid3_f1) H5Gclose(gid3_f1); - if(gid1_f2) + if (gid1_f2) H5Gclose(gid1_f2); - if(gid2_f2) + if (gid2_f2) H5Gclose(gid2_f2); - if(gid3_f2) + if (gid3_f2) H5Gclose(gid3_f2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: -* For testing comparing group member objects recursively via multiple -* linked external links -* -* Programmer: Jonathan Kim (Sep 16, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: + * For testing comparing group member objects recursively via multiple + * linked external links + * + * Programmer: Jonathan Kim (Sep 16, 2010) + * + *-------------------------------------------------------------------------*/ #define GRP_R_DSETNAME1 "dset1" #define GRP_R_DSETNAME2 "dset2" static int test_group_recurse2(void) { - hid_t fileid1 = -1; - hid_t grp1 = -1; - hid_t grp2 = -1; - hid_t grp3 = -1; - hid_t grp4 = -1; - hid_t dset1 = -1; - hid_t dset2 = -1; - hid_t datatype = -1; - hid_t dataspace = -1; - hid_t fileid2 = -1; - hid_t fileid3 = -1; - hid_t fileid4 = -1; - hsize_t dimsf[2]; /* dataset dimensions */ - herr_t status=0; - int data1[4][2] = {{0,0},{1,1},{2,2},{3,3}}; - int data2[4][2] = {{0,0},{0,1},{0,2},{3,3}}; - - /*----------------------------------------------------------------------- + hid_t fileid1 = -1; + hid_t grp1 = -1; + hid_t grp2 = -1; + hid_t grp3 = -1; + hid_t grp4 = -1; + hid_t dset1 = -1; + hid_t dset2 = -1; + hid_t datatype = -1; + hid_t dataspace = -1; + hid_t fileid2 = -1; + hid_t fileid3 = -1; + hid_t fileid4 = -1; + hsize_t dimsf[2]; /* dataset dimensions */ + herr_t status = 0; + int data1[4][2] = { { 0, 0 }, { 1, 1 }, { 2, 2 }, { 3, 3 } }; + int data2[4][2] = { { 0, 0 }, { 0, 1 }, { 0, 2 }, { 3, 3 } }; + + /*----------------------------------------------------------------------- * FILE 1 *------------------------------------------------------------------------*/ /* - * Create a new file using H5F_ACC_TRUNC access, - * default file creation properties, and default file - * access properties. - */ + * Create a new file using H5F_ACC_TRUNC access, + * default file creation properties, and default file + * access properties. + */ fileid1 = H5Fcreate(GRP_RECURSE1_EXT, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Groups *------------------------------------------------------------------------*/ grp1 = H5Gcreate2(fileid1, "/g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp1 < 0) - { + if (grp1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; } grp2 = H5Gcreate2(grp1, "g2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp2 < 0) - { + if (grp2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; } grp3 = H5Gcreate2(grp2, "g3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp3 < 0) - { + if (grp3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; } grp4 = H5Gcreate2(grp3, "g4", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp4 < 0) - { + if (grp4 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; } - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Datasets *------------------------------------------------------------------------*/ /* - * Describe the size of the array and create the data space for fixed - * size dataset. - */ + * Describe the size of the array and create the data space for fixed + * size dataset. + */ dimsf[0] = 4; dimsf[1] = 2; dataspace = H5Screate_simple(2, dimsf, NULL); /* - * Define datatype for the data in the file. - * We will store little endian INT numbers. - */ + * Define datatype for the data in the file. + * We will store little endian INT numbers. + */ datatype = H5Tcopy(H5T_NATIVE_INT); status = H5Tset_order(datatype, H5T_ORDER_LE); /*--------------- - * dset1 - */ + * dset1 + */ /* - * Create a new dataset within the file using defined dataspace and - * datatype and default dataset creation properties. - */ - dset1 = H5Dcreate2(fileid1, GRP_R_DSETNAME1, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * Create a new dataset within the file using defined dataspace and + * datatype and default dataset creation properties. + */ + dset1 = H5Dcreate2(fileid1, GRP_R_DSETNAME1, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data1); H5Dclose(dset1); /*--------------- - * dset1 - */ + * dset1 + */ /* - * Create a new dataset within the file using defined dataspace and - * datatype and default dataset creation properties. - */ - dset1 = H5Dcreate2(grp3, GRP_R_DSETNAME1, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * Create a new dataset within the file using defined dataspace and + * datatype and default dataset creation properties. + */ + dset1 = H5Dcreate2(grp3, GRP_R_DSETNAME1, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data1); /*--------------- - * dset2 - */ + * dset2 + */ /* - * Create a new dataset within the fileid1 using defined dataspace and - * datatype and default dataset creation properties. - */ - dset2 = H5Dcreate2(grp4, GRP_R_DSETNAME2, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * Create a new dataset within the fileid1 using defined dataspace and + * datatype and default dataset creation properties. + */ + dset2 = H5Dcreate2(grp4, GRP_R_DSETNAME2, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset2, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data2); - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Soft links *------------------------------------------------------------------------*/ /* - * under '/' root - */ + * under '/' root + */ /* link to dset1 */ status = H5Lcreate_soft(GRP_R_DSETNAME1, fileid1, "soft_dset1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; @@ -2952,90 +2790,83 @@ static int test_group_recurse2(void) H5Gclose(grp3); H5Gclose(grp4); - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * FILE 2-3 *------------------------------------------------------------------------*/ /* crate target file */ fileid4 = H5Fcreate(GRP_RECURSE2_EXT3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - /*----------------------------------------------- + /*----------------------------------------------- * Groups */ grp4 = H5Gcreate2(fileid4, "/g4", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp4 < 0) - { + if (grp4 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE2_EXT3); status = FAIL; goto out; } /*--------------- - * dset2 - */ + * dset2 + */ /* - * Create a new dataset within the fileid1 using defined dataspace and - * datatype and default dataset creation properties. - */ - dset2 = H5Dcreate2(grp4, GRP_R_DSETNAME2, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * Create a new dataset within the fileid1 using defined dataspace and + * datatype and default dataset creation properties. + */ + dset2 = H5Dcreate2(grp4, GRP_R_DSETNAME2, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset2, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data2); H5Gclose(grp4); H5Dclose(dset2); - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * FILE 2-2 *------------------------------------------------------------------------*/ /* crate target file */ fileid3 = H5Fcreate(GRP_RECURSE2_EXT2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - /*----------------------------------------------- + /*----------------------------------------------- * Groups */ grp2 = H5Gcreate2(fileid3, "g2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp2 < 0) - { + if (grp2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE2_EXT2); status = FAIL; goto out; } grp3 = H5Gcreate2(grp2, "g3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp3 < 0) - { + if (grp3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE2_EXT2); status = FAIL; goto out; } /*--------------- - * dset1 - */ + * dset1 + */ /* - * Create a new dataset within the fileid1 using defined dataspace and - * datatype and default dataset creation properties. - */ - dset1 = H5Dcreate2(grp3, GRP_R_DSETNAME1, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * Create a new dataset within the fileid1 using defined dataspace and + * datatype and default dataset creation properties. + */ + dset1 = H5Dcreate2(grp3, GRP_R_DSETNAME1, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data1); - /*----------------------------------------------- + /*----------------------------------------------- * extlink to $GRP_RECURSE2_EXT3/g4 */ status = H5Lcreate_external(GRP_RECURSE2_EXT3, "/g4", fileid3, "/g2/g3/g4", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", GRP_RECURSE2_EXT2); status = FAIL; goto out; @@ -3045,56 +2876,52 @@ static int test_group_recurse2(void) H5Gclose(grp2); H5Gclose(grp3); - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * FILE 2-1 *------------------------------------------------------------------------*/ /* crate target file */ fileid2 = H5Fcreate(GRP_RECURSE2_EXT1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - /*----------------------------------------------- + /*----------------------------------------------- * Groups */ grp1 = H5Gcreate2(fileid2, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (grp1 < 0) - { + if (grp1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", GRP_RECURSE1_EXT); status = FAIL; goto out; } /*--------------- - * dset1 - */ - dset1 = H5Dcreate2(fileid2, GRP_R_DSETNAME1, datatype, dataspace, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + * dset1 + */ + dset1 = H5Dcreate2(fileid2, GRP_R_DSETNAME1, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* - * Write the data to the dataset using default transfer properties. - */ + * Write the data to the dataset using default transfer properties. + */ status = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data1); - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Soft links *------------------------------------------------------------------------*/ /* - * under '/' root - */ + * under '/' root + */ /* link to dset1 */ status = H5Lcreate_soft(GRP_R_DSETNAME1, fileid2, "soft_dset1", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_soft failed.\n", GRP_RECURSE2_EXT1); status = FAIL; goto out; } - /*----------------------------------------------- + /*----------------------------------------------- * extlink to $GRP_RECURSE2_EXT2/g2 */ status = H5Lcreate_external(GRP_RECURSE2_EXT2, "/g2", fileid2, "/g1/g2", H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Lcreate_external failed.\n", GRP_RECURSE2_EXT1); status = FAIL; goto out; @@ -3105,72 +2932,67 @@ static int test_group_recurse2(void) out: /* - * Close/release resources. - */ - if(dataspace > 0) + * Close/release resources. + */ + if (dataspace > 0) H5Sclose(dataspace); - if(datatype > 0) + if (datatype > 0) H5Tclose(datatype); - if(fileid1 > 0) + if (fileid1 > 0) H5Fclose(fileid1); - if(fileid2 > 0) + if (fileid2 > 0) H5Fclose(fileid2); - if(fileid3 > 0) + if (fileid3 > 0) H5Fclose(fileid3); - if(fileid4 > 0) + if (fileid4 > 0) H5Fclose(fileid4); return status; } - /*------------------------------------------------------------------------- -* -* Purpose: Create test files for excluding obj. -* Same structure, same obj names -* Test : exclude obj with different value to verify the rest are same -* -* Programmer: Jonathan Kim (July, 21, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files for excluding obj. + * Same structure, same obj names + * Test : exclude obj with different value to verify the rest are same + * + * Programmer: Jonathan Kim (July, 21, 2010) + * + *-------------------------------------------------------------------------*/ static int test_exclude_obj1(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid1=0; - hid_t gid2=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - int data2[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + int data2[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; } - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Group *------------------------------------------------------------------------*/ /* file1 */ gid1 = H5Gcreate2(fid1, "group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -3179,133 +3001,119 @@ static int test_exclude_obj1(const char *fname1, const char *fname2) /* file2 */ gid2 = H5Gcreate2(fid2, "group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } - /*----------------------------------------------------------------------- * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset2",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset2", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset3",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset3", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - /* file2 */ - status = write_dset(fid2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2,2,dims2,"dset2",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid2, 2, dims2, "dset2", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2,2,dims2,"dset3",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid2, 2, dims2, "dset3", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files for excluding obj. -* different structure and name -* Test : exclude different objs to verify the rest are same -* -* Programmer: Jonathan Kim (July, 21, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files for excluding obj. + * different structure and name + * Test : exclude different objs to verify the rest are same + * + * Programmer: Jonathan Kim (July, 21, 2010) + * + *-------------------------------------------------------------------------*/ static int test_exclude_obj2(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid1=0; - hid_t gid2=0; - hid_t gid3=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - int data2[4][2] = {{0,1},{2,3},{1,2},{3,4}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hid_t gid3 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + int data2[4][2] = { { 0, 1 }, { 2, 3 }, { 1, 2 }, { 3, 4 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; } - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Group *------------------------------------------------------------------------*/ /* file1 */ gid1 = H5Gcreate2(fid1, "group10", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -3313,9 +3121,7 @@ static int test_exclude_obj2(const char *fname1, const char *fname2) /* file2 */ gid2 = H5Gcreate2(fid2, "group10", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -3324,133 +3130,118 @@ static int test_exclude_obj2(const char *fname1, const char *fname2) /* subset name from group10 */ gid3 = H5Gcreate2(fid2, "group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid3 < 0) - { + if (gid3 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; } - /*----------------------------------------------------------------------- * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"dset10",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset10", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(fid1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset2",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset2", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - /* file2 */ - status = write_dset(fid2,2,dims2,"dset10",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset10", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid2,2,dims2,"dset2",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid2, 2, dims2, "dset2", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - status = write_dset(gid3,2,dims2,"dset3",H5T_NATIVE_INT,data2); - if (status == FAIL) - { + status = write_dset(gid3, 2, dims2, "dset3", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; } - out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); - if(gid3) + if (gid3) H5Gclose(gid3); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files for excluding obj. -* Only one file contains unique objs. Common objs are same. -* Test : exclude unique objs to verify the rest are same -* - HDFFV-7837 -* -* Programmer: Jonathan Kim (Mar, 19, 2012) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files for excluding obj. + * Only one file contains unique objs. Common objs are same. + * Test : exclude unique objs to verify the rest are same - HDFFV-7837 + * + * Programmer: Jonathan Kim (Mar, 19, 2012) + * + *-------------------------------------------------------------------------*/ static int test_exclude_obj3(const char *fname1, const char *fname2) { - hid_t fid1=0; - hid_t fid2=0; - hid_t gid1=0; - hsize_t dims2[2] = {2,4}; - int data1[4][2] = {{0,0},{0,0},{0,0},{0,0}}; - herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t gid1 = -1; + hsize_t dims2[2] = { 2, 4 }; + int data1[4][2] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } }; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); status = FAIL; goto out; } - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Group *------------------------------------------------------------------------*/ /* file1 */ gid1 = H5Gcreate2(fid1, "group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -3460,26 +3251,23 @@ static int test_exclude_obj3(const char *fname1, const char *fname2) * Datasets *------------------------------------------------------------------------*/ /* file1 */ - status = write_dset(fid1,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid1, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } - status = write_dset(gid1,2,dims2,"dset",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(gid1, 2, dims2, "dset", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); status = FAIL; goto out; } /* file2 */ - status = write_dset(fid2,2,dims2,"dset1",H5T_NATIVE_INT,data1); - if (status == FAIL) - { + status = write_dset(fid2, 2, dims2, "dset1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); status = FAIL; goto out; @@ -3489,25 +3277,25 @@ out: /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(gid1) + if (gid1) H5Gclose(gid1); return status; } /*------------------------------------------------------------------------- -* -* Purpose: Create test files for multiple variable length string/string array -* along with fixed length string/string array types in -* a compound type dataset. -* -* Programmer: Jonathan Kim (Oct, 26, 2010) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: Create test files for multiple variable length string/string array + * along with fixed length string/string array types in + * a compound type dataset. + * + * Programmer: Jonathan Kim (Oct, 26, 2010) + * + *-------------------------------------------------------------------------*/ #define STR_RANK 1 #define VLEN_STR_DIM 1 #define FIXLEN_STR_SIZE 21 @@ -3520,187 +3308,170 @@ out: static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int is_file_new) { int i; - - hid_t fid1 = -1; /* file id */ - hid_t gid = -1; + hid_t fid1 = -1; /* file id */ + hid_t gid = -1; /* compound1 datatype */ - typedef struct comp1_t - { - char *str_vlen; /* vlen string */ - char *str_vlen_repeat; /* vlen string */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + typedef struct comp1_t { + char *str_vlen; /* vlen string */ + char *str_vlen_repeat; /* vlen string */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ } comp1_t; /* compound2 datatype */ - typedef struct comp2_t - { - char *str_vlen; /* vlen string */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen_repeat; /* vlen string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + typedef struct comp2_t { + char *str_vlen; /* vlen string */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen_repeat; /* vlen string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ } comp2_t; /* compound3 datatype */ - typedef struct comp3_t - { - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen; /* vlen string */ - char *str_vlen_repeat; /* vlen string */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + typedef struct comp3_t { + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen; /* vlen string */ + char *str_vlen_repeat; /* vlen string */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ } comp3_t; /* compound4 datatype */ - typedef struct comp4_t - { - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen; /* vlen string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen_repeat; /* vlen string */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + typedef struct comp4_t { + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen; /* vlen string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen_repeat; /* vlen string */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ } comp4_t; /* compound5 datatype */ - typedef struct comp5_t - { - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen; /* vlen string */ - char *str_vlen_repeat; /* vlen string */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + typedef struct comp5_t { + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char *str_vlen; /* vlen string */ + char *str_vlen_repeat; /* vlen string */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ } comp5_t; /* compound6 datatype */ - typedef struct comp6_t - { - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen; /* vlen string */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen_repeat; /* vlen string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + typedef struct comp6_t { + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char *str_vlen; /* vlen string */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen_repeat; /* vlen string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ } comp6_t; /* compound7 datatype */ - typedef struct comp7_t - { - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen; /* vlen string */ - char *str_vlen_repeat; /* vlen string */ + typedef struct comp7_t { + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen; /* vlen string */ + char *str_vlen_repeat; /* vlen string */ } comp7_t; /* compound8 datatype */ - typedef struct comp8_t - { - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen; /* vlen string */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - char *str_vlen_repeat; /* vlen string */ + typedef struct comp8_t { + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen; /* vlen string */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + char *str_vlen_repeat; /* vlen string */ } comp8_t; /* compound9 datatype */ - typedef struct comp9_t - { - char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ - char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ - char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ - int int_data1; - hobj_ref_t objref1; /* reference */ - char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ - hobj_ref_t objref2; /* reference */ - char *str_vlen; /* vlen string */ - int int_data2; - char *str_vlen_repeat; /* vlen string */ - hobj_ref_t objref3; /* reference */ - int int_data3; + typedef struct comp9_t { + char str_array_fixlen[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + char str_fixlen_array_again[FIXLEN_STR_ARRY_DIM][FIXLEN_STR_ARRY_SIZE]; /* fixed len string array */ + const char *str_array_vlen[VLEN_STR_ARRY_DIM]; /* vlen string array */ + const char *str_vlen_array_again[VLEN_STR_ARRY_DIM]; /* vlen string array */ + char str_fixlen[FIXLEN_STR_SIZE]; /* fixed len string */ + int int_data1; + hobj_ref_t objref1; /* reference */ + char str_fixlen_repeat[FIXLEN_STR_SIZE]; /* fixed len string */ + hobj_ref_t objref2; /* reference */ + char *str_vlen; /* vlen string */ + int int_data2; + char *str_vlen_repeat; /* vlen string */ + hobj_ref_t objref3; /* reference */ + int int_data3; } comp9_t; /* vlen string */ - hid_t sid_vlen_str=0; /* dataspace ID */ - hid_t tid_vlen_str=0; /* datatype ID */ - char vlen_str_buf[]= { - "Variable length string" - }; - hsize_t dims_vlen_str[] = {VLEN_STR_DIM}; + hid_t sid_vlen_str = -1; /* dataspace ID */ + hid_t tid_vlen_str = -1; /* datatype ID */ + char vlen_str_buf[] = { "Variable length string" }; + hsize_t dims_vlen_str[] = { VLEN_STR_DIM }; /* fixlen string */ - hid_t sid_fixlen_str=0; /* dataspace ID */ - hid_t tid_fixlen_str=0; /* datatype ID */ - const char fixlen_str_buf[FIXLEN_STR_SIZE]= { - "Fixed length string" - }; - hsize_t dims_fixlen_str[] = {FIXLEN_STR_DIM}; + hid_t sid_fixlen_str = -1; /* dataspace ID */ + hid_t tid_fixlen_str = -1; /* datatype ID */ + const char fixlen_str_buf[FIXLEN_STR_SIZE] = { "Fixed length string" }; + hsize_t dims_fixlen_str[] = { FIXLEN_STR_DIM }; /* vlen string array */ - hid_t sid_vlen_str_array=0; /* dataspace ID */ - hid_t tid_vlen_str_array_pre=0; /* datatype ID */ - hid_t tid_vlen_str_array=0; /* datatype ID */ - char *vlen_str_array_buf[VLEN_STR_ARRY_DIM]= { - "1 - Variable length string Array", - "2 - Testing variable length string array in compound type", - "3 - Four score and seven\n years ago our forefathers brought forth on this continent a new nation," - }; - hsize_t dims_vlen_str_array[] = {VLEN_STR_ARRY_DIM}; + hid_t sid_vlen_str_array = -1; /* dataspace ID */ + hid_t tid_vlen_str_array_pre = -1; /* datatype ID */ + hid_t tid_vlen_str_array = -1; /* datatype ID */ + const char *vlen_str_array_buf[VLEN_STR_ARRY_DIM] = + { "1 - Variable length string Array", + "2 - Testing variable length string array in compound type", + "3 - Four score and seven\n years ago our forefathers brought forth on this continent a new nation," }; + hsize_t dims_vlen_str_array[] = { VLEN_STR_ARRY_DIM }; /* fixlen string array */ - hid_t sid_fixlen_str_array=0; /* dataspace ID */ - hid_t tid_fixlen_str_array_pre=0; /* datatype ID */ - hid_t tid_fixlen_str_array=0; /* datatype ID */ - const char *fixlen_str_array_buf[FIXLEN_STR_ARRY_DIM]= { - "1 - Fixed length string Array", - "2 - Fixed length string Array", - "3 - Fixed length string Array" - }; - hsize_t dims_fixlen_str_array[] = {FIXLEN_STR_ARRY_DIM}; + hid_t sid_fixlen_str_array = -1; /* dataspace ID */ + hid_t tid_fixlen_str_array_pre = -1; /* datatype ID */ + hid_t tid_fixlen_str_array = -1; /* datatype ID */ + const char *fixlen_str_array_buf[FIXLEN_STR_ARRY_DIM] = { + "1 - Fixed length string Array", "2 - Fixed length string Array", + "3 - Fixed length string Array" }; + hsize_t dims_fixlen_str_array[] = { FIXLEN_STR_ARRY_DIM }; /*------------------------------------------ - * compound dataset - *------------------------------------------*/ - hid_t sid_comp=0; /* dataspace ID */ - hid_t tid1_comp=0; /* datatype ID */ - hid_t tid2_comp=0; /* datatype ID */ - hid_t tid3_comp=0; /* datatype ID */ - hid_t tid4_comp=0; /* datatype ID */ - hid_t tid5_comp=0; /* datatype ID */ - hid_t tid6_comp=0; /* datatype ID */ - hid_t tid7_comp=0; /* datatype ID */ - hid_t tid8_comp=0; /* datatype ID */ - hid_t tid9_comp=0; /* datatype ID */ - hid_t did_comp=0; /* dataset ID */ - hsize_t dims_comp[] = {COMP_DIM}; - herr_t status = SUCCEED; + * compound dataset + *------------------------------------------*/ + hid_t sid_comp = -1; /* dataspace ID */ + hid_t tid1_comp = -1; /* datatype ID */ + hid_t tid2_comp = -1; /* datatype ID */ + hid_t tid3_comp = -1; /* datatype ID */ + hid_t tid4_comp = -1; /* datatype ID */ + hid_t tid5_comp = -1; /* datatype ID */ + hid_t tid6_comp = -1; /* datatype ID */ + hid_t tid7_comp = -1; /* datatype ID */ + hid_t tid8_comp = -1; /* datatype ID */ + hid_t tid9_comp = -1; /* datatype ID */ + hid_t did_comp = -1; /* dataset ID */ + hsize_t dims_comp[] = { COMP_DIM }; + herr_t status = SUCCEED; /* make compound strings data */ comp1_t comp1_buf; @@ -3756,23 +3527,30 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int HDstrcpy(comp9_buf.str_fixlen_repeat, fixlen_str_buf); /* copy vlen string array data to compound buffers */ - for (i=0; i < VLEN_STR_ARRY_DIM; i++) - { - comp1_buf.str_array_vlen[i] = comp1_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp2_buf.str_array_vlen[i] = comp2_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp3_buf.str_array_vlen[i] = comp3_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp4_buf.str_array_vlen[i] = comp4_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp5_buf.str_array_vlen[i] = comp5_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp6_buf.str_array_vlen[i] = comp6_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp7_buf.str_array_vlen[i] = comp7_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp8_buf.str_array_vlen[i] = comp8_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; - comp9_buf.str_array_vlen[i] = comp9_buf.str_vlen_array_again[i] = vlen_str_array_buf[i]; + for (i = 0; i < VLEN_STR_ARRY_DIM; i++) { + comp1_buf.str_array_vlen[i] = comp1_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp2_buf.str_array_vlen[i] = comp2_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp3_buf.str_array_vlen[i] = comp3_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp4_buf.str_array_vlen[i] = comp4_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp5_buf.str_array_vlen[i] = comp5_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp6_buf.str_array_vlen[i] = comp6_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp7_buf.str_array_vlen[i] = comp7_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp8_buf.str_array_vlen[i] = comp8_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; + comp9_buf.str_array_vlen[i] = comp9_buf.str_vlen_array_again[i] = + vlen_str_array_buf[i]; } /* copy fixlen string attay data to compound buffers */ - for (i=0; i < FIXLEN_STR_ARRY_DIM; i++) - { + for (i = 0; i < FIXLEN_STR_ARRY_DIM; i++) { HDstrcpy(comp1_buf.str_array_fixlen[i], fixlen_str_array_buf[i]); HDstrcpy(comp1_buf.str_fixlen_array_again[i], fixlen_str_array_buf[i]); @@ -3806,25 +3584,20 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int comp9_buf.int_data2 = 20; comp9_buf.int_data3 = 30; - /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - if (is_file_new == 1) - { - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { + if (is_file_new == 1) { + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); status = FAIL; goto out; } } - else - { - fid1 = H5Fopen (fname1, H5F_ACC_RDWR, H5P_DEFAULT); - if (fid1 < 0) - { + else { + fid1 = H5Fopen(fname1, H5F_ACC_RDWR, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fopen failed.\n", fname1); status = FAIL; goto out; @@ -3835,8 +3608,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int * Create group *------------------------------------------------------------------------*/ gid = H5Gcreate2(fid1, grp_name, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid < 0) - { + if (gid < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -3846,8 +3618,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int * Variable length String1 - Create space and type *------------------------------------------------------------------------*/ sid_vlen_str = H5Screate_simple(STR_RANK, dims_vlen_str, NULL); - if (sid_vlen_str < 0) - { + if (sid_vlen_str < 0) { fprintf(stderr, "Error: %s> H5Screate_simple failed.\n", fname1); status = FAIL; goto out; @@ -3855,8 +3626,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int tid_vlen_str = H5Tcopy(H5T_C_S1); status = H5Tset_size(tid_vlen_str, H5T_VARIABLE); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tset_size failed.\n", fname1); status = FAIL; goto out; @@ -3866,8 +3636,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int * Fixed length String2 - Create space and type *------------------------------------------------------------------------*/ sid_fixlen_str = H5Screate_simple(STR_RANK, dims_fixlen_str, NULL); - if (sid_fixlen_str < 0) - { + if (sid_fixlen_str < 0) { fprintf(stderr, "Error: %s> H5Screate_simple failed.\n", fname1); status = FAIL; goto out; @@ -3875,8 +3644,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int tid_fixlen_str = H5Tcopy(H5T_C_S1); status = H5Tset_size(tid_fixlen_str, FIXLEN_STR_SIZE); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tset_size failed.\n", fname1); status = FAIL; goto out; @@ -3886,8 +3654,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int * Fixed length String3 array - Create space and type *------------------------------------------------------------------------*/ sid_vlen_str_array = H5Screate_simple(STR_RANK, dims_vlen_str_array, NULL); - if (sid_vlen_str_array < 0) - { + if (sid_vlen_str_array < 0) { fprintf(stderr, "Error: %s> H5Screate_simple failed.\n", fname1); status = FAIL; goto out; @@ -3895,17 +3662,15 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int tid_vlen_str_array_pre = H5Tcopy(H5T_C_S1); status = H5Tset_size(tid_vlen_str_array_pre, H5T_VARIABLE); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tset_size failed.\n", fname1); status = FAIL; goto out; } - /* Create the array data type for the string array */ + /* Create the array data type for the string array */ tid_vlen_str_array = H5Tarray_create2(tid_vlen_str_array_pre, COMP_RANK, dims_vlen_str_array); - if (tid_vlen_str_array < 0) - { + if (tid_vlen_str_array < 0) { fprintf(stderr, "Error: %s> H5Tarray_create2 failed.\n", fname1); status = FAIL; goto out; @@ -3915,8 +3680,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int * Variable length String4 array - Create space and type *------------------------------------------------------------------------*/ sid_fixlen_str_array = H5Screate_simple(STR_RANK, dims_fixlen_str_array, NULL); - if (sid_fixlen_str_array < 0) - { + if (sid_fixlen_str_array < 0) { fprintf(stderr, "Error: %s> H5Screate_simple failed.\n", fname1); status = FAIL; goto out; @@ -3924,126 +3688,123 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int tid_fixlen_str_array_pre = H5Tcopy(H5T_C_S1); status = H5Tset_size(tid_fixlen_str_array_pre, FIXLEN_STR_ARRY_SIZE); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tset_size failed.\n", fname1); status = FAIL; goto out; } - /* Create the array data type for the string array */ + /* Create the array data type for the string array */ tid_fixlen_str_array = H5Tarray_create2(tid_fixlen_str_array_pre, COMP_RANK, dims_fixlen_str_array); - if (tid_fixlen_str_array < 0) - { + if (tid_fixlen_str_array < 0) { fprintf(stderr, "Error: %s> H5Tarray_create2 failed.\n", fname1); status = FAIL; goto out; } - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * Compound dataset *------------------------------------------------------------------------*/ sid_comp = H5Screate_simple(COMP_RANK, dims_comp, NULL); - if (sid_comp < 0) - { + if (sid_comp < 0) { fprintf(stderr, "Error: %s> H5Screate_simple failed.\n", fname1); status = FAIL; goto out; } - tid1_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp1_t)); - tid2_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp2_t)); - tid3_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp3_t)); - tid4_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp4_t)); - tid5_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp5_t)); - tid6_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp6_t)); - tid7_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp7_t)); - tid8_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp8_t)); - tid9_comp = H5Tcreate (H5T_COMPOUND, sizeof(comp9_t)); + tid1_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp1_t)); + tid2_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp2_t)); + tid3_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp3_t)); + tid4_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp4_t)); + tid5_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp5_t)); + tid6_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp6_t)); + tid7_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp7_t)); + tid8_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp8_t)); + tid9_comp = H5Tcreate(H5T_COMPOUND, sizeof(comp9_t)); /* compound 1 */ - H5Tinsert(tid1_comp, "VLEN_STR1", HOFFSET(comp1_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid1_comp, "VLEN_STR2", HOFFSET(comp1_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid1_comp, "FIXLEN_STR1", HOFFSET(comp1_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid1_comp, "FIXLEN_STR2", HOFFSET(comp1_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid1_comp, "VLEN_STR1", HOFFSET(comp1_t, str_vlen), tid_vlen_str); + H5Tinsert(tid1_comp, "VLEN_STR2", HOFFSET(comp1_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid1_comp, "FIXLEN_STR1", HOFFSET(comp1_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid1_comp, "FIXLEN_STR2", HOFFSET(comp1_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid1_comp, "VLEN_STR_ARRAY1", HOFFSET(comp1_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid1_comp, "VLEN_STR_ARRAY2", HOFFSET(comp1_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid1_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp1_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid1_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp1_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 2 */ - H5Tinsert(tid2_comp, "VLEN_STR1", HOFFSET(comp2_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid2_comp, "VLEN_STR2", HOFFSET(comp2_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid2_comp, "FIXLEN_STR1", HOFFSET(comp2_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid2_comp, "FIXLEN_STR2", HOFFSET(comp2_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid2_comp, "VLEN_STR1", HOFFSET(comp2_t, str_vlen), tid_vlen_str); + H5Tinsert(tid2_comp, "VLEN_STR2", HOFFSET(comp2_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid2_comp, "FIXLEN_STR1", HOFFSET(comp2_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid2_comp, "FIXLEN_STR2", HOFFSET(comp2_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid2_comp, "VLEN_STR_ARRAY1", HOFFSET(comp2_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid2_comp, "VLEN_STR_ARRAY2", HOFFSET(comp2_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid2_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp2_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid2_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp2_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 3 */ - H5Tinsert(tid3_comp, "VLEN_STR1", HOFFSET(comp3_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid3_comp, "VLEN_STR2", HOFFSET(comp3_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid3_comp, "FIXLEN_STR1", HOFFSET(comp3_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid3_comp, "FIXLEN_STR2", HOFFSET(comp3_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid3_comp, "VLEN_STR1", HOFFSET(comp3_t, str_vlen), tid_vlen_str); + H5Tinsert(tid3_comp, "VLEN_STR2", HOFFSET(comp3_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid3_comp, "FIXLEN_STR1", HOFFSET(comp3_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid3_comp, "FIXLEN_STR2", HOFFSET(comp3_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid3_comp, "VLEN_STR_ARRAY1", HOFFSET(comp3_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid3_comp, "VLEN_STR_ARRAY2", HOFFSET(comp3_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid3_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp3_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid3_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp3_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 4 */ - H5Tinsert(tid4_comp, "VLEN_STR1", HOFFSET(comp4_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid4_comp, "VLEN_STR2", HOFFSET(comp4_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid4_comp, "FIXLEN_STR1", HOFFSET(comp4_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid4_comp, "FIXLEN_STR2", HOFFSET(comp4_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid4_comp, "VLEN_STR1", HOFFSET(comp4_t, str_vlen), tid_vlen_str); + H5Tinsert(tid4_comp, "VLEN_STR2", HOFFSET(comp4_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid4_comp, "FIXLEN_STR1", HOFFSET(comp4_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid4_comp, "FIXLEN_STR2", HOFFSET(comp4_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid4_comp, "VLEN_STR_ARRAY1", HOFFSET(comp4_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid4_comp, "VLEN_STR_ARRAY2", HOFFSET(comp4_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid4_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp4_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid4_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp4_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 5 */ - H5Tinsert(tid5_comp, "VLEN_STR1", HOFFSET(comp5_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid5_comp, "VLEN_STR2", HOFFSET(comp5_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid5_comp, "FIXLEN_STR1", HOFFSET(comp5_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid5_comp, "FIXLEN_STR2", HOFFSET(comp5_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid5_comp, "VLEN_STR1", HOFFSET(comp5_t, str_vlen), tid_vlen_str); + H5Tinsert(tid5_comp, "VLEN_STR2", HOFFSET(comp5_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid5_comp, "FIXLEN_STR1", HOFFSET(comp5_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid5_comp, "FIXLEN_STR2", HOFFSET(comp5_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid5_comp, "VLEN_STR_ARRAY1", HOFFSET(comp5_t, str_array_vlen), tid_vlen_str_array); - H5Tinsert(tid5_comp, "VLEN_STR_ARRAY2", HOFFSET(comp5_t, str_vlen_array_again), tid_vlen_str_array); + H5Tinsert(tid5_comp, "VLEN_STR_ARRAY2", HOFFSET(comp5_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid5_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp5_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid5_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp5_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 6 */ - H5Tinsert(tid6_comp, "VLEN_STR1", HOFFSET(comp6_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid6_comp, "VLEN_STR2", HOFFSET(comp6_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid6_comp, "FIXLEN_STR1", HOFFSET(comp6_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid6_comp, "FIXLEN_STR2", HOFFSET(comp6_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid6_comp, "VLEN_STR1", HOFFSET(comp6_t, str_vlen), tid_vlen_str); + H5Tinsert(tid6_comp, "VLEN_STR2", HOFFSET(comp6_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid6_comp, "FIXLEN_STR1", HOFFSET(comp6_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid6_comp, "FIXLEN_STR2", HOFFSET(comp6_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid6_comp, "VLEN_STR_ARRAY1", HOFFSET(comp6_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid6_comp, "VLEN_STR_ARRAY2", HOFFSET(comp6_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid6_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp6_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid6_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp6_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 7 */ - H5Tinsert(tid7_comp, "VLEN_STR1", HOFFSET(comp7_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid7_comp, "VLEN_STR2", HOFFSET(comp7_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid7_comp, "FIXLEN_STR1", HOFFSET(comp7_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid7_comp, "FIXLEN_STR2", HOFFSET(comp7_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid7_comp, "VLEN_STR1", HOFFSET(comp7_t, str_vlen), tid_vlen_str); + H5Tinsert(tid7_comp, "VLEN_STR2", HOFFSET(comp7_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid7_comp, "FIXLEN_STR1", HOFFSET(comp7_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid7_comp, "FIXLEN_STR2", HOFFSET(comp7_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid7_comp, "VLEN_STR_ARRAY1", HOFFSET(comp7_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid7_comp, "VLEN_STR_ARRAY2", HOFFSET(comp7_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid7_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp7_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid7_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp7_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 8 */ - H5Tinsert(tid8_comp, "VLEN_STR1", HOFFSET(comp8_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid8_comp, "VLEN_STR2", HOFFSET(comp8_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid8_comp, "FIXLEN_STR1", HOFFSET(comp8_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid8_comp, "FIXLEN_STR2", HOFFSET(comp8_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid8_comp, "VLEN_STR1", HOFFSET(comp8_t, str_vlen), tid_vlen_str); + H5Tinsert(tid8_comp, "VLEN_STR2", HOFFSET(comp8_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid8_comp, "FIXLEN_STR1", HOFFSET(comp8_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid8_comp, "FIXLEN_STR2", HOFFSET(comp8_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid8_comp, "VLEN_STR_ARRAY1", HOFFSET(comp8_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid8_comp, "VLEN_STR_ARRAY2", HOFFSET(comp8_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid8_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp8_t, str_array_fixlen), tid_fixlen_str_array); H5Tinsert(tid8_comp, "FIXLEN_STR_ARRAY2", HOFFSET(comp8_t, str_fixlen_array_again), tid_fixlen_str_array); /* compound 9 */ - H5Tinsert(tid9_comp, "VLEN_STR1", HOFFSET(comp9_t, str_vlen), tid_vlen_str ); - H5Tinsert(tid9_comp, "VLEN_STR2", HOFFSET(comp9_t, str_vlen_repeat), tid_vlen_str ); - H5Tinsert(tid9_comp, "FIXLEN_STR1", HOFFSET(comp9_t, str_fixlen), tid_fixlen_str ); - H5Tinsert(tid9_comp, "FIXLEN_STR2", HOFFSET(comp9_t, str_fixlen_repeat), tid_fixlen_str ); + H5Tinsert(tid9_comp, "VLEN_STR1", HOFFSET(comp9_t, str_vlen), tid_vlen_str); + H5Tinsert(tid9_comp, "VLEN_STR2", HOFFSET(comp9_t, str_vlen_repeat), tid_vlen_str); + H5Tinsert(tid9_comp, "FIXLEN_STR1", HOFFSET(comp9_t, str_fixlen), tid_fixlen_str); + H5Tinsert(tid9_comp, "FIXLEN_STR2", HOFFSET(comp9_t, str_fixlen_repeat), tid_fixlen_str); H5Tinsert(tid9_comp, "VLEN_STR_ARRAY1", HOFFSET(comp9_t, str_array_vlen), tid_vlen_str_array); H5Tinsert(tid9_comp, "VLEN_STR_ARRAY2", HOFFSET(comp9_t, str_vlen_array_again), tid_vlen_str_array); H5Tinsert(tid9_comp, "FIXLEN_STR_ARRAY1", HOFFSET(comp9_t, str_array_fixlen), tid_fixlen_str_array); @@ -4055,12 +3816,10 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int H5Tinsert(tid9_comp, "OBJREF2", HOFFSET(comp9_t, objref2), H5T_STD_REF_OBJ); H5Tinsert(tid9_comp, "OBJREF3", HOFFSET(comp9_t, objref3), H5T_STD_REF_OBJ); - /* Write data to compound 1 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset1", tid1_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid1_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp1_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4070,8 +3829,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 2 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset2", tid2_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid2_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp2_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4081,8 +3839,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 3 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset3", tid3_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid3_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp3_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4092,8 +3849,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 4 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset4", tid4_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid4_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp4_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4103,8 +3859,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 5 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset5", tid5_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid5_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp5_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4114,8 +3869,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 6 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset6", tid6_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid6_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp6_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4125,8 +3879,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 7 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset7", tid7_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid7_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp7_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4136,8 +3889,7 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int /* Write data to compound 8 dataset buffer */ did_comp = H5Dcreate2(gid, "Compound_dset8", tid8_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did_comp, tid8_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp8_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; @@ -4148,166 +3900,158 @@ static int test_comp_vlen_strings(const char *fname1, const char *grp_name, int did_comp = H5Dcreate2(gid, "Compound_dset9", tid9_comp, sid_comp, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* obj references */ - status=H5Rcreate(&(comp9_buf.objref1),gid,"Compound_dset2",H5R_OBJECT,(hid_t)-1); - status=H5Rcreate(&(comp9_buf.objref2),gid,"Compound_dset3",H5R_OBJECT,(hid_t)-1); - status=H5Rcreate(&(comp9_buf.objref3),gid,"Compound_dset4",H5R_OBJECT,(hid_t)-1); + status = H5Rcreate(&(comp9_buf.objref1), gid, "Compound_dset2", H5R_OBJECT, (hid_t) -1); + status = H5Rcreate(&(comp9_buf.objref2), gid, "Compound_dset3", H5R_OBJECT, (hid_t) -1); + status = H5Rcreate(&(comp9_buf.objref3), gid, "Compound_dset4", H5R_OBJECT, (hid_t) -1); status = H5Dwrite(did_comp, tid9_comp, H5S_ALL, H5S_ALL, H5P_DEFAULT, &comp9_buf); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", fname1); status = FAIL; goto out; } - H5Dclose(did_comp); + did_comp = -1; - did_comp=0; out: - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Close *-----------------------------------------------------------------------*/ - if(fid1 > 0) + if (fid1 > 0) H5Fclose(fid1); - if(gid > 0) + if (gid > 0) H5Gclose(gid); /* vlen string */ - if(tid_vlen_str > 0) + if (tid_vlen_str > 0) H5Tclose(tid_vlen_str); - if(sid_vlen_str > 0) + if (sid_vlen_str > 0) H5Sclose(sid_vlen_str); /* fixed len string */ - if(tid_fixlen_str > 0) + if (tid_fixlen_str > 0) H5Tclose(tid_fixlen_str); - if(sid_fixlen_str > 0) + if (sid_fixlen_str > 0) H5Sclose(sid_fixlen_str); /* vlen string array */ - if(tid_vlen_str_array_pre > 0) + if (tid_vlen_str_array_pre > 0) H5Tclose(tid_vlen_str_array_pre); - if(tid_vlen_str_array > 0) + if (tid_vlen_str_array > 0) H5Tclose(tid_vlen_str_array); - if(sid_vlen_str_array > 0) + if (sid_vlen_str_array > 0) H5Sclose(sid_vlen_str_array); /* fixed len string array */ - if(tid_fixlen_str_array_pre > 0) + if (tid_fixlen_str_array_pre > 0) H5Tclose(tid_fixlen_str_array_pre); - if(tid_fixlen_str_array > 0) + if (tid_fixlen_str_array > 0) H5Tclose(tid_fixlen_str_array); - if(sid_fixlen_str_array > 0) + if (sid_fixlen_str_array > 0) H5Sclose(sid_fixlen_str_array); /* compound */ - if(tid1_comp > 0) + if (tid1_comp > 0) H5Tclose(tid1_comp); - if(tid2_comp > 0) + if (tid2_comp > 0) H5Tclose(tid2_comp); - if(tid3_comp > 0) + if (tid3_comp > 0) H5Tclose(tid3_comp); - if(tid4_comp > 0) + if (tid4_comp > 0) H5Tclose(tid4_comp); - if(tid5_comp > 0) + if (tid5_comp > 0) H5Tclose(tid5_comp); - if(tid6_comp > 0) + if (tid6_comp > 0) H5Tclose(tid6_comp); - if(tid7_comp > 0) + if (tid7_comp > 0) H5Tclose(tid7_comp); - if(tid8_comp > 0) + if (tid8_comp > 0) H5Tclose(tid8_comp); - if(tid9_comp > 0) + if (tid9_comp > 0) H5Tclose(tid9_comp); - if(did_comp > 0) + if (did_comp > 0) H5Dclose(did_comp); - if(sid_comp > 0) + if (sid_comp > 0) H5Sclose(sid_comp); return status; } /* end test_comp_vlen_strings() */ - /*------------------------------------------------------------------------- -* -* Purpose: Test diffs of enum values which may include invalid values. -* -* Programmer: Dana Robinson -* -*-------------------------------------------------------------------------*/ - -static int -test_enums(const char *fname) + * + * Purpose: Test diffs of enum values which may include invalid values. + * + * Programmer: Dana Robinson + * + *-------------------------------------------------------------------------*/ + +static int test_enums(const char *fname) { - hid_t fid = -1; + hid_t fid = -1; - hid_t tid = -1; - int enum_val = -1; + hid_t tid = -1; + int enum_val = -1; /* The data in the two arrays cover the following cases: - * - * V = valid enum value, I = invalid enum value - * - * 0: I-I (same value) - * 1: V-I - * 2: I-V - * 3: V-V (same value) - * 4: I-I (different values) SKIPPED FOR NOW - * 5: V-V (different values) - */ + * + * V = valid enum value, I = invalid enum value + * + * 0: I-I (same value) + * 1: V-I + * 2: I-V + * 3: V-V (same value) + * 4: I-I (different values) SKIPPED FOR NOW + * 5: V-V (different values) + */ /* *** NOTE *** - * - * There is a bug in H5Dread() where invalid enum values are always - * returned as -1 so two different invalid enum values cannot be - * properly compared. Test 4 has been adjusted to pass here - * while we fix the issue. - */ - int data1[6] = {9, 0, 9, 0, 9, 0}; + * + * There is a bug in H5Dread() where invalid enum values are always + * returned as -1 so two different invalid enum values cannot be + * properly compared. Test 4 has been adjusted to pass here + * while we fix the issue. + */ + int data1[6] = { 9, 0, 9, 0, 9, 0 }; /*int data1[6] = {9, 0, 9, 0, 8, 0}; */ - int data2[6] = {9, 9, 0, 0, 9, 1}; + int data2[6] = { 9, 9, 0, 0, 9, 1 }; - hsize_t dims = 6; + hsize_t dims = 6; - herr_t status = SUCCEED; + herr_t status = SUCCEED; /*----------------------------------------------------------------------- - * Create the file - *---------------------------------------------------------------------*/ + * Create the file + *---------------------------------------------------------------------*/ fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); /*----------------------------------------------------------------------- - * Create enum types - *---------------------------------------------------------------------*/ + * Create enum types + *---------------------------------------------------------------------*/ tid = H5Tenum_create(H5T_NATIVE_INT); enum_val = 0; status = H5Tenum_insert(tid, "YIN", &enum_val); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tenum_insert failed.\n", fname); status = FAIL; goto out; } enum_val = 1; status = H5Tenum_insert(tid, "YANG", &enum_val); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tenum_insert failed.\n", fname); status = FAIL; goto out; } /*----------------------------------------------------------------------- - * Create datasets containing enum data. - *---------------------------------------------------------------------*/ + * Create datasets containing enum data. + *---------------------------------------------------------------------*/ status = write_dset(fid, 1, &dims, "dset1", tid, data1); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> write_dset failed.\n", fname); status = FAIL; goto out; } status = write_dset(fid, 1, &dims, "dset2", tid, data2); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> write_dset failed.\n", fname); status = FAIL; goto out; @@ -4315,41 +4059,41 @@ test_enums(const char *fname) out: /*----------------------------------------------------------------------- - * Close - *---------------------------------------------------------------------*/ - if(fid) + * Close + *---------------------------------------------------------------------*/ + if (fid) H5Fclose(fid); - if(tid) + if (tid) H5Tclose(tid); return status; } /*------------------------------------------------------------------------- -* -* Purpose: -* Create test files with dataset and attribute with container types -* (array, vlen) with multiple nested compound types. -* -* Function: test_comps_array() -* - type: compound->array->compound -* -* Function: test_comps_vlen() -* - type: compound->vlen->compound -* -* Function: test_comps_array_vlen() -* - type: compound->array->compound->vlen->compound -* -* Function: test_comps_vlen_arry() -* - type: compound->vlen->compound->array->compound -* -* Programmer: Jonathan Kim (Sep, 1, 2011) -* -*-------------------------------------------------------------------------*/ + * + * Purpose: + * Create test files with dataset and attribute with container types + * (array, vlen) with multiple nested compound types. + * + * Function: test_comps_array() + * - type: compound->array->compound + * + * Function: test_comps_vlen() + * - type: compound->vlen->compound + * + * Function: test_comps_array_vlen() + * - type: compound->array->compound->vlen->compound + * + * Function: test_comps_vlen_arry() + * - type: compound->vlen->compound->array->compound + * + * Programmer: Jonathan Kim (Sep, 1, 2011) + * + *-------------------------------------------------------------------------*/ #define SDIM_DSET 2 #define SDIM_CMPD_ARRAY 2 -static void test_comps_array (const char *fname, const char *dset, const char *attr,int diff, int is_file_new) +static void test_comps_array(const char *fname, const char *dset, const char *attr, int diff, int is_file_new) { /* sub compound 2 */ typedef struct { @@ -4363,42 +4107,39 @@ static void test_comps_array (const char *fname, const char *dset, const char *a cmpd2_t cmpd2[SDIM_CMPD_ARRAY]; } cmpd1_t; - cmpd1_t wdata[SDIM_DSET]; /* dataset with compound1 */ + cmpd1_t wdata[SDIM_DSET]; /* dataset with compound1 */ - hid_t fid; /* HDF5 File IDs */ - hid_t did_dset; /* Dataset ID */ - hid_t sid_dset; /* Dataset space ID */ - hid_t tid_cmpd1; /* Compound1 type ID */ - hid_t tid_arry1; /* Array type ID in compound1 */ - hid_t tid_cmpd2; /* Compound2 type ID */ - hid_t tid_attr; - hsize_t sdims_dset[] = {SDIM_DSET}; - hsize_t sdims_cmpd_arry[] = {SDIM_CMPD_ARRAY}; - int i,j; - herr_t ret; /* Generic return value */ + hid_t fid = -1; /* HDF5 File IDs */ + hid_t did_dset = -1; /* Dataset ID */ + hid_t sid_dset = -1; /* Dataset space ID */ + hid_t tid_cmpd1 = -1; /* Compound1 type ID */ + hid_t tid_arry1 = -1; /* Array type ID in compound1 */ + hid_t tid_cmpd2 = -1; /* Compound2 type ID */ + hid_t tid_attr = -1; + hsize_t sdims_dset[] = { SDIM_DSET }; + hsize_t sdims_cmpd_arry[] = { SDIM_CMPD_ARRAY }; + int i, j; + herr_t ret; /* Generic return value */ /* Initialize array data to write */ - for(i=0; i < SDIM_DSET; i++) - { + for (i = 0; i < SDIM_DSET; i++) { wdata[i].i1 = i; - for(j=0; j < SDIM_CMPD_ARRAY; j++) - { + for (j = 0; j < SDIM_CMPD_ARRAY; j++) { wdata[i].cmpd2[j].i2 = i * 10 + diff; - wdata[i].cmpd2[j].f2 = (float)i * 10.5F + (float)diff; + wdata[i].cmpd2[j].f2 = (float) i * 10.5F + (float) diff; } /* end for */ } - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ if (is_file_new == 1) fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); else - fid = H5Fopen (fname, H5F_ACC_RDWR, H5P_DEFAULT); - + fid = H5Fopen(fname, H5F_ACC_RDWR, H5P_DEFAULT); /* ------------------------------- - * Create a sub compound2 datatype */ + * Create a sub compound2 datatype */ tid_cmpd2 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd2_t)); /* Insert integer field */ @@ -4410,9 +4151,9 @@ static void test_comps_array (const char *fname, const char *dset, const char *a assert(ret >= 0); /*----------------------------------- - * Create a top compound1. - */ - tid_cmpd1 = H5Tcreate (H5T_COMPOUND, sizeof(cmpd1_t)); + * Create a top compound1. + */ + tid_cmpd1 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd1_t)); ret = H5Tinsert(tid_cmpd1, "int1", HOFFSET(cmpd1_t, i1), H5T_NATIVE_INT); assert(ret >= 0); @@ -4423,10 +4164,9 @@ static void test_comps_array (const char *fname, const char *dset, const char *a ret = H5Tinsert(tid_cmpd1, "array_cmpd1", HOFFSET(cmpd1_t, cmpd2), tid_arry1); assert(ret >= 0); - /* ------------------- - * Create a dataset - */ + * Create a dataset + */ /* Create dataspace for datasets */ sid_dset = H5Screate_simple(1, sdims_dset, NULL); @@ -4437,15 +4177,15 @@ static void test_comps_array (const char *fname, const char *dset, const char *a assert(ret >= 0); /*----------------------------------- - * Create an attribute in root group - */ + * Create an attribute in root group + */ tid_attr = H5Acreate2(fid, attr, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT); assert(tid_attr > 0); ret = H5Awrite(tid_attr, tid_cmpd1, wdata); assert(ret >= 0); /* ---------------- - * Close Dataset */ + * Close Dataset */ ret = H5Aclose(tid_attr); assert(ret >= 0); ret = H5Tclose(tid_arry1); @@ -4462,9 +4202,7 @@ static void test_comps_array (const char *fname, const char *dset, const char *a assert(ret >= 0); } - - -static void test_comps_vlen (const char * fname, const char *dset, const char *attr, int diff, int is_file_new) +static void test_comps_vlen(const char * fname, const char *dset, const char *attr, int diff, int is_file_new) { /* sub compound 2 */ typedef struct { @@ -4475,44 +4213,46 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a /* top compound 1 */ typedef struct { int i1; - hvl_t vl; /* VL information for compound2 */ + hvl_t vl; /* VL information for compound2 */ } cmpd1_t; - cmpd1_t wdata[SDIM_DSET]; /* Dataset for compound1 */ + cmpd1_t wdata[SDIM_DSET]; /* Dataset for compound1 */ - hid_t fid; /* HDF5 File ID */ - hid_t did_dset; /* dataset ID */ - hid_t sid_dset; /* dataset space ID */ - hid_t tid_attr; - hid_t tid_cmpd2; /* compound2 type ID */ - hid_t tid_cmpd1; /* compound1 type ID */ - hid_t tid_cmpd1_vlen; - hsize_t sdims_dset[] = {SDIM_DSET}; + hid_t fid = -1; /* HDF5 File ID */ + hid_t did_dset = -1; /* dataset ID */ + hid_t sid_dset = -1; /* dataset space ID */ + hid_t tid_attr = -1; + hid_t tid_cmpd2 = -1; /* compound2 type ID */ + hid_t tid_cmpd1 = -1; /* compound1 type ID */ + hid_t tid_cmpd1_vlen = -1; + hsize_t sdims_dset[] = { SDIM_DSET }; - unsigned i,j; /* counting variables */ - herr_t ret; /* Generic return value */ + unsigned i, j; /* counting variables */ + herr_t ret; /* Generic return value */ /* Allocate and initialize VL data to write */ - for(i = 0; i < SDIM_DSET; i++) { - wdata[i].i1 = (int)i; + for (i = 0; i < SDIM_DSET; i++) { + wdata[i].i1 = (int) i; wdata[i].vl.p = HDmalloc((i + 1) * sizeof(cmpd2_t)); wdata[i].vl.len = i + 1; - for(j = 0; j < (i + 1); j++) { - ((cmpd2_t *)wdata[i].vl.p)[j].i2 = (int)(i * 10 + (unsigned)diff); - ((cmpd2_t *)wdata[i].vl.p)[j].f2 = (float)i * 10.5F + (float)diff; + for (j = 0; j < (i + 1); j++) { + ((cmpd2_t *) wdata[i].vl.p)[j].i2 = + (int) (i * 10 + (unsigned) diff); + ((cmpd2_t *) wdata[i].vl.p)[j].f2 = (float) i * 10.5F + + (float) diff; } /* end for */ } /* end for */ /*----------------------------------------------------------------------- - * Create file(s) - *------------------------------------------------------------------------*/ + * Create file(s) + *------------------------------------------------------------------------*/ if (is_file_new == 1) fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); else - fid = H5Fopen (fname, H5F_ACC_RDWR, H5P_DEFAULT); + fid = H5Fopen(fname, H5F_ACC_RDWR, H5P_DEFAULT); /* ----------------------------- - * Create sub compound2 type */ + * Create sub compound2 type */ tid_cmpd2 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd2_t)); /* Insert fields */ @@ -4522,7 +4262,7 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a assert(ret >= 0); /* --------------------------- - * Create top compound1 type */ + * Create top compound1 type */ tid_cmpd1 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd1_t)); /* Insert fields */ ret = H5Tinsert(tid_cmpd1, "int1", HOFFSET(cmpd1_t, i1), H5T_NATIVE_INT); @@ -4534,8 +4274,8 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a assert(ret >= 0); /* ------------------------------- - * Create dataset with compound1 - */ + * Create dataset with compound1 + */ /* Create dataspace for dataset */ sid_dset = H5Screate_simple(1, sdims_dset, NULL); @@ -4547,8 +4287,8 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a assert(ret >= 0); /*----------------------------------- - * Create an attribute in root group - */ + * Create an attribute in root group + */ tid_attr = H5Acreate2(fid, attr, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT); assert(tid_attr > 0); ret = H5Awrite(tid_attr, tid_cmpd1, wdata); @@ -4559,7 +4299,7 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a assert(ret >= 0); /* ---------------- - * Close IDs */ + * Close IDs */ ret = H5Aclose(tid_attr); assert(ret >= 0); ret = H5Dclose(did_dset); @@ -4576,17 +4316,16 @@ static void test_comps_vlen (const char * fname, const char *dset, const char *a assert(ret >= 0); } - -static void test_comps_array_vlen (const char * fname, const char *dset,const char *attr, int diff, int is_file_new) +static void test_comps_array_vlen(const char * fname, const char *dset, const char *attr, int diff, int is_file_new) { typedef struct { int i3; float f3; } cmpd3_t; - typedef struct { /* Typedef for compound datatype */ + typedef struct { /* Typedef for compound datatype */ int i2; - hvl_t vl; /* VL information to write */ + hvl_t vl; /* VL information to write */ } cmpd2_t; typedef struct { @@ -4594,53 +4333,53 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch cmpd2_t cmpd2[SDIM_CMPD_ARRAY]; } cmpd1_t; - cmpd1_t wdata[SDIM_DSET]; /* Information to write */ - hid_t fid; /* HDF5 File IDs */ - hid_t did_dset; /* Dataset ID */ - hid_t sid_dset; /* Dataspace ID */ - hid_t tid_attr; - hid_t tid_cmpd1; /* Compound1 Datatype ID */ - hid_t tid_arry1; /* Array Datatype ID */ - hid_t tid_cmpd2; /* Compound2 Datatype ID */ - hid_t tid_cmpd2_vlen; - hid_t tid_cmpd3; /* Compound3 Datatype ID */ - hsize_t sdims_dset[] = {SDIM_DSET}; - hsize_t sdims_arry[] = {SDIM_CMPD_ARRAY}; - unsigned i, j, k; /* counting variables */ - herr_t ret; /* Generic return value */ - - + cmpd1_t wdata[SDIM_DSET]; /* Information to write */ + hid_t fid = -1; /* HDF5 File IDs */ + hid_t did_dset = -1; /* Dataset ID */ + hid_t sid_dset = -1; /* Dataspace ID */ + hid_t tid_attr = -1; + hid_t tid_cmpd1 = -1; /* Compound1 Datatype ID */ + hid_t tid_arry1 = -1; /* Array Datatype ID */ + hid_t tid_cmpd2 = -1; /* Compound2 Datatype ID */ + hid_t tid_cmpd2_vlen = -1; + hid_t tid_cmpd3 = -1; /* Compound3 Datatype ID */ + hsize_t sdims_dset[] = { SDIM_DSET }; + hsize_t sdims_arry[] = { SDIM_CMPD_ARRAY }; + unsigned i, j, k; /* counting variables */ + herr_t ret; /* Generic return value */ /* Initialize array data to write in compound1 */ - for(i = 0; i < SDIM_DSET; i++) { - wdata[i].i1 = (int)i; + for (i = 0; i < SDIM_DSET; i++) { + wdata[i].i1 = (int) i; /* Allocate and initialize VL data to write in compound2 */ - for(j = 0; j < SDIM_CMPD_ARRAY; j++) { - wdata[i].cmpd2[j].i2 = (int)(j * 10); + for (j = 0; j < SDIM_CMPD_ARRAY; j++) { + wdata[i].cmpd2[j].i2 = (int) (j * 10); wdata[i].cmpd2[j].vl.p = HDmalloc((j + 1) * sizeof(cmpd3_t)); wdata[i].cmpd2[j].vl.len = j + 1; - for(k = 0; k < (j + 1); k++) { + for (k = 0; k < (j + 1); k++) { /* Initialize data of compound3 */ - ((cmpd3_t *)wdata[i].cmpd2[j].vl.p)[k].i3 = (int)j * 10 + diff; - ((cmpd3_t *)wdata[i].cmpd2[j].vl.p)[k].f3 = (float)j * 10.5F + (float)diff; + ((cmpd3_t *) wdata[i].cmpd2[j].vl.p)[k].i3 = (int) j * 10 + + diff; + ((cmpd3_t *) wdata[i].cmpd2[j].vl.p)[k].f3 = (float) j * 10.5F + + (float) diff; } /* end for */ } /* end for */ } /*----------------------------------------------------------------------- - * Create file(s) - *------------------------------------------------------------------------*/ + * Create file(s) + *------------------------------------------------------------------------*/ if (is_file_new == 1) fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); else - fid = H5Fopen (fname, H5F_ACC_RDWR, H5P_DEFAULT); + fid = H5Fopen(fname, H5F_ACC_RDWR, H5P_DEFAULT); /* Create dataspace for datasets */ sid_dset = H5Screate_simple(1, sdims_dset, NULL); /*------------------------------------- - * Create a sub compound3 datatype */ + * Create a sub compound3 datatype */ tid_cmpd3 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd3_t)); /* Insert integer field */ @@ -4651,9 +4390,8 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch ret = H5Tinsert(tid_cmpd3, "float", HOFFSET(cmpd3_t, f3), H5T_NATIVE_FLOAT); assert(ret >= 0); - /*------------------------------------- - * Create a sub compound2 datatype */ + * Create a sub compound2 datatype */ tid_cmpd2 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd2_t)); /* Insert integer field */ @@ -4664,20 +4402,18 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch ret = H5Tinsert(tid_cmpd2, "vlen", HOFFSET(cmpd2_t, vl), tid_cmpd2_vlen); assert(ret >= 0); - /*----------------------------------- - * Create a top compound1 datatype for dataset. - */ - tid_cmpd1 = H5Tcreate (H5T_COMPOUND, sizeof(cmpd1_t)); + * Create a top compound1 datatype for dataset. + */ + tid_cmpd1 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd1_t)); /* Create an array datatype */ tid_arry1 = H5Tarray_create2(tid_cmpd2, 1, sdims_arry); /* insert the array */ H5Tinsert(tid_cmpd1, "array_comp", HOFFSET(cmpd1_t, cmpd2), tid_arry1); - /* ---------------------- - * Create a dataset */ + * Create a dataset */ did_dset = H5Dcreate2(fid, dset, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); /* Write dataset to disk */ @@ -4685,8 +4421,8 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch assert(ret >= 0); /*----------------------------------- - * Create an attribute in root group - */ + * Create an attribute in root group + */ tid_attr = H5Acreate2(fid, attr, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT); assert(tid_attr > 0); ret = H5Awrite(tid_attr, tid_cmpd1, wdata); @@ -4697,7 +4433,7 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch assert(ret >= 0); /*------------------- - * Close IDs */ + * Close IDs */ ret = H5Aclose(tid_attr); assert(ret >= 0); ret = H5Tclose(tid_arry1); @@ -4718,8 +4454,7 @@ static void test_comps_array_vlen (const char * fname, const char *dset,const ch assert(ret >= 0); } - -static void test_comps_vlen_arry (const char * fname, const char *dset, const char *attr, int diff, int is_file_new) +static void test_comps_vlen_arry(const char * fname, const char *dset, const char *attr, int diff, int is_file_new) { /* sub compound 3 */ typedef struct { @@ -4736,53 +4471,53 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch /* top compound 1 */ typedef struct { int i1; - hvl_t vl; /* VL information for compound2 */ + hvl_t vl; /* VL information for compound2 */ } cmpd1_t; - cmpd1_t wdata[SDIM_DSET]; /* Dataset for compound1 */ + cmpd1_t wdata[SDIM_DSET]; /* Dataset for compound1 */ - hid_t fid; /* HDF5 File ID */ - hid_t did_dset; /* dataset ID */ - hid_t sid_dset; /* dataset space ID */ - hid_t tid_attr; - hid_t tid_cmpd3; /* compound3 type ID */ - hid_t tid_cmpd2; /* compound2 type ID */ - hid_t tid_cmpd2_arry; - hid_t tid_cmpd1; /* compound1 type ID */ - hid_t tid_cmpd1_vlen; - hsize_t sdims_dset[] = {SDIM_DSET}; - hsize_t sdims_cmpd_arry[] = {SDIM_CMPD_ARRAY}; + hid_t fid = -1; /* HDF5 File ID */ + hid_t did_dset = -1; /* dataset ID */ + hid_t sid_dset = -1; /* dataset space ID */ + hid_t tid_attr = -1; + hid_t tid_cmpd3 = -1; /* compound3 type ID */ + hid_t tid_cmpd2 = -1; /* compound2 type ID */ + hid_t tid_cmpd2_arry = -1; + hid_t tid_cmpd1 = -1; /* compound1 type ID */ + hid_t tid_cmpd1_vlen = -1; + hsize_t sdims_dset[] = { SDIM_DSET }; + hsize_t sdims_cmpd_arry[] = { SDIM_CMPD_ARRAY }; - unsigned i,j,k; /* counting variables */ - herr_t ret; /* Generic return value */ + unsigned i, j, k; /* counting variables */ + herr_t ret; /* Generic return value */ /* Allocate and initialize VL data to write */ - for(i = 0; i < SDIM_DSET; i++) { + for (i = 0; i < SDIM_DSET; i++) { /* compound 1 data */ - wdata[i].i1 = (int)i; + wdata[i].i1 = (int) i; wdata[i].vl.p = HDmalloc((i + 1) * sizeof(cmpd2_t)); wdata[i].vl.len = i + 1; - for(j = 0; j < (i + 1); j++) { + for (j = 0; j < (i + 1); j++) { /* compound2 data */ - ((cmpd2_t *)wdata[i].vl.p)[j].i2 = (int)i * 10 + diff; - for(k = 0; k < SDIM_CMPD_ARRAY; k++) { + ((cmpd2_t *) wdata[i].vl.p)[j].i2 = (int) i * 10 + diff; + for (k = 0; k < SDIM_CMPD_ARRAY; k++) { /* compound 3 data */ - ((cmpd2_t *)(wdata[i].vl.p))[j].cmpd3[k].i3 = (int)((float)k * 10.5F) + diff; - ((cmpd2_t *)(wdata[i].vl.p))[j].cmpd3[k].f3 = (float)k * 10.5F + (float)diff; + ((cmpd2_t *) (wdata[i].vl.p))[j].cmpd3[k].i3 = (int) ((float) k * 10.5F) + diff; + ((cmpd2_t *) (wdata[i].vl.p))[j].cmpd3[k].f3 = (float) k * 10.5F + (float) diff; } /* end for */ } /* end for */ } /* end for */ /*----------------------------------------------------------------------- - * Create file(s) - *------------------------------------------------------------------------*/ + * Create file(s) + *------------------------------------------------------------------------*/ if (is_file_new == 1) fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); else - fid = H5Fopen (fname, H5F_ACC_RDWR, H5P_DEFAULT); + fid = H5Fopen(fname, H5F_ACC_RDWR, H5P_DEFAULT); /* ----------------------------- - * Create sub compound3 type */ + * Create sub compound3 type */ tid_cmpd3 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd3_t)); /* Insert fields */ @@ -4792,7 +4527,7 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch assert(ret >= 0); /* ----------------------------- - * Create sub compound2 type */ + * Create sub compound2 type */ tid_cmpd2 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd2_t)); ret = H5Tinsert(tid_cmpd2, "int2", HOFFSET(cmpd2_t, i2), H5T_NATIVE_INT); @@ -4803,8 +4538,8 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch assert(ret >= 0); /* --------------------------- - * Create top compound1 type - */ + * Create top compound1 type + */ /* Create a VL datatype */ tid_cmpd1 = H5Tcreate(H5T_COMPOUND, sizeof(cmpd1_t)); /* Insert fields */ @@ -4815,21 +4550,22 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch assert(ret >= 0); /* ------------------------------- - * Create dataset with compound1 - */ + * Create dataset with compound1 + */ /* Create dataspace for dataset */ sid_dset = H5Screate_simple(1, sdims_dset, NULL); /* Create a dataset */ - did_dset = H5Dcreate2(fid, dset, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + did_dset = H5Dcreate2(fid, dset, tid_cmpd1, sid_dset, H5P_DEFAULT, + H5P_DEFAULT, H5P_DEFAULT); /* Write dataset to disk */ ret = H5Dwrite(did_dset, tid_cmpd1, H5S_ALL, H5S_ALL, H5P_DEFAULT, wdata); assert(ret >= 0); /*----------------------------------- - * Create an attribute in root group - */ + * Create an attribute in root group + */ tid_attr = H5Acreate2(fid, attr, tid_cmpd1, sid_dset, H5P_DEFAULT, H5P_DEFAULT); assert(tid_attr > 0); ret = H5Awrite(tid_attr, tid_cmpd1, wdata); @@ -4840,7 +4576,7 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch assert(ret >= 0); /* ---------------- - * Close IDs */ + * Close IDs */ ret = H5Aclose(tid_attr); assert(ret >= 0); ret = H5Dclose(did_dset); @@ -4861,99 +4597,95 @@ static void test_comps_vlen_arry (const char * fname, const char *dset, const ch assert(ret >= 0); } - /*------------------------------------------------------------------------- -* Function: test_data_nocomparables -* -* Purpose: -* Create test files with non-comparable dataset and attributes with -* comparable datasets and attributes. All the comparables should display -* differences. -* -*-------------------------------------------------------------------------*/ + * Function: test_data_nocomparables + * + * Purpose: + * Create test files with non-comparable dataset and attributes with + * comparable datasets and attributes. All the comparables should display + * differences. + * + *-------------------------------------------------------------------------*/ #define DIM_ARRY 3 -static void test_data_nocomparables (const char * fname, int make_diffs) +static void test_data_nocomparables(const char * fname, int make_diffs) { - hid_t fid=0; - hid_t gid1=0; - hid_t gid2=0; - hid_t did1=0; - hid_t did2=0; - hid_t sid1=0; - hid_t tid_dset1=0; - hid_t tid_attr1=0; - hsize_t dims1_1[1] = {DIM_ARRY}; - hsize_t dims1_2[1] = {DIM_ARRY+1}; - hsize_t dims2[2] = {DIM_ARRY, 1}; - int data1[DIM_ARRY] = {0,0,0}; - int data2[DIM_ARRY] = {1,1,1}; - int data3[DIM_ARRY+1] = {1,1,1,1}; - int data1_dim2[DIM_ARRY][1] = {{0},{0},{0}}; + hid_t fid = -1; + hid_t gid1 = -1; + hid_t gid2 = -1; + hid_t did1 = -1; + hid_t did2 = -1; + hid_t sid1 = -1; + hid_t tid_dset1 = -1; + hid_t tid_attr1 = -1; + hsize_t dims1_1[1] = { DIM_ARRY }; + hsize_t dims1_2[1] = { DIM_ARRY + 1 }; + hsize_t dims2[2] = { DIM_ARRY, 1 }; + int data1[DIM_ARRY] = { 0, 0, 0 }; + int data2[DIM_ARRY] = { 1, 1, 1 }; + int data3[DIM_ARRY + 1] = { 1, 1, 1, 1 }; + int data1_dim2[DIM_ARRY][1] = { { 0 }, { 0 }, { 0 } }; int rank_attr; - char data1_str[DIM_ARRY][STR_SIZE]= {"ab","cd","ef"}; - herr_t status = SUCCEED; - void *dset_data_ptr1=NULL; - void *dset_data_ptr2=NULL; - void *dset_data_ptr3=NULL; - void *attr_data_ptr1=NULL; - void *attr_data_ptr2=NULL; - void *attr_data_ptr3=NULL; - void *attr_data_ptr4=NULL; - void *attr2_dim_ptr=NULL; - void *attr3_dim_ptr=NULL; + char data1_str[DIM_ARRY][STR_SIZE] = { "ab", "cd", "ef" }; + herr_t status = SUCCEED; + void *dset_data_ptr1 = NULL; + void *dset_data_ptr2 = NULL; + void *dset_data_ptr3 = NULL; + void *attr_data_ptr1 = NULL; + void *attr_data_ptr2 = NULL; + void *attr_data_ptr3 = NULL; + void *attr_data_ptr4 = NULL; + void *attr2_dim_ptr = NULL; + void *attr3_dim_ptr = NULL; /* init */ - tid_dset1=H5Tcopy(H5T_NATIVE_INT); - dset_data_ptr1=(int*)&data1; - dset_data_ptr2=(int*)&data1; - dset_data_ptr3=(int*)&data1; - tid_attr1=H5Tcopy(H5T_NATIVE_INT); - attr_data_ptr1=(int*)&data1; - attr_data_ptr3=(int*)&data1; - attr_data_ptr4=(int*)&data1; - attr2_dim_ptr=(hsize_t*)&dims1_1; - attr3_dim_ptr=(hsize_t*)&dims1_1; - rank_attr=1; - - if (make_diffs) - { + tid_dset1 = H5Tcopy(H5T_NATIVE_INT); + dset_data_ptr1 = (int*) &data1; + dset_data_ptr2 = (int*) &data1; + dset_data_ptr3 = (int*) &data1; + tid_attr1 = H5Tcopy(H5T_NATIVE_INT); + attr_data_ptr1 = (int*) &data1; + attr_data_ptr3 = (int*) &data1; + attr_data_ptr4 = (int*) &data1; + attr2_dim_ptr = (hsize_t*) &dims1_1; + attr3_dim_ptr = (hsize_t*) &dims1_1; + rank_attr = 1; + + if (make_diffs) { /* ------------ - * group1 */ - tid_dset1=H5Tcopy(H5T_C_S1); - H5Tset_size(tid_dset1, (size_t)STR_SIZE); - dset_data_ptr1=(char*)&data1_str; - dset_data_ptr2=(int*)&data2; - attr_data_ptr1=(int*)&data2; + * group1 */ + tid_dset1 = H5Tcopy(H5T_C_S1); + H5Tset_size(tid_dset1, (size_t) STR_SIZE); + dset_data_ptr1 = (char*) &data1_str; + dset_data_ptr2 = (int*) &data2; + attr_data_ptr1 = (int*) &data2; /* ----------- - * group2 - */ - dset_data_ptr3=(int*)&data2; + * group2 + */ + dset_data_ptr3 = (int*) &data2; /* dset1/attr1 */ - tid_attr1=H5Tcopy(H5T_C_S1); - H5Tset_size(tid_attr1, (size_t)STR_SIZE); - attr_data_ptr2=(char*)&data1_str; + tid_attr1 = H5Tcopy(H5T_C_S1); + H5Tset_size(tid_attr1, (size_t) STR_SIZE); + attr_data_ptr2 = (char*) &data1_str; /* dset1/attr2 */ - attr2_dim_ptr=(hsize_t*)&dims1_2; + attr2_dim_ptr = (hsize_t*) &dims1_2; /* dset1/attr3 */ - attr_data_ptr3=(int*)&data1_dim2; - attr3_dim_ptr=(hsize_t*)&dims2; - rank_attr=2; + attr_data_ptr3 = (int*) &data1_dim2; + attr3_dim_ptr = (hsize_t*) &dims2; + rank_attr = 2; /* dset1/attr4 */ - attr_data_ptr4=(int*)&data2; + attr_data_ptr4 = (int*) &data2; } - - /*----------------------------------------------------------------------- + /*----------------------------------------------------------------------- * Create file(s) *------------------------------------------------------------------------*/ - fid = H5Fcreate (fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid < 0) - { + fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid < 0) { fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname); status = FAIL; goto out; @@ -4963,16 +4695,14 @@ static void test_data_nocomparables (const char * fname, int make_diffs) * Groups *------------------------------------------------------------------------*/ gid1 = H5Gcreate2(fid, "g1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname); status = FAIL; goto out; } gid2 = H5Gcreate2(fid, "g2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname); status = FAIL; goto out; @@ -4981,29 +4711,26 @@ static void test_data_nocomparables (const char * fname, int make_diffs) /*----------------------------------------------------------------------- * Datasets in /g1 *------------------------------------------------------------------------*/ - if((sid1 = H5Screate_simple(1, dims1_1, NULL)) < 0) - goto out; + if ((sid1 = H5Screate_simple(1, dims1_1, NULL)) < 0) + goto out; /* dset1 */ - if((did1 = H5Dcreate2(gid1, "dset1", tid_dset1, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) - { + if ((did1 = H5Dcreate2(gid1, "dset1", tid_dset1, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) { fprintf(stderr, "Error: %s> H5Dcreate2 failed.\n", "dset1"); status = FAIL; goto out; } - if(H5Dwrite(did1, tid_dset1, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data_ptr1) < 0) - { + if (H5Dwrite(did1, tid_dset1, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data_ptr1) < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", "dset1"); status = FAIL; goto out; } - write_attr(did1,1,dims1_1,"attr", H5T_NATIVE_INT, attr_data_ptr1); + write_attr(did1, 1, dims1_1, "attr", H5T_NATIVE_INT, attr_data_ptr1); /* dset2 */ - status = write_dset(gid1, 1, dims1_1,"dset2", H5T_NATIVE_INT, dset_data_ptr2); - if (status == FAIL) - { + status = write_dset(gid1, 1, dims1_1, "dset2", H5T_NATIVE_INT, dset_data_ptr2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname); goto out; } @@ -5012,108 +4739,100 @@ static void test_data_nocomparables (const char * fname, int make_diffs) * Datasets in /g2 *------------------------------------------------------------------------*/ /* --------- - * dset1 */ - if((did2 = H5Dcreate2(gid2, "dset1", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) - { + * dset1 */ + if ((did2 = H5Dcreate2(gid2, "dset1", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) { fprintf(stderr, "Error: %s> H5Dcreate2 failed.\n", "dset1"); status = FAIL; goto out; } - if(H5Dwrite(did2, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data_ptr3) < 0) - { + if (H5Dwrite(did2, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, dset_data_ptr3) < 0) { fprintf(stderr, "Error: %s> H5Dwrite failed.\n", "dset1"); status = FAIL; goto out; } /* attr1 - non-compatible : different type */ - write_attr(did2,1,dims1_1,"attr1", tid_attr1, attr_data_ptr2); - + write_attr(did2, 1, dims1_1, "attr1", tid_attr1, attr_data_ptr2); /* attr2 - non-compatible : same rank, different dimention */ - write_attr(did2,1, attr2_dim_ptr,"attr2", H5T_NATIVE_INT, data3); + write_attr(did2, 1, (hsize_t *) attr2_dim_ptr, "attr2", H5T_NATIVE_INT, data3); /* attr3 - non-compatible : different rank */ - write_attr(did2, rank_attr,attr3_dim_ptr,"attr3", H5T_NATIVE_INT, attr_data_ptr3); + write_attr(did2, rank_attr, (hsize_t *) attr3_dim_ptr, "attr3", H5T_NATIVE_INT, attr_data_ptr3); /* attr4 - compatible : different data values */ - write_attr(did2,1,dims1_1,"attr4", H5T_NATIVE_INT, attr_data_ptr4); + write_attr(did2, 1, dims1_1, "attr4", H5T_NATIVE_INT, attr_data_ptr4); /*---------- - * dset2 */ - status = write_dset(gid2, 1, dims1_1,"dset2", H5T_NATIVE_INT, dset_data_ptr3); - if (status == FAIL) - { + * dset2 */ + status = write_dset(gid2, 1, dims1_1, "dset2", H5T_NATIVE_INT, dset_data_ptr3); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname); goto out; } - - out: /*----------------------------------------------------------------------- * Close IDs *-----------------------------------------------------------------------*/ - if(fid) + if (fid) H5Fclose(fid); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); - if(did1) + if (did1) H5Dclose(did1); - if(did2) + if (did2) H5Dclose(did2); - if(sid1) + if (sid1) H5Sclose(sid1); - if(tid_dset1) + if (tid_dset1) H5Tclose(tid_dset1); - if(tid_attr1) + if (tid_attr1) H5Tclose(tid_attr1); } /*------------------------------------------------------------------------- -* Function: test_objs_nocomparables -* -* Purpose: -* Create test files with common objects (same name) but different object -* types. -* h5diff should show non-comparable output from these common objects. -*-------------------------------------------------------------------------*/ + * Function: test_objs_nocomparables + * + * Purpose: + * Create test files with common objects (same name) but different object + * types. + * h5diff should show non-comparable output from these common objects. + *-------------------------------------------------------------------------*/ static void test_objs_nocomparables(const char *fname1, const char *fname2) { - herr_t status = SUCCEED; - hid_t fid1=0; - hid_t fid2=0; - hid_t topgid1=0; - hid_t topgid2=0; - hid_t gid1=0; - hid_t did1=0; - hid_t tid1=0; - hid_t gid2=0; - hid_t did2=0; - hid_t tid2=0; - hsize_t dims[1] = {DIM_ARRY}; - int data1[DIM_ARRY] = {1,1,1}; - int data2[DIM_ARRY] = {2,2,2}; - - /*----------------------------------------------------------------------- + herr_t status = SUCCEED; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t topgid1 = -1; + hid_t topgid2 = -1; + hid_t gid1 = -1; + hid_t did1 = -1; + hid_t tid1 = -1; + hid_t gid2 = -1; + hid_t did2 = -1; + hid_t tid2 = -1; + hsize_t dims[1] = { DIM_ARRY }; + int data1[DIM_ARRY] = { 1, 1, 1 }; + int data2[DIM_ARRY] = { 2, 2, 2 }; + + /*----------------------------------------------------------------------- * Open file(s) to add objects *------------------------------------------------------------------------*/ /* file1 */ - fid1 = H5Fopen (fname1, H5F_ACC_RDWR, H5P_DEFAULT); - if (fid1 < 0) - { + fid1 = H5Fopen(fname1, H5F_ACC_RDWR, H5P_DEFAULT); + if (fid1 < 0) { fprintf(stderr, "Error: %s> H5Fopen failed.\n", fname1); status = FAIL; goto out; } /* file2 */ - fid2 = H5Fopen (fname2, H5F_ACC_RDWR, H5P_DEFAULT); - if (fid2 < 0) - { + fid2 = H5Fopen(fname2, H5F_ACC_RDWR, H5P_DEFAULT); + if (fid2 < 0) { fprintf(stderr, "Error: %s> H5Fopen failed.\n", fname2); status = FAIL; goto out; @@ -5124,25 +4843,22 @@ static void test_objs_nocomparables(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* parent group */ topgid1 = H5Gcreate2(fid1, "diffobjtypes", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (topgid1 < 0) - { + if (topgid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; } /* dataset */ - status = write_dset(topgid1, 1, dims,"obj1", H5T_NATIVE_INT, data1); - if (status == FAIL) - { + status = write_dset(topgid1, 1, dims, "obj1", H5T_NATIVE_INT, data1); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname1); goto out; } /* group */ gid1 = H5Gcreate2(topgid1, "obj2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid1 < 0) - { + if (gid1 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname1); status = FAIL; goto out; @@ -5151,8 +4867,7 @@ static void test_objs_nocomparables(const char *fname1, const char *fname2) /* committed type */ tid1 = H5Tcopy(H5T_NATIVE_INT); status = H5Tcommit2(topgid1, "obj3", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tcommit2 failed.\n", fname1); goto out; } @@ -5162,8 +4877,7 @@ static void test_objs_nocomparables(const char *fname1, const char *fname2) *------------------------------------------------------------------------*/ /* parent group */ topgid2 = H5Gcreate2(fid2, "diffobjtypes", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (topgid2 < 0) - { + if (topgid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -5171,8 +4885,7 @@ static void test_objs_nocomparables(const char *fname1, const char *fname2) /* group */ gid2 = H5Gcreate2(topgid2, "obj1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (gid2 < 0) - { + if (gid2 < 0) { fprintf(stderr, "Error: %s> H5Gcreate2 failed.\n", fname2); status = FAIL; goto out; @@ -5181,16 +4894,14 @@ static void test_objs_nocomparables(const char *fname1, const char *fname2) /* committed type */ tid2 = H5Tcopy(H5T_NATIVE_INT); status = H5Tcommit2(topgid2, "obj2", tid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - if (status < 0) - { + if (status < 0) { fprintf(stderr, "Error: %s> H5Tcommit2 failed.\n", fname2); goto out; } /* dataset */ - status = write_dset(topgid2, 1, dims,"obj3", H5T_NATIVE_INT, data2); - if (status == FAIL) - { + status = write_dset(topgid2, 1, dims, "obj3", H5T_NATIVE_INT, data2); + if (status == FAIL) { fprintf(stderr, "Error: %s> write_dset failed\n", fname2); goto out; } @@ -5199,116 +4910,109 @@ out: /*----------------------------------------------------------------------- * Close IDs *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); - if(topgid1) + if (topgid1) H5Gclose(topgid1); - if(topgid2) + if (topgid2) H5Gclose(topgid2); - if(did1) + if (did1) H5Dclose(did1); - if(did2) + if (did2) H5Dclose(did2); - if(gid1) + if (gid1) H5Gclose(gid1); - if(gid2) + if (gid2) H5Gclose(gid2); - if(tid1) + if (tid1) H5Tclose(tid1); - if(tid2) + if (tid2) H5Tclose(tid2); } -static hid_t mkstr(int size, H5T_str_t pad) { +static hid_t mkstr(int size, H5T_str_t pad) +{ hid_t type; - if((type=H5Tcopy(H5T_C_S1)) < 0) return -1; - if(H5Tset_size(type, (size_t)size) < 0) return -1; - if(H5Tset_strpad(type, pad) < 0) return -1; + if ((type = H5Tcopy(H5T_C_S1)) < 0) + return -1; + if (H5Tset_size(type, (size_t) size) < 0) + return -1; + if (H5Tset_strpad(type, pad) < 0) + return -1; return type; } /*------------------------------------------------------------------------- -* Function: test_objs_strings -* -* Purpose: -* Create test files with common objects (same name) but different string -* types. -* h5diff should show differences output from these common objects. -*-------------------------------------------------------------------------*/ + * Function: test_objs_strings + * + * Purpose: + * Create test files with common objects (same name) but different string + * types. + * h5diff should show differences output from these common objects. + *-------------------------------------------------------------------------*/ static void test_objs_strings(const char *fname1, const char *fname2) { - herr_t status = SUCCEED; - hid_t fid1=0; - hid_t fid2=0; - hid_t dataset=0; - hid_t space=0; - hid_t f_type=0; - hid_t m_type=0; - hsize_t dims1[] = {3, 4}; - char string1A[12][3] = {"s1","s2","s3","s4","s5","s6","s","s","s9", - "s0","s1","s2"}; - char string1B[12][3] = {"s1","s2","s3","s4","s","s","s7","s8","s9", - "s0","s1","s2"}; - - hsize_t dims2[]={20}; - char string2A[20][10] = {"ab cd ef1", "ab cd ef2", "ab cd ef3", "ab cd ef4", - "ab cd ef5", "ab cd ef6", "ab cd ef7", "ab cd ef8", - "ab cd 9", "ab cd 0", "ab cd 1", "ab cd 2", - "ab cd ef3", "ab cd ef4", "ab cd ef5", "ab cd ef6", - "ab cd ef7", "ab cd ef8", "ab cd ef9", "ab cd ef0"}; - char string2B[20][10] = {"ab cd ef1", "ab cd ef2", "ab cd ef3", "ab cd ef4", - "ab cd ef5", "ab cd ef6", "ab cd ef7", "ab cd ef8", - "ab cd ef9", "ab cd ef0", "ab cd ef1", "ab cd ef2", - "ab cd 3", "ab cd 4", "ab cd 5", "ab cd 6", - "ab cd ef7", "ab cd ef8", "ab cd ef9", "ab cd ef0"}; - - hsize_t dims3[] = {27}; - char string3A[27][6] = {"abcd0", "abcd1", "abcd2", "abcd3", - "abcd4", "abcd5", "abcd6", "abcd7", - "abcd8", "abcd9", "abcd0", "abcd1", - "abd2", "abc3", "bcd4", "acd5", - "abcd6", "abcd7", "abcd8", "abcd9", - "abcd0", "abcd1", "abcd2", "abcd3", - "abc4", "abc5", "abc6"}; - char string3B[27][6] = {"abcd0", "abcd1", "abcd2", "abcd3", - "abcd4", "abcd5", "abcd6", "abcd7", - "abcd8", "abcd9", "abcd0", "abcd1", - "abcd2", "abcd3", "abcd4", "abcd5", - "abd6", "abc7", "bcd8", "acd9", - "abcd0", "abcd1", "abcd2", "abcd3", - "abd4", "abd5", "abd6"}; - - hsize_t dims4[] = {3}; + hid_t fid1 = -1; + hid_t fid2 = -1; + hid_t dataset = -1; + hid_t space = -1; + hid_t f_type = -1; + hid_t m_type = -1; + hsize_t dims1[] = { 3, 4 }; + char string1A[12][3] = { "s1", "s2", "s3", "s4", "s5", "s6", "s", "s", "s9", + "s0", "s1", "s2" }; + char string1B[12][3] = { "s1", "s2", "s3", "s4", "s", "s", "s7", "s8", "s9", + "s0", "s1", "s2" }; + + hsize_t dims2[] = { 20 }; + char string2A[20][10] = { "ab cd ef1", "ab cd ef2", "ab cd ef3", + "ab cd ef4", "ab cd ef5", "ab cd ef6", "ab cd ef7", "ab cd ef8", + "ab cd 9", "ab cd 0", "ab cd 1", "ab cd 2", "ab cd ef3", + "ab cd ef4", "ab cd ef5", "ab cd ef6", "ab cd ef7", "ab cd ef8", + "ab cd ef9", "ab cd ef0" }; + char string2B[20][10] = { "ab cd ef1", "ab cd ef2", "ab cd ef3", + "ab cd ef4", "ab cd ef5", "ab cd ef6", "ab cd ef7", "ab cd ef8", + "ab cd ef9", "ab cd ef0", "ab cd ef1", "ab cd ef2", "ab cd 3", + "ab cd 4", "ab cd 5", "ab cd 6", "ab cd ef7", "ab cd ef8", + "ab cd ef9", "ab cd ef0" }; + + hsize_t dims3[] = { 27 }; + char string3A[27][6] = { "abcd0", "abcd1", "abcd2", "abcd3", "abcd4", + "abcd5", "abcd6", "abcd7", "abcd8", "abcd9", "abcd0", "abcd1", + "abd2", "abc3", "bcd4", "acd5", "abcd6", "abcd7", "abcd8", "abcd9", + "abcd0", "abcd1", "abcd2", "abcd3", "abc4", "abc5", "abc6" }; + char string3B[27][6] = { "abcd0", "abcd1", "abcd2", "abcd3", "abcd4", + "abcd5", "abcd6", "abcd7", "abcd8", "abcd9", "abcd0", "abcd1", + "abcd2", "abcd3", "abcd4", "abcd5", "abd6", "abc7", "bcd8", "acd9", + "abcd0", "abcd1", "abcd2", "abcd3", "abd4", "abd5", "abd6" }; + + hsize_t dims4[] = { 3 }; char string4A[3][21] = { "s1234567890123456789", "s1234567890123456789", - "s12345678901234567"}; + "s12345678901234567" }; char string4B[3][21] = { "s1234567890123456789", "s12345678901234567", - "s1234567890123456789"}; + "s1234567890123456789" }; /*----------------------------------------------------------------------- - * Create file(s) - *------------------------------------------------------------------------*/ - /* file1 */ - fid1 = H5Fcreate (fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid1 < 0) - { - fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); - status = FAIL; - goto out; - } - - /* file2 */ - fid2 = H5Fcreate (fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if (fid2 < 0) - { - fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); - status = FAIL; - goto out; - } + * Create file(s) + *------------------------------------------------------------------------*/ + /* file1 */ + fid1 = H5Fcreate(fname1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid1 < 0) { + fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname1); + goto out; + } + + /* file2 */ + fid2 = H5Fcreate(fname2, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (fid2 < 0) { + fprintf(stderr, "Error: %s> H5Fcreate failed.\n", fname2); + goto out; + } /* string 1 : nullterm string */ space = H5Screate_simple(2, dims1, NULL); @@ -5398,88 +5102,82 @@ out: /*----------------------------------------------------------------------- * Close IDs *-----------------------------------------------------------------------*/ - if(fid1) + if (fid1) H5Fclose(fid1); - if(fid2) + if (fid2) H5Fclose(fid2); } /*------------------------------------------------------------------------- -* Function: write_attr_in -* -* Purpose: write attributes in LOC_ID (dataset, group, named datatype) -* -*------------------------------------------------------------------------- -*/ + * Function: write_attr_strings + * + * Purpose: write attributes in LOC_ID (dataset, group, named datatype) + * swap VL strings + * + *------------------------------------------------------------------------- + */ static -void write_attr_in(hid_t loc_id, - const char* dset_name, /* for saving reference to dataset*/ - hid_t fid, - int make_diffs /* flag to modify data buffers */) +void write_attr_strings(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs /* flag to modify data buffers */) { /* Compound datatype */ - typedef struct s_t - { - char a; + typedef struct s_t { + char a; double b; } s_t; - typedef enum - { - RED, - GREEN + typedef enum { + RED, GREEN } e_t; - hid_t aid; - hid_t sid; - hid_t tid; - herr_t status; - int val, i, j, k, l, n; - float f; + hid_t aid = -1; + hid_t sid = -1; + hid_t tid = -1; + herr_t status; + int val, i, j, k, l, n; + float f; /* create 1D attributes with dimension [2], 2 elements */ - hsize_t dims[1]={2}; - char buf1[2][STR_SIZE]= {"ab","de"}; /* string */ - char *buf1a[2]; /* VL string */ - char buf2[2]= {1,2}; /* bitfield, opaque */ - s_t buf3[2]= {{1,2.0F},{3,4.0F}}; /* compound */ - hobj_ref_t buf4[2]; /* reference */ - e_t buf45[2]= {RED,RED}; /* enum */ - hvl_t buf5[2]; /* vlen */ - hsize_t dimarray[1]={3}; /* array dimension */ - int buf6[2][3]= {{1,2,3},{4,5,6}}; /* array */ - int buf7[2]= {1,2}; /* integer */ - float buf8[2]= {1.0F, 2.0F}; /* float */ + hsize_t dims[1] = { 2 }; + char buf1[2][STR_SIZE] = { "ab", "de" }; /* string */ + char *buf1a[2]; /* VL string */ + char buf2[2] = { 1, 2 }; /* bitfield, opaque */ + s_t buf3[2] = { { 1, 2.0F }, { 3, 4.0F } }; /* compound */ + hobj_ref_t buf4[2]; /* reference */ + e_t buf45[2] = { RED, RED }; /* enum */ + hvl_t buf5[2]; /* vlen */ + hsize_t dimarray[1] = { 3 }; /* array dimension */ + int buf6[2][3] = { { 1, 2, 3 }, { 4, 5, 6 } }; /* array */ + int buf7[2] = { 1, 2 }; /* integer */ + float buf8[2] = { 1.0F, 2.0F }; /* float */ /* create 2D attributes with dimension [3][2], 6 elements */ - hsize_t dims2[2]={3,2}; - char buf12[3][2][STR_SIZE]= {{"ab","cd"},{"ef","gh"},{"ij","kl"}}; /* string */ - char *buf12a[3][2]; /* VL string */ - char buf22[3][2]= {{1,2},{3,4},{5,6}}; /* bitfield, opaque */ - s_t buf32[6]= {{1,2.0F},{3,4.0F},{5,6.0F},{7,8.0F},{9,10.0F},{11,12.0F}}; /* compound */ - hobj_ref_t buf42[3][2]; /* reference */ - e_t buf452[3][2]; /* enum */ - hvl_t buf52[3][2]; /* vlen */ - int buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; /* array */ - int buf72[3][2]= {{1,2},{3,4},{5,6}}; /* integer */ - float buf82[3][2]= {{1.0F,2.0F},{3.0F,4.0F},{5.0F,6.0F}}; /* float */ + hsize_t dims2[2] = { 3, 2 }; + char buf12[3][2][STR_SIZE] = { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }; /* string */ + char *buf12a[3][2]; /* VL string */ + char buf22[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* bitfield, opaque */ + s_t buf32[6] = { { 1, 2.0F }, { 3, 4.0F }, { 5, 6.0F }, { 7, 8.0F }, { 9, 10.0F }, { 11, 12.0F } }; /* compound */ + hobj_ref_t buf42[3][2]; /* reference */ + e_t buf452[3][2]; /* enum */ + hvl_t buf52[3][2]; /* vlen */ + int buf62[6][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 }, { 13, 14, 15 }, { 16, 17, 18 } }; /* array */ + int buf72[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* integer */ + float buf82[3][2] = { { 1.0F, 2.0F }, { 3.0F, 4.0F }, { 5.0F, 6.0F } }; /* float */ /* create 3D attributes with dimension [4][3][2], 24 elements */ - hsize_t dims3[3]={4,3,2}; - char buf13[4][3][2][STR_SIZE]= {{{"ab","cd"},{"ef","gh"},{"ij","kl"}}, - {{"mn","pq"},{"rs","tu"},{"vw","xz"}}, - {{"AB","CD"},{"EF","GH"},{"IJ","KL"}}, - {{"MN","PQ"},{"RS","TU"},{"VW","XZ"}}}; /* string */ - char *buf13a[4][3][2]; /* VL string */ - char buf23[4][3][2]; /* bitfield, opaque */ - s_t buf33[4][3][2]; /* compound */ - hobj_ref_t buf43[4][3][2]; /* reference */ - e_t buf453[4][3][2]; /* enum */ - hvl_t buf53[4][3][2]; /* vlen */ - int buf63[24][3]; /* array */ - int buf73[4][3][2]; /* integer */ - float buf83[4][3][2]; /* float */ - + hsize_t dims3[3] = { 4, 3, 2 }; + char buf13[4][3][2][STR_SIZE] = { { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }, + { { "mn", "pq" }, { "rs", "tu" }, { "vw", "xz" } }, + { { "AB", "CD" }, { "EF", "GH" }, { "IJ", "KL" } }, + { { "MN", "PQ" }, { "RS", "TU" }, { "VW", "XZ" } } }; /* string */ + char *buf13a[4][3][2]; /* VL string */ + char buf23[4][3][2]; /* bitfield, opaque */ + s_t buf33[4][3][2]; /* compound */ + hobj_ref_t buf43[4][3][2]; /* reference */ + e_t buf453[4][3][2]; /* enum */ + hvl_t buf53[4][3][2]; /* vlen */ + int buf63[24][3]; /* array */ + int buf73[4][3][2]; /* integer */ + float buf83[4][3][2]; /* float */ /*------------------------------------------------------------------------- * 1D attributes @@ -5492,15 +5190,10 @@ void write_attr_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - { - for (j=0; j<2; j++) - { - buf1[i][j]='z'; - } - } - } + for (i = 0; i < 2; i++) + for (j = 0; j < 2; j++) + buf1[i][j] = 'z'; + /* buf1[2][2]= {"ab","de"}; $h5diff file7.h5 file6.h5 g1 g1 -v @@ -5513,16 +5206,17 @@ void write_attr_in(hid_t loc_id, [ 1 ] d z [ 1 ] e z */ + for (i = 0; i < 2; i++) + buf1a[i] = buf1[i]; + tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, (size_t)STR_SIZE); - write_attr(loc_id,1,dims,"string",tid,buf1); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 1, dims, "string", tid, buf1a); status = H5Tclose(tid); - for (i=0; i<2; i++) - buf1a[i]=buf1[i]; tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_attr(loc_id,1,dims,"VLstring",tid,buf1a); + status = H5Tset_size(tid, (size_t)STR_SIZE); + write_attr(loc_id, 1, dims, "VLstring", tid, buf1); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5531,10 +5225,8 @@ void write_attr_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - buf2[i]=buf2[1]=0; - } + for (i = 0; i < 2; i++) + buf2[i] = buf2[1] = 0; /* buf2[2]= {1,2}; $h5diff file7.h5 file6.h5 g1 g1 -v @@ -5548,7 +5240,7 @@ void write_attr_in(hid_t loc_id, */ tid = H5Tcopy(H5T_STD_B8LE); - write_attr(loc_id,1,dims,"bitfield",tid,buf2); + write_attr(loc_id, 1, dims, "bitfield", tid, buf2); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5568,9 +5260,9 @@ void write_attr_in(hid_t loc_id, [ 1 ] 2 0 2 */ - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_attr(loc_id,1,dims,"opaque",tid,buf2); + write_attr(loc_id, 1, dims, "opaque", tid, buf2); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5579,12 +5271,10 @@ void write_attr_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - { - buf3[i].a=0; buf3[i].b=0; + for (i = 0; i < 2; i++) { + buf3[i].a = 0; + buf3[i].b = 0; } - } /* buf3[2]= {{1,2},{3,4}}; @@ -5599,10 +5289,10 @@ void write_attr_in(hid_t loc_id, [ 1 ] 4 5 1 */ - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_attr(loc_id,1,dims,"compound",tid,buf3); + write_attr(loc_id, 1, dims, "compound", tid, buf3); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5610,70 +5300,64 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - status=H5Rcreate(&buf4[0],fid,dset_name,H5R_OBJECT,(hid_t)-1); - status=H5Rcreate(&buf4[1],fid,dset_name,H5R_OBJECT,(hid_t)-1); - write_attr(loc_id,1,dims,"reference",H5T_STD_REF_OBJ,buf4); + if (dset_name) { + status = H5Rcreate(&buf4[0], fid, dset_name, H5R_OBJECT, (hid_t) -1); + status = H5Rcreate(&buf4[1], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_attr(loc_id, 1, dims, "reference", H5T_STD_REF_OBJ, buf4); } /*------------------------------------------------------------------------- - * H5T_ENUM - *------------------------------------------------------------------------- - */ + * H5T_ENUM + *------------------------------------------------------------------------- + */ if (make_diffs) - { - for (i=0; i<2; i++) - { - buf45[i]=GREEN; - } - } + for (i = 0; i < 2; i++) + buf45[i] = GREEN; /* - buf45[2]= {RED,RED}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Group: and - Attribute: and - position enum of enum of difference - ------------------------------------------------------------ - [ 0 ] RED GREEN - [ 1 ] RED GREEN - */ + buf45[2]= {RED,RED}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position enum of enum of difference + ------------------------------------------------------------ + [ 0 ] RED GREEN + [ 1 ] RED GREEN + */ tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_attr(loc_id,1,dims,"enum",tid,buf45); + write_attr(loc_id, 1, dims, "enum", tid, buf45); status = H5Tclose(tid); /*------------------------------------------------------------------------- - * H5T_VLEN - *------------------------------------------------------------------------- - */ + * H5T_VLEN + *------------------------------------------------------------------------- + */ /* Allocate and initialize VL dataset to write */ buf5[0].len = 1; - buf5[0].p = HDmalloc( 1 * sizeof(int)); - ((int *)buf5[0].p)[0]=1; + buf5[0].p = HDmalloc(1 * sizeof(int)); + ((int *) buf5[0].p)[0] = 1; buf5[1].len = 2; - buf5[1].p = HDmalloc( 2 * sizeof(int)); - ((int *)buf5[1].p)[0]=2; - ((int *)buf5[1].p)[1]=3; + buf5[1].p = HDmalloc(2 * sizeof(int)); + ((int *) buf5[1].p)[0] = 2; + ((int *) buf5[1].p)[1] = 3; - if (make_diffs) - { - ((int *)buf5[0].p)[0]=0; - ((int *)buf5[1].p)[0]=0; - ((int *)buf5[1].p)[1]=0; + if (make_diffs) { + ((int *) buf5[0].p)[0] = 0; + ((int *) buf5[1].p)[0] = 0; + ((int *) buf5[1].p)[1] = 0; } /* - $h5diff file7.h5 file6.h5 g1 g1 -v - Group: and - position vlen of vlen of difference - ------------------------------------------------------------ - [ 0 ] 1 0 1 - [ 1 ] 2 0 2 - [ 1 ] 3 0 3 - */ + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + position vlen of vlen of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + [ 1 ] 3 0 3 + */ sid = H5Screate_simple(1, dims, NULL); tid = H5Tvlen_create(H5T_NATIVE_INT); @@ -5687,66 +5371,1048 @@ void write_attr_in(hid_t loc_id, status = H5Sclose(sid); /*------------------------------------------------------------------------- - * H5T_ARRAY - *------------------------------------------------------------------------- - */ + * H5T_ARRAY + *------------------------------------------------------------------------- + */ if (make_diffs) - { - for (i=0; i<2; i++) - for (j=0; j<3; j++) - { - buf6[i][j]=0; - } - } + for (i = 0; i < 2; i++) + for (j = 0; j < 3; j++) + buf6[i][j] = 0; /* - buf6[2][3]= {{1,2,3},{4,5,6}}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Group: and - Attribute: and - position array of array of difference - ------------------------------------------------------------ - [ 0 ] 1 0 1 - [ 0 ] 2 0 2 - [ 0 ] 3 0 3 - [ 1 ] 4 0 4 - [ 1 ] 5 0 5 - [ 1 ] 6 0 6 - */ + buf6[2][3]= {{1,2,3},{4,5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position array of array of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 0 ] 2 0 2 + [ 0 ] 3 0 3 + [ 1 ] 4 0 4 + [ 1 ] 5 0 5 + [ 1 ] 6 0 6 + */ tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); write_attr(loc_id, 1, dims, "array", tid, buf6); status = H5Tclose(tid); /*------------------------------------------------------------------------- - * H5T_INTEGER and H5T_FLOAT + * H5T_INTEGER and H5T_FLOAT + *------------------------------------------------------------------------- + */ + + if (make_diffs) + for (i = 0; i < 2; i++) { + buf7[i] = 0; + buf8[i] = 0; + } + /* + buf7[2]= {1,2}; + buf8[2]= {1,2}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + position integer of integer of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + position float of float of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + */ + write_attr(loc_id, 1, dims, "integer", H5T_NATIVE_INT, buf7); + write_attr(loc_id, 1, dims, "float", H5T_NATIVE_FLOAT, buf8); + + /*------------------------------------------------------------------------- + * 2D attributes + *------------------------------------------------------------------------- + */ + + /*------------------------------------------------------------------------- + * H5T_STRING + *------------------------------------------------------------------------- + */ + if (make_diffs) + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + for (k = 0; k < 2; k++) + buf12[i][j][k] = 'z'; + + /* + buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position string2D of string2D of difference + ------------------------------------------------------------ + [ 0 0 ] a z + [ 0 0 ] b z + [ 0 1 ] c z + [ 0 1 ] d z + [ 1 0 ] e z + [ 1 0 ] f z + [ 1 1 ] g z + [ 1 1 ] h z + [ 2 0 ] i z + [ 2 0 ] j z + [ 2 1 ] k z + [ 2 1 ] l z + */ + + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + buf12a[i][j] = buf12[i][j]; + + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 2, dims2, "string2D", tid, buf12a); + status = H5Tclose(tid); + + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_attr(loc_id, 2, dims2, "VLstring2D", tid, buf12); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_BITFIELD + *------------------------------------------------------------------------- + */ + + if (make_diffs) + memset(buf22, 0, sizeof buf22); + /* + buf22[3][2]= {{1,2},{3,4},{5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position bitfield2D of bitfield2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + + tid = H5Tcopy(H5T_STD_B8LE); + write_attr(loc_id, 2, dims2, "bitfield2D", tid, buf22); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_OPAQUE + *------------------------------------------------------------------------- + */ + + /* + buf22[3][2]= {{1,2},{3,4},{5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position opaque2D of opaque2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); + status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ + write_attr(loc_id, 2, dims2, "opaque2D", tid, buf22); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_COMPOUND + *------------------------------------------------------------------------- + */ + if (make_diffs) + memset(buf32, 0, sizeof buf32); + + /* + buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position opaque2D of opaque2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); + H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); + H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); + write_attr(loc_id, 2, dims2, "compound2D", tid, buf32); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_REFERENCE (H5R_OBJECT object reference) + *------------------------------------------------------------------------- + */ + /* Create references to dataset */ + if (dset_name) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + status = H5Rcreate(&buf42[i][j], fid, dset_name, H5R_OBJECT, + (hid_t) -1); + write_attr(loc_id, 2, dims2, "reference2D", H5T_STD_REF_OBJ, buf42); + } + + /*------------------------------------------------------------------------- + * H5T_ENUM + *------------------------------------------------------------------------- + */ + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + if (make_diffs) + buf452[i][j] = GREEN; + else + buf452[i][j] = RED; + + /* + Attribute: and + position enum2D of enum2D of difference + ------------------------------------------------------------ + [ 0 0 ] RED GREEN + [ 0 1 ] RED GREEN + [ 1 0 ] RED GREEN + [ 1 1 ] RED GREEN + [ 2 0 ] RED GREEN + [ 2 1 ] RED GREEN + */ + + tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "GREEN", (val = 1, &val)); + write_attr(loc_id, 2, dims2, "enum2D", tid, buf452); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_VLEN + *------------------------------------------------------------------------- + */ + + /* Allocate and initialize VL dataset to write */ + n = 0; + for (i = 0; i < 3; i++) { + for (j = 0; j < 2; j++) { + buf52[i][j].p = HDmalloc((size_t)(i + 1) * sizeof(int)); + buf52[i][j].len = (size_t)(i + 1); + for (l = 0; l < i + 1; l++) + if (make_diffs) + ((int *) buf52[i][j].p)[l] = 0; + else + ((int *) buf52[i][j].p)[l] = n++; + } + } + + /* + position vlen2D of vlen2D of difference + ------------------------------------------------------------ + [ 0 1 ] 1 0 1 + [ 1 0 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 1 1 ] 5 0 5 + [ 2 0 ] 6 0 6 + [ 2 0 ] 7 0 7 + [ 2 0 ] 8 0 8 + [ 2 1 ] 9 0 9 + [ 2 1 ] 10 0 10 + [ 2 1 ] 11 0 11 + */ + + sid = H5Screate_simple(2, dims2, NULL); + tid = H5Tvlen_create(H5T_NATIVE_INT); + aid = H5Acreate2(loc_id, "vlen2D", tid, sid, H5P_DEFAULT, H5P_DEFAULT); + status = H5Awrite(aid, tid, buf52); + assert(status >= 0); + status = H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, buf52); + assert(status >= 0); + status = H5Aclose(aid); + status = H5Tclose(tid); + status = H5Sclose(sid); + + /*------------------------------------------------------------------------- + * H5T_ARRAY + *------------------------------------------------------------------------- + */ + + if (make_diffs) + memset(buf62, 0, sizeof buf62); + /* + buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position array2D of array2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 0 ] 2 0 2 + [ 0 0 ] 3 0 3 + [ 0 1 ] 4 0 4 + [ 0 1 ] 5 0 5 + [ 0 1 ] 6 0 6 + [ 1 0 ] 7 0 7 + [ 1 0 ] 8 0 8 + [ 1 0 ] 9 0 9 + [ 1 1 ] 10 0 10 + [ 1 1 ] 11 0 11 + [ 1 1 ] 12 0 12 + [ 2 0 ] 13 0 13 + [ 2 0 ] 14 0 14 + [ 2 0 ] 15 0 15 + [ 2 1 ] 16 0 16 + [ 2 1 ] 17 0 17 + [ 2 1 ] 18 0 18 + */ + tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); + write_attr(loc_id, 2, dims2, "array2D", tid, buf62); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_INTEGER and H5T_FLOAT + *------------------------------------------------------------------------- + */ + + if (make_diffs) { + memset(buf72, 0, sizeof buf72); + memset(buf82, 0, sizeof buf82); + } + /* + Attribute: and + position integer2D of integer2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + 6 differences found + Attribute: and + position float2D of float2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + + write_attr(loc_id, 2, dims2, "integer2D", H5T_NATIVE_INT, buf72); + write_attr(loc_id, 2, dims2, "float2D", H5T_NATIVE_FLOAT, buf82); + + /*------------------------------------------------------------------------- + * 3D attributes + *------------------------------------------------------------------------- + */ + + /*------------------------------------------------------------------------- + * H5T_STRING + *------------------------------------------------------------------------- + */ + + if (make_diffs) + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + for (l = 0; l < 2; l++) + buf13[i][j][k][l] = 'z'; + + /* + buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq", + "rs","tu","vw","xz","AB","CD","EF","GH", + "IJ","KL","MN","PQ","RS","TU","VW","XZ"}; + + Attribute: and + position string3D of string3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] a z + [ 0 0 0 ] b z + [ 0 0 1 ] c z + [ 0 0 1 ] d z + [ 0 1 0 ] e z + [ 0 1 0 ] f z + [ 0 1 1 ] g z + [ 0 1 1 ] h z + [ 0 2 0 ] i z + [ 0 2 0 ] j z + [ 0 2 1 ] k z + [ 0 2 1 ] l z + [ 1 0 0 ] m z + [ 1 0 0 ] n z + [ 1 0 1 ] p z + [ 1 0 1 ] q z + [ 1 1 0 ] r z + [ 1 1 0 ] s z + [ 1 1 1 ] t z + [ 1 1 1 ] u z + [ 1 2 0 ] v z + [ 1 2 0 ] w z + [ 1 2 1 ] x z + [ 2 0 0 ] A z + [ 2 0 0 ] B z + [ 2 0 1 ] C z + [ 2 0 1 ] D z + [ 2 1 0 ] E z + [ 2 1 0 ] F z + [ 2 1 1 ] G z + [ 2 1 1 ] H z + [ 2 2 0 ] I z + [ 2 2 0 ] J z + [ 2 2 1 ] K z + [ 2 2 1 ] L z + [ 3 0 0 ] M z + [ 3 0 0 ] N z + [ 3 0 1 ] P z + [ 3 0 1 ] Q z + [ 3 1 0 ] R z + [ 3 1 0 ] S z + [ 3 1 1 ] T z + [ 3 1 1 ] U z + [ 3 2 0 ] V z + [ 3 2 0 ] W z + [ 3 2 1 ] X z + [ 3 2 1 ] Z z + */ + + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + buf13a[i][j][k] = buf13[i][j][k]; + + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 3, dims3, "string3D", tid, buf13a); + status = H5Tclose(tid); + + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_attr(loc_id, 3, dims3, "VLstring3D", tid, buf13); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_BITFIELD + *------------------------------------------------------------------------- + */ + + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + if (make_diffs) + buf23[i][j][k] = 0; + else + buf23[i][j][k] = (char) n++; + + /* + position bitfield3D of bitfield3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 1 ] 2 0 2 + [ 0 1 0 ] 3 0 3 + [ 0 1 1 ] 4 0 4 + [ 0 2 0 ] 5 0 5 + [ 0 2 1 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 1 0 ] 9 0 9 + [ 1 1 1 ] 10 0 10 + [ 1 2 0 ] 11 0 11 + [ 1 2 1 ] 12 0 12 + [ 2 0 0 ] 13 0 13 + [ 2 0 1 ] 14 0 14 + [ 2 1 0 ] 15 0 15 + [ 2 1 1 ] 16 0 16 + [ 2 2 0 ] 17 0 17 + [ 2 2 1 ] 18 0 18 + [ 3 0 0 ] 19 0 19 + [ 3 0 1 ] 20 0 20 + [ 3 1 0 ] 21 0 21 + [ 3 1 1 ] 22 0 22 + [ 3 2 0 ] 23 0 23 + [ 3 2 1 ] 24 0 24 + */ + + tid = H5Tcopy(H5T_STD_B8LE); + write_attr(loc_id, 3, dims3, "bitfield3D", tid, buf23); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_OPAQUE + *------------------------------------------------------------------------- + */ + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); + status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ + write_attr(loc_id, 3, dims3, "opaque3D", tid, buf23); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_COMPOUND + *------------------------------------------------------------------------- + */ + + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + if (make_diffs) { + buf33[i][j][k].a = 0; + buf33[i][j][k].b = 0.0F; + } else { + buf33[i][j][k].a = (char) n++; + buf33[i][j][k].b = n++; + } + /*position compound3D of compound3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 0 ] 2 0 2 + [ 0 0 1 ] 3 0 3 + [ 0 0 1 ] 4 0 4 + [ 0 1 0 ] 5 0 5 + [ 0 1 0 ] 6 0 6 + [ 0 1 1 ] 7 0 7 + [ 0 1 1 ] 8 0 8 + [ 0 2 0 ] 9 0 9 + [ 0 2 0 ] 10 0 10 + [ 0 2 1 ] 11 0 11 + [ 0 2 1 ] 12 0 12 + [ 1 0 0 ] 13 0 13 + [ 1 0 0 ] 14 0 14 + [ 1 0 1 ] 15 0 15 + [ 1 0 1 ] 16 0 16 + [ 1 1 0 ] 17 0 17 + [ 1 1 0 ] 18 0 18 + [ 1 1 1 ] 19 0 19 + [ 1 1 1 ] 20 0 20 + [ 1 2 0 ] 21 0 21 + [ 1 2 0 ] 22 0 22 + [ 1 2 1 ] 23 0 23 + [ 1 2 1 ] 24 0 24 + [ 2 0 0 ] 25 0 25 + [ 2 0 0 ] 26 0 26 + [ 2 0 1 ] 27 0 27 + [ 2 0 1 ] 28 0 28 + [ 2 1 0 ] 29 0 29 + [ 2 1 0 ] 30 0 30 + [ 2 1 1 ] 31 0 31 + [ 2 1 1 ] 32 0 32 + [ 2 2 0 ] 33 0 33 + [ 2 2 0 ] 34 0 34 + [ 2 2 1 ] 35 0 35 + [ 2 2 1 ] 36 0 36 + [ 3 0 0 ] 37 0 37 + [ 3 0 0 ] 38 0 38 + [ 3 0 1 ] 39 0 39 + [ 3 0 1 ] 40 0 40 + [ 3 1 0 ] 41 0 41 + [ 3 1 0 ] 42 0 42 + [ 3 1 1 ] 43 0 43 + [ 3 1 1 ] 44 0 44 + [ 3 2 0 ] 45 0 45 + [ 3 2 0 ] 46 0 46 + [ 3 2 1 ] 47 0 47 + [ 3 2 1 ] 48 0 48 + */ + + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); + H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); + H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); + write_attr(loc_id, 3, dims3, "compound3D", tid, buf33); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_REFERENCE (H5R_OBJECT object reference) + *------------------------------------------------------------------------- + */ + /* Create references to dataset */ + if (dset_name) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + status = H5Rcreate(&buf43[i][j][k], fid, dset_name, + H5R_OBJECT, (hid_t) -1); + write_attr(loc_id, 3, dims3, "reference3D", H5T_STD_REF_OBJ, buf43); + } + + /*------------------------------------------------------------------------- + * H5T_ENUM + *------------------------------------------------------------------------- + */ + + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + if (make_diffs) + buf453[i][j][k] = RED; + else + buf453[i][j][k] = GREEN; + + /* + position enum3D of enum3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] GREEN RED + [ 0 0 1 ] GREEN RED + [ 0 1 0 ] GREEN RED + [ 0 1 1 ] GREEN RED + [ 0 2 0 ] GREEN RED + [ 0 2 1 ] GREEN RED + [ 1 0 0 ] GREEN RED + [ 1 0 1 ] GREEN RED + [ 1 1 0 ] GREEN RED + [ 1 1 1 ] GREEN RED + [ 1 2 0 ] GREEN RED + [ 1 2 1 ] GREEN RED + [ 2 0 0 ] GREEN RED + [ 2 0 1 ] GREEN RED + [ 2 1 0 ] GREEN RED + [ 2 1 1 ] GREEN RED + [ 2 2 0 ] GREEN RED + [ 2 2 1 ] GREEN RED + [ 3 0 0 ] GREEN RED + [ 3 0 1 ] GREEN RED + [ 3 1 0 ] GREEN RED + [ 3 1 1 ] GREEN RED + [ 3 2 0 ] GREEN RED + [ 3 2 1 ] GREEN RED + */ + + tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "GREEN", (val = 1, &val)); + write_attr(loc_id, 3, dims3, "enum3D", tid, buf453); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_VLEN + *------------------------------------------------------------------------- + */ + + /* Allocate and initialize VL dataset to write */ + n = 0; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) { + buf53[i][j][k].p = HDmalloc((size_t)(i + 1) * sizeof(int)); + buf53[i][j][k].len = (size_t)(i + 1); + for (l = 0; l < i + 1; l++) + if (make_diffs) + ((int *) buf53[i][j][k].p)[l] = 0; + else + ((int *) buf53[i][j][k].p)[l] = n++; + } + /* + position vlen3D of vlen3D of difference + ------------------------------------------------------------ + [ 0 0 1 ] 1 0 1 + [ 0 1 0 ] 2 0 2 + [ 0 1 1 ] 3 0 3 + [ 0 2 0 ] 4 0 4 + [ 0 2 1 ] 5 0 5 + [ 1 0 0 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 0 1 ] 9 0 9 + [ 1 1 0 ] 10 0 10 + etc + */ + sid = H5Screate_simple(3, dims3, NULL); + tid = H5Tvlen_create(H5T_NATIVE_INT); + aid = H5Acreate2(loc_id, "vlen3D", tid, sid, H5P_DEFAULT, H5P_DEFAULT); + status = H5Awrite(aid, tid, buf53); + assert(status >= 0); + status = H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, buf53); + assert(status >= 0); + status = H5Aclose(aid); + status = H5Tclose(tid); + status = H5Sclose(sid); + + /*------------------------------------------------------------------------- + * H5T_ARRAY + *------------------------------------------------------------------------- + */ + n = 1; + for (i = 0; i < 24; i++) { + for (j = 0; j < (int) dimarray[0]; j++) { + if (make_diffs) + buf63[i][j] = 0; + else + buf63[i][j] = n++; + } + } + /* + position array3D of array3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 0 ] 2 0 2 + [ 0 0 0 ] 3 0 3 + [ 0 0 1 ] 4 0 4 + [ 0 0 1 ] 5 0 5 + [ 0 0 1 ] 6 0 6 + [ 0 1 0 ] 7 0 7 + etc + */ + + tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); + write_attr(loc_id, 3, dims3, "array3D", tid, buf63); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_INTEGER and H5T_FLOAT + *------------------------------------------------------------------------- + */ + n = 1; + f = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) { + if (make_diffs) { + buf73[i][j][k] = 0; + buf83[i][j][k] = 0.0F; + } + else { + buf73[i][j][k] = n++; + buf83[i][j][k] = f++; + } + } + + /* + position integer3D of integer3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 1 ] 2 0 2 + [ 0 1 0 ] 3 0 3 + [ 0 1 1 ] 4 0 4 + [ 0 2 0 ] 5 0 5 + [ 0 2 1 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 1 0 ] 9 0 9 + [ 1 1 1 ] 10 0 10 + etc + */ + write_attr(loc_id, 3, dims3, "integer3D", H5T_NATIVE_INT, buf73); + write_attr(loc_id, 3, dims3, "float3D", H5T_NATIVE_FLOAT, buf83); +} + +/*------------------------------------------------------------------------- + * Function: write_attr_in + * + * Purpose: write attributes in LOC_ID (dataset, group, named datatype) + * + *------------------------------------------------------------------------- + */ +static +void write_attr_in(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs /* flag to modify data buffers */) +{ + /* Compound datatype */ + typedef struct s_t { + char a; + double b; + } s_t; + + typedef enum { + RED, GREEN + } e_t; + + hid_t aid = -1; + hid_t sid = -1; + hid_t tid = -1; + herr_t status; + int val, i, j, k, l, n; + float f; + + /* create 1D attributes with dimension [2], 2 elements */ + hsize_t dims[1] = { 2 }; + char buf1[2][STR_SIZE] = { "ab", "de" }; /* string */ + char *buf1a[2]; /* VL string */ + char buf2[2] = { 1, 2 }; /* bitfield, opaque */ + s_t buf3[2] = { { 1, 2.0F }, { 3, 4.0F } }; /* compound */ + hobj_ref_t buf4[2]; /* reference */ + e_t buf45[2] = { RED, RED }; /* enum */ + hvl_t buf5[2]; /* vlen */ + hsize_t dimarray[1] = { 3 }; /* array dimension */ + int buf6[2][3] = { { 1, 2, 3 }, { 4, 5, 6 } }; /* array */ + int buf7[2] = { 1, 2 }; /* integer */ + float buf8[2] = { 1.0F, 2.0F }; /* float */ + + /* create 2D attributes with dimension [3][2], 6 elements */ + hsize_t dims2[2] = { 3, 2 }; + char buf12[3][2][STR_SIZE] = { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }; /* string */ + char *buf12a[3][2]; /* VL string */ + char buf22[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* bitfield, opaque */ + s_t buf32[6] = { { 1, 2.0F }, { 3, 4.0F }, { 5, 6.0F }, { 7, 8.0F }, { 9, 10.0F }, { 11, 12.0F } }; /* compound */ + hobj_ref_t buf42[3][2]; /* reference */ + e_t buf452[3][2]; /* enum */ + hvl_t buf52[3][2]; /* vlen */ + int buf62[6][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 }, { 13, 14, 15 }, { 16, 17, 18 } }; /* array */ + int buf72[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* integer */ + float buf82[3][2] = { { 1.0F, 2.0F }, { 3.0F, 4.0F }, { 5.0F, 6.0F } }; /* float */ + + /* create 3D attributes with dimension [4][3][2], 24 elements */ + hsize_t dims3[3] = { 4, 3, 2 }; + char buf13[4][3][2][STR_SIZE] = { { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }, + { { "mn", "pq" }, { "rs", "tu" }, { "vw", "xz" } }, + { { "AB", "CD" }, { "EF", "GH" }, { "IJ", "KL" } }, + { { "MN", "PQ" }, { "RS", "TU" }, { "VW", "XZ" } } }; /* string */ + char *buf13a[4][3][2]; /* VL string */ + char buf23[4][3][2]; /* bitfield, opaque */ + s_t buf33[4][3][2]; /* compound */ + hobj_ref_t buf43[4][3][2]; /* reference */ + e_t buf453[4][3][2]; /* enum */ + hvl_t buf53[4][3][2]; /* vlen */ + int buf63[24][3]; /* array */ + int buf73[4][3][2]; /* integer */ + float buf83[4][3][2]; /* float */ + + /*------------------------------------------------------------------------- + * 1D attributes + *------------------------------------------------------------------------- + */ + + /*------------------------------------------------------------------------- + * H5T_STRING + *------------------------------------------------------------------------- + */ + + if (make_diffs) + for (i = 0; i < 2; i++) + for (j = 0; j < 2; j++) + buf1[i][j] = 'z'; + /* + buf1[2][2]= {"ab","de"}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position string of string of difference + ------------------------------------------------------------ + [ 0 ] a z + [ 0 ] b z + [ 1 ] d z + [ 1 ] e z + */ + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_attr(loc_id, 1, dims, "string", tid, buf1); + status = H5Tclose(tid); + + for (i = 0; i < 2; i++) + buf1a[i] = buf1[i]; + tid = H5Tcopy(H5T_C_S1); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 1, dims, "VLstring", tid, buf1a); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_BITFIELD + *------------------------------------------------------------------------- + */ + + if (make_diffs) + for (i = 0; i < 2; i++) + buf2[i] = buf2[1] = 0; + /* + buf2[2]= {1,2}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position bitfield of bitfield of difference + position opaque of opaque of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + */ + + tid = H5Tcopy(H5T_STD_B8LE); + write_attr(loc_id, 1, dims, "bitfield", tid, buf2); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_OPAQUE + *------------------------------------------------------------------------- + */ + + /* + buf2[2]= {1,2}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position opaque of opaque of difference + position opaque of opaque of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + */ + + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); + status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ + write_attr(loc_id, 1, dims, "opaque", tid, buf2); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_COMPOUND + *------------------------------------------------------------------------- + */ + + if (make_diffs) + for (i = 0; i < 2; i++) { + buf3[i].a = 0; + buf3[i].b = 0; + } + /* + buf3[2]= {{1,2},{3,4}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position compound of compound of difference + ------------------------------------------------------------ + [ 0 ] 1 5 4 + [ 0 ] 2 5 3 + [ 1 ] 3 5 2 + [ 1 ] 4 5 1 + */ + + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); + H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); + H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); + write_attr(loc_id, 1, dims, "compound", tid, buf3); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_REFERENCE (H5R_OBJECT object reference) *------------------------------------------------------------------------- */ + /* Create references to dataset */ + if (dset_name) { + status = H5Rcreate(&buf4[0], fid, dset_name, H5R_OBJECT, (hid_t) -1); + status = H5Rcreate(&buf4[1], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_attr(loc_id, 1, dims, "reference", H5T_STD_REF_OBJ, buf4); + } + /*------------------------------------------------------------------------- + * H5T_ENUM + *------------------------------------------------------------------------- + */ if (make_diffs) - { - for (i=0; i<2; i++) - { - buf7[i]=0; - buf8[i]=0; - } + for (i = 0; i < 2; i++) + buf45[i] = GREEN; + /* + buf45[2]= {RED,RED}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position enum of enum of difference + ------------------------------------------------------------ + [ 0 ] RED GREEN + [ 1 ] RED GREEN + */ + tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "GREEN", (val = 1, &val)); + write_attr(loc_id, 1, dims, "enum", tid, buf45); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_VLEN + *------------------------------------------------------------------------- + */ + + /* Allocate and initialize VL dataset to write */ + + buf5[0].len = 1; + buf5[0].p = HDmalloc(1 * sizeof(int)); + ((int *) buf5[0].p)[0] = 1; + buf5[1].len = 2; + buf5[1].p = HDmalloc(2 * sizeof(int)); + ((int *) buf5[1].p)[0] = 2; + ((int *) buf5[1].p)[1] = 3; + + if (make_diffs) { + ((int *) buf5[0].p)[0] = 0; + ((int *) buf5[1].p)[0] = 0; + ((int *) buf5[1].p)[1] = 0; } /* - buf7[2]= {1,2}; - buf8[2]= {1,2}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Group: and - position integer of integer of difference - ------------------------------------------------------------ - [ 0 ] 1 0 1 - [ 1 ] 2 0 2 - position float of float of difference - ------------------------------------------------------------ - [ 0 ] 1 0 1 - [ 1 ] 2 0 2 + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + position vlen of vlen of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + [ 1 ] 3 0 3 + */ + + sid = H5Screate_simple(1, dims, NULL); + tid = H5Tvlen_create(H5T_NATIVE_INT); + aid = H5Acreate2(loc_id, "vlen", tid, sid, H5P_DEFAULT, H5P_DEFAULT); + status = H5Awrite(aid, tid, buf5); + assert(status >= 0); + status = H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, buf5); + assert(status >= 0); + status = H5Aclose(aid); + status = H5Tclose(tid); + status = H5Sclose(sid); + + /*------------------------------------------------------------------------- + * H5T_ARRAY + *------------------------------------------------------------------------- + */ + + if (make_diffs) { + for (i = 0; i < 2; i++) + for (j = 0; j < 3; j++) + buf6[i][j] = 0; + } + /* + buf6[2][3]= {{1,2,3},{4,5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position array of array of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 0 ] 2 0 2 + [ 0 ] 3 0 3 + [ 1 ] 4 0 4 + [ 1 ] 5 0 5 + [ 1 ] 6 0 6 + */ + tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); + write_attr(loc_id, 1, dims, "array", tid, buf6); + status = H5Tclose(tid); + + /*------------------------------------------------------------------------- + * H5T_INTEGER and H5T_FLOAT + *------------------------------------------------------------------------- */ - write_attr(loc_id,1,dims,"integer",H5T_NATIVE_INT,buf7); - write_attr(loc_id,1,dims,"float",H5T_NATIVE_FLOAT,buf8); + if (make_diffs) { + for (i = 0; i < 2; i++) { + buf7[i] = 0; + buf8[i] = 0; + } + } + /* + buf7[2]= {1,2}; + buf8[2]= {1,2}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + position integer of integer of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + position float of float of difference + ------------------------------------------------------------ + [ 0 ] 1 0 1 + [ 1 ] 2 0 2 + */ + write_attr(loc_id, 1, dims, "integer", H5T_NATIVE_INT, buf7); + write_attr(loc_id, 1, dims, "float", H5T_NATIVE_FLOAT, buf8); /*------------------------------------------------------------------------- * 2D attributes @@ -5757,50 +6423,45 @@ void write_attr_in(hid_t loc_id, * H5T_STRING *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<3; i++) - for (j=0; j<2; j++) - for (k=0; k<2; k++) - buf12[i][j][k]='z'; + if (make_diffs) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + for (k = 0; k < 2; k++) + buf12[i][j][k] = 'z'; } /* - buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Attribute: and - position string2D of string2D of difference - ------------------------------------------------------------ - [ 0 0 ] a z - [ 0 0 ] b z - [ 0 1 ] c z - [ 0 1 ] d z - [ 1 0 ] e z - [ 1 0 ] f z - [ 1 1 ] g z - [ 1 1 ] h z - [ 2 0 ] i z - [ 2 0 ] j z - [ 2 1 ] k z - [ 2 1 ] l z + buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position string2D of string2D of difference + ------------------------------------------------------------ + [ 0 0 ] a z + [ 0 0 ] b z + [ 0 1 ] c z + [ 0 1 ] d z + [ 1 0 ] e z + [ 1 0 ] f z + [ 1 1 ] g z + [ 1 1 ] h z + [ 2 0 ] i z + [ 2 0 ] j z + [ 2 1 ] k z + [ 2 1 ] l z */ tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, (size_t)STR_SIZE); - write_attr(loc_id,2,dims2,"string2D",tid,buf12); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_attr(loc_id, 2, dims2, "string2D", tid, buf12); status = H5Tclose(tid); - for (i=0; i<3; i++) - { - for (j=0; j<2; j++) - { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + buf12a[i][j] = buf12[i][j]; - buf12a[i][j]=buf12[i][j]; - } - } tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_attr(loc_id,2,dims2,"VLstring2D",tid,buf12a); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 2, dims2, "VLstring2D", tid, buf12a); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5809,27 +6470,23 @@ void write_attr_in(hid_t loc_id, */ if (make_diffs) - { - memset(buf22,0,sizeof buf22); - } - + memset(buf22, 0, sizeof buf22); /* - buf22[3][2]= {{1,2},{3,4},{5,6}}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Attribute: and - position bitfield2D of bitfield2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 1 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 2 0 ] 5 0 5 - [ 2 1 ] 6 0 6 + buf22[3][2]= {{1,2},{3,4},{5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position bitfield2D of bitfield2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 */ - tid = H5Tcopy(H5T_STD_B8LE); - write_attr(loc_id,2,dims2,"bitfield2D",tid,buf22); + write_attr(loc_id, 2, dims2, "bitfield2D", tid, buf22); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5838,21 +6495,21 @@ void write_attr_in(hid_t loc_id, */ /* - buf22[3][2]= {{1,2},{3,4},{5,6}}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Attribute: and - position opaque2D of opaque2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 1 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 2 0 ] 5 0 5 - [ 2 1 ] 6 0 6 - */ - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + buf22[3][2]= {{1,2},{3,4},{5,6}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position opaque2D of opaque2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_attr(loc_id,2,dims2,"opaque2D",tid,buf22); + write_attr(loc_id, 2, dims2, "opaque2D", tid, buf22); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5860,29 +6517,25 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ if (make_diffs) - { - memset(buf32,0,sizeof buf32); - } - + memset(buf32, 0, sizeof buf32); /* - buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Attribute: and - position opaque2D of opaque2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 1 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 2 0 ] 5 0 5 - [ 2 1 ] 6 0 6 - */ - - - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Attribute: and + position opaque2D of opaque2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_attr(loc_id,2,dims2,"compound2D",tid,buf32); + write_attr(loc_id, 2, dims2, "compound2D", tid, buf32); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5890,44 +6543,41 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - for (i = 0; i < 3; i++) { - for (j = 0; j < 2; j++) { - status=H5Rcreate(&buf42[i][j],fid,dset_name,H5R_OBJECT,(hid_t)-1); - } - } - write_attr(loc_id,2,dims2,"reference2D",H5T_STD_REF_OBJ,buf42); + if (dset_name) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + status = H5Rcreate(&buf42[i][j], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_attr(loc_id, 2, dims2, "reference2D", H5T_STD_REF_OBJ, buf42); } /*------------------------------------------------------------------------- * H5T_ENUM *------------------------------------------------------------------------- */ - for (i=0; i<3; i++) - { - for (j=0; j<2; j++) - { - if (make_diffs) buf452[i][j]=GREEN; else buf452[i][j]=RED; + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) { + if (make_diffs) + buf452[i][j] = GREEN; + else + buf452[i][j] = RED; } - } /* - Attribute: and - position enum2D of enum2D of difference - ------------------------------------------------------------ - [ 0 0 ] RED GREEN - [ 0 1 ] RED GREEN - [ 1 0 ] RED GREEN - [ 1 1 ] RED GREEN - [ 2 0 ] RED GREEN - [ 2 1 ] RED GREEN + Attribute: and + position enum2D of enum2D of difference + ------------------------------------------------------------ + [ 0 0 ] RED GREEN + [ 0 1 ] RED GREEN + [ 1 0 ] RED GREEN + [ 1 1 ] RED GREEN + [ 2 0 ] RED GREEN + [ 2 1 ] RED GREEN */ tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_attr(loc_id,2,dims2,"enum2D",tid,buf452); + write_attr(loc_id, 2, dims2, "enum2D", tid, buf452); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -5936,33 +6586,33 @@ void write_attr_in(hid_t loc_id, */ /* Allocate and initialize VL dataset to write */ - n=0; - for(i = 0; i < 3; i++) { - for(j = 0; j < 2; j++) { + n = 0; + for (i = 0; i < 3; i++) { + for (j = 0; j < 2; j++) { buf52[i][j].p = HDmalloc((size_t)(i + 1) * sizeof(int)); buf52[i][j].len = (size_t)(i + 1); - for(l = 0; l < i + 1; l++) - if(make_diffs) - ((int *)buf52[i][j].p)[l] = 0; + for (l = 0; l < i + 1; l++) + if (make_diffs) + ((int *) buf52[i][j].p)[l] = 0; else - ((int *)buf52[i][j].p)[l] = n++; + ((int *) buf52[i][j].p)[l] = n++; } } /* - position vlen2D of vlen2D of difference - ------------------------------------------------------------ - [ 0 1 ] 1 0 1 - [ 1 0 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 1 1 ] 5 0 5 - [ 2 0 ] 6 0 6 - [ 2 0 ] 7 0 7 - [ 2 0 ] 8 0 8 - [ 2 1 ] 9 0 9 - [ 2 1 ] 10 0 10 - [ 2 1 ] 11 0 11 + position vlen2D of vlen2D of difference + ------------------------------------------------------------ + [ 0 1 ] 1 0 1 + [ 1 0 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 1 1 ] 5 0 5 + [ 2 0 ] 6 0 6 + [ 2 0 ] 7 0 7 + [ 2 0 ] 8 0 8 + [ 2 1 ] 9 0 9 + [ 2 1 ] 10 0 10 + [ 2 1 ] 11 0 11 */ sid = H5Screate_simple(2, dims2, NULL); @@ -5982,34 +6632,32 @@ void write_attr_in(hid_t loc_id, */ if (make_diffs) - { - memset(buf62,0,sizeof buf62); - } + memset(buf62, 0, sizeof buf62); /* - buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; - $h5diff file7.h5 file6.h5 g1 g1 -v - Group: and - Attribute: and - position array2D of array2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 0 ] 2 0 2 - [ 0 0 ] 3 0 3 - [ 0 1 ] 4 0 4 - [ 0 1 ] 5 0 5 - [ 0 1 ] 6 0 6 - [ 1 0 ] 7 0 7 - [ 1 0 ] 8 0 8 - [ 1 0 ] 9 0 9 - [ 1 1 ] 10 0 10 - [ 1 1 ] 11 0 11 - [ 1 1 ] 12 0 12 - [ 2 0 ] 13 0 13 - [ 2 0 ] 14 0 14 - [ 2 0 ] 15 0 15 - [ 2 1 ] 16 0 16 - [ 2 1 ] 17 0 17 - [ 2 1 ] 18 0 18 + buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; + $h5diff file7.h5 file6.h5 g1 g1 -v + Group: and + Attribute: and + position array2D of array2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 0 ] 2 0 2 + [ 0 0 ] 3 0 3 + [ 0 1 ] 4 0 4 + [ 0 1 ] 5 0 5 + [ 0 1 ] 6 0 6 + [ 1 0 ] 7 0 7 + [ 1 0 ] 8 0 8 + [ 1 0 ] 9 0 9 + [ 1 1 ] 10 0 10 + [ 1 1 ] 11 0 11 + [ 1 1 ] 12 0 12 + [ 2 0 ] 13 0 13 + [ 2 0 ] 14 0 14 + [ 2 0 ] 15 0 15 + [ 2 1 ] 16 0 16 + [ 2 1 ] 17 0 17 + [ 2 1 ] 18 0 18 */ tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); write_attr(loc_id, 2, dims2, "array2D", tid, buf62); @@ -6020,36 +6668,34 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - memset(buf72,0,sizeof buf72); - memset(buf82,0,sizeof buf82); + if (make_diffs) { + memset(buf72, 0, sizeof buf72); + memset(buf82, 0, sizeof buf82); } /* - Attribute: and - position integer2D of integer2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 1 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 2 0 ] 5 0 5 - [ 2 1 ] 6 0 6 - 6 differences found - Attribute: and - position float2D of float2D of difference - ------------------------------------------------------------ - [ 0 0 ] 1 0 1 - [ 0 1 ] 2 0 2 - [ 1 0 ] 3 0 3 - [ 1 1 ] 4 0 4 - [ 2 0 ] 5 0 5 - [ 2 1 ] 6 0 6 - */ - - write_attr(loc_id,2,dims2,"integer2D",H5T_NATIVE_INT,buf72); - write_attr(loc_id,2,dims2,"float2D",H5T_NATIVE_FLOAT,buf82); - + Attribute: and + position integer2D of integer2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + 6 differences found + Attribute: and + position float2D of float2D of difference + ------------------------------------------------------------ + [ 0 0 ] 1 0 1 + [ 0 1 ] 2 0 2 + [ 1 0 ] 3 0 3 + [ 1 1 ] 4 0 4 + [ 2 0 ] 5 0 5 + [ 2 1 ] 6 0 6 + */ + + write_attr(loc_id, 2, dims2, "integer2D", H5T_NATIVE_INT, buf72); + write_attr(loc_id, 2, dims2, "float2D", H5T_NATIVE_FLOAT, buf82); /*------------------------------------------------------------------------- * 3D attributes @@ -6061,90 +6707,83 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<4; i++) - for (j=0; j<3; j++) - for (k=0; k<2; k++) - for (l=0; l<2; l++) - buf13[i][j][k][l]='z'; + if (make_diffs) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + for (l = 0; l < 2; l++) + buf13[i][j][k][l] = 'z'; } /* - buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq", - "rs","tu","vw","xz","AB","CD","EF","GH", - "IJ","KL","MN","PQ","RS","TU","VW","XZ"}; - - Attribute: and - position string3D of string3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] a z - [ 0 0 0 ] b z - [ 0 0 1 ] c z - [ 0 0 1 ] d z - [ 0 1 0 ] e z - [ 0 1 0 ] f z - [ 0 1 1 ] g z - [ 0 1 1 ] h z - [ 0 2 0 ] i z - [ 0 2 0 ] j z - [ 0 2 1 ] k z - [ 0 2 1 ] l z - [ 1 0 0 ] m z - [ 1 0 0 ] n z - [ 1 0 1 ] p z - [ 1 0 1 ] q z - [ 1 1 0 ] r z - [ 1 1 0 ] s z - [ 1 1 1 ] t z - [ 1 1 1 ] u z - [ 1 2 0 ] v z - [ 1 2 0 ] w z - [ 1 2 1 ] x z - [ 2 0 0 ] A z - [ 2 0 0 ] B z - [ 2 0 1 ] C z - [ 2 0 1 ] D z - [ 2 1 0 ] E z - [ 2 1 0 ] F z - [ 2 1 1 ] G z - [ 2 1 1 ] H z - [ 2 2 0 ] I z - [ 2 2 0 ] J z - [ 2 2 1 ] K z - [ 2 2 1 ] L z - [ 3 0 0 ] M z - [ 3 0 0 ] N z - [ 3 0 1 ] P z - [ 3 0 1 ] Q z - [ 3 1 0 ] R z - [ 3 1 0 ] S z - [ 3 1 1 ] T z - [ 3 1 1 ] U z - [ 3 2 0 ] V z - [ 3 2 0 ] W z - [ 3 2 1 ] X z - [ 3 2 1 ] Z z + buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq", + "rs","tu","vw","xz","AB","CD","EF","GH", + "IJ","KL","MN","PQ","RS","TU","VW","XZ"}; + + Attribute: and + position string3D of string3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] a z + [ 0 0 0 ] b z + [ 0 0 1 ] c z + [ 0 0 1 ] d z + [ 0 1 0 ] e z + [ 0 1 0 ] f z + [ 0 1 1 ] g z + [ 0 1 1 ] h z + [ 0 2 0 ] i z + [ 0 2 0 ] j z + [ 0 2 1 ] k z + [ 0 2 1 ] l z + [ 1 0 0 ] m z + [ 1 0 0 ] n z + [ 1 0 1 ] p z + [ 1 0 1 ] q z + [ 1 1 0 ] r z + [ 1 1 0 ] s z + [ 1 1 1 ] t z + [ 1 1 1 ] u z + [ 1 2 0 ] v z + [ 1 2 0 ] w z + [ 1 2 1 ] x z + [ 2 0 0 ] A z + [ 2 0 0 ] B z + [ 2 0 1 ] C z + [ 2 0 1 ] D z + [ 2 1 0 ] E z + [ 2 1 0 ] F z + [ 2 1 1 ] G z + [ 2 1 1 ] H z + [ 2 2 0 ] I z + [ 2 2 0 ] J z + [ 2 2 1 ] K z + [ 2 2 1 ] L z + [ 3 0 0 ] M z + [ 3 0 0 ] N z + [ 3 0 1 ] P z + [ 3 0 1 ] Q z + [ 3 1 0 ] R z + [ 3 1 0 ] S z + [ 3 1 1 ] T z + [ 3 1 1 ] U z + [ 3 2 0 ] V z + [ 3 2 0 ] W z + [ 3 2 1 ] X z + [ 3 2 1 ] Z z */ tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, (size_t)STR_SIZE); - write_attr(loc_id,3,dims3,"string3D",tid,buf13); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_attr(loc_id, 3, dims3, "string3D", tid, buf13); status = H5Tclose(tid); - for (i=0; i<4; i++) - { - for (j=0; j<3; j++) - { - for (k=0; k<2; k++) - { - buf13a[i][j][k]=buf13[i][j][k]; - } - } - } + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + buf13a[i][j][k] = buf13[i][j][k]; tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_attr(loc_id,3,dims3,"VLstring3D",tid,buf13a); + status = H5Tset_size(tid, H5T_VARIABLE); + write_attr(loc_id, 3, dims3, "VLstring3D", tid, buf13a); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6152,58 +6791,55 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ - n=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { - if(make_diffs) + if (make_diffs) buf23[i][j][k] = 0; else - buf23[i][j][k] = (char)n++; + buf23[i][j][k] = (char) n++; } - } - } - /* - position bitfield3D of bitfield3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] 1 0 1 - [ 0 0 1 ] 2 0 2 - [ 0 1 0 ] 3 0 3 - [ 0 1 1 ] 4 0 4 - [ 0 2 0 ] 5 0 5 - [ 0 2 1 ] 6 0 6 - [ 1 0 0 ] 7 0 7 - [ 1 0 1 ] 8 0 8 - [ 1 1 0 ] 9 0 9 - [ 1 1 1 ] 10 0 10 - [ 1 2 0 ] 11 0 11 - [ 1 2 1 ] 12 0 12 - [ 2 0 0 ] 13 0 13 - [ 2 0 1 ] 14 0 14 - [ 2 1 0 ] 15 0 15 - [ 2 1 1 ] 16 0 16 - [ 2 2 0 ] 17 0 17 - [ 2 2 1 ] 18 0 18 - [ 3 0 0 ] 19 0 19 - [ 3 0 1 ] 20 0 20 - [ 3 1 0 ] 21 0 21 - [ 3 1 1 ] 22 0 22 - [ 3 2 0 ] 23 0 23 - [ 3 2 1 ] 24 0 24 + position bitfield3D of bitfield3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 1 ] 2 0 2 + [ 0 1 0 ] 3 0 3 + [ 0 1 1 ] 4 0 4 + [ 0 2 0 ] 5 0 5 + [ 0 2 1 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 1 0 ] 9 0 9 + [ 1 1 1 ] 10 0 10 + [ 1 2 0 ] 11 0 11 + [ 1 2 1 ] 12 0 12 + [ 2 0 0 ] 13 0 13 + [ 2 0 1 ] 14 0 14 + [ 2 1 0 ] 15 0 15 + [ 2 1 1 ] 16 0 16 + [ 2 2 0 ] 17 0 17 + [ 2 2 1 ] 18 0 18 + [ 3 0 0 ] 19 0 19 + [ 3 0 1 ] 20 0 20 + [ 3 1 0 ] 21 0 21 + [ 3 1 1 ] 22 0 22 + [ 3 2 0 ] 23 0 23 + [ 3 2 1 ] 24 0 24 */ tid = H5Tcopy(H5T_STD_B8LE); - write_attr(loc_id,3,dims3,"bitfield3D",tid,buf23); + write_attr(loc_id, 3, dims3, "bitfield3D", tid, buf23); status = H5Tclose(tid); /*------------------------------------------------------------------------- * H5T_OPAQUE *------------------------------------------------------------------------- */ - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_attr(loc_id,3,dims3,"opaque3D",tid,buf23); + write_attr(loc_id, 3, dims3, "opaque3D", tid, buf23); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6211,77 +6847,75 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ - n=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { if (make_diffs) { buf33[i][j][k].a = 0; buf33[i][j][k].b = 0.0F; } else { - buf33[i][j][k].a = (char)n++; + buf33[i][j][k].a = (char) n++; buf33[i][j][k].b = n++; } } - } - } /*position compound3D of compound3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] 1 0 1 - [ 0 0 0 ] 2 0 2 - [ 0 0 1 ] 3 0 3 - [ 0 0 1 ] 4 0 4 - [ 0 1 0 ] 5 0 5 - [ 0 1 0 ] 6 0 6 - [ 0 1 1 ] 7 0 7 - [ 0 1 1 ] 8 0 8 - [ 0 2 0 ] 9 0 9 - [ 0 2 0 ] 10 0 10 - [ 0 2 1 ] 11 0 11 - [ 0 2 1 ] 12 0 12 - [ 1 0 0 ] 13 0 13 - [ 1 0 0 ] 14 0 14 - [ 1 0 1 ] 15 0 15 - [ 1 0 1 ] 16 0 16 - [ 1 1 0 ] 17 0 17 - [ 1 1 0 ] 18 0 18 - [ 1 1 1 ] 19 0 19 - [ 1 1 1 ] 20 0 20 - [ 1 2 0 ] 21 0 21 - [ 1 2 0 ] 22 0 22 - [ 1 2 1 ] 23 0 23 - [ 1 2 1 ] 24 0 24 - [ 2 0 0 ] 25 0 25 - [ 2 0 0 ] 26 0 26 - [ 2 0 1 ] 27 0 27 - [ 2 0 1 ] 28 0 28 - [ 2 1 0 ] 29 0 29 - [ 2 1 0 ] 30 0 30 - [ 2 1 1 ] 31 0 31 - [ 2 1 1 ] 32 0 32 - [ 2 2 0 ] 33 0 33 - [ 2 2 0 ] 34 0 34 - [ 2 2 1 ] 35 0 35 - [ 2 2 1 ] 36 0 36 - [ 3 0 0 ] 37 0 37 - [ 3 0 0 ] 38 0 38 - [ 3 0 1 ] 39 0 39 - [ 3 0 1 ] 40 0 40 - [ 3 1 0 ] 41 0 41 - [ 3 1 0 ] 42 0 42 - [ 3 1 1 ] 43 0 43 - [ 3 1 1 ] 44 0 44 - [ 3 2 0 ] 45 0 45 - [ 3 2 0 ] 46 0 46 - [ 3 2 1 ] 47 0 47 - [ 3 2 1 ] 48 0 48 - */ - - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 0 ] 2 0 2 + [ 0 0 1 ] 3 0 3 + [ 0 0 1 ] 4 0 4 + [ 0 1 0 ] 5 0 5 + [ 0 1 0 ] 6 0 6 + [ 0 1 1 ] 7 0 7 + [ 0 1 1 ] 8 0 8 + [ 0 2 0 ] 9 0 9 + [ 0 2 0 ] 10 0 10 + [ 0 2 1 ] 11 0 11 + [ 0 2 1 ] 12 0 12 + [ 1 0 0 ] 13 0 13 + [ 1 0 0 ] 14 0 14 + [ 1 0 1 ] 15 0 15 + [ 1 0 1 ] 16 0 16 + [ 1 1 0 ] 17 0 17 + [ 1 1 0 ] 18 0 18 + [ 1 1 1 ] 19 0 19 + [ 1 1 1 ] 20 0 20 + [ 1 2 0 ] 21 0 21 + [ 1 2 0 ] 22 0 22 + [ 1 2 1 ] 23 0 23 + [ 1 2 1 ] 24 0 24 + [ 2 0 0 ] 25 0 25 + [ 2 0 0 ] 26 0 26 + [ 2 0 1 ] 27 0 27 + [ 2 0 1 ] 28 0 28 + [ 2 1 0 ] 29 0 29 + [ 2 1 0 ] 30 0 30 + [ 2 1 1 ] 31 0 31 + [ 2 1 1 ] 32 0 32 + [ 2 2 0 ] 33 0 33 + [ 2 2 0 ] 34 0 34 + [ 2 2 1 ] 35 0 35 + [ 2 2 1 ] 36 0 36 + [ 3 0 0 ] 37 0 37 + [ 3 0 0 ] 38 0 38 + [ 3 0 1 ] 39 0 39 + [ 3 0 1 ] 40 0 40 + [ 3 1 0 ] 41 0 41 + [ 3 1 0 ] 42 0 42 + [ 3 1 1 ] 43 0 43 + [ 3 1 1 ] 44 0 44 + [ 3 2 0 ] 45 0 45 + [ 3 2 0 ] 46 0 46 + [ 3 2 1 ] 47 0 47 + [ 3 2 1 ] 48 0 48 + */ + + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_attr(loc_id,3,dims3,"compound3D",tid,buf33); + write_attr(loc_id, 3, dims3, "compound3D", tid, buf33); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6289,15 +6923,13 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + if (dset_name) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) - status=H5Rcreate(&buf43[i][j][k],fid,dset_name,H5R_OBJECT,(hid_t)-1); - } - } - write_attr(loc_id,3,dims3,"reference3D",H5T_STD_REF_OBJ,buf43); + status = H5Rcreate(&buf43[i][j][k], fid, dset_name, + H5R_OBJECT, (hid_t) -1); + write_attr(loc_id, 3, dims3, "reference3D", H5T_STD_REF_OBJ, buf43); } /*------------------------------------------------------------------------- @@ -6305,48 +6937,47 @@ void write_attr_in(hid_t loc_id, *------------------------------------------------------------------------- */ - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { - if (make_diffs) buf453[i][j][k]=RED; else buf453[i][j][k]=GREEN; + if (make_diffs) + buf453[i][j][k] = RED; + else + buf453[i][j][k] = GREEN; } - } - } - /* - position enum3D of enum3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] GREEN RED - [ 0 0 1 ] GREEN RED - [ 0 1 0 ] GREEN RED - [ 0 1 1 ] GREEN RED - [ 0 2 0 ] GREEN RED - [ 0 2 1 ] GREEN RED - [ 1 0 0 ] GREEN RED - [ 1 0 1 ] GREEN RED - [ 1 1 0 ] GREEN RED - [ 1 1 1 ] GREEN RED - [ 1 2 0 ] GREEN RED - [ 1 2 1 ] GREEN RED - [ 2 0 0 ] GREEN RED - [ 2 0 1 ] GREEN RED - [ 2 1 0 ] GREEN RED - [ 2 1 1 ] GREEN RED - [ 2 2 0 ] GREEN RED - [ 2 2 1 ] GREEN RED - [ 3 0 0 ] GREEN RED - [ 3 0 1 ] GREEN RED - [ 3 1 0 ] GREEN RED - [ 3 1 1 ] GREEN RED - [ 3 2 0 ] GREEN RED - [ 3 2 1 ] GREEN RED + position enum3D of enum3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] GREEN RED + [ 0 0 1 ] GREEN RED + [ 0 1 0 ] GREEN RED + [ 0 1 1 ] GREEN RED + [ 0 2 0 ] GREEN RED + [ 0 2 1 ] GREEN RED + [ 1 0 0 ] GREEN RED + [ 1 0 1 ] GREEN RED + [ 1 1 0 ] GREEN RED + [ 1 1 1 ] GREEN RED + [ 1 2 0 ] GREEN RED + [ 1 2 1 ] GREEN RED + [ 2 0 0 ] GREEN RED + [ 2 0 1 ] GREEN RED + [ 2 1 0 ] GREEN RED + [ 2 1 1 ] GREEN RED + [ 2 2 0 ] GREEN RED + [ 2 2 1 ] GREEN RED + [ 3 0 0 ] GREEN RED + [ 3 0 1 ] GREEN RED + [ 3 1 0 ] GREEN RED + [ 3 1 1 ] GREEN RED + [ 3 2 0 ] GREEN RED + [ 3 2 1 ] GREEN RED */ - tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_attr(loc_id,3,dims3,"enum3D",tid,buf453); + write_attr(loc_id, 3, dims3, "enum3D", tid, buf453); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6355,34 +6986,32 @@ void write_attr_in(hid_t loc_id, */ /* Allocate and initialize VL dataset to write */ - n=0; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 0; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { buf53[i][j][k].p = HDmalloc((size_t)(i + 1) * sizeof(int)); buf53[i][j][k].len = (size_t)(i + 1); for (l = 0; l < i + 1; l++) - if(make_diffs) - ((int *)buf53[i][j][k].p)[l] = 0; + if (make_diffs) + ((int *) buf53[i][j][k].p)[l] = 0; else - ((int *)buf53[i][j][k].p)[l] = n++; + ((int *) buf53[i][j][k].p)[l] = n++; } - } - } /* - position vlen3D of vlen3D of difference - ------------------------------------------------------------ - [ 0 0 1 ] 1 0 1 - [ 0 1 0 ] 2 0 2 - [ 0 1 1 ] 3 0 3 - [ 0 2 0 ] 4 0 4 - [ 0 2 1 ] 5 0 5 - [ 1 0 0 ] 6 0 6 - [ 1 0 0 ] 7 0 7 - [ 1 0 1 ] 8 0 8 - [ 1 0 1 ] 9 0 9 - [ 1 1 0 ] 10 0 10 - etc + position vlen3D of vlen3D of difference + ------------------------------------------------------------ + [ 0 0 1 ] 1 0 1 + [ 0 1 0 ] 2 0 2 + [ 0 1 1 ] 3 0 3 + [ 0 2 0 ] 4 0 4 + [ 0 2 1 ] 5 0 5 + [ 1 0 0 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 0 1 ] 9 0 9 + [ 1 1 0 ] 10 0 10 + etc */ sid = H5Screate_simple(3, dims3, NULL); tid = H5Tvlen_create(H5T_NATIVE_INT); @@ -6399,24 +7028,25 @@ void write_attr_in(hid_t loc_id, * H5T_ARRAY *------------------------------------------------------------------------- */ - n=1; - for (i = 0; i < 24; i++) { - for (j = 0; j < (int)dimarray[0]; j++) { - if (make_diffs) buf63[i][j]=0; - else buf63[i][j]=n++; + n = 1; + for (i = 0; i < 24; i++) + for (j = 0; j < (int) dimarray[0]; j++) { + if (make_diffs) + buf63[i][j] = 0; + else + buf63[i][j] = n++; } - } /* - position array3D of array3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] 1 0 1 - [ 0 0 0 ] 2 0 2 - [ 0 0 0 ] 3 0 3 - [ 0 0 1 ] 4 0 4 - [ 0 0 1 ] 5 0 5 - [ 0 0 1 ] 6 0 6 - [ 0 1 0 ] 7 0 7 - etc + position array3D of array3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 0 ] 2 0 2 + [ 0 0 0 ] 3 0 3 + [ 0 0 1 ] 4 0 4 + [ 0 0 1 ] 5 0 5 + [ 0 0 1 ] 6 0 6 + [ 0 1 0 ] 7 0 7 + etc */ tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); @@ -6427,132 +7057,120 @@ void write_attr_in(hid_t loc_id, * H5T_INTEGER and H5T_FLOAT *------------------------------------------------------------------------- */ - n=1; f=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + f = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { if (make_diffs) { - buf73[i][j][k]=0; - buf83[i][j][k]=0.0F; + buf73[i][j][k] = 0; + buf83[i][j][k] = 0.0F; } else { - buf73[i][j][k]=n++; - buf83[i][j][k]=f++; + buf73[i][j][k] = n++; + buf83[i][j][k] = f++; } } - } - } /* - position integer3D of integer3D of difference - ------------------------------------------------------------ - [ 0 0 0 ] 1 0 1 - [ 0 0 1 ] 2 0 2 - [ 0 1 0 ] 3 0 3 - [ 0 1 1 ] 4 0 4 - [ 0 2 0 ] 5 0 5 - [ 0 2 1 ] 6 0 6 - [ 1 0 0 ] 7 0 7 - [ 1 0 1 ] 8 0 8 - [ 1 1 0 ] 9 0 9 - [ 1 1 1 ] 10 0 10 - etc - */ - write_attr(loc_id,3,dims3,"integer3D",H5T_NATIVE_INT,buf73); - write_attr(loc_id,3,dims3,"float3D",H5T_NATIVE_FLOAT,buf83); + position integer3D of integer3D of difference + ------------------------------------------------------------ + [ 0 0 0 ] 1 0 1 + [ 0 0 1 ] 2 0 2 + [ 0 1 0 ] 3 0 3 + [ 0 1 1 ] 4 0 4 + [ 0 2 0 ] 5 0 5 + [ 0 2 1 ] 6 0 6 + [ 1 0 0 ] 7 0 7 + [ 1 0 1 ] 8 0 8 + [ 1 1 0 ] 9 0 9 + [ 1 1 1 ] 10 0 10 + etc + */ + write_attr(loc_id, 3, dims3, "integer3D", H5T_NATIVE_INT, buf73); + write_attr(loc_id, 3, dims3, "float3D", H5T_NATIVE_FLOAT, buf83); } - - /*------------------------------------------------------------------------- -* Function: write_dset_in -* -* Purpose: write datasets in LOC_ID -* -*------------------------------------------------------------------------- -*/ + * Function: write_dset_in + * + * Purpose: write datasets in LOC_ID + * + *------------------------------------------------------------------------- + */ static -void write_dset_in(hid_t loc_id, - const char* dset_name, /* for saving reference to dataset*/ - hid_t fid, - int make_diffs /* flag to modify data buffers */) +void write_dset_in(hid_t loc_id, const char* dset_name, hid_t fid, int make_diffs /* flag to modify data buffers */) { /* Compound datatype */ - typedef struct s_t - { - char a; + typedef struct s_t { + char a; double b; } s_t; - typedef enum - { - RED, - GREEN + typedef enum { + RED, GREEN } e_t; - hid_t did; - hid_t sid; - hid_t tid; - hid_t dcpl; - herr_t status; - int val, i, j, k, l, n; - float f; - int fillvalue=2; - int scalar_data = 2; + hid_t did = -1; + hid_t sid = -1; + hid_t tid = -1; + hid_t dcpl = -1; + herr_t status; + int val, i, j, k, l, n; + float f; + int fillvalue = 2; + int scalar_data = 2; /* create 1D attributes with dimension [2], 2 elements */ - hsize_t dims[1]={2}; - char buf1[2][STR_SIZE]= {"ab","de"}; /* string */ - char *buf1a[2]; /* VL string */ - char buf2[2]= {1,2}; /* bitfield, opaque */ - s_t buf3[2]= {{1,2.0F},{3,4.0F}}; /* compound */ - hobj_ref_t buf4[2]; /* reference */ - e_t buf45[2]= {RED,GREEN}; /* enum */ - hvl_t buf5[2]; /* vlen */ - hsize_t dimarray[1]={3}; /* array dimension */ - int buf6[2][3]= {{1,2,3},{4,5,6}}; /* array */ - int buf7[2]= {1,2}; /* integer */ - float buf8[2]= {1.0F,2.0F}; /* float */ + hsize_t dims[1] = { 2 }; + char buf1[2][STR_SIZE] = { "ab", "de" }; /* string */ + char *buf1a[2]; /* VL string */ + char buf2[2] = { 1, 2 }; /* bitfield, opaque */ + s_t buf3[2] = { { 1, 2.0F }, { 3, 4.0F } }; /* compound */ + hobj_ref_t buf4[2]; /* reference */ + e_t buf45[2] = { RED, GREEN }; /* enum */ + hvl_t buf5[2]; /* vlen */ + hsize_t dimarray[1] = { 3 }; /* array dimension */ + int buf6[2][3] = { { 1, 2, 3 }, { 4, 5, 6 } }; /* array */ + int buf7[2] = { 1, 2 }; /* integer */ + float buf8[2] = { 1.0F, 2.0F }; /* float */ /* create 2D attributes with dimension [3][2], 6 elements */ - hsize_t dims2[2]={3,2}; - char buf12[3][2][STR_SIZE]= {{"ab","cd"},{"ef","gh"},{"ij","kl"}}; /* string */ - char *buf12a[3][2]; /* VL string */ - char buf22[3][2]= {{1,2},{3,4},{5,6}}; /* bitfield, opaque */ - s_t buf32[6]= {{1,2.0F},{3,4.0F},{5,6.0F},{7,8.0F},{9,10.0F},{11,12.0F}}; /* compound */ - hobj_ref_t buf42[3][2]; /* reference */ - hvl_t buf52[3][2]; /* vlen */ - int buf62[6][3]= {{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15},{16,17,18}}; /* array */ - int buf72[3][2]= {{1,2},{3,4},{5,6}}; /* integer */ - float buf82[3][2]= {{1.0F,2.0F},{3.0F,4.0F},{5.0F,6.0F}}; /* float */ + hsize_t dims2[2] = { 3, 2 }; + char buf12[3][2][STR_SIZE] = { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }; /* string */ + char *buf12a[3][2]; /* VL string */ + char buf22[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* bitfield, opaque */ + s_t buf32[6] = { { 1, 2.0F }, { 3, 4.0F }, { 5, 6.0F }, { 7, 8.0F }, { 9, 10.0F }, { 11, 12.0F } }; /* compound */ + hobj_ref_t buf42[3][2]; /* reference */ + hvl_t buf52[3][2]; /* vlen */ + int buf62[6][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 }, { 13, 14, 15 }, { 16, 17, 18 } }; /* array */ + int buf72[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; /* integer */ + float buf82[3][2] = { { 1.0F, 2.0F }, { 3.0F, 4.0F }, { 5.0F, 6.0F } }; /* float */ /* create 3D attributes with dimension [4][3][2], 24 elements */ - hsize_t dims3[3]={4,3,2}; - char buf13[4][3][2][STR_SIZE]= {{{"ab","cd"},{"ef","gh"},{"ij","kl"}}, - {{"mn","pq"},{"rs","tu"},{"vw","xz"}}, - {{"AB","CD"},{"EF","GH"},{"IJ","KL"}}, - {{"MN","PQ"},{"RS","TU"},{"VW","XZ"}}}; /* string */ - char *buf13a[4][3][2]; /* VL string */ - char buf23[4][3][2]; /* bitfield, opaque */ - s_t buf33[4][3][2]; /* compound */ - hobj_ref_t buf43[4][3][2]; /* reference */ - hvl_t buf53[4][3][2]; /* vlen */ - int buf63[24][3]; /* array */ - int buf73[4][3][2]; /* integer */ - float buf83[4][3][2]; /* float */ - - if(make_diffs == 2) { + hsize_t dims3[3] = { 4, 3, 2 }; + char buf13[4][3][2][STR_SIZE] = { { { "ab", "cd" }, { "ef", "gh" }, { "ij", "kl" } }, + { { "mn", "pq" }, { "rs", "tu" }, { "vw", "xz" } }, + { { "AB", "CD" }, { "EF", "GH" }, { "IJ", "KL" } }, + { { "MN", "PQ" }, { "RS", "TU" }, { "VW", "XZ" } } }; /* string */ + char *buf13a[4][3][2]; /* VL string */ + char buf23[4][3][2]; /* bitfield, opaque */ + s_t buf33[4][3][2]; /* compound */ + hobj_ref_t buf43[4][3][2]; /* reference */ + hvl_t buf53[4][3][2]; /* vlen */ + int buf63[24][3]; /* array */ + int buf73[4][3][2]; /* integer */ + float buf83[4][3][2]; /* float */ + + if (make_diffs == 2) dimarray[0] = 4; - } /*------------------------------------------------------------------------- * H5S_SCALAR *------------------------------------------------------------------------- */ - - - if(make_diffs) + if (make_diffs) scalar_data = 1; /* create a space */ @@ -6568,7 +7186,6 @@ void write_dset_in(hid_t loc_id, H5Dclose(did); H5Sclose(sid); - /*------------------------------------------------------------------------- * 1D *------------------------------------------------------------------------- @@ -6579,27 +7196,22 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<2; i++) - for (j=0; j<2; j++) - buf1[i][j]='z'; - } - + for (i = 0; i < 2; i++) + for (j = 0; j < 2; j++) + buf1[i][j] = 'z'; tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid,(size_t)STR_SIZE); - write_dset(loc_id,1,dims,"string",tid,buf1); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_dset(loc_id, 1, dims, "string", tid, buf1); status = H5Tclose(tid); - for (i=0; i<2; i++) - { - buf1a[i]=buf1[i]; - } + for (i = 0; i < 2; i++) + buf1a[i] = buf1[i]; + tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_dset(loc_id,1,dims,"VLstring",tid,buf1a); + status = H5Tset_size(tid, H5T_VARIABLE); + write_dset(loc_id, 1, dims, "VLstring", tid, buf1a); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6608,13 +7220,11 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - buf2[i]=buf2[1]=0; - } + for (i = 0; i < 2; i++) + buf2[i] = buf2[1] = 0; tid = H5Tcopy(H5T_STD_B8LE); - write_dset(loc_id,1,dims,"bitfield",tid,buf2); + write_dset(loc_id, 1, dims, "bitfield", tid, buf2); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6623,16 +7233,14 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - { - buf3[i].a=0; buf3[i].b=0; + for (i = 0; i < 2; i++) { + buf3[i].a = 0; + buf3[i].b = 0; } - } - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_dset(loc_id,1,dims,"opaque",tid,buf2); + write_dset(loc_id, 1, dims, "opaque", tid, buf2); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6640,19 +7248,14 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<2; i++) - { - buf45[i]=GREEN; - } - } + for (i = 0; i < 2; i++) + buf45[i] = GREEN; - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_dset(loc_id,1,dims,"compound",tid,buf3); + write_dset(loc_id, 1, dims, "compound", tid, buf3); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6660,11 +7263,10 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - status=H5Rcreate(&buf4[0],fid,dset_name,H5R_OBJECT,(hid_t)-1); - status=H5Rcreate(&buf4[1],fid,dset_name,H5R_OBJECT,(hid_t)-1); - write_dset(loc_id,1,dims,"reference",H5T_STD_REF_OBJ,buf4); + if (dset_name) { + status = H5Rcreate(&buf4[0], fid, dset_name, H5R_OBJECT, (hid_t) -1); + status = H5Rcreate(&buf4[1], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_dset(loc_id, 1, dims, "reference", H5T_STD_REF_OBJ, buf4); } /*------------------------------------------------------------------------- @@ -6672,16 +7274,16 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - gen_datareg(fid,make_diffs); + gen_datareg(fid, make_diffs); /*------------------------------------------------------------------------- * H5T_ENUM *------------------------------------------------------------------------- */ tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_dset(loc_id,1,dims,"enum",tid,buf45); + write_dset(loc_id, 1, dims, "enum", tid, buf45); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6692,22 +7294,23 @@ void write_dset_in(hid_t loc_id, /* Allocate and initialize VL dataset to write */ buf5[0].len = 1; - buf5[0].p = HDmalloc( 1 * sizeof(int)); - ((int *)buf5[0].p)[0]=1; + buf5[0].p = HDmalloc(1 * sizeof(int)); + ((int *) buf5[0].p)[0] = 1; buf5[1].len = 2; - buf5[1].p = HDmalloc( 2 * sizeof(int)); - ((int *)buf5[1].p)[0]=2; - ((int *)buf5[1].p)[1]=3; + buf5[1].p = HDmalloc(2 * sizeof(int)); + ((int *) buf5[1].p)[0] = 2; + ((int *) buf5[1].p)[1] = 3; - if(make_diffs) { - ((int *)buf5[0].p)[0] = 0; - ((int *)buf5[1].p)[0] = 0; - ((int *)buf5[1].p)[1]=0; + if (make_diffs) { + ((int *) buf5[0].p)[0] = 0; + ((int *) buf5[1].p)[0] = 0; + ((int *) buf5[1].p)[1] = 0; } sid = H5Screate_simple(1, dims, NULL); tid = H5Tvlen_create(H5T_NATIVE_INT); - did = H5Dcreate2(loc_id, "vlen", tid, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + did = H5Dcreate2(loc_id, "vlen", tid, sid, H5P_DEFAULT, H5P_DEFAULT, + H5P_DEFAULT); status = H5Dwrite(did, tid, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf5); HDassert(status >= 0); status = H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, buf5); @@ -6722,37 +7325,32 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - for (j=0; j<3; j++) - { - buf6[i][j]=0; - } - } + for (i = 0; i < 2; i++) + for (j = 0; j < 3; j++) + buf6[i][j] = 0; tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); write_dset(loc_id, 1, dims, "array", tid, buf6); status = H5Tclose(tid); { - double *dbuf; /* information to write */ - hid_t ldid; /* dataset ID */ - hid_t lsid; /* dataspace ID */ - hid_t ltid; /* datatype ID */ - size_t size; - hsize_t sdims[] = {1}; - hsize_t tdims[] = {H5TOOLS_MALLOCSIZE / sizeof(double) + 1}; - size_t jj; + double *dbuf; /* information to write */ + hid_t ldid = -1; /* dataset ID */ + hid_t lsid = -1; /* dataspace ID */ + hid_t ltid = -1; /* datatype ID */ + size_t size; + hsize_t sdims[] = { 1 }; + hsize_t tdims[] = { H5TOOLS_MALLOCSIZE / sizeof(double) + 1 }; + size_t jj; /* allocate and initialize array data to write */ - size = ( H5TOOLS_MALLOCSIZE / sizeof(double) + 1 ) * sizeof(double); - dbuf = (double *)HDmalloc(size); + size = (H5TOOLS_MALLOCSIZE / sizeof(double) + 1) * sizeof(double); + dbuf = (double *) HDmalloc(size); - for(jj = 0; jj < (H5TOOLS_MALLOCSIZE / sizeof(double) + 1); jj++) - dbuf[jj] = (double)jj; + for (jj = 0; jj < (H5TOOLS_MALLOCSIZE / sizeof(double) + 1); jj++) + dbuf[jj] = (double) jj; - if (make_diffs) - { + if (make_diffs) { dbuf[5] = 0; dbuf[6] = 0; } @@ -6779,17 +7377,13 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - for (i=0; i<2; i++) - { - buf7[i]=0; - buf8[i]=0; + for (i = 0; i < 2; i++) { + buf7[i] = 0; + buf8[i] = 0; } - } - - write_dset(loc_id,1,dims,"integer",H5T_NATIVE_INT,buf7); - write_dset(loc_id,1,dims,"float",H5T_NATIVE_FLOAT,buf8); + write_dset(loc_id, 1, dims, "integer", H5T_NATIVE_INT, buf7); + write_dset(loc_id, 1, dims, "float", H5T_NATIVE_FLOAT, buf8); /*------------------------------------------------------------------------- * 2D @@ -6801,30 +7395,25 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<3; i++) - for (j=0; j<2; j++) - for (k=0; k<2; k++) - buf12[i][j][k]='z'; + if (make_diffs) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + for (k = 0; k < 2; k++) + buf12[i][j][k] = 'z'; } - tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid,(size_t)STR_SIZE); - write_dset(loc_id,2,dims2,"string2D",tid,buf12); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_dset(loc_id, 2, dims2, "string2D", tid, buf12); status = H5Tclose(tid); - for (i=0; i<3; i++) - { - for (j=0; j<2; j++) - { - buf12a[i][j]=buf12[i][j]; - } - } + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + buf12a[i][j] = buf12[i][j]; + tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_dset(loc_id,2,dims2,"VLstring2D",tid,buf12a); + status = H5Tset_size(tid, H5T_VARIABLE); + write_dset(loc_id, 2, dims2, "VLstring2D", tid, buf12a); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6832,23 +7421,20 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - memset(buf22,0,sizeof buf22); - } + memset(buf22, 0, sizeof buf22); tid = H5Tcopy(H5T_STD_B8LE); - write_dset(loc_id,2,dims2,"bitfield2D",tid,buf22); + write_dset(loc_id, 2, dims2, "bitfield2D", tid, buf22); status = H5Tclose(tid); /*------------------------------------------------------------------------- * H5T_OPAQUE *------------------------------------------------------------------------- */ - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_dset(loc_id,2,dims2,"opaque2D",tid,buf22); + write_dset(loc_id, 2, dims2, "opaque2D", tid, buf22); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6857,14 +7443,12 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - memset(buf32,0,sizeof buf32); - } + memset(buf32, 0, sizeof buf32); - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_dset(loc_id,2,dims2,"compound2D",tid,buf32); + write_dset(loc_id, 2, dims2, "compound2D", tid, buf32); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6872,14 +7456,11 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - for (i = 0; i < 3; i++) { - for (j = 0; j < 2; j++) { - status=H5Rcreate(&buf42[i][j],fid,dset_name,H5R_OBJECT,(hid_t)-1); - } - } - write_dset(loc_id,2,dims2,"reference2D",H5T_STD_REF_OBJ,buf42); + if (dset_name) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) + status = H5Rcreate(&buf42[i][j], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_dset(loc_id, 2, dims2, "reference2D", H5T_STD_REF_OBJ, buf42); } /*------------------------------------------------------------------------- @@ -6888,9 +7469,9 @@ void write_dset_in(hid_t loc_id, */ tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_dset(loc_id,2,dims2,"enum2D",tid,0); + write_dset(loc_id, 2, dims2, "enum2D", tid, 0); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -6900,18 +7481,17 @@ void write_dset_in(hid_t loc_id, /* Allocate and initialize VL dataset to write */ n = 0; - for(i = 0; i < 3; i++) { - for(j = 0; j < 2; j++) { + for (i = 0; i < 3; i++) + for (j = 0; j < 2; j++) { buf52[i][j].p = HDmalloc((size_t)(i + 1) * sizeof(int)); buf52[i][j].len = (size_t)(i + 1); - for(l = 0; l < i + 1; l++) { - if(make_diffs) - ((int *)buf52[i][j].p)[l] = 0; + for (l = 0; l < i + 1; l++) { + if (make_diffs) + ((int *) buf52[i][j].p)[l] = 0; else - ((int *)buf52[i][j].p)[l] = n++; + ((int *) buf52[i][j].p)[l] = n++; } } - } sid = H5Screate_simple(2, dims2, NULL); tid = H5Tvlen_create(H5T_NATIVE_INT); @@ -6930,10 +7510,7 @@ void write_dset_in(hid_t loc_id, */ if (make_diffs) - { - memset(buf62,0,sizeof buf62); - } - + memset(buf62, 0, sizeof buf62); tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); write_dset(loc_id, 2, dims2, "array2D", tid, buf62); @@ -6944,14 +7521,11 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - - if (make_diffs) - { + if (make_diffs) { memset(buf72, 0, sizeof buf72); memset(buf82, 0, sizeof buf82); } - dcpl = H5Pcreate(H5P_DATASET_CREATE); status = H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fillvalue); sid = H5Screate_simple(2, dims2, NULL); @@ -6966,8 +7540,7 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - write_dset(loc_id,2,dims2,"float2D",H5T_NATIVE_FLOAT,buf82); - + write_dset(loc_id, 2, dims2, "float2D", H5T_NATIVE_FLOAT, buf82); /*------------------------------------------------------------------------- * 3D @@ -6979,33 +7552,27 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - if (make_diffs) - { - for (i=0; i<4; i++) - for (j=0; j<3; j++) - for (k=0; k<2; k++) - for (l=0; l<2; l++) - buf13[i][j][k][l]='z'; + if (make_diffs) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + for (l = 0; l < 2; l++) + buf13[i][j][k][l] = 'z'; } tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid,(size_t)STR_SIZE); - write_dset(loc_id,3,dims3,"string3D",tid,buf13); + status = H5Tset_size(tid, (size_t) STR_SIZE); + write_dset(loc_id, 3, dims3, "string3D", tid, buf13); status = H5Tclose(tid); - for (i=0; i<4; i++) - { - for (j=0; j<3; j++) - { - for (k=0; k<2; k++) - { - buf13a[i][j][k]=buf13[i][j][k]; - } - } - } + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) + buf13a[i][j][k] = buf13[i][j][k]; + tid = H5Tcopy(H5T_C_S1); - status = H5Tset_size(tid, H5T_VARIABLE); - write_dset(loc_id,3,dims3,"VLstring3D",tid,buf13a); + status = H5Tset_size(tid, H5T_VARIABLE); + write_dset(loc_id, 3, dims3, "VLstring3D", tid, buf13a); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -7013,31 +7580,27 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - - n=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { - if(make_diffs) + if (make_diffs) buf23[i][j][k] = 0; else - buf23[i][j][k] = (char)n++; + buf23[i][j][k] = (char) n++; } - } - } - tid = H5Tcopy(H5T_STD_B8LE); - write_dset(loc_id,3,dims3,"bitfield3D",tid,buf23); + write_dset(loc_id, 3, dims3, "bitfield3D", tid, buf23); status = H5Tclose(tid); /*------------------------------------------------------------------------- * H5T_OPAQUE *------------------------------------------------------------------------- */ - tid = H5Tcreate(H5T_OPAQUE, (size_t)1); + tid = H5Tcreate(H5T_OPAQUE, (size_t) 1); status = H5Tset_tag(tid, "1-byte opaque type"); /* must set this */ - write_dset(loc_id,3,dims3,"opaque3D",tid,buf23); + write_dset(loc_id, 3, dims3, "opaque3D", tid, buf23); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -7045,27 +7608,24 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - n=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { if (make_diffs) { buf33[i][j][k].a = 0; buf33[i][j][k].b = 0.0F; } else { - buf33[i][j][k].a = (char)n++; + buf33[i][j][k].a = (char) n++; buf33[i][j][k].b = n++; } } - } - } - - tid = H5Tcreate (H5T_COMPOUND, sizeof(s_t)); + tid = H5Tcreate(H5T_COMPOUND, sizeof(s_t)); H5Tinsert(tid, "a", HOFFSET(s_t, a), H5T_NATIVE_CHAR); H5Tinsert(tid, "b", HOFFSET(s_t, b), H5T_NATIVE_DOUBLE); - write_dset(loc_id,3,dims3,"compound3D",tid,buf33); + write_dset(loc_id, 3, dims3, "compound3D", tid, buf33); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -7073,15 +7633,12 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ /* Create references to dataset */ - if (dset_name) - { - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + if (dset_name) { + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) - status=H5Rcreate(&buf43[i][j][k],fid,dset_name,H5R_OBJECT,(hid_t)-1); - } - } - write_dset(loc_id,3,dims3,"reference3D",H5T_STD_REF_OBJ,buf43); + status = H5Rcreate(&buf43[i][j][k], fid, dset_name, H5R_OBJECT, (hid_t) -1); + write_dset(loc_id, 3, dims3, "reference3D", H5T_STD_REF_OBJ, buf43); } /*------------------------------------------------------------------------- @@ -7090,9 +7647,9 @@ void write_dset_in(hid_t loc_id, */ tid = H5Tcreate(H5T_ENUM, sizeof(e_t)); - H5Tenum_insert(tid, "RED", (val = 0, &val)); + H5Tenum_insert(tid, "RED", (val = 0, &val)); H5Tenum_insert(tid, "GREEN", (val = 1, &val)); - write_dset(loc_id,3,dims3,"enum3D",tid,0); + write_dset(loc_id, 3, dims3, "enum3D", tid, 0); status = H5Tclose(tid); /*------------------------------------------------------------------------- @@ -7101,21 +7658,19 @@ void write_dset_in(hid_t loc_id, */ /* Allocate and initialize VL dataset to write */ - n=0; - for(i = 0; i < 4; i++) { - for(j = 0; j < 3; j++) { - for(k = 0; k < 2; k++) { + n = 0; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) + for (k = 0; k < 2; k++) { buf53[i][j][k].p = HDmalloc((size_t)(i + 1) * sizeof(int)); buf53[i][j][k].len = (size_t)(i + 1); - for(l = 0; l < i + 1; l++) { - if(make_diffs) - ((int *)buf53[i][j][k].p)[l] = 0; + for (l = 0; l < i + 1; l++) { + if (make_diffs) + ((int *) buf53[i][j][k].p)[l] = 0; else - ((int *)buf53[i][j][k].p)[l] = n++; + ((int *) buf53[i][j][k].p)[l] = n++; } } - } - } sid = H5Screate_simple(3, dims3, NULL); tid = H5Tvlen_create(H5T_NATIVE_INT); @@ -7133,14 +7688,14 @@ void write_dset_in(hid_t loc_id, *------------------------------------------------------------------------- */ - - n=1; - for (i = 0; i < 24; i++) { + n = 1; + for (i = 0; i < 24; i++) for (j = 0; j < 3; j++) { - if (make_diffs) buf63[i][j]=0; - else buf63[i][j]=n++; + if (make_diffs) + buf63[i][j] = 0; + else + buf63[i][j] = n++; } - } tid = H5Tarray_create2(H5T_NATIVE_INT, 1, dimarray); write_dset(loc_id, 3, dims3, "array3D", tid, buf63); @@ -7150,82 +7705,86 @@ void write_dset_in(hid_t loc_id, * H5T_INTEGER and H5T_FLOAT *------------------------------------------------------------------------- */ - n=1; f=1; - for (i = 0; i < 4; i++) { - for (j = 0; j < 3; j++) { + n = 1; + f = 1; + for (i = 0; i < 4; i++) + for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) { if (make_diffs) { - buf73[i][j][k]=0; - buf83[i][j][k]=0.0F; + buf73[i][j][k] = 0; + buf83[i][j][k] = 0.0F; } else { - buf73[i][j][k]=n++; - buf83[i][j][k]=f++; + buf73[i][j][k] = n++; + buf83[i][j][k] = f++; } } - } - } - write_dset(loc_id,3,dims3,"integer3D",H5T_NATIVE_INT,buf73); - write_dset(loc_id,3,dims3,"float3D",H5T_NATIVE_FLOAT,buf83); + + write_dset(loc_id, 3, dims3, "integer3D", H5T_NATIVE_INT, buf73); + write_dset(loc_id, 3, dims3, "float3D", H5T_NATIVE_FLOAT, buf83); } /*------------------------------------------------------------------------- -* Function: gen_datareg -* -* Purpose: generate a dataset region and its reference -* -* Date: April 19, 2006 -* -*------------------------------------------------------------------------- -*/ + * Function: gen_datareg + * + * Purpose: generate a dataset region and its reference + * + * Date: April 19, 2006 + * + *------------------------------------------------------------------------- + */ static -void gen_datareg(hid_t fid, - int make_diffs /* flag to modify data buffers */) +void gen_datareg(hid_t fid, int make_diffs /* flag to modify data buffers */) { /* data dataset */ - hid_t did1; /* dataset ID */ - hid_t sid1; /* dataspace ID */ - hsize_t dims1[2] = {10,10};/* dimensions */ - int *buf; /* dataset buffer */ + hid_t did1 = -1; /* dataset ID */ + hid_t sid1 = -1; /* dataspace ID */ + hsize_t dims1[2] = { 10, 10 };/* dimensions */ + int *buf; /* dataset buffer */ /* reference dataset */ - hid_t did2; /* dataset ID */ - hid_t sid2; /* dataspace ID */ - hsize_t dims2[] = {2}; /* 2 references */ - hdset_reg_ref_t *rbuf; /* buffer for write the references */ - hsize_t start[10]; /* starting location of hyperslab */ - hsize_t count[10]; /* element count of hyperslab */ - hsize_t coord[5][2]; /* coordinates for point selection */ - herr_t status; - int i; + hid_t did2 = -1; /* dataset ID */ + hid_t sid2 = -1; /* dataspace ID */ + hsize_t dims2[] = { 2 }; /* 2 references */ + hdset_reg_ref_t *rbuf; /* buffer for write the references */ + hsize_t start[10]; /* starting location of hyperslab */ + hsize_t count[10]; /* element count of hyperslab */ + hsize_t coord[5][2]; /* coordinates for point selection */ + herr_t status; + int i; /* allocate the buffer for write the references */ - rbuf = (hdset_reg_ref_t *)HDcalloc((size_t)2, sizeof(hdset_reg_ref_t)); + rbuf = (hdset_reg_ref_t *) HDcalloc((size_t )2, sizeof(hdset_reg_ref_t)); /* allocate the buffer for write the data dataset */ - buf = (int *)HDmalloc(10 * 10 * sizeof(int)); + buf = (int *) HDmalloc(10 * 10 * sizeof(int)); - for(i = 0; i < 10 * 10; i++) + for (i = 0; i < 10 * 10; i++) buf[i] = i; /* create the data dataset */ - sid1 = H5Screate_simple(2, dims1, NULL); - did1 = H5Dcreate2(fid, "dsetref", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + sid1 = H5Screate_simple(2, dims1, NULL); + did1 = H5Dcreate2(fid, "dsetref", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); status = H5Dwrite(did1, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf); HDassert(status >= 0); /* create the reference dataset */ - sid2 = H5Screate_simple(1, dims2, NULL); - did2 = H5Dcreate2(fid, "refreg", H5T_STD_REF_DSETREG, sid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + sid2 = H5Screate_simple(1, dims2, NULL); + did2 = H5Dcreate2(fid, "refreg", H5T_STD_REF_DSETREG, sid2, H5P_DEFAULT, + H5P_DEFAULT, H5P_DEFAULT); /* create the references */ /* select hyperslab for first reference */ - start[0] = 2; start[1] = 2; - count[0] = 6; count[1] = 6; - if(make_diffs) { - start[0] = 0; start[1] = 0; - count[0] = 3; count[1] = 3; + start[0] = 2; + start[1] = 2; + count[0] = 6; + count[1] = 6; + if (make_diffs) { + start[0] = 0; + start[1] = 0; + count[0] = 3; + count[1] = 3; } status = H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL); @@ -7237,25 +7796,32 @@ void gen_datareg(hid_t fid, HDassert(status >= 0); /* select sequence of five points for second reference */ - coord[0][0]=6; coord[0][1]=9; - coord[1][0]=2; coord[1][1]=2; - coord[2][0]=8; coord[2][1]=4; - coord[3][0]=1; coord[3][1]=6; - coord[4][0]=2; coord[4][1]=8; - if (make_diffs) - { - coord[1][0]=3; coord[1][1]=3; - coord[3][0]=2; coord[3][1]=5; - coord[4][0]=1; coord[4][1]=7; - } - H5Sselect_elements(sid1,H5S_SELECT_SET,(size_t)5,(const hsize_t *)coord); + coord[0][0] = 6; + coord[0][1] = 9; + coord[1][0] = 2; + coord[1][1] = 2; + coord[2][0] = 8; + coord[2][1] = 4; + coord[3][0] = 1; + coord[3][1] = 6; + coord[4][0] = 2; + coord[4][1] = 8; + if (make_diffs) { + coord[1][0] = 3; + coord[1][1] = 3; + coord[3][0] = 2; + coord[3][1] = 5; + coord[4][0] = 1; + coord[4][1] = 7; + } + H5Sselect_elements(sid1, H5S_SELECT_SET, (size_t) 5, (const hsize_t *) coord); H5Sget_select_npoints(sid1); /* store second dataset region */ - H5Rcreate(&rbuf[1],fid,"dsetref",H5R_DATASET_REGION,sid1); + H5Rcreate(&rbuf[1], fid, "dsetref", H5R_DATASET_REGION, sid1); /* write */ - status = H5Dwrite(did2,H5T_STD_REF_DSETREG,H5S_ALL,H5S_ALL,H5P_DEFAULT,rbuf); + status = H5Dwrite(did2, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf); HDassert(status >= 0); /* close, free memory buffers */ @@ -7272,60 +7838,58 @@ void gen_datareg(hid_t fid, HDfree(buf); } - /*------------------------------------------------------------------------- -* Function: test_hyperslab -* -* Purpose: test diff by hyperslabs. create a dataset with 1GB dimensions -* by iterating trough 1KB hyperslabs -* -*------------------------------------------------------------------------- -*/ + * Function: test_hyperslab + * + * Purpose: test diff by hyperslabs. create a dataset with 1GB dimensions + * by iterating trough 1KB hyperslabs + * + *------------------------------------------------------------------------- + */ static -int test_hyperslab(const char *fname, - int make_diffs /* flag to modify data buffers */) +int test_hyperslab(const char *fname, int make_diffs /* flag to modify data buffers */) { - hid_t did=-1; - hid_t fid=-1; - hid_t f_sid=-1; - hid_t m_sid=-1; - hid_t tid=-1; - hid_t dcpl=-1; - hsize_t dims[1]={GBLL}; /* dataset dimensions */ - hsize_t hs_size[1]={GBLL/(1024*1024)}; /* hyperslab dimensions */ - hsize_t chunk_dims[1]={GBLL/1024}; /* chunk dimensions */ + hid_t did = -1; + hid_t fid = -1; + hid_t f_sid = -1; + hid_t m_sid = -1; + hid_t tid = -1; + hid_t dcpl = -1; + hsize_t dims[1] = { GBLL }; /* dataset dimensions */ + hsize_t hs_size[1] = { GBLL / (1024 * 1024) }; /* hyperslab dimensions */ + hsize_t chunk_dims[1] = { GBLL / 1024 }; /* chunk dimensions */ hsize_t hs_start[1]; - size_t size; - size_t nelmts=(size_t)GBLL/(1024*1024); /* elements in each hyperslab */ - char fillvalue=-1; - char *buf=NULL; - int i, j, s; - char c; + size_t size; + size_t nelmts = (size_t)GBLL / (1024 * 1024); /* elements in each hyperslab */ + char fillvalue = -1; + char *buf = NULL; + int i, j, s; + char c; /* create */ fid = H5Fcreate(fname, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - if((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0) + if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0) goto out; - if(H5Pset_fill_value(dcpl, H5T_NATIVE_CHAR, &fillvalue) < 0) + if (H5Pset_fill_value(dcpl, H5T_NATIVE_CHAR, &fillvalue) < 0) goto out; - if(H5Pset_chunk(dcpl, 1, chunk_dims) < 0) + if (H5Pset_chunk(dcpl, 1, chunk_dims) < 0) goto out; - if((f_sid = H5Screate_simple(1, dims, NULL)) < 0) + if ((f_sid = H5Screate_simple(1, dims, NULL)) < 0) goto out; - if((did = H5Dcreate2(fid, "big", H5T_NATIVE_CHAR, f_sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0) + if ((did = H5Dcreate2(fid, "big", H5T_NATIVE_CHAR, f_sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0) goto out; - if((m_sid = H5Screate_simple(1, hs_size, hs_size)) < 0) + if ((m_sid = H5Screate_simple(1, hs_size, hs_size)) < 0) goto out; - if((tid = H5Dget_type(did)) < 0) + if ((tid = H5Dget_type(did)) < 0) goto out; - if((size = H5Tget_size(tid)) <= 0) + if ((size = H5Tget_size(tid)) <= 0) goto out; /* create a evenly divided buffer from 0 to 127 */ - buf = (char *)HDmalloc((size_t)(nelmts * size)); + buf = (char *) HDmalloc((size_t)(nelmts * size)); s = 1024 * 1024 / 127; - for(i = 0, j = 0, c = 0; i < 1024 * 1024; j++, i++) { - if(j == s) { + for (i = 0, j = 0, c = 0; i < 1024 * 1024; j++, i++) { + if (j == s) { c++; j = 0; } @@ -7334,32 +7898,30 @@ int test_hyperslab(const char *fname, HDmemset(buf, c, nelmts); /* make a different hyperslab at this position */ - if(make_diffs && i == 512 * 512) + if (make_diffs && i == 512 * 512) HDmemset(buf, 0, nelmts); - hs_start[0] = (unsigned long long)i * GBLL / (1024 * 1024); - if (H5Sselect_hyperslab (f_sid,H5S_SELECT_SET,hs_start,NULL,hs_size, NULL) < 0) + hs_start[0] = (unsigned long long) i * GBLL / (1024 * 1024); + if (H5Sselect_hyperslab(f_sid, H5S_SELECT_SET, hs_start, NULL, hs_size, NULL) < 0) goto out; /* write only one hyperslab */ - if ( i==512*512) - { - if (H5Dwrite (did,H5T_NATIVE_CHAR,m_sid,f_sid,H5P_DEFAULT,buf) < 0) + if (i == 512 * 512) { + if (H5Dwrite(did, H5T_NATIVE_CHAR, m_sid, f_sid, H5P_DEFAULT, buf) < 0) goto out; } - } HDfree(buf); - buf=NULL; + buf = NULL; /* close */ - if(H5Sclose(f_sid) < 0) + if (H5Sclose(f_sid) < 0) goto out; - if(H5Sclose(m_sid) < 0) + if (H5Sclose(m_sid) < 0) goto out; - if(H5Pclose(dcpl) < 0) + if (H5Pclose(dcpl) < 0) goto out; - if(H5Dclose(did) < 0) + if (H5Dclose(did) < 0) goto out; H5Fclose(fid); @@ -7374,40 +7936,32 @@ out: H5Fclose(fid); } H5E_END_TRY; return -1; - } - /*------------------------------------------------------------------------- -* Function: write_attr -* -* Purpose: utility function to write an attribute in LOC_ID -* -*------------------------------------------------------------------------- -*/ + * Function: write_attr + * + * Purpose: utility function to write an attribute in LOC_ID + * + *------------------------------------------------------------------------- + */ static -int write_attr(hid_t loc_id, - int rank, - hsize_t *dims, - const char *name, - hid_t tid, - void *buf) +int write_attr(hid_t loc_id, int rank, hsize_t *dims, const char *name, hid_t tid, void *buf) { - hid_t aid=-1; - hid_t sid=-1; + hid_t aid = -1; + hid_t sid = -1; /* create a space */ - if((sid = H5Screate_simple(rank, dims, NULL)) < 0) + if ((sid = H5Screate_simple(rank, dims, NULL)) < 0) goto out; /* create the attribute */ - if((aid = H5Acreate2(loc_id, name, tid, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((aid = H5Acreate2(loc_id, name, tid, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto out; /* write */ - if(buf) - { - if(H5Awrite(aid, tid, buf) < 0) + if (buf) { + if (H5Awrite(aid, tid, buf) < 0) goto out; } @@ -7425,35 +7979,29 @@ out: } /*------------------------------------------------------------------------- -* Function: write_dset -* -* Purpose: utility function to create and write a dataset in LOC_ID -* -*------------------------------------------------------------------------- -*/ + * Function: write_dset + * + * Purpose: utility function to create and write a dataset in LOC_ID + * + *------------------------------------------------------------------------- + */ static -int write_dset( hid_t loc_id, - int rank, - hsize_t *dims, - const char *name, - hid_t tid, - void *buf ) +int write_dset(hid_t loc_id, int rank, hsize_t *dims, const char *name, hid_t tid, void *buf) { - hid_t did=-1; - hid_t sid=-1; + hid_t did = -1; + hid_t sid = -1; /* create a space */ - if((sid = H5Screate_simple(rank, dims, NULL)) < 0) + if ((sid = H5Screate_simple(rank, dims, NULL)) < 0) goto out; /* create the dataset */ - if((did = H5Dcreate2(loc_id, name, tid, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((did = H5Dcreate2(loc_id, name, tid, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto out; /* write */ - if(buf) - { - if(H5Dwrite(did, tid, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf) < 0) + if (buf) { + if (H5Dwrite(did, tid, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf) < 0) goto out; } diff --git a/tools/h5diff/testfiles/h5diff_8625.txt b/tools/h5diff/testfiles/h5diff_8625.txt new file mode 100644 index 0000000..a7ddb86 --- /dev/null +++ b/tools/h5diff/testfiles/h5diff_8625.txt @@ -0,0 +1,10 @@ +dataset: and +Warning: different storage datatype +Warning: different storage datatype +Not comparable: or is of mixed string type +0 differences found +-------------------------------- +Some objects are not comparable +-------------------------------- +Use -c for a list of objects without details of differences. +EXIT CODE: 0 diff --git a/tools/h5diff/testfiles/h5diff_8639.txt b/tools/h5diff/testfiles/h5diff_8639.txt new file mode 100644 index 0000000..4022e06 --- /dev/null +++ b/tools/h5diff/testfiles/h5diff_8639.txt @@ -0,0 +1,72 @@ + +group1 group2 +--------------------------------------- + x x + +group : and +0 differences found +Warning: different storage datatype +Not comparable: or is of mixed string type +Warning: different storage datatype +Not comparable: or is of mixed string type +Warning: different storage datatype +Not comparable: or is of mixed string type +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +Warning: different storage datatype +Not comparable: or is of mixed string type +Warning: different storage datatype +Not comparable: or is of mixed string type +Warning: different storage datatype +Not comparable: or is of mixed string type +attribute: > and > +0 differences found +attribute: > and > +0 differences found +attribute: > and > +0 differences found +-------------------------------- +Some objects are not comparable +-------------------------------- +Use -c for a list of objects without details of differences. +EXIT CODE: 0 diff --git a/tools/h5diff/testfiles/h5diff_attr1.h5 b/tools/h5diff/testfiles/h5diff_attr1.h5 index 5004f13..fc519d4 100644 Binary files a/tools/h5diff/testfiles/h5diff_attr1.h5 and b/tools/h5diff/testfiles/h5diff_attr1.h5 differ diff --git a/tools/h5diff/testfiles/h5diff_attr2.h5 b/tools/h5diff/testfiles/h5diff_attr2.h5 index 92a91c0..627d432 100644 Binary files a/tools/h5diff/testfiles/h5diff_attr2.h5 and b/tools/h5diff/testfiles/h5diff_attr2.h5 differ diff --git a/tools/h5diff/testfiles/h5diff_attr3.h5 b/tools/h5diff/testfiles/h5diff_attr3.h5 new file mode 100644 index 0000000..df2c664 Binary files /dev/null and b/tools/h5diff/testfiles/h5diff_attr3.h5 differ diff --git a/tools/h5diff/testfiles/h5diff_tmp1.txt b/tools/h5diff/testfiles/h5diff_tmp1.txt deleted file mode 100644 index 40e3fb6..0000000 --- a/tools/h5diff/testfiles/h5diff_tmp1.txt +++ /dev/null @@ -1,5 +0,0 @@ --------------------------------- -Some objects are not comparable --------------------------------- -Use -c for a list of objects. -EXIT CODE: 0 diff --git a/tools/h5diff/testfiles/h5diff_tmp2.txt b/tools/h5diff/testfiles/h5diff_tmp2.txt deleted file mode 100644 index a2d6da6..0000000 --- a/tools/h5diff/testfiles/h5diff_tmp2.txt +++ /dev/null @@ -1,13 +0,0 @@ -dataset: and -1599 differences found -dataset: and -8 differences found -dataset: and -1845 differences found -dataset: and -10 differences found --------------------------------- -Some objects are not comparable --------------------------------- -Use -c for a list of objects. -EXIT CODE: 1 diff --git a/tools/h5diff/testfiles/tmpSingleSiteBethe.output.h5 b/tools/h5diff/testfiles/tmpSingleSiteBethe.output.h5 deleted file mode 100644 index bbcfb63..0000000 Binary files a/tools/h5diff/testfiles/tmpSingleSiteBethe.output.h5 and /dev/null differ diff --git a/tools/h5diff/testfiles/tmpSingleSiteBethe.reference.h5 b/tools/h5diff/testfiles/tmpSingleSiteBethe.reference.h5 deleted file mode 100644 index 6b19ed7..0000000 Binary files a/tools/h5diff/testfiles/tmpSingleSiteBethe.reference.h5 and /dev/null differ diff --git a/tools/h5diff/testfiles/tmptest.he5 b/tools/h5diff/testfiles/tmptest.he5 deleted file mode 100644 index edcfcd2..0000000 Binary files a/tools/h5diff/testfiles/tmptest.he5 and /dev/null differ diff --git a/tools/h5diff/testfiles/tmptest2.he5 b/tools/h5diff/testfiles/tmptest2.he5 deleted file mode 100644 index a6ab02b..0000000 Binary files a/tools/h5diff/testfiles/tmptest2.he5 and /dev/null differ diff --git a/tools/h5diff/testh5diff.sh.in b/tools/h5diff/testh5diff.sh.in index ff370a9..4563e39 100644 --- a/tools/h5diff/testh5diff.sh.in +++ b/tools/h5diff/testh5diff.sh.in @@ -82,6 +82,7 @@ $SRC_H5DIFF_TESTFILES/h5diff_types.h5 $SRC_H5DIFF_TESTFILES/h5diff_dtypes.h5 $SRC_H5DIFF_TESTFILES/h5diff_attr1.h5 $SRC_H5DIFF_TESTFILES/h5diff_attr2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr3.h5 $SRC_H5DIFF_TESTFILES/h5diff_dset1.h5 $SRC_H5DIFF_TESTFILES/h5diff_dset2.h5 $SRC_H5DIFF_TESTFILES/h5diff_hyper1.h5 @@ -307,13 +308,9 @@ $SRC_H5DIFF_TESTFILES/h5diff_709.txt $SRC_H5DIFF_TESTFILES/h5diff_710.txt $SRC_H5DIFF_TESTFILES/h5diff_80.txt $SRC_H5DIFF_TESTFILES/h5diff_90.txt -$SRC_H5DIFF_TESTFILES/h5diff_tmp1.txt -$SRC_H5DIFF_TESTFILES/h5diff_tmp2.txt +$SRC_H5DIFF_TESTFILES/h5diff_8625.txt +$SRC_H5DIFF_TESTFILES/h5diff_8639.txt $SRC_H5DIFF_TESTFILES/h5diff_vlstr.txt -$SRC_H5DIFF_TESTFILES/tmptest.he5 -$SRC_H5DIFF_TESTFILES/tmptest2.he5 -$SRC_H5DIFF_TESTFILES/tmpSingleSiteBethe.reference.h5 -$SRC_H5DIFF_TESTFILES/tmpSingleSiteBethe.output.h5 " # @@ -776,10 +773,6 @@ TOOLTEST h5diff_631.txt -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h # 7. attributes # ############################################################################## TOOLTEST h5diff_70.txt -v h5diff_attr1.h5 h5diff_attr2.h5 -# temporary test to verify HDF5-8625 -TOOLTEST h5diff_tmp1.txt tmptest2.he5 tmptest.he5 -# temporary test to verify HDF5-8639 -TOOLTEST h5diff_tmp2.txt tmpSingleSiteBethe.output.h5 tmpSingleSiteBethe.reference.h5 # ################################################## # attrs with verbose option level @@ -1101,6 +1094,10 @@ TOOLTEST h5diff_487.txt -v --exclude-path "/group1/dset" h5diff_exclude3-1.h5 h5 # # diff various multiple vlen and fixed strings in a compound type dataset # ############################################################################## TOOLTEST h5diff_530.txt -v h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group /group_copy +# test to verify HDFFV-8625 +TOOLTEST h5diff_8625.txt -v --enable-error-stack h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group/Compound_dset1 /group_copy/Compound_dset3 +# test to verify HDFFV-8639 +TOOLTEST h5diff_8639.txt -v h5diff_attr3.h5 h5diff_attr2.h5 /g1 TOOLTEST h5diff_vlstr.txt -v tvlstr.h5 tvlstr2.h5 # ############################################################################## diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index 3a91e54..f301014 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -97,10 +97,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5dump-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5dump ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/h5import/CMakeLists.txt b/tools/h5import/CMakeLists.txt index 4831d5c..bde8286 100644 --- a/tools/h5import/CMakeLists.txt +++ b/tools/h5import/CMakeLists.txt @@ -43,11 +43,13 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - INSTALL_PROGRAM_PDB (h5import ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS - h5import + ${H5_DEP_EXECUTABLES} EXPORT ${HDF5_EXPORTED_TARGETS} RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT toolsapplications diff --git a/tools/h5jam/CMakeLists.txt b/tools/h5jam/CMakeLists.txt index 927a64c..632fba8 100644 --- a/tools/h5jam/CMakeLists.txt +++ b/tools/h5jam/CMakeLists.txt @@ -37,8 +37,6 @@ set_global_variable (HDF5_UTILS_TO_EXPORT "${HDF5_UTILS_TO_EXPORT};h5unjam") set (H5_DEP_EXECUTABLES h5jam - getub - tellub h5unjam ) @@ -70,11 +68,13 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - INSTALL_PROGRAM_PDB (h5jam ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS - h5jam h5unjam + ${H5_DEP_EXECUTABLES} EXPORT ${HDF5_EXPORTED_TARGETS} RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT toolsapplications diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index 269ca89..519d6df 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -182,9 +182,11 @@ parse_command_line (int argc, const char *argv[]) case 'h': usage (h5tools_getprogname()); leave (EXIT_SUCCESS); + break; case 'V': print_version (h5tools_getprogname()); leave (EXIT_SUCCESS); + break; case '?': default: usage (h5tools_getprogname()); @@ -201,10 +203,6 @@ parse_command_line (int argc, const char *argv[]) * Return: Success: 0 * Failure: 1 * - * Programmer: - * - * Modifications: - * *------------------------------------------------------------------------- */ int diff --git a/tools/h5ls/CMakeLists.txt b/tools/h5ls/CMakeLists.txt index 0e49edb..d9c3977 100644 --- a/tools/h5ls/CMakeLists.txt +++ b/tools/h5ls/CMakeLists.txt @@ -73,10 +73,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5ls-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5ls ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/h5repack/CMakeLists.txt b/tools/h5repack/CMakeLists.txt index 86611a9..4b15d7c 100644 --- a/tools/h5repack/CMakeLists.txt +++ b/tools/h5repack/CMakeLists.txt @@ -114,10 +114,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5repack-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5repack ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/h5repack/h5repack_copy.c b/tools/h5repack/h5repack_copy.c index 63233b8..a4f8f5b 100644 --- a/tools/h5repack/h5repack_copy.c +++ b/tools/h5repack/h5repack_copy.c @@ -882,7 +882,7 @@ int do_copy_objects(hid_t fidin, hid_t fidout, trav_table_t *travt, HDfree(buf); buf = NULL; } - } + } else { /* possibly not enough memory, read/write by hyperslabs */ size_t p_type_nbytes = msize; /*size of memory type */ hsize_t p_nelmts = nelmts; /*total elements */ diff --git a/tools/h5repack/h5repack_filters.c b/tools/h5repack/h5repack_filters.c index 523f81a..1371691 100644 --- a/tools/h5repack/h5repack_filters.c +++ b/tools/h5repack/h5repack_filters.c @@ -42,7 +42,7 @@ static int aux_copy_obj(hid_t dcpl_id, /* dataset creation property list */ H5D_layout_t layout; int rank; /* rank of dataset */ hsize_t chsize[64]; /* chunk size in elements */ - unsigned int i, j; + unsigned int i; /* get information about input filters */ if ((nfilters = H5Pget_nfilters(dcpl_id)) < 0) @@ -237,7 +237,7 @@ int apply_filters(const char* name, /* object name from traverse list */ int nfilters; /* number of filters in DCPL */ hsize_t chsize[64]; /* chunk size in elements */ H5D_layout_t layout; - int i, j; + int i; pack_info_t obj; pack_info_t filtobj; diff --git a/tools/h5stat/CMakeLists.txt b/tools/h5stat/CMakeLists.txt index 8c9ec64..9499ea8 100644 --- a/tools/h5stat/CMakeLists.txt +++ b/tools/h5stat/CMakeLists.txt @@ -56,10 +56,9 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5stat-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) - endif () - INSTALL_PROGRAM_PDB (h5stat ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS diff --git a/tools/lib/CMakeLists.txt b/tools/lib/CMakeLists.txt index 4c145a4..068a635 100644 --- a/tools/lib/CMakeLists.txt +++ b/tools/lib/CMakeLists.txt @@ -39,7 +39,10 @@ set (H5_TOOLS_LIB_HDRS add_library (${HDF5_TOOLS_LIB_TARGET} STATIC ${H5_TOOLS_LIB_SRCS} ${H5_TOOLS_LIB_HDRS}) TARGET_C_PROPERTIES (${HDF5_TOOLS_LIB_TARGET} STATIC " " " ") -target_link_libraries (${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) +target_link_libraries (${HDF5_TOOLS_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) +if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) + target_link_libraries (${HDF5_TOOLS_LIB_TARGET} PRIVATE ${MPI_C_LIBRARIES}) +endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_TOOLS_LIB_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIB_TARGET} ${HDF5_TOOLS_LIB_NAME} STATIC) set_target_properties (${HDF5_TOOLS_LIB_TARGET} PROPERTIES @@ -52,7 +55,10 @@ set (install_targets ${HDF5_TOOLS_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_TOOLS_LIBSH_TARGET} SHARED ${H5_TOOLS_LIB_SRCS} ${H5_TOOLS_LIB_HDRS}) TARGET_C_PROPERTIES (${HDF5_TOOLS_LIBSH_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) + target_link_libraries (${HDF5_TOOLS_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) + if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) + target_link_libraries (${HDF5_TOOLS_LIBSH_TARGET} PRIVATE ${MPI_C_LIBRARIES}) + endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_TOOLS_LIBSH_TARGET}") H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_TOOLS_LIB_NAME} SHARED ${HDF5_TOOLS_PACKAGE_SOVERSION}) set_target_properties (${HDF5_TOOLS_LIBSH_TARGET} PROPERTIES diff --git a/tools/lib/h5diff_attr.c b/tools/lib/h5diff_attr.c index 6019738..7f08cc7 100644 --- a/tools/lib/h5diff_attr.c +++ b/tools/lib/h5diff_attr.c @@ -325,8 +325,6 @@ hsize_t diff_attr(hid_t loc1_id, hid_t space2_id = -1; /* space ID */ hid_t ftype1_id = -1; /* file data type ID */ hid_t ftype2_id = -1; /* file data type ID */ - int vstrtype1 = 0; /* ftype1 is a variable string */ - int vstrtype2 = 0; /* ftype2 is a variable string */ hid_t mtype1_id = -1; /* memory data type ID */ hid_t mtype2_id = -1; /* memory data type ID */ size_t msize1; /* memory size of memory type */ @@ -385,28 +383,8 @@ hsize_t diff_attr(hid_t loc1_id, /* get the datatypes */ if((ftype1_id = H5Aget_type(attr1_id)) < 0) HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Aget_type first attribute failed"); - vstrtype1 = H5Tis_variable_str(ftype1_id); if((ftype2_id = H5Aget_type(attr2_id)) < 0) HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Aget_type second attribute failed"); - vstrtype2 = H5Tis_variable_str(ftype2_id); - - /* no compare if either one but not both are variable string type */ - if (vstrtype1 != vstrtype2) { - if((opts->m_verbose || opts->m_list_not_cmp)) - parallel_print("Not comparable: one of attribute <%s/%s> or <%s/%s> is of variable length type\n", - path1, name1, path2, name2); - opts->not_cmp = 1; - if (H5Tclose(ftype1_id) < 0) - HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Tclose first attribute ftype failed"); - if (H5Tclose(ftype2_id) < 0) - HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Tclose second attribute ftype failed"); - if (H5Aclose(attr1_id) < 0) - HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Aclose first attribute failed"); - if (H5Aclose(attr2_id) < 0) - HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Aclose second attribute failed"); - - continue; - } if((mtype1_id = H5Tget_native_type(ftype1_id, H5T_DIR_DEFAULT)) < 0) HGOTO_ERROR(1, H5E_tools_min_id_g, "H5Tget_native_type first attribute ftype failed"); diff --git a/tools/lib/h5diff_dset.c b/tools/lib/h5diff_dset.c index 9d0462d..af6a171 100644 --- a/tools/lib/h5diff_dset.c +++ b/tools/lib/h5diff_dset.c @@ -192,7 +192,8 @@ hsize_t diff_datasetid(hid_t did1, hid_t sm_space = -1; /*stripmine data space */ size_t need; /* bytes needed for malloc */ int i; - unsigned int vl_data = 0; /*contains VL datatypes */ + unsigned int vl_data1 = 0; /*contains VL datatypes */ + unsigned int vl_data2 = 0; /*contains VL datatypes */ h5difftrace("diff_datasetid start\n"); /* Get the dataspace handle */ @@ -314,7 +315,9 @@ hsize_t diff_datasetid(hid_t did1, * VLEN memory buffer later */ if(TRUE == h5tools_detect_vlen(m_tid1)) - vl_data = TRUE; + vl_data1 = TRUE; + if(TRUE == h5tools_detect_vlen(m_tid2)) + vl_data2 = TRUE; h5diffdebug2("h5tools_detect_vlen - errstat:%d\n", opts->err_stat); /*------------------------------------------------------------------------ @@ -405,11 +408,12 @@ hsize_t diff_datasetid(hid_t did1, h5diffdebug2("diff_array nfound:%d\n", nfound); /* reclaim any VL memory, if necessary */ - if(vl_data) { - h5difftrace("check vl_data\n"); + h5diffdebug2("check vl_data1:%d\n", vl_data1); + if(vl_data1) H5Dvlen_reclaim(m_tid1, sid1, H5P_DEFAULT, buf1); + h5diffdebug2("check vl_data2:%d\n", vl_data2); + if(vl_data2) H5Dvlen_reclaim(m_tid2, sid2, H5P_DEFAULT, buf2); - } /* end if */ if(buf1 != NULL) { HDfree(buf1); buf1 = NULL; @@ -499,10 +503,10 @@ hsize_t diff_datasetid(hid_t did1, dadims, opts, name1, name2, dam_tid, did1, did2); /* reclaim any VL memory, if necessary */ - if(vl_data) { + if(vl_data1) H5Dvlen_reclaim(m_tid1, sm_space, H5P_DEFAULT, sm_buf1); - H5Dvlen_reclaim(m_tid1, sm_space, H5P_DEFAULT, sm_buf2); - } /* end if */ + if(vl_data2) + H5Dvlen_reclaim(m_tid2, sm_space, H5P_DEFAULT, sm_buf2); /* calculate the next hyperslab offset */ for(i = rank1, carry = 1; i > 0 && carry; --i) { @@ -539,29 +543,29 @@ done: /* free */ if(buf1 != NULL) { /* reclaim any VL memory, if necessary */ - if(vl_data) + if(vl_data1) H5Dvlen_reclaim(m_tid1, sid1, H5P_DEFAULT, buf1); HDfree(buf1); buf1 = NULL; } if(buf2 != NULL) { /* reclaim any VL memory, if necessary */ - if(vl_data) + if(vl_data2) H5Dvlen_reclaim(m_tid2, sid2, H5P_DEFAULT, buf2); HDfree(buf2); buf2 = NULL; } if(sm_buf1 != NULL) { /* reclaim any VL memory, if necessary */ - if(vl_data) + if(vl_data1) H5Dvlen_reclaim(m_tid1, sm_space, H5P_DEFAULT, sm_buf1); HDfree(sm_buf1); sm_buf1 = NULL; } if(sm_buf2 != NULL) { /* reclaim any VL memory, if necessary */ - if(vl_data) - H5Dvlen_reclaim(m_tid1, sm_space, H5P_DEFAULT, sm_buf2); + if(vl_data2) + H5Dvlen_reclaim(m_tid2, sm_space, H5P_DEFAULT, sm_buf2); HDfree(sm_buf2); sm_buf2 = NULL; } @@ -570,6 +574,7 @@ done: H5E_BEGIN_TRY { H5Sclose(sid1); H5Sclose(sid2); + H5Sclose(sm_space); H5Tclose(f_tid1); H5Tclose(f_tid2); H5Tclose(m_tid1); @@ -761,12 +766,31 @@ int diff_can_type(hid_t f_tid1, /* file data type */ } } + if(tclass1 == H5T_STRING) { + htri_t vstrtype1 = -1; + htri_t vstrtype2 = -1; + h5difftrace("diff_can_type end - H5T_STRING\n"); + + vstrtype1 = H5Tis_variable_str(f_tid1); + vstrtype2 = H5Tis_variable_str(f_tid2); + + /* no compare if either one but not both are variable string type */ + if (vstrtype1 != vstrtype2) { + if((opts->m_verbose || opts->m_list_not_cmp) && obj1_name && obj2_name) + parallel_print("Not comparable: <%s> or <%s> is of mixed string type\n", + obj1_name, obj2_name); + opts->not_cmp = 1; + HGOTO_DONE(0); + } + } + if(tclass1 == H5T_COMPOUND) { int nmembs1; int nmembs2; int j; hid_t memb_type1 = -1; hid_t memb_type2 = -1; + h5difftrace("diff_can_type end - H5T_COMPOUND\n"); nmembs1 = H5Tget_nmembers(f_tid1); nmembs2 = H5Tget_nmembers(f_tid2); diff --git a/tools/lib/io_timer.c b/tools/lib/io_timer.c index c894598..ab184d3 100644 --- a/tools/lib/io_timer.c +++ b/tools/lib/io_timer.c @@ -25,10 +25,6 @@ #include "H5private.h" #include "hdf5.h" -#ifdef H5_HAVE_PARALLEL -#include -#endif - #include "io_timer.h" /* diff --git a/tools/lib/ph5diff.h b/tools/lib/ph5diff.h index 21d7d00..2189e31 100644 --- a/tools/lib/ph5diff.h +++ b/tools/lib/ph5diff.h @@ -42,9 +42,5 @@ struct diffs_found int not_cmp; }; -#ifdef H5_HAVE_PARALLEL -#include -#endif - #endif /* _PH5DIFF_H__ */ diff --git a/tools/misc/CMakeLists.txt b/tools/misc/CMakeLists.txt index da1af42..1c22235 100644 --- a/tools/misc/CMakeLists.txt +++ b/tools/misc/CMakeLists.txt @@ -76,13 +76,13 @@ endif () # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- if (HDF5_EXPORTED_TARGETS) - INSTALL_PROGRAM_PDB (h5debug ${HDF5_INSTALL_BIN_DIR} toolsapplications) - INSTALL_PROGRAM_PDB (h5repart ${HDF5_INSTALL_BIN_DIR} toolsapplications) - INSTALL_PROGRAM_PDB (h5mkgrp ${HDF5_INSTALL_BIN_DIR} toolsapplications) + foreach (exec ${H5_DEP_EXECUTABLES}) + INSTALL_PROGRAM_PDB (${exec} ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endforeach () install ( TARGETS - h5debug h5repart h5mkgrp + ${H5_DEP_EXECUTABLES} EXPORT ${HDF5_EXPORTED_TARGETS} RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT toolsapplications diff --git a/tools/misc/h5mkgrp.c b/tools/misc/h5mkgrp.c index 43d6bfe..b7ff73c 100644 --- a/tools/misc/h5mkgrp.c +++ b/tools/misc/h5mkgrp.c @@ -129,6 +129,7 @@ parse_command_line(int argc, const char *argv[], param_t *parms) case 'h': usage(); leave(EXIT_SUCCESS); + break; /* Create objects with the latest version of the format */ case 'l': @@ -149,6 +150,7 @@ parse_command_line(int argc, const char *argv[], param_t *parms) case 'V': print_version(h5tools_getprogname()); leave(EXIT_SUCCESS); + break; /* Bad command line argument */ default: -- cgit v0.12 From ef4aa562dd3af4b104cc3551d12fd5583f09ca1a Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 22 Jan 2018 11:56:54 -0600 Subject: HDFFV-10392,10393,01385 merge from develop --- CMakeLists.txt | 12 ++---- c++/examples/CMakeLists.txt | 2 - c++/test/CMakeLists.txt | 1 - config/cmake/HDFCompilerFlags.cmake | 6 +-- config/cmake/libhdf5.settings.cmake.in | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- config/cmake_ext_mod/HDFMacros.cmake | 69 ++++++++++++++++++---------------- examples/CMakeLists.txt | 4 -- fortran/examples/CMakeLists.txt | 6 --- fortran/src/CMakeLists.txt | 10 ++--- fortran/test/CMakeLists.txt | 29 +++++--------- fortran/testpar/CMakeLists.txt | 1 - hl/c++/examples/CMakeLists.txt | 1 - hl/c++/test/CMakeLists.txt | 1 - hl/examples/CMakeLists.txt | 1 - hl/fortran/examples/CMakeLists.txt | 1 - hl/fortran/src/CMakeLists.txt | 9 +++-- hl/fortran/test/CMakeLists.txt | 16 ++------ hl/test/CMakeLists.txt | 6 +-- hl/tools/gif2h5/CMakeLists.txt | 3 -- release_docs/USING_HDF5_CMake.txt | 9 ++--- test/CMakeLists.txt | 22 +---------- test/CMakeTests.cmake | 7 ++-- testpar/CMakeLists.txt | 2 - tools/h5copy/CMakeLists.txt | 3 -- tools/h5diff/CMakeLists.txt | 4 -- tools/h5dump/CMakeLists.txt | 3 -- tools/h5import/CMakeLists.txt | 2 - tools/h5jam/CMakeLists.txt | 5 --- tools/h5ls/CMakeLists.txt | 2 - tools/h5repack/CMakeLists.txt | 4 -- tools/h5repack/h5repack_filters.c | 12 +++--- tools/h5repack/h5repack_parse.c | 10 ++--- tools/h5stat/CMakeLists.txt | 3 -- tools/misc/CMakeLists.txt | 5 --- tools/perform/CMakeLists.txt | 9 ----- 36 files changed, 93 insertions(+), 191 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e028b55..f6837fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -328,7 +328,7 @@ include (${HDF_RESOURCES_EXT_DIR}/HDFMacros.cmake) include (${HDF_RESOURCES_EXT_DIR}/HDFLibMacros.cmake) include (${HDF_RESOURCES_DIR}/HDF5Macros.cmake) -SET_HDF5_BUILD_TYPE() +SET_HDF_BUILD_TYPE() #----------------------------------------------------------------------------- # Setup output Directories @@ -464,11 +464,9 @@ endif () set (EXE_EXT "") if (WIN32) set (EXE_EXT ".exe") - if (NOT CYGWIN) - add_definitions (-D_BIND_TO_CURRENT_VCLIBS_VERSION=1) - add_definitions (-D_CRT_SECURE_NO_WARNINGS) - add_definitions (-D_CONSOLE) - endif () + add_definitions (-D_BIND_TO_CURRENT_VCLIBS_VERSION=1) + add_definitions (-D_CRT_SECURE_NO_WARNINGS) + add_definitions (-D_CONSOLE) endif () if (MSVC) @@ -577,8 +575,6 @@ include (UserMacros.cmake) #----------------------------------------------------------------------------- # Include filter (zlib, szip, etc.) macros #----------------------------------------------------------------------------- -set (LINK_COMP_LIBS) -set (LINK_COMP_SHARED_LIBS) include (CMakeFilters.cmake) #----------------------------------------------------------------------------- diff --git a/c++/examples/CMakeLists.txt b/c++/examples/CMakeLists.txt index e5b0b4a..300f6bc 100644 --- a/c++/examples/CMakeLists.txt +++ b/c++/examples/CMakeLists.txt @@ -34,7 +34,6 @@ set (tutr_examples foreach (example ${examples}) add_executable (cpp_ex_${example} ${HDF5_CPP_EXAMPLES_SOURCE_DIR}/${example}.cpp) - TARGET_NAMING (cpp_ex_${example} STATIC) TARGET_C_PROPERTIES (cpp_ex_${example} STATIC " " " ") target_link_libraries (cpp_ex_${example} ${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (cpp_ex_${example} PROPERTIES FOLDER examples/cpp) @@ -42,7 +41,6 @@ endforeach () foreach (example ${tutr_examples}) add_executable (cpp_ex_${example} ${HDF5_CPP_EXAMPLES_SOURCE_DIR}/${example}.cpp) - TARGET_NAMING (cpp_ex_${example} STATIC) TARGET_C_PROPERTIES (cpp_ex_${example} STATIC " " " ") target_link_libraries (cpp_ex_${example} ${HDF5_CPP_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (cpp_ex_${example} PROPERTIES FOLDER examples/cpp) diff --git a/c++/test/CMakeLists.txt b/c++/test/CMakeLists.txt index c6f76c9..9bf983d 100644 --- a/c++/test/CMakeLists.txt +++ b/c++/test/CMakeLists.txt @@ -36,7 +36,6 @@ set (srcdir ${CMAKE_CURRENT_SOURCE_DIR}) configure_file (${HDF5_CPP_TEST_SOURCE_DIR}/H5srcdir_str.h.in H5srcdir_str.h @ONLY) add_executable (cpp_testhdf5 ${CPP_TEST_SRCS} ) -TARGET_NAMING (cpp_testhdf5 STATIC) TARGET_C_PROPERTIES (cpp_testhdf5 STATIC " " " ") target_link_libraries (cpp_testhdf5 ${HDF5_CPP_LIB_TARGET} diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake index eeb4b97..a414cea 100644 --- a/config/cmake/HDFCompilerFlags.cmake +++ b/config/cmake/HDFCompilerFlags.cmake @@ -13,12 +13,12 @@ # Compiler specific flags : Shouldn't there be compiler tests for these #----------------------------------------------------------------------------- if (CMAKE_COMPILER_IS_GNUCC) - if (HDF5_BUILD_TYPE MATCHES Debug) + if (${HDF_CFG_NAME} MATCHES "Debug") set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS} -std=c99") if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Og -ftrapv -fno-common") endif () - else (HDF5_BUILD_TYPE MATCHES Debug) + else () set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS} -std=c99") if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstdarg-opt") @@ -26,7 +26,7 @@ if (CMAKE_COMPILER_IS_GNUCC) endif () endif () if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_LOADED) - if (HDF5_BUILD_TYPE MATCHES Debug) + if (${HDF_CFG_NAME} MATCHES "Debug") set (CMAKE_CXX_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_CXX_FLAGS}") if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Og -ftrapv -fno-common") diff --git a/config/cmake/libhdf5.settings.cmake.in b/config/cmake/libhdf5.settings.cmake.in index e9b1a39..5d97172 100644 --- a/config/cmake/libhdf5.settings.cmake.in +++ b/config/cmake/libhdf5.settings.cmake.in @@ -15,7 +15,7 @@ General Information: Compiling Options: ------------------ - Compilation Mode: @HDF5_BUILD_TYPE@ + Compilation Mode: @HDF_BUILD_TYPE@ C Compiler: @CMAKE_C_COMPILER@ CFLAGS: @CMAKE_C_FLAGS@ H5_CFLAGS: @H5_CFLAGS@ diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 724d4f0..e6e0936 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -8,7 +8,7 @@ # distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. - +# ############################################################################################# ### ${CTEST_SCRIPT_ARG} is of the form OPTION=VALUE ### ### BUILD_GENERATOR required [Unix, VS2017, VS201764, VS2015, VS201564, VS2013, VS201364] ### diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 96febde..1326420 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -11,18 +11,25 @@ # #------------------------------------------------------------------------------- -macro (SET_HDF5_BUILD_TYPE) - if(CMAKE_CONFIGURATION_TYPES) - set(HDF5_BUILD_TYPE ${CMAKE_CFG_INTDIR}) - set(HDF5_CFG_BUILD_TYPE \${CMAKE_INSTALL_CONFIG_NAME}) +macro (SET_HDF_BUILD_TYPE) + get_property(_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(_isMultiConfig) + set(HDF_CFG_NAME ${CTEST_CONFIGURATION_TYPE}) + set(HDF_BUILD_TYPE ${CMAKE_CFG_INTDIR}) + set(HDF_CFG_BUILD_TYPE \${CMAKE_INSTALL_CONFIG_NAME}) else() - set(HDF5_CFG_BUILD_TYPE ".") + set(HDF_CFG_BUILD_TYPE ".") if(CMAKE_BUILD_TYPE) - set(HDF5_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + set(HDF_CFG_NAME ${CMAKE_BUILD_TYPE}) + set(HDF_BUILD_TYPE ${CMAKE_BUILD_TYPE}) else() - set(HDF5_BUILD_TYPE "Release") + set(HDF_CFG_NAME "Release") + set(HDF_BUILD_TYPE "Release") endif() endif() + if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Release") + endif() endmacro () #------------------------------------------------------------------------------- @@ -61,13 +68,6 @@ macro (IDE_SOURCE_PROPERTIES SOURCE_PATH HEADERS SOURCES) endmacro () #------------------------------------------------------------------------------- -macro (TARGET_NAMING libtarget libtype) - if (${libtype} MATCHES "SHARED") - set_target_properties (${libtarget} PROPERTIES OUTPUT_NAME "${libtarget}${ARGN}") - endif () -endmacro () - -#------------------------------------------------------------------------------- macro (INSTALL_TARGET_PDB libtarget targetdestination targetcomponent) if (WIN32 AND MSVC) get_target_property (target_type ${libtarget} TYPE) @@ -104,31 +104,36 @@ endmacro () #------------------------------------------------------------------------------- macro (HDF_SET_LIB_OPTIONS libtarget libname libtype) + if (WIN32) + set (LIB_DEBUG_SUFFIX "_D") + else () + set (LIB_DEBUG_SUFFIX "_debug") + endif () if (${libtype} MATCHES "SHARED") - if (WIN32) - set (LIB_RELEASE_NAME "${libname}") - set (LIB_DEBUG_NAME "${libname}_D") - else () - set (LIB_RELEASE_NAME "${libname}") - set (LIB_DEBUG_NAME "${libname}_debug") - endif () + set (LIB_RELEASE_NAME "${libname}") + set (LIB_DEBUG_NAME "${libname}${LIB_DEBUG_SUFFIX}") else () if (WIN32) set (LIB_RELEASE_NAME "lib${libname}") - set (LIB_DEBUG_NAME "lib${libname}_D") + set (LIB_DEBUG_NAME "lib${libname}${LIB_DEBUG_SUFFIX}") else () set (LIB_RELEASE_NAME "${libname}") - set (LIB_DEBUG_NAME "${libname}_debug") + set (LIB_DEBUG_NAME "${libname}${LIB_DEBUG_SUFFIX}") endif () endif () set_target_properties (${libtarget} PROPERTIES - OUTPUT_NAME ${LIB_RELEASE_NAME} - OUTPUT_NAME_DEBUG ${LIB_DEBUG_NAME} - OUTPUT_NAME_RELEASE ${LIB_RELEASE_NAME} - OUTPUT_NAME_MINSIZEREL ${LIB_RELEASE_NAME} - OUTPUT_NAME_RELWITHDEBINFO ${LIB_RELEASE_NAME} + OUTPUT_NAME + ${LIB_RELEASE_NAME} + OUTPUT_NAME_DEBUG + ${LIB_DEBUG_NAME} + OUTPUT_NAME_RELEASE + ${LIB_RELEASE_NAME} + OUTPUT_NAME_MINSIZEREL + ${LIB_RELEASE_NAME} + OUTPUT_NAME_RELWITHDEBINFO + ${LIB_RELEASE_NAME} ) if (${libtype} MATCHES "STATIC") if (WIN32) @@ -161,7 +166,7 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) if (${importtype} MATCHES "IMPORT") set (importprefix "${CMAKE_STATIC_LIBRARY_PREFIX}") endif () - if (${HDF5_BUILD_TYPE} MATCHES "Debug") + if (${HDF_CFG_NAME} MATCHES "Debug") set (IMPORT_LIB_NAME ${LIB_DEBUG_NAME}) else () set (IMPORT_LIB_NAME ${LIB_RELEASE_NAME}) @@ -176,8 +181,8 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) ) else () set_target_properties (${libtarget} PROPERTIES - IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" - IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" + IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" + IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) endif () else () @@ -197,7 +202,7 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) else () if (WIN32 AND NOT MINGW) set_target_properties (${libtarget} PROPERTIES - IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF5_BUILD_TYPE}/${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" + IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${HDF_BUILD_TYPE}/${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) else () diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index e310026..174c787 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -38,13 +38,11 @@ set (examples foreach (example ${examples}) add_executable (${example} ${HDF5_EXAMPLES_SOURCE_DIR}/${example}.c) - TARGET_NAMING (${example} STATIC) TARGET_C_PROPERTIES (${example} STATIC " " " ") target_link_libraries (${example} ${HDF5_LIB_TARGET}) set_target_properties (${example} PROPERTIES FOLDER examples) if (BUILD_SHARED_LIBS) add_executable (${example}-shared ${HDF5_EXAMPLES_SOURCE_DIR}/${example}.c) - TARGET_NAMING (${example}-shared SHARED) TARGET_C_PROPERTIES (${example}-shared SHARED " " " ") target_link_libraries (${example}-shared ${HDF5_LIBSH_TARGET}) set_target_properties (${example}-shared PROPERTIES FOLDER examples) @@ -53,13 +51,11 @@ endforeach () if (H5_HAVE_PARALLEL) add_executable (ph5example ${HDF5_EXAMPLES_SOURCE_DIR}/ph5example.c) - TARGET_NAMING (ph5example STATIC) TARGET_C_PROPERTIES (ph5example STATIC " " " ") target_link_libraries (ph5example ${HDF5_LIB_TARGET} ${MPI_C_LIBRARIES}) set_target_properties (ph5example PROPERTIES FOLDER examples) if (BUILD_SHARED_LIBS) add_executable (ph5example-shared ${HDF5_EXAMPLES_SOURCE_DIR}/ph5example.c) - TARGET_NAMING (ph5example-shared SHARED) TARGET_C_PROPERTIES (ph5example-shared SHARED " " " ") target_link_libraries (ph5example-shared ${HDF5_LIBSH_TARGET} ${MPI_C_LIBRARIES}) set_target_properties (ph5example-shared PROPERTIES FOLDER examples) diff --git a/fortran/examples/CMakeLists.txt b/fortran/examples/CMakeLists.txt index cd5da0e..e5b277d 100644 --- a/fortran/examples/CMakeLists.txt +++ b/fortran/examples/CMakeLists.txt @@ -40,7 +40,6 @@ set (F2003_examples foreach (example ${examples}) add_executable (f90_ex_${example} ${HDF5_F90_EXAMPLES_SOURCE_DIR}/${example}.f90) - TARGET_NAMING (f90_ex_${example} STATIC) TARGET_FORTRAN_PROPERTIES (f90_ex_${example} STATIC " " " ") target_link_libraries (f90_ex_${example} ${HDF5_F90_LIB_TARGET} @@ -54,7 +53,6 @@ foreach (example ${examples}) ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (f90_ex_${example}-shared ${HDF5_F90_EXAMPLES_SOURCE_DIR}/${example}.f90) - TARGET_NAMING (f90_ex_${example}-shared SHARED) TARGET_FORTRAN_PROPERTIES (f90_ex_${example}-shared SHARED " " " ") target_link_libraries (f90_ex_${example}-shared ${HDF5_F90_LIBSH_TARGET} @@ -72,7 +70,6 @@ endforeach () if (HDF5_ENABLE_F2003) foreach (example ${F2003_examples}) add_executable (f03_ex_${example} ${HDF5_F90_EXAMPLES_SOURCE_DIR}/${example}.f90) - TARGET_NAMING (f03_ex_${example} STATIC) TARGET_FORTRAN_PROPERTIES (f03_ex_${example} STATIC " " " ") target_link_libraries (f03_ex_${example} ${HDF5_F90_LIB_TARGET} @@ -86,7 +83,6 @@ if (HDF5_ENABLE_F2003) ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (f03_ex_${example}-shared ${HDF5_F90_EXAMPLES_SOURCE_DIR}/${example}.f90) - TARGET_NAMING (f03_ex_${example}-shared SHARED) TARGET_FORTRAN_PROPERTIES (f03_ex_${example}-shared SHARED " " " ") target_link_libraries (f03_ex_${example}-shared ${HDF5_F90_LIBSH_TARGET} @@ -104,7 +100,6 @@ endif () if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) add_executable (f90_ex_ph5example ${HDF5_F90_EXAMPLES_SOURCE_DIR}/ph5example.f90) - TARGET_NAMING (f90_ex_ph5example STATIC) TARGET_FORTRAN_PROPERTIES (f90_ex_ph5example STATIC " " " ") target_link_libraries (f90_ex_ph5example ${HDF5_F90_LIB_TARGET} @@ -118,7 +113,6 @@ if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (f90_ex_ph5example-shared ${HDF5_F90_EXAMPLES_SOURCE_DIR}/ph5example.f90) - TARGET_NAMING (f90_ex_ph5example-shared SHARED) TARGET_FORTRAN_PROPERTIES (f90_ex_ph5example-shared SHARED " " " ") target_link_libraries (f90_ex_ph5example-shared ${HDF5_F90_LIBSH_TARGET} diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index e4df0f9..4d98b81 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -117,12 +117,12 @@ add_custom_command ( if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/shared") - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF_CFG_BUILD_TYPE}) endif () file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/static") -set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF_CFG_BUILD_TYPE}) -INCLUDE_DIRECTORIES (${HDF5_F90_BINARY_DIR} ${CMAKE_Fortran_MODULE_DIRECTORY}) +INCLUDE_DIRECTORIES (${HDF5_F90_SOURCE_DIR} ${HDF5_F90_BINARY_DIR} ${CMAKE_Fortran_MODULE_DIRECTORY}) #----------------------------------------------------------------------------- add_executable (H5match_types @@ -185,7 +185,7 @@ set (f90CStub_C_SHHDRS ) add_library (${HDF5_F90_C_LIB_TARGET} STATIC ${f90CStub_C_SOURCES} ${f90CStub_C_HDRS}) -target_include_directories(${HDF5_F90_C_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) +target_include_directories(${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIB_TARGET}") @@ -199,7 +199,7 @@ set (install_targets ${HDF5_F90_C_LIB_TARGET}) if (BUILD_SHARED_LIBS) add_library (${HDF5_F90_C_LIBSH_TARGET} SHARED ${f90CStub_C_SOURCES} ${f90CStub_C_SHHDRS}) - target_include_directories(${HDF5_F90_C_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) + target_include_directories(${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIBSH_TARGET}") diff --git a/fortran/test/CMakeLists.txt b/fortran/test/CMakeLists.txt index eefb62f..0c1f616 100644 --- a/fortran/test/CMakeLists.txt +++ b/fortran/test/CMakeLists.txt @@ -4,21 +4,21 @@ PROJECT (HDF5_FORTRAN_TESTS C CXX Fortran) #----------------------------------------------------------------------------- # Setup include Directories #----------------------------------------------------------------------------- -INCLUDE_DIRECTORIES (${CMAKE_Fortran_MODULE_DIRECTORY} ${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) +INCLUDE_DIRECTORIES (${CMAKE_Fortran_MODULE_DIRECTORY} ${HDF5_FORTRAN_TESTS_SOURCE_DIR} ${HDF5_F90_BINARY_DIR} ${HDF5_F90_SRC_DIR}/src) if (BUILD_SHARED_LIBS) - file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/shared") - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) + file (MAKE_DIRECTORY "${HDF5_FORTRAN_TESTS_BINARY_DIR}/shared") + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF_CFG_BUILD_TYPE}) endif () -file (MAKE_DIRECTORY "${HDF5_F90_BINARY_DIR}/static") -set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) +file (MAKE_DIRECTORY "${HDF5_FORTRAN_TESTS_BINARY_DIR}/static") +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF_CFG_BUILD_TYPE}) #----------------------------------------------------------------------------- # Add Test Lib #----------------------------------------------------------------------------- add_library (${HDF5_F90_C_TEST_LIB_TARGET} STATIC t.c) set_source_files_properties (t.c PROPERTIES LANGUAGE C) -target_include_directories(${HDF5_F90_C_TEST_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) +target_include_directories(${HDF5_F90_C_TEST_LIB_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_F90_C_TEST_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_C_TEST_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} @@ -32,7 +32,7 @@ set_target_properties (${HDF5_F90_C_TEST_LIB_TARGET} PROPERTIES ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_F90_C_TEST_LIBSH_TARGET} SHARED t.c) - target_include_directories(${HDF5_F90_C_TEST_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) + target_include_directories(${HDF5_F90_C_TEST_LIBSH_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_F90_C_TEST_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_F90_C_TEST_LIBSH_TARGET} ${HDF5_F90_C_LIBSH_TARGET} @@ -138,7 +138,6 @@ add_executable (testhdf5_fortran tH5Z.f90 tHDF5.f90 ) -TARGET_NAMING (testhdf5_fortran STATIC) TARGET_FORTRAN_PROPERTIES (testhdf5_fortran STATIC " " " ") target_link_libraries (testhdf5_fortran ${HDF5_F90_TEST_LIB_TARGET} @@ -172,7 +171,6 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) tH5Z.f90 tHDF5.f90 ) - TARGET_NAMING (testhdf5_fortran-shared SHARED) TARGET_FORTRAN_PROPERTIES (testhdf5_fortran-shared SHARED " " " ") target_link_libraries (testhdf5_fortran-shared ${HDF5_F90_TEST_LIBSH_TARGET} @@ -199,7 +197,6 @@ add_executable (testhdf5_fortran_1_8 tH5MISC_1_8.f90 tHDF5_1_8.f90 ) -TARGET_NAMING (testhdf5_fortran_1_8 STATIC) TARGET_FORTRAN_PROPERTIES (testhdf5_fortran_1_8 STATIC " " " ") target_link_libraries (testhdf5_fortran_1_8 ${HDF5_F90_TEST_LIB_TARGET} @@ -224,7 +221,6 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) tH5MISC_1_8.f90 tHDF5_1_8.f90 ) - TARGET_NAMING (testhdf5_fortran_1_8-shared SHARED) TARGET_FORTRAN_PROPERTIES (testhdf5_fortran_1_8-shared SHARED " " " ") target_link_libraries (testhdf5_fortran_1_8-shared ${HDF5_F90_TEST_LIBSH_TARGET} @@ -254,7 +250,6 @@ if (HDF5_ENABLE_F2003) tH5T_F03.f90 tHDF5_F03.f90 ) - TARGET_NAMING (fortranlib_test_F03 STATIC) TARGET_FORTRAN_PROPERTIES (fortranlib_test_F03 STATIC " " " ") target_link_libraries (fortranlib_test_F03 ${HDF5_F90_TEST_LIB_TARGET} @@ -264,6 +259,7 @@ if (HDF5_ENABLE_F2003) if (WIN32 AND MSVC) target_link_libraries (fortranlib_test_F03 "ws2_32.lib") endif () + target_include_directories (fortranlib_test_F03 PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (fortranlib_test_F03 PROPERTIES LINKER_LANGUAGE Fortran @@ -281,7 +277,6 @@ if (HDF5_ENABLE_F2003) tH5T_F03.f90 tHDF5_F03.f90 ) - TARGET_NAMING (fortranlib_test_F03-shared SHARED) TARGET_FORTRAN_PROPERTIES (fortranlib_test_F03-shared SHARED " " " ") target_link_libraries (fortranlib_test_F03-shared ${HDF5_F90_TEST_LIBSH_TARGET} @@ -301,8 +296,7 @@ if (HDF5_ENABLE_F2003) endif () #-- Adding test for fflush1 -add_executable (fflush1 fflush1.f90) -TARGET_NAMING (fflush1 STATIC) +add_executable (fflush1 fflush1.F90) TARGET_FORTRAN_PROPERTIES (fflush1 STATIC " " " ") target_link_libraries (fflush1 ${HDF5_F90_LIB_TARGET} @@ -320,7 +314,6 @@ set_target_properties (fflush1 PROPERTIES ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (fflush1-shared fflush1.f90) - TARGET_NAMING (fflush1-shared SHARED) TARGET_FORTRAN_PROPERTIES (fflush1-shared SHARED " " " ") target_link_libraries (fflush1-shared ${HDF5_F90_LIBSH_TARGET} @@ -339,8 +332,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) endif () #-- Adding test for fflush2 -add_executable (fflush2 fflush2.f90) -TARGET_NAMING (fflush2 STATIC) +add_executable (fflush2 fflush2.F90) TARGET_FORTRAN_PROPERTIES (fflush2 STATIC " " " ") target_link_libraries (fflush2 ${HDF5_F90_TEST_LIB_TARGET} @@ -358,7 +350,6 @@ set_target_properties (fflush2 PROPERTIES ) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (fflush2-shared fflush2.f90) - TARGET_NAMING (fflush2-shared SHARED) TARGET_FORTRAN_PROPERTIES (fflush2-shared SHARED " " " ") target_link_libraries (fflush2-shared ${HDF5_F90_TEST_LIBSH_TARGET} diff --git a/fortran/testpar/CMakeLists.txt b/fortran/testpar/CMakeLists.txt index 4aa7f43..ed9d28c 100644 --- a/fortran/testpar/CMakeLists.txt +++ b/fortran/testpar/CMakeLists.txt @@ -16,7 +16,6 @@ add_executable (parallel_test hyper.f90 mdset.f90 ) -TARGET_NAMING (parallel_test STATIC) TARGET_FORTRAN_PROPERTIES (parallel_test STATIC " " " ") target_link_libraries (parallel_test ${HDF5_F90_TEST_LIB_TARGET} diff --git a/hl/c++/examples/CMakeLists.txt b/hl/c++/examples/CMakeLists.txt index 33ad1e5..8c48795 100644 --- a/hl/c++/examples/CMakeLists.txt +++ b/hl/c++/examples/CMakeLists.txt @@ -11,7 +11,6 @@ INCLUDE_DIRECTORIES (${HDF5_HL_CPP_SRC_DIR}/src) # Add in the examples for the Packet Table codes # -------------------------------------------------------------------- add_executable (ptExampleFL ${HDF5_HL_CPP_EXAMPLES_SOURCE_DIR}/ptExampleFL.cpp) -TARGET_NAMING (ptExampleFL STATIC) TARGET_C_PROPERTIES (ptExampleFL STATIC " " " ") target_link_libraries ( ptExampleFL diff --git a/hl/c++/test/CMakeLists.txt b/hl/c++/test/CMakeLists.txt index a2f9429..54afd7c 100644 --- a/hl/c++/test/CMakeLists.txt +++ b/hl/c++/test/CMakeLists.txt @@ -17,7 +17,6 @@ INCLUDE_DIRECTORIES (${HDF5_CPP_SRC_DIR}/src) add_executable (hl_ptableTest ${HDF5_HL_CPP_TEST_SOURCE_DIR}/ptableTest.cpp) TARGET_C_PROPERTIES (hl_ptableTest STATIC " " " ") -TARGET_NAMING (hl_ptableTest STATIC) target_link_libraries ( hl_ptableTest ${HDF5_LIB_TARGET} diff --git a/hl/examples/CMakeLists.txt b/hl/examples/CMakeLists.txt index 1144e0f..68f0128 100644 --- a/hl/examples/CMakeLists.txt +++ b/hl/examples/CMakeLists.txt @@ -28,7 +28,6 @@ set (examples foreach (example ${examples}) add_executable (hl_ex_${example} ${HDF5_HL_EXAMPLES_SOURCE_DIR}/${example}.c) - TARGET_NAMING (hl_ex_${example} STATIC) TARGET_C_PROPERTIES (hl_ex_${example} STATIC " " " ") target_link_libraries (hl_ex_${example} ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (hl_ex_${example} PROPERTIES FOLDER examples/hl) diff --git a/hl/fortran/examples/CMakeLists.txt b/hl/fortran/examples/CMakeLists.txt index dfe6102..d920d64 100644 --- a/hl/fortran/examples/CMakeLists.txt +++ b/hl/fortran/examples/CMakeLists.txt @@ -16,7 +16,6 @@ set (examples foreach (example ${examples}) add_executable (hl_f90_ex_${example} ${HDF5_HL_F90_EXAMPLES_SOURCE_DIR}/${example}.f90) - TARGET_NAMING (hl_f90_ex_${example} STATIC) TARGET_FORTRAN_PROPERTIES (hl_f90_ex_${example} STATIC " " " ") target_link_libraries (hl_f90_ex_${example} ${HDF5_HL_F90_LIB_TARGET} diff --git a/hl/fortran/src/CMakeLists.txt b/hl/fortran/src/CMakeLists.txt index cd3559a..93ba5ed 100644 --- a/hl/fortran/src/CMakeLists.txt +++ b/hl/fortran/src/CMakeLists.txt @@ -3,10 +3,10 @@ PROJECT(HDF5_HL_F90_SRC C CXX Fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) file (MAKE_DIRECTORY "${HDF5_HL_F90_SRC_BINARY_DIR}/shared") - set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF5_CFG_BUILD_TYPE}) + set (MODSH_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/shared/${HDF_CFG_BUILD_TYPE}) endif () file (MAKE_DIRECTORY "${HDF5_HL_F90_SRC_BINARY_DIR}/static") -set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYPE}) +set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF_CFG_BUILD_TYPE}) #----------------------------------------------------------------------------- # Setup include Directories @@ -14,6 +14,7 @@ set (MOD_BUILD_DIR ${CMAKE_Fortran_MODULE_DIRECTORY}/static/${HDF5_CFG_BUILD_TYP INCLUDE_DIRECTORIES ( ${HDF5_HL_SRC_DIR}/src ${HDF5_F90_SRC_DIR}/src + ${HDF5_HL_F90_SRC_SOURCE_DIR} ${HDF5_F90_BINARY_DIR} ${CMAKE_Fortran_MODULE_DIRECTORY} ${MOD_BUILD_DIR} @@ -34,7 +35,7 @@ set_source_files_properties (${HDF5_HL_F90_C_SRCS} PROPERTIES LANGUAGE C) set (HDF5_HL_F90_HEADERS ${HDF5_HL_F90_SRC_SOURCE_DIR}/H5LTf90proto.h) add_library (${HDF5_HL_F90_C_LIB_TARGET} STATIC ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) -target_include_directories(${HDF5_HL_F90_C_LIB_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/static) +target_include_directories(${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/static) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET} ${HDF5_HL_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIB_TARGET}") @@ -48,7 +49,7 @@ set (install_targets ${HDF5_HL_F90_C_LIB_TARGET}) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED ${HDF5_HL_F90_C_SRCS} ${HDF5_HL_F90_HEADERS}) - target_include_directories(${HDF5_HL_F90_C_LIBSH_TARGET} PRIVATE ${HDF5_F90_BINARY_DIR}/shared) + target_include_directories(${HDF5_HL_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_HL_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_HL_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIBSH_TARGET}") diff --git a/hl/fortran/test/CMakeLists.txt b/hl/fortran/test/CMakeLists.txt index e2baa69..25fe40d 100644 --- a/hl/fortran/test/CMakeLists.txt +++ b/hl/fortran/test/CMakeLists.txt @@ -8,7 +8,6 @@ INCLUDE_DIRECTORIES (${CMAKE_Fortran_MODULE_DIRECTORY} ${HDF5_F90_BINARY_DIR} ${ #-- Adding test for hl_f90_tstds add_executable (hl_f90_tstds tstds.f90) -TARGET_NAMING (hl_f90_tstds STATIC) TARGET_FORTRAN_PROPERTIES (hl_f90_tstds STATIC " " " ") target_link_libraries (hl_f90_tstds ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) target_include_directories (hl_f90_tstds PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) @@ -16,7 +15,6 @@ set_target_properties (hl_f90_tstds PROPERTIES LINKER_LANGUAGE Fortran) set_target_properties (hl_f90_tstds PROPERTIES FOLDER test/hl/fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (hl_f90_tstds-shared tstds.f90) - TARGET_NAMING (hl_f90_tstds-shared SHARED) TARGET_FORTRAN_PROPERTIES (hl_f90_tstds-shared SHARED " " " ") target_link_libraries (hl_f90_tstds-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) target_include_directories (hl_f90_tstds-shared PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) @@ -29,17 +27,15 @@ endif () #-- Adding test for hl_f90_tstlite add_executable (hl_f90_tstlite tstlite.f90) -TARGET_NAMING (hl_f90_tstlite STATIC) TARGET_FORTRAN_PROPERTIES (hl_f90_tstlite STATIC " " " ") -target_link_libraries (hl_f90_tstlite ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) +target_link_libraries (hl_f90_tstlite ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET} ${HDF5_F90_TEST_LIB_TARGET}) target_include_directories (hl_f90_tstlite PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (hl_f90_tstlite PROPERTIES LINKER_LANGUAGE Fortran) set_target_properties (hl_f90_tstlite PROPERTIES FOLDER test/hl/fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (hl_f90_tstlite-shared tstlite.f90) - TARGET_NAMING (hl_f90_tstlite-shared SHARED) TARGET_FORTRAN_PROPERTIES (hl_f90_tstlite-shared SHARED " " " ") - target_link_libraries (hl_f90_tstlite-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) + target_link_libraries (hl_f90_tstlite-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_TEST_LIBSH_TARGET}) target_include_directories (hl_f90_tstlite-shared PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) set_target_properties (hl_f90_tstlite-shared PROPERTIES LINKER_LANGUAGE Fortran @@ -50,7 +46,6 @@ endif () #-- Adding test for hl_f90_tstimage add_executable (hl_f90_tstimage tstimage.f90) -TARGET_NAMING (hl_f90_tstimage STATIC) TARGET_FORTRAN_PROPERTIES (hl_f90_tstimage STATIC " " " ") target_link_libraries (hl_f90_tstimage ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) target_include_directories (hl_f90_tstimage PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) @@ -58,7 +53,6 @@ set_target_properties (hl_f90_tstimage PROPERTIES LINKER_LANGUAGE Fortran) set_target_properties (hl_f90_tstimage PROPERTIES FOLDER test/hl/fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (hl_f90_tstimage-shared tstimage.f90) - TARGET_NAMING (hl_f90_tstimage-shared SHARED) TARGET_FORTRAN_PROPERTIES (hl_f90_tstimage-shared SHARED " " " ") target_link_libraries (hl_f90_tstimage-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) target_include_directories (hl_f90_tstimage-shared PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) @@ -71,17 +65,15 @@ endif () #-- Adding test for hl_f90_tsttable add_executable (hl_f90_tsttable tsttable.f90) -TARGET_NAMING (hl_f90_tsttable STATIC) TARGET_FORTRAN_PROPERTIES (hl_f90_tsttable STATIC " " " ") -target_link_libraries (hl_f90_tsttable ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) +target_link_libraries (hl_f90_tsttable ${HDF5_HL_F90_LIB_TARGET} ${HDF5_F90_LIB_TARGET} ${HDF5_F90_TEST_LIB_TARGET}) target_include_directories (hl_f90_tsttable PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (hl_f90_tsttable PROPERTIES LINKER_LANGUAGE Fortran) set_target_properties (hl_f90_tsttable PROPERTIES FOLDER test/hl/fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_executable (hl_f90_tsttable-shared tsttable.f90) - TARGET_NAMING (hl_f90_tsttable-shared SHARED) TARGET_FORTRAN_PROPERTIES (hl_f90_tsttable-shared SHARED " " " ") - target_link_libraries (hl_f90_tsttable-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) + target_link_libraries (hl_f90_tsttable-shared ${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_TEST_LIBSH_TARGET}) target_include_directories (hl_f90_tsttable-shared PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) set_target_properties (hl_f90_tsttable-shared PROPERTIES LINKER_LANGUAGE Fortran diff --git a/hl/test/CMakeLists.txt b/hl/test/CMakeLists.txt index a9f54ec..52194a8 100644 --- a/hl/test/CMakeLists.txt +++ b/hl/test/CMakeLists.txt @@ -22,19 +22,17 @@ include_directories (${HDF5_TEST_SRC_DIR}) # -------------------------------------------------------------------- MACRO (HL_ADD_EXE hl_name) add_executable (hl_${hl_name} ${hl_name}.c) - TARGET_NAMING (hl_${hl_name} STATIC) TARGET_C_PROPERTIES (hl_${hl_name} STATIC " " " ") target_link_libraries (hl_${hl_name} ${HDF5_HL_LIB_TARGET} - ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET} + ${HDF5_LIB_TARGET} ) set_target_properties (hl_${hl_name} PROPERTIES FOLDER test/hl) ENDMACRO () MACRO (HL_ADD_SHEXE hl_name) add_executable (hl_${hl_name} ${hl_name}.c) - TARGET_NAMING (hl_${hl_name} SHARED) TARGET_C_PROPERTIES (hl_${hl_name} SHARED " " " ") target_link_libraries (hl_${hl_name} ${HDF5_HL_LIBSH_TARGET} @@ -52,7 +50,6 @@ HL_ADD_EXE (test_table) # test_packet has two source files add_executable (hl_test_packet test_packet.c test_packet_vlen.c) -TARGET_NAMING (hl_test_packet STATIC) TARGET_C_PROPERTIES (hl_test_packet STATIC " " " ") target_link_libraries (hl_test_packet ${HDF5_HL_LIB_TARGET} @@ -67,7 +64,6 @@ set_target_properties (hl_test_packet PROPERTIES FOLDER test/hl) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (hl_gen_test_ds gen_test_ds.c) - TARGET_NAMING (hl_gen_test_ds STATIC) TARGET_C_PROPERTIES (hl_gen_test_ds STATIC " " " ") target_link_libraries (hl_gen_test_ds ${HDF5_HL_LIB_TARGET} diff --git a/hl/tools/gif2h5/CMakeLists.txt b/hl/tools/gif2h5/CMakeLists.txt index 9d7a406..34d7074 100644 --- a/hl/tools/gif2h5/CMakeLists.txt +++ b/hl/tools/gif2h5/CMakeLists.txt @@ -18,7 +18,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_DIR}/lib) INCLUDE_DIRECTORIES (${HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR}) add_executable (gif2h5 ${GIF2H5_SOURCES}) -TARGET_NAMING (gif2h5 STATIC) TARGET_C_PROPERTIES (gif2h5 STATIC " " " ") target_link_libraries (gif2h5 ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (gif2h5 PROPERTIES FOLDER tools/hl) @@ -30,7 +29,6 @@ set (hdf2gif_SOURCES ${HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR}/hdfgifwr.c ) add_executable (h52gif ${hdf2gif_SOURCES}) -TARGET_NAMING (h52gif STATIC) TARGET_C_PROPERTIES (h52gif STATIC " " " ") target_link_libraries (h52gif ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h52gif PROPERTIES FOLDER tools/hl) @@ -44,7 +42,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (hl_h52gifgentest ${HDF5_HL_TOOLS_GIF2H5_SOURCE_DIR}/h52gifgentst.c) - TARGET_NAMING (hl_h52gifgentest STATIC) TARGET_C_PROPERTIES (hl_h52gifgentest STATIC " " " ") target_link_libraries (hl_h52gifgentest ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (hl_h52gifgentest PROPERTIES FOLDER generator/tools/hl) diff --git a/release_docs/USING_HDF5_CMake.txt b/release_docs/USING_HDF5_CMake.txt index 589ef03..ce12528 100644 --- a/release_docs/USING_HDF5_CMake.txt +++ b/release_docs/USING_HDF5_CMake.txt @@ -37,7 +37,7 @@ I. Preconditions 1. We suggest you obtain the latest CMake for windows from the Kitware web site. The HDF5 1.8.x product requires a minimum CMake version - of 3.2.2. + of 3.10.1. 2. You have installed the HDF5 library built with CMake, by executing the HDF Install Utility (the *.msi file in the binary package for @@ -101,10 +101,10 @@ These steps are described in more detail below. * Unix Makefiles * Visual Studio 12 2013 * Visual Studio 12 2013 Win64 - * Visual Studio 11 2012 - * Visual Studio 11 2012 Win64 * Visual Studio 14 2015 * Visual Studio 14 2015 Win64 + * Visual Studio 15 2017 + * Visual Studio 15 2017 Win64 is: * BUILD_TESTING:BOOL=ON @@ -180,7 +180,7 @@ Given the preconditions in section I, create a CMakeLists.txt file at the source root. Include the following text in the file: ########################################################## -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10.1) project (HDF5MyApp C CXX) set (LIB_TYPE STATIC) # or SHARED @@ -194,7 +194,6 @@ set (LINK_LIBS ${LINK_LIBS} ${HDF5_C_${LIB_TYPE}_LIBRARY}) set (example hdf_example) add_executable (${example} ${PROJECT_SOURCE_DIR}/${example}.c) -TARGET_NAMING (${example} ${LIB_TYPE}) TARGET_C_PROPERTIES (${example} ${LIB_TYPE} " " " ") target_link_libraries (${example} ${LINK_LIBS}) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index afd0197..fc2bd36 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -96,7 +96,7 @@ endif () add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c) TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) + target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} PUBLIC ${HDF5_TEST_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN) @@ -122,7 +122,7 @@ endif () add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c) TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ") - target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) + target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} PUBLIC ${HDF5_TEST_LIB_TARGET}) H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN) @@ -170,13 +170,11 @@ set (testhdf5_SRCS #-- Adding test for testhdf5 add_executable (testhdf5 ${testhdf5_SRCS}) -TARGET_NAMING (testhdf5 STATIC) TARGET_C_PROPERTIES (testhdf5 STATIC " " " ") target_link_libraries (testhdf5 ${HDF5_TEST_LIB_TARGET}) set_target_properties (testhdf5 PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (testhdf5-shared ${testhdf5_SRCS}) - TARGET_NAMING (testhdf5-shared SHARED) TARGET_C_PROPERTIES (testhdf5-shared SHARED " " " ") target_link_libraries (testhdf5-shared PUBLIC ${HDF5_TEST_LIBSH_TARGET}) set_target_properties (testhdf5-shared PROPERTIES FOLDER test) @@ -184,13 +182,11 @@ endif () MACRO (ADD_H5_EXE file) add_executable (${file} ${HDF5_TEST_SOURCE_DIR}/${file}.c) - TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") target_link_libraries (${file} PUBLIC ${HDF5_TEST_LIB_TARGET}) set_target_properties (${file} PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (${file}-shared ${HDF5_TEST_SOURCE_DIR}/${file}.c) - TARGET_NAMING (${file}-shared SHARED) TARGET_C_PROPERTIES (${file}-shared SHARED " " " ") target_link_libraries (${file}-shared PUBLIC ${HDF5_TEST_LIBSH_TARGET}) set_target_properties (${file}-shared PROPERTIES FOLDER test) @@ -262,13 +258,11 @@ endforeach () #-- Adding test for cache add_executable (cache ${HDF5_TEST_SOURCE_DIR}/cache.c ${HDF5_TEST_SOURCE_DIR}/cache_common.c) -TARGET_NAMING (cache STATIC) TARGET_C_PROPERTIES (cache STATIC " " " ") target_link_libraries (cache ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (cache PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (cache-shared ${HDF5_TEST_SOURCE_DIR}/cache.c ${HDF5_TEST_SOURCE_DIR}/cache_common.c) - TARGET_NAMING (cache-shared SHARED) TARGET_C_PROPERTIES (cache-shared SHARED " " " ") target_link_libraries (cache-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (cache-shared PROPERTIES FOLDER test) @@ -276,13 +270,11 @@ endif () #-- Adding test for cache_api add_executable (cache_api ${HDF5_TEST_SOURCE_DIR}/cache_api.c ${HDF5_TEST_SOURCE_DIR}/cache_common.c) -TARGET_NAMING (cache_api STATIC) TARGET_C_PROPERTIES (cache_api STATIC " " " ") target_link_libraries (cache_api ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (cache_api PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (cache_api-shared ${HDF5_TEST_SOURCE_DIR}/cache_api.c ${HDF5_TEST_SOURCE_DIR}/cache_common.c) - TARGET_NAMING (cache_api-shared SHARED) TARGET_C_PROPERTIES (cache_api-shared SHARED " " " ") target_link_libraries (cache_api-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (cache_api-shared PROPERTIES FOLDER test) @@ -290,13 +282,11 @@ endif () #-- Adding test for hyperslab add_executable (hyperslab ${HDF5_TEST_SOURCE_DIR}/hyperslab.c) -TARGET_NAMING (hyperslab STATIC) TARGET_C_PROPERTIES (hyperslab STATIC " " " ") target_link_libraries (hyperslab ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (hyperslab PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (hyperslab-shared ${HDF5_TEST_SOURCE_DIR}/hyperslab.c) - TARGET_NAMING (hyperslab-shared SHARED) TARGET_C_PROPERTIES (hyperslab-shared SHARED " " " ") target_link_libraries (hyperslab-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (hyperslab-shared PROPERTIES FOLDER test) @@ -316,7 +306,6 @@ add_executable (ttsafe ${HDF5_TEST_SOURCE_DIR}/ttsafe_cancel.c ${HDF5_TEST_SOURCE_DIR}/ttsafe_acreate.c ) -TARGET_NAMING (ttsafe STATIC) TARGET_C_PROPERTIES (ttsafe STATIC " " " ") target_link_libraries (ttsafe ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (ttsafe PROPERTIES FOLDER test) @@ -328,7 +317,6 @@ if (BUILD_SHARED_LIBS) ${HDF5_TEST_SOURCE_DIR}/ttsafe_cancel.c ${HDF5_TEST_SOURCE_DIR}/ttsafe_acreate.c ) - TARGET_NAMING (ttsafe-shared SHARED) TARGET_C_PROPERTIES (ttsafe-shared SHARED " " " ") target_link_libraries (ttsafe-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (ttsafe-shared PROPERTIES FOLDER test) @@ -343,7 +331,6 @@ endif () #-- Adding test for err_compat if (HDF5_ENABLE_DEPRECATED_SYMBOLS) add_executable (err_compat ${HDF5_TEST_SOURCE_DIR}/err_compat.c) - TARGET_NAMING (err_compat STATIC) TARGET_C_PROPERTIES (err_compat STATIC " " " ") target_link_libraries (err_compat ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (err_compat PROPERTIES FOLDER test) @@ -358,7 +345,6 @@ endif () #-- Adding test for error_test add_executable (error_test ${HDF5_TEST_SOURCE_DIR}/error_test.c) -TARGET_NAMING (error_test STATIC) TARGET_C_PROPERTIES (error_test STATIC " " " ") target_link_libraries (error_test ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (error_test PROPERTIES FOLDER test) @@ -372,13 +358,11 @@ endif () #-- Adding test for links_env add_executable (links_env ${HDF5_TEST_SOURCE_DIR}/links_env.c) -TARGET_NAMING (links_env STATIC) TARGET_C_PROPERTIES (links_env STATIC " " " ") target_link_libraries (links_env ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (links_env PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (links_env-shared ${HDF5_TEST_SOURCE_DIR}/links_env.c) - TARGET_NAMING (links_env-shared SHARED) TARGET_C_PROPERTIES (links_env-shared SHARED " " " ") target_link_libraries (links_env-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (links_env-shared PROPERTIES FOLDER test) @@ -401,13 +385,11 @@ endif () ############################################################################## if (BUILD_SHARED_LIBS) add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c) - TARGET_NAMING (plugin SHARED) TARGET_C_PROPERTIES (plugin SHARED " " " ") target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET}) set_target_properties (plugin PROPERTIES FOLDER test) else () add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c) - TARGET_NAMING (plugin STATIC) TARGET_C_PROPERTIES (plugin STATIC " " " ") target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET}) set_target_properties (plugin PROPERTIES FOLDER test) diff --git a/test/CMakeTests.cmake b/test/CMakeTests.cmake index 6af1606..e7904e4 100644 --- a/test/CMakeTests.cmake +++ b/test/CMakeTests.cmake @@ -728,12 +728,14 @@ if (BUILD_SHARED_LIBS AND TEST_SHARED_PROGRAMS) endif () ############################################################################## -### P L U G I N T E S T S +### F I L T E R P L U G I N T E S T S ############################################################################## if (WIN32) set (CMAKE_SEP "\;") + set (BIN_REL_PATH "../../") else () set (CMAKE_SEP ":") + set (BIN_REL_PATH "../") endif () add_test (NAME H5PLUGIN-plugin COMMAND $) @@ -810,7 +812,7 @@ if (HDF5_TEST_VFD) macro (CHECK_VFD_TEST vfdtest vfdname resultcode) if ("${vfdtest}" STREQUAL "flush1" OR "${vfdtest}" STREQUAL "flush2") if ("${vfdname}" STREQUAL "multi" OR "${vfdname}" STREQUAL "split") - if (NOT BUILD_SHARED_LIBS AND NOT HDF5_BUILD_TYPE MATCHES Debug) + if (NOT BUILD_SHARED_LIBS AND NOT ${HDF_CFG_NAME} MATCHES "Debug") add_test (NAME VFD-${vfdname}-${vfdtest} COMMAND "${CMAKE_COMMAND}" -D "TEST_PROGRAM=$" @@ -1028,7 +1030,6 @@ endif () if (HDF5_BUILD_GENERATORS) macro (ADD_H5_GENERATOR genfile) add_executable (${genfile} ${HDF5_TEST_SOURCE_DIR}/${genfile}.c) - TARGET_NAMING (${genfile} STATIC) TARGET_C_PROPERTIES (${genfile} STATIC " " " ") target_link_libraries (${genfile} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (${genfile} PROPERTIES FOLDER generator/test) diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 629216f..891645c 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -27,7 +27,6 @@ set (testphdf5_SRCS #-- Adding test for testhdf5 add_executable (testphdf5 ${testphdf5_SRCS}) -TARGET_NAMING (testphdf5 STATIC) TARGET_C_PROPERTIES (testphdf5 STATIC " " " ") target_link_libraries (testphdf5 PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) @@ -37,7 +36,6 @@ set_target_properties (testphdf5 PROPERTIES FOLDER test/par) MACRO (ADD_H5P_EXE file) add_executable (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) - TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") target_link_libraries (${file} PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) diff --git a/tools/h5copy/CMakeLists.txt b/tools/h5copy/CMakeLists.txt index ea7bb48..d40656b 100644 --- a/tools/h5copy/CMakeLists.txt +++ b/tools/h5copy/CMakeLists.txt @@ -10,7 +10,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # Add the h5copy and test executables # -------------------------------------------------------------------- add_executable (h5copy ${HDF5_TOOLS_H5COPY_SOURCE_DIR}/h5copy.c) -TARGET_NAMING (h5copy STATIC) TARGET_C_PROPERTIES (h5copy STATIC " " " ") target_link_libraries (h5copy ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5copy PROPERTIES FOLDER tools) @@ -20,7 +19,6 @@ set (H5_DEP_EXECUTABLES h5copy) if (BUILD_SHARED_LIBS) add_executable (h5copy-shared ${HDF5_TOOLS_H5COPY_SOURCE_DIR}/h5copy.c) - TARGET_NAMING (h5copy-shared SHARED) TARGET_C_PROPERTIES (h5copy-shared SHARED " " " ") target_link_libraries (h5copy-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5copy-shared PROPERTIES FOLDER tools) @@ -32,7 +30,6 @@ endif () if (BUILD_TESTING) if (HDF5_BUILD_GENERATORS) add_executable (h5copygentest ${HDF5_TOOLS_H5COPY_SOURCE_DIR}/h5copygentest.c) - TARGET_NAMING (h5copygentest STATIC) TARGET_C_PROPERTIES (h5copygentest STATIC " " " ") target_link_libraries (h5copygentest ${HDF5_LIB_TARGET}) set_target_properties (h5copygentest PROPERTIES FOLDER generator/tools) diff --git a/tools/h5diff/CMakeLists.txt b/tools/h5diff/CMakeLists.txt index 1ab7e40..3a900f5 100644 --- a/tools/h5diff/CMakeLists.txt +++ b/tools/h5diff/CMakeLists.txt @@ -13,7 +13,6 @@ add_executable (h5diff ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diff_common.c ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diff_main.c ) -TARGET_NAMING (h5diff STATIC) TARGET_C_PROPERTIES (h5diff STATIC " " " ") target_link_libraries (h5diff ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5diff PROPERTIES FOLDER tools) @@ -26,7 +25,6 @@ if (BUILD_SHARED_LIBS) ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diff_common.c ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diff_main.c ) - TARGET_NAMING (h5diff-shared SHARED) TARGET_C_PROPERTIES (h5diff-shared SHARED " " " ") target_link_libraries (h5diff-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5diff-shared PROPERTIES FOLDER tools) @@ -40,7 +38,6 @@ if (H5_HAVE_PARALLEL) ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diff_common.c ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/ph5diff_main.c ) - TARGET_NAMING (ph5diff STATIC) TARGET_C_PROPERTIES (ph5diff STATIC " " " ") target_link_libraries (ph5diff ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (ph5diff PROPERTIES FOLDER tools) @@ -53,7 +50,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (h5diffgentest ${HDF5_TOOLS_H5DIFF_SOURCE_DIR}/h5diffgentest.c) - TARGET_NAMING (h5diffgentest STATIC) TARGET_C_PROPERTIES (h5diffgentest STATIC " " " ") target_link_libraries (h5diffgentest ${HDF5_LIB_TARGET}) set_target_properties (h5diffgentest PROPERTIES FOLDER generator/tools) diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index f301014..e40c6f5 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -14,7 +14,6 @@ add_executable (h5dump ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_ddl.c ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_xml.c ) -TARGET_NAMING (h5dump STATIC) TARGET_C_PROPERTIES (h5dump STATIC " " " ") target_link_libraries (h5dump ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5dump PROPERTIES FOLDER tools) @@ -28,7 +27,6 @@ if (BUILD_SHARED_LIBS) ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_ddl.c ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_xml.c ) - TARGET_NAMING (h5dump-shared SHARED) TARGET_C_PROPERTIES (h5dump-shared SHARED " " " ") target_link_libraries (h5dump-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5dump-shared PROPERTIES FOLDER tools) @@ -72,7 +70,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (h5dumpgentest ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dumpgentest.c) - TARGET_NAMING (h5dumpgentest STATIC) TARGET_C_PROPERTIES (h5dumpgentest STATIC " " " ") target_link_libraries (h5dumpgentest ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5dumpgentest PROPERTIES FOLDER generator/tools) diff --git a/tools/h5import/CMakeLists.txt b/tools/h5import/CMakeLists.txt index bde8286..6e0ac7e 100644 --- a/tools/h5import/CMakeLists.txt +++ b/tools/h5import/CMakeLists.txt @@ -10,7 +10,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # Add the h5import executables # -------------------------------------------------------------------- add_executable (h5import ${HDF5_TOOLS_H5IMPORT_SOURCE_DIR}/h5import.c) -TARGET_NAMING (h5import STATIC) TARGET_C_PROPERTIES (h5import STATIC " " " ") target_link_libraries (h5import ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) #set_target_properties (h5import PROPERTIES COMPILE_DEFINITIONS H5DEBUGIMPORT) @@ -24,7 +23,6 @@ if (BUILD_TESTING) # Add the h5import executables # -------------------------------------------------------------------- add_executable (h5importtest ${HDF5_TOOLS_H5IMPORT_SOURCE_DIR}/h5importtest.c) - TARGET_NAMING (h5importtest STATIC) TARGET_C_PROPERTIES (h5importtest STATIC " " " ") target_link_libraries (h5importtest ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5importtest PROPERTIES FOLDER tools) diff --git a/tools/h5jam/CMakeLists.txt b/tools/h5jam/CMakeLists.txt index 632fba8..58ad777 100644 --- a/tools/h5jam/CMakeLists.txt +++ b/tools/h5jam/CMakeLists.txt @@ -10,26 +10,22 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # Add the h5jam executables # -------------------------------------------------------------------- add_executable (h5jam ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5jam.c) -TARGET_NAMING (h5jam STATIC) TARGET_C_PROPERTIES (h5jam STATIC " " " ") target_link_libraries (h5jam ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5jam PROPERTIES FOLDER tools) set_global_variable (HDF5_UTILS_TO_EXPORT "${HDF5_UTILS_TO_EXPORT};h5jam") add_executable (getub ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/getub.c) -TARGET_NAMING (getub STATIC) TARGET_C_PROPERTIES (getub STATIC " " " ") target_link_libraries (getub ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (getub PROPERTIES FOLDER tools) add_executable (tellub ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/tellub.c) -TARGET_NAMING (tellub STATIC) TARGET_C_PROPERTIES (tellub STATIC " " " ") target_link_libraries (tellub ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (tellub PROPERTIES FOLDER tools) add_executable (h5unjam ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5unjam.c) -TARGET_NAMING (h5unjam STATIC) TARGET_C_PROPERTIES (h5unjam STATIC " " " ") target_link_libraries (h5unjam ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5unjam PROPERTIES FOLDER tools) @@ -46,7 +42,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (h5jamgentest ${HDF5_TOOLS_H5JAM_SOURCE_DIR}/h5jamgentest.c) - TARGET_NAMING (h5jamgentest STATIC) TARGET_C_PROPERTIES (testhdf5 STATIC " " " ") target_link_libraries (h5jamgentest ${HDF5_LIB_TARGET}) set_target_properties (h5jamgentest PROPERTIES FOLDER generator/tools) diff --git a/tools/h5ls/CMakeLists.txt b/tools/h5ls/CMakeLists.txt index d9c3977..6cf6fc0 100644 --- a/tools/h5ls/CMakeLists.txt +++ b/tools/h5ls/CMakeLists.txt @@ -10,7 +10,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # Add the h5ls executable #----------------------------------------------------------------------------- add_executable (h5ls ${HDF5_TOOLS_H5LS_SOURCE_DIR}/h5ls.c) -TARGET_NAMING (h5ls STATIC) TARGET_C_PROPERTIES (h5ls STATIC " " " ") target_link_libraries (h5ls ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5ls PROPERTIES FOLDER tools) @@ -20,7 +19,6 @@ set (H5_DEP_EXECUTABLES h5ls) if (BUILD_SHARED_LIBS) add_executable (h5ls-shared ${HDF5_TOOLS_H5LS_SOURCE_DIR}/h5ls.c) - TARGET_NAMING (h5ls-shared SHARED) TARGET_C_PROPERTIES (h5ls-shared SHARED " " " ") target_link_libraries (h5ls-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5ls-shared PROPERTIES FOLDER tools) diff --git a/tools/h5repack/CMakeLists.txt b/tools/h5repack/CMakeLists.txt index 4b15d7c..fd1ad3e 100644 --- a/tools/h5repack/CMakeLists.txt +++ b/tools/h5repack/CMakeLists.txt @@ -21,7 +21,6 @@ set (REPACK_COMMON_SRCS ) add_executable (h5repack ${REPACK_COMMON_SRCS} ${HDF5_TOOLS_H5REPACK_SOURCE_DIR}/h5repack_main.c) -TARGET_NAMING (h5repack STATIC) TARGET_C_PROPERTIES (h5repack STATIC " " " ") target_link_libraries (h5repack ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5repack PROPERTIES FOLDER tools) @@ -31,7 +30,6 @@ set (H5_DEP_EXECUTABLES h5repack) if (BUILD_SHARED_LIBS) add_executable (h5repack-shared ${REPACK_COMMON_SRCS} ${HDF5_TOOLS_H5REPACK_SOURCE_DIR}/h5repack_main.c) - TARGET_NAMING (h5repack-shared SHARED) TARGET_C_PROPERTIES (h5repack-shared SHARED " " " ") target_link_libraries (h5repack-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5repack-shared PROPERTIES FOLDER tools) @@ -45,13 +43,11 @@ if (BUILD_TESTING) # Add h5Repack test executables # -------------------------------------------------------------------- add_executable (testh5repack_detect_szip ${HDF5_TOOLS_H5REPACK_SOURCE_DIR}/testh5repack_detect_szip.c) - TARGET_NAMING (testh5repack_detect_szip STATIC) TARGET_C_PROPERTIES (testh5repack_detect_szip STATIC " " " ") target_link_libraries (testh5repack_detect_szip ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (testh5repack_detect_szip PROPERTIES FOLDER tools) add_executable (h5repacktest ${REPACK_COMMON_SRCS} ${HDF5_TOOLS_H5REPACK_SOURCE_DIR}/h5repacktst.c) - TARGET_NAMING (h5repacktest STATIC) TARGET_C_PROPERTIES (h5repacktest STATIC " " " ") target_link_libraries (h5repacktest ${HDF5_TOOLS_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (h5repacktest PROPERTIES FOLDER tools) diff --git a/tools/h5repack/h5repack_filters.c b/tools/h5repack/h5repack_filters.c index 1371691..eb8d724 100644 --- a/tools/h5repack/h5repack_filters.c +++ b/tools/h5repack/h5repack_filters.c @@ -84,7 +84,8 @@ static int aux_find_obj(const char* name, /* object name from traverse list */ pack_opt_t *options, /* repack options */ pack_info_t *obj /*OUT*/) /* info about object to filter */ { - char *pdest; + char *pdest = NULL; + char *pname = NULL; int result; unsigned int i; @@ -94,11 +95,12 @@ static int aux_find_obj(const char* name, /* object name from traverse list */ return (int) i; } - pdest = HDstrstr(name, options->op_tbl->objs[i].path); - result = (int) (pdest - name); + pdest = options->op_tbl->objs[i].path; + if (pdest[0] == '/') pdest++; + pname = name; + if (pname[0] == '/') pname++; - /* found at position 1, meaning without '/' */ - if (pdest != NULL && result == 1) { + if (HDstrcmp(pdest, pname) == 0) { *obj = options->op_tbl->objs[i]; return (int) i; } diff --git a/tools/h5repack/h5repack_parse.c b/tools/h5repack/h5repack_parse.c index 05af197..f646ee7 100644 --- a/tools/h5repack/h5repack_parse.c +++ b/tools/h5repack/h5repack_parse.c @@ -45,9 +45,9 @@ obj_list_t* parse_filter(const char *str, unsigned *n_objs, filter_info_t *filt, int f, k, l, p, q, end_obj = -1, no_param = 0; unsigned j, n; char sobj[MAX_NC_NAME]; - char scomp[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; - char stype[6] = {0, 0, 0, 0, 0, 0}; - char smask[3] = {0, 0, 0}; + char scomp[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; + char stype[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; + char smask[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; obj_list_t* obj_list = NULL; unsigned pixels_per_block; @@ -116,7 +116,6 @@ obj_list_t* parse_filter(const char *str, unsigned *n_objs, filter_info_t *filt, if (c == '=' || i == len - 1) { if (c == '=') { /*one more parameter */ scomp[k] = '\0'; /*cut space */ - /*------------------------------------------------------------------------- * H5Z_FILTER_SZIP * szip has the format SZIP= @@ -236,8 +235,9 @@ obj_list_t* parse_filter(const char *str, unsigned *n_objs, filter_info_t *filt, filt->cd_nelmts = HDstrtoull(stype, NULL, 0); p = 0; } - else + else { filt->cd_values[j++] = (unsigned)HDstrtoul(stype, NULL, 0); + } q = 0; u++; /* skip ',' */ } diff --git a/tools/h5stat/CMakeLists.txt b/tools/h5stat/CMakeLists.txt index 9499ea8..6b3c06b 100644 --- a/tools/h5stat/CMakeLists.txt +++ b/tools/h5stat/CMakeLists.txt @@ -10,7 +10,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # Add the h5stat executables # -------------------------------------------------------------------- add_executable (h5stat ${HDF5_TOOLS_H5STAT_SOURCE_DIR}/h5stat.c) -TARGET_NAMING (h5stat STATIC) TARGET_C_PROPERTIES (h5stat STATIC " " " ") target_link_libraries (h5stat ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5stat PROPERTIES FOLDER tools) @@ -20,7 +19,6 @@ set (H5_DEP_EXECUTABLES h5stat) if (BUILD_SHARED_LIBS) add_executable (h5stat-shared ${HDF5_TOOLS_H5STAT_SOURCE_DIR}/h5stat.c) - TARGET_NAMING (h5stat-shared SHARED) TARGET_C_PROPERTIES (h5stat-shared SHARED " " " ") target_link_libraries (h5stat-shared ${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (h5stat-shared PROPERTIES FOLDER tools) @@ -35,7 +33,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (h5stat_gentest ${HDF5_TOOLS_H5STAT_SOURCE_DIR}/h5stat_gentest.c) - TARGET_NAMING (h5stat_gentest STATIC) TARGET_C_PROPERTIES (h5stat_gentest STATIC " " " ") target_link_libraries (h5stat_gentest ${HDF5_LIB_TARGET}) set_target_properties (h5stat_gentest PROPERTIES FOLDER generator/tools) diff --git a/tools/misc/CMakeLists.txt b/tools/misc/CMakeLists.txt index 1c22235..919535f 100644 --- a/tools/misc/CMakeLists.txt +++ b/tools/misc/CMakeLists.txt @@ -11,21 +11,18 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib) # -------------------------------------------------------------------- #-- Misc Executables add_executable (h5debug ${HDF5_TOOLS_MISC_SOURCE_DIR}/h5debug.c) -TARGET_NAMING (h5debug STATIC) TARGET_C_PROPERTIES (h5debug STATIC " " " ") target_link_libraries (h5debug ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5debug PROPERTIES FOLDER tools) set_global_variable (HDF5_UTILS_TO_EXPORT "${HDF5_UTILS_TO_EXPORT};h5debug") add_executable (h5repart ${HDF5_TOOLS_MISC_SOURCE_DIR}/h5repart.c) -TARGET_NAMING (h5repart STATIC) TARGET_C_PROPERTIES (h5repart STATIC " " " ") target_link_libraries (h5repart ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5repart PROPERTIES FOLDER tools) set_global_variable (HDF5_UTILS_TO_EXPORT "${HDF5_UTILS_TO_EXPORT};h5repart") add_executable (h5mkgrp ${HDF5_TOOLS_MISC_SOURCE_DIR}/h5mkgrp.c) -TARGET_NAMING (h5mkgrp STATIC) TARGET_C_PROPERTIES (h5mkgrp STATIC " " " ") target_link_libraries (h5mkgrp ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (h5mkgrp PROPERTIES FOLDER tools) @@ -50,7 +47,6 @@ if (BUILD_TESTING) # -------------------------------------------------------------------- if (HDF5_BUILD_GENERATORS) add_executable (h5repart_gentest ${HDF5_TOOLS_MISC_SOURCE_DIR}/h5repart_gentest.c) - TARGET_NAMING (h5repart_gentest STATIC) TARGET_C_PROPERTIES (h5repart_gentest STATIC " " " ") target_link_libraries (h5repart_gentest ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5repart_gentest PROPERTIES FOLDER generator/tools) @@ -58,7 +54,6 @@ if (BUILD_TESTING) endif () add_executable (h5repart_test ${HDF5_TOOLS_MISC_SOURCE_DIR}/repart_test.c) - TARGET_NAMING (h5repart_test STATIC) TARGET_C_PROPERTIES (h5repart_test STATIC " " " ") target_link_libraries (h5repart_test ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5repart_test PROPERTIES FOLDER tools) diff --git a/tools/perform/CMakeLists.txt b/tools/perform/CMakeLists.txt index a52b22b..647f846 100644 --- a/tools/perform/CMakeLists.txt +++ b/tools/perform/CMakeLists.txt @@ -21,7 +21,6 @@ set (h5perf_serial_SRCS ${HDF5_PERFORM_SOURCE_DIR}/sio_engine.c ) add_executable (h5perf_serial ${h5perf_serial_SRCS}) -TARGET_NAMING (h5perf_serial STATIC) TARGET_C_PROPERTIES (h5perf_serial STATIC " " " ") target_link_libraries (h5perf_serial ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5perf_serial PROPERTIES FOLDER perform) @@ -33,7 +32,6 @@ if (HDF5_BUILD_PERFORM_STANDALONE) ${HDF5_PERFORM_SOURCE_DIR}/sio_engine.c ) add_executable (h5perf_serial_alone ${h5perf_serial_alone_SRCS}) - TARGET_NAMING (h5perf_serial_alone STATIC) TARGET_C_PROPERTIES (h5perf_serial_alone STATIC " " " ") target_link_libraries (h5perf_serial_alone ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (h5perf_serial_alone PROPERTIES FOLDER perform) @@ -47,7 +45,6 @@ set (chunk_SRCS ${HDF5_PERFORM_SOURCE_DIR}/chunk.c ) ADD_EXECUTABLE(chunk ${chunk_SRCS}) -TARGET_NAMING (chunk STATIC) TARGET_C_PROPERTIES (chunk STATIC " " " ") TARGET_LINK_LIBRARIES(chunk ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (chunk PROPERTIES FOLDER perform) @@ -57,7 +54,6 @@ set (iopipe_SRCS ${HDF5_PERFORM_SOURCE_DIR}/iopipe.c ) add_executable (iopipe ${iopipe_SRCS}) -TARGET_NAMING (iopipe STATIC) TARGET_C_PROPERTIES (iopipe STATIC " " " ") target_link_libraries (iopipe ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (iopipe PROPERTIES FOLDER perform) @@ -67,7 +63,6 @@ set (overhead_SRCS ${HDF5_PERFORM_SOURCE_DIR}/overhead.c ) add_executable (overhead ${overhead_SRCS}) -TARGET_NAMING (overhead STATIC) TARGET_C_PROPERTIES (overhead STATIC " " " ") target_link_libraries (overhead ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET}) set_target_properties (overhead PROPERTIES FOLDER perform) @@ -78,7 +73,6 @@ if (BUILD_TESTING) ${HDF5_PERFORM_SOURCE_DIR}/perf_meta.c ) add_executable (perf_meta ${perf_meta_SRCS}) - TARGET_NAMING (perf_meta STATIC) TARGET_C_PROPERTIES (perf_meta STATIC " " " ") target_link_libraries (perf_meta ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (perf_meta PROPERTIES FOLDER perform) @@ -89,7 +83,6 @@ set (zip_perf_SRCS ${HDF5_PERFORM_SOURCE_DIR}/zip_perf.c ) add_executable (zip_perf ${zip_perf_SRCS}) -TARGET_NAMING (zip_perf STATIC) TARGET_C_PROPERTIES (zip_perf STATIC " " " ") target_link_libraries (zip_perf ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET}) set_target_properties (zip_perf PROPERTIES FOLDER perform) @@ -101,7 +94,6 @@ if (H5_HAVE_PARALLEL AND BUILD_TESTING) ${HDF5_PERFORM_SOURCE_DIR}/pio_engine.c ) add_executable (h5perf ${h5perf_SRCS}) - TARGET_NAMING (h5perf STATIC) TARGET_C_PROPERTIES (h5perf STATIC " " " ") target_link_libraries (h5perf ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (h5perf PROPERTIES FOLDER perform) @@ -113,7 +105,6 @@ if (H5_HAVE_PARALLEL AND BUILD_TESTING) ${HDF5_PERFORM_SOURCE_DIR}/pio_engine.c ) add_executable (h5perf_alone ${h5perf_alone_SRCS}) - TARGET_NAMING (h5perf_alone STATIC) TARGET_C_PROPERTIES (h5perf_alone STATIC " " " ") target_link_libraries (h5perf_alone ${HDF5_LIB_TARGET} ${HDF5_TOOLS_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (h5perf_alone PROPERTIES FOLDER perform) -- cgit v0.12 From 4bf3d192bbc8f453d9a3b4312e4b56d4bd2bcf0f Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 22 Jan 2018 12:13:02 -0600 Subject: HDFFV-10385 merge typo --- test/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index fc2bd36..40db60f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -336,7 +336,6 @@ if (HDF5_ENABLE_DEPRECATED_SYMBOLS) set_target_properties (err_compat PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (err_compat-shared ${HDF5_TEST_SOURCE_DIR}/err_compat.c) - TARGET_NAMING (err_compat-shared SHARED) TARGET_C_PROPERTIES (err_compat-shared SHARED " " " ") target_link_libraries (err_compat-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (err_compat-shared PROPERTIES FOLDER test) @@ -350,7 +349,6 @@ target_link_libraries (error_test ${HDF5_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) set_target_properties (error_test PROPERTIES FOLDER test) if (BUILD_SHARED_LIBS) add_executable (error_test-shared ${HDF5_TEST_SOURCE_DIR}/error_test.c) - TARGET_NAMING (error_test-shared SHARED) TARGET_C_PROPERTIES (error_test-shared SHARED " " " ") target_link_libraries (error_test-shared ${HDF5_TEST_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_target_properties (error_test-shared PROPERTIES FOLDER test) -- cgit v0.12 From 393851823fb954c75126627fa7701cd051eda162 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 22 Jan 2018 12:50:51 -0600 Subject: Fix cmake typo --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6837fe..3db4a83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -493,7 +493,7 @@ option (HDF5_BUILD_GENERATORS "Build Test Generators" OFF) #----------------------------------------------------------------------------- option (HDF5_ENABLE_TRACE "Enable API tracing capability" OFF) mark_as_advanced (HDF5_ENABLE_TRACE) -if (HDF5_BUILD_TYPE MATCHES Debug) +if (${HDF_CFG_NAME} MATCHES "Debug") add_definitions (-DDEBUG) # Enable tracing of the API if (HDF5_ENABLE_TRACE) -- cgit v0.12 From fe772268d9c8ae7ab5a54c74db6241920c69c253 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 25 Jan 2018 11:13:39 -0600 Subject: Merge notes from develop --- release_docs/RELEASE.txt | 72 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 68 insertions(+), 4 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f6f15a1..a2a9d14 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -62,7 +62,7 @@ New Features Refactor use of CMAKE_BUILD_TYPE for new variable, which understands the type of generator in use. - Added new configuration macros to use new HDF5_BUILD_TYPE variable. This + Added new configuration macros to use new HDF_BUILD_TYPE variable. This variable is set correctly for the type of generator being used for the build. (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) @@ -122,15 +122,29 @@ Bug Fixes since HDF5-1.8.20 generators (Visual Studio and XCode) and is optional for single config generators. Created a new macro to check GLOBAL PROPERTY -> GENERATOR_IS_MULTI_CONFIG - Created two new HDF variable, HDF5_BUILD_TYPE and HDF5_CFG_BUILD_TYPE. + Created two new HDF variable, HDF_BUILD_TYPE and HDF_CFG_BUILD_TYPE. Defaults for these variables is "Release". (ADB - 2018/01/10, HDFFV-10385) + - CMake + + Add replacement of fortran flags if using static CRT. + + Added TARGET_STATIC_CRT_FLAGS call to HDFUseFortran.cmake file in + config/cmake_ext_mod folder. + + (ADB - 2018/01/08, HDFFV-10334) + Library ------- - - None + - Utility function can not handle lowercase Windows drive letters + + Added call to toupper function for drive letter. + + (ADB - 2017/12/18, HDFFV-10307) + Parallel Library @@ -145,7 +159,57 @@ Bug Fixes since HDF5-1.8.20 Tools ----- - - None + - h5dump + + h5dump would output an indented blank line in the filters section. + + h5dump over used the h5tools_simple_prefix function, which is a + function intended to account for the data index (x,y,z) option. + Removed the function call for header information. + + (ADB - 2018/01/25, HDFFV-10396) + + - h5repack + + h5repack incorrectly searched internal object table for name. + + h5repack would search the table of objects for a name, if the + name did not match it tried to determine if the name without a + leading slash would match. The logic was flawed! The table + stored names(paths) without a leading slash and did a strstr + of the table path to the name. + The assumption was that if there was a difference of one then + it was a match, however "pressure" would match "/pressure" as + well as "/pressure1", "/pressure2", etc. Changed logic to remove + any leading slash and then do a full compare of the name. + + (ADB - 2018/01/18, HDFFV-10393) + + - h5repack + + h5repack failed to handle more then 9 chars for int conversion. + + User defined filter parameter conversions would fail for integers + larger then 9 characters. Increased local variable array for storing + the current command line parameter to prevent buffer overflows. + + (ADB - 2018/01/17, HDFFV-10392) + + - h5diff + + h5diff seg faulted if comparing VL strings against fixed strings. + + Reworked solution for HDFFV-8625 and HDFFV-8639. Implemented the check + for string objects of same type in the diff_can_type function by + adding an if(tclass1 == H5T_STRING) block. This if block moves the + same check that was added for attributes to this function, which is + used by all object types. This function also handles complex type + structures. + Also added a new test file in h5diffgenttest for testing this issue + and removed the temporary files used in the test scripts. + + (ADB - 2018/01/04, HDFFV-8745) + Fortran API -- cgit v0.12 From e98f1054c3830d0786eaccc48300e63cda0e57e7 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 25 Jan 2018 11:20:45 -0600 Subject: Fix typos --- release_docs/RELEASE.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index a2a9d14..3f30ef2 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -82,7 +82,7 @@ New Features Tools ----- - - None + - None High-Level APIs @@ -116,7 +116,7 @@ Bug Fixes since HDF5-1.8.20 ------------- - CMake - Correct usuage of CMAKE_BUILD_TYPE variable. + Correct usage of CMAKE_BUILD_TYPE variable. The use of the CMAKE_BUILD_TYPE is incorrect for multi-config generators (Visual Studio and XCode) and is optional for single @@ -163,7 +163,7 @@ Bug Fixes since HDF5-1.8.20 h5dump would output an indented blank line in the filters section. - h5dump over used the h5tools_simple_prefix function, which is a + h5dump overused the h5tools_simple_prefix function, which is a function intended to account for the data index (x,y,z) option. Removed the function call for header information. @@ -197,7 +197,7 @@ Bug Fixes since HDF5-1.8.20 - h5diff - h5diff seg faulted if comparing VL strings against fixed strings. + h5diff seg-faulted if comparing VL strings against fixed strings. Reworked solution for HDFFV-8625 and HDFFV-8639. Implemented the check for string objects of same type in the diff_can_type function by -- cgit v0.12 From bc6134ee2da45a1ea902432c65d898e09d6d91a3 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 25 Jan 2018 17:04:00 -0600 Subject: Fix extlib references and fortran name typo --- CMakeInstallation.cmake | 10 +++++----- CMakeLists.txt | 2 +- config/cmake/hdf5-config.cmake.in | 8 +++++++- fortran/test/CMakeLists.txt | 6 +++--- 4 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CMakeInstallation.cmake b/CMakeInstallation.cmake index 96e4f0d..5d3daff 100644 --- a/CMakeInstallation.cmake +++ b/CMakeInstallation.cmake @@ -41,7 +41,7 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED) if (HDF5_EXPORTED_TARGETS) install ( EXPORT ${HDF5_EXPORTED_TARGETS} - DESTINATION ${HDF5_INSTALL_CMAKE_DIR} + DESTINATION ${HDF5_INSTALL_CMAKE_DIR}/hdf5 FILE ${HDF5_PACKAGE}${HDF_PACKAGE_EXT}-targets.cmake NAMESPACE ${HDF5_PACKAGE}:: COMPONENT configinstall @@ -84,7 +84,7 @@ set (CURRENT_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}" ) configure_package_config_file ( ${HDF_RESOURCES_DIR}/hdf5-config.cmake.in "${HDF5_BINARY_DIR}/${HDF5_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake" - INSTALL_DESTINATION "${HDF5_INSTALL_CMAKE_DIR}" + INSTALL_DESTINATION "${HDF5_INSTALL_CMAKE_DIR}/hdf5" PATH_VARS INCLUDE_INSTALL_DIR SHARE_INSTALL_DIR CURRENT_BUILD_DIR INSTALL_PREFIX "${CMAKE_CURRENT_BINARY_DIR}" ) @@ -98,14 +98,14 @@ set (CURRENT_BUILD_DIR "${CMAKE_INSTALL_PREFIX}" ) configure_package_config_file ( ${HDF_RESOURCES_DIR}/hdf5-config.cmake.in "${HDF5_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${HDF5_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake" - INSTALL_DESTINATION "${HDF5_INSTALL_CMAKE_DIR}" + INSTALL_DESTINATION "${HDF5_INSTALL_CMAKE_DIR}/hdf5" PATH_VARS INCLUDE_INSTALL_DIR SHARE_INSTALL_DIR CURRENT_BUILD_DIR ) if (NOT HDF5_EXTERNALLY_CONFIGURED) install ( FILES ${HDF5_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${HDF5_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake - DESTINATION ${HDF5_INSTALL_CMAKE_DIR} + DESTINATION ${HDF5_INSTALL_CMAKE_DIR}/hdf5 COMPONENT configinstall ) endif () @@ -120,7 +120,7 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED) ) install ( FILES ${HDF5_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${HDF5_PACKAGE}${HDF_PACKAGE_EXT}-config-version.cmake - DESTINATION ${HDF5_INSTALL_CMAKE_DIR} + DESTINATION ${HDF5_INSTALL_CMAKE_DIR}/hdf5 COMPONENT configinstall ) endif () diff --git a/CMakeLists.txt b/CMakeLists.txt index 3db4a83..564c091 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -210,7 +210,7 @@ if (NOT HDF5_INSTALL_DATA_DIR) set (HDF5_INSTALL_FWRK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) endif () set (HDF5_INSTALL_DATA_DIR share) - set (HDF5_INSTALL_CMAKE_DIR share/cmake/hdf5) + set (HDF5_INSTALL_CMAKE_DIR share/cmake) else () set (HDF5_INSTALL_DATA_DIR ".") set (HDF5_INSTALL_CMAKE_DIR cmake) diff --git a/config/cmake/hdf5-config.cmake.in b/config/cmake/hdf5-config.cmake.in index 4bb5616..c4823c7 100644 --- a/config/cmake/hdf5-config.cmake.in +++ b/config/cmake/hdf5-config.cmake.in @@ -94,7 +94,13 @@ set (HDF5_VERSION_MINOR @HDF5_VERSION_MINOR@) # project which has already built hdf5 as a subproject #----------------------------------------------------------------------------- if (NOT TARGET "@HDF5_PACKAGE@") - include (@PACKAGE_SHARE_INSTALL_DIR@/@HDF5_PACKAGE@@HDF_PACKAGE_EXT@-targets.cmake) + if (${HDF5_PACKAGE_NAME}_ENABLE_Z_LIB_SUPPORT AND ${HDF5_PACKAGE_NAME}_PACKAGE_EXTLIBS AND NOT TARGET "zlib") + include (@PACKAGE_SHARE_INSTALL_DIR@/@ZLIB_PACKAGE_NAME@/@ZLIB_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) + endif () + if (${HDF5_PACKAGE_NAME}_ENABLE_SZIP_SUPPORT AND ${HDF5_PACKAGE_NAME}_PACKAGE_EXTLIBS AND NOT TARGET "szip") + include (@PACKAGE_SHARE_INSTALL_DIR@/@SZIP_PACKAGE_NAME@/@SZIP_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) + endif () + include (@PACKAGE_SHARE_INSTALL_DIR@/@HDF5_PACKAGE@/@HDF5_PACKAGE@@HDF_PACKAGE_EXT@-targets.cmake) endif () # Handle default component(static) : diff --git a/fortran/test/CMakeLists.txt b/fortran/test/CMakeLists.txt index 0c1f616..c7416df 100644 --- a/fortran/test/CMakeLists.txt +++ b/fortran/test/CMakeLists.txt @@ -259,7 +259,7 @@ if (HDF5_ENABLE_F2003) if (WIN32 AND MSVC) target_link_libraries (fortranlib_test_F03 "ws2_32.lib") endif () - + target_include_directories (fortranlib_test_F03 PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (fortranlib_test_F03 PROPERTIES LINKER_LANGUAGE Fortran @@ -296,7 +296,7 @@ if (HDF5_ENABLE_F2003) endif () #-- Adding test for fflush1 -add_executable (fflush1 fflush1.F90) +add_executable (fflush1 fflush1.f90) TARGET_FORTRAN_PROPERTIES (fflush1 STATIC " " " ") target_link_libraries (fflush1 ${HDF5_F90_LIB_TARGET} @@ -332,7 +332,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) endif () #-- Adding test for fflush2 -add_executable (fflush2 fflush2.F90) +add_executable (fflush2 fflush2.f90) TARGET_FORTRAN_PROPERTIES (fflush2 STATIC " " " ") target_link_libraries (fflush2 ${HDF5_F90_TEST_LIB_TARGET} -- cgit v0.12 From 84d523eb00641dba2bfb97baa7623b138fe2ce68 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 26 Jan 2018 13:24:57 -0600 Subject: HDFFVC-10396 merge from develop --- tools/h5dump/h5dump_ddl.c | 16 ---- tools/h5dump/h5dump_xml.c | 189 ---------------------------------------------- tools/lib/h5tools_dump.c | 53 ------------- 3 files changed, 258 deletions(-) diff --git a/tools/h5dump/h5dump_ddl.c b/tools/h5dump/h5dump_ddl.c index 8dc96ce..7c0a05b 100644 --- a/tools/h5dump/h5dump_ddl.c +++ b/tools/h5dump/h5dump_ddl.c @@ -277,7 +277,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -289,7 +288,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR error_msg("internal error (file %s:line %d)\n", __FILE__, __LINE__); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -311,7 +309,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR } else if(found_obj->displayed) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -332,7 +329,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -414,7 +410,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR /* print the value of a soft link */ /* Standard DDL: no modification */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -425,7 +420,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -450,7 +444,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -479,7 +472,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -487,7 +479,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -500,7 +491,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR } /* end else */ } /* end else */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -522,7 +512,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR case H5L_TYPE_HARD: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -534,7 +523,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "LINKCLASS %d", linfo->type); @@ -543,7 +531,6 @@ dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ATTR ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); if(HDstrlen(h5tools_dump_header_format->udlinkblockend)) { @@ -904,7 +891,6 @@ dump_group(hid_t gid, const char *name) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1571,7 +1557,6 @@ handle_attributes(hid_t fid, const char *attr, void H5_ATTR_UNUSED * data, int H HDmemset(&buffer, 0, sizeof(h5tools_str_t)); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1583,7 +1568,6 @@ handle_attributes(hid_t fid, const char *attr, void H5_ATTR_UNUSED * data, int H error_msg("unable to open object \"%s\"\n", obj_name); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); if(HDstrlen(h5tools_dump_header_format->attributeblockend)) { diff --git a/tools/h5dump/h5dump_xml.c b/tools/h5dump/h5dump_xml.c index 76819f0..6e72b56 100644 --- a/tools/h5dump/h5dump_xml.c +++ b/tools/h5dump/h5dump_xml.c @@ -230,7 +230,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -242,7 +241,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ error_msg("internal error (file %s:line %d)\n", __FILE__, __LINE__); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -277,7 +275,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ xml_name_to_XID(prefix, parentxid, (int)sizeof(parentxid), 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -297,7 +294,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -309,7 +305,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -404,7 +399,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ if (res == 0) { /* target obj found */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -426,7 +420,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ else { /* dangling link -- omit from xml attributes */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -491,7 +484,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ xml_name_to_XID(prefix, parentxid, (int)sizeof(parentxid), 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -538,7 +530,6 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void H5_ xml_name_to_XID(prefix, parentxid, (int)sizeof(parentxid), 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -904,7 +895,6 @@ xml_print_datatype(hid_t type, unsigned in_group) as it's name. */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -917,7 +907,6 @@ xml_print_datatype(hid_t type, unsigned in_group) char *t_objname = xml_escape_the_name(found_obj->objname); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -930,7 +919,6 @@ xml_print_datatype(hid_t type, unsigned in_group) } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -943,7 +931,6 @@ xml_print_datatype(hid_t type, unsigned in_group) switch (H5Tget_class(type)) { case H5T_INTEGER: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -956,7 +943,6 @@ xml_print_datatype(hid_t type, unsigned in_group) sgn = H5Tget_sign(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1001,7 +987,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1017,7 +1002,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ord = H5Tget_order(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1026,7 +1010,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1060,7 +1043,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1070,7 +1052,6 @@ xml_print_datatype(hid_t type, unsigned in_group) case H5T_TIME: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1079,7 +1060,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1089,7 +1069,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1105,7 +1084,6 @@ xml_print_datatype(hid_t type, unsigned in_group) is_vlstr = H5Tis_variable_str(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1115,7 +1093,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1143,7 +1120,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1156,7 +1132,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ord = H5Tget_order(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1165,7 +1140,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1192,7 +1166,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1204,7 +1177,6 @@ xml_print_datatype(hid_t type, unsigned in_group) /* */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1214,7 +1186,6 @@ xml_print_datatype(hid_t type, unsigned in_group) mname = H5Tget_tag(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1226,7 +1197,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1241,7 +1211,6 @@ xml_print_datatype(hid_t type, unsigned in_group) nmembers = (unsigned)H5Tget_nmembers(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1261,7 +1230,6 @@ xml_print_datatype(hid_t type, unsigned in_group) t_fname = xml_escape_the_name(mname); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1274,7 +1242,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1287,7 +1254,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1297,7 +1263,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1308,7 +1273,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1318,7 +1282,6 @@ xml_print_datatype(hid_t type, unsigned in_group) case H5T_REFERENCE: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1328,7 +1291,6 @@ xml_print_datatype(hid_t type, unsigned in_group) /* Only Object references supported at this time */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1337,7 +1299,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1346,7 +1307,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1355,7 +1315,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1368,7 +1327,6 @@ xml_print_datatype(hid_t type, unsigned in_group) nmembs = H5Tget_nmembers(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1378,7 +1336,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1387,7 +1344,6 @@ xml_print_datatype(hid_t type, unsigned in_group) xml_print_enum(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1397,7 +1353,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1407,7 +1362,6 @@ xml_print_datatype(hid_t type, unsigned in_group) case H5T_VLEN: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1418,7 +1372,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1431,7 +1384,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1441,7 +1393,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1473,7 +1424,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; for (i = 0; i < ndims; i++) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1486,7 +1436,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1499,7 +1448,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1509,7 +1457,6 @@ xml_print_datatype(hid_t type, unsigned in_group) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1523,7 +1470,6 @@ xml_print_datatype(hid_t type, unsigned in_group) case H5T_NCLASSES: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1605,7 +1551,6 @@ xml_dump_datatype(hid_t type) */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1618,7 +1563,6 @@ xml_dump_datatype(hid_t type) char *t_objname = xml_escape_the_name(found_obj->objname); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1631,7 +1575,6 @@ xml_dump_datatype(hid_t type) } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1641,7 +1584,6 @@ xml_dump_datatype(hid_t type) } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1654,7 +1596,6 @@ xml_dump_datatype(hid_t type) dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1719,7 +1660,6 @@ xml_dump_dataspace(hid_t space) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1732,7 +1672,6 @@ xml_dump_dataspace(hid_t space) /* scalar dataspace (just a tag, no XML attrs. defined */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1745,7 +1684,6 @@ xml_dump_dataspace(hid_t space) /* */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1757,7 +1695,6 @@ xml_dump_dataspace(hid_t space) for (i = 0; i < ndims; i++) { if (maxsize[i] == H5S_UNLIMITED) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1767,7 +1704,6 @@ xml_dump_dataspace(hid_t space) } else if (maxsize[i] == (hsize_t) 0) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1777,7 +1713,6 @@ xml_dump_dataspace(hid_t space) } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1789,7 +1724,6 @@ xml_dump_dataspace(hid_t space) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1804,7 +1738,6 @@ xml_dump_dataspace(hid_t space) ctx.need_prefix = TRUE; h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); - /* Render the element */ h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "<%sNullDataspace />",xmlnsprefix); @@ -1816,7 +1749,6 @@ xml_dump_dataspace(hid_t space) case H5S_NO_CLASS: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1827,7 +1759,6 @@ xml_dump_dataspace(hid_t space) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1898,7 +1829,6 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t H5_ATTR_UNUSED * sset, outputformat = &string_dataformat; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -1908,7 +1838,6 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t H5_ATTR_UNUSED * sset, ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2004,7 +1933,6 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t H5_ATTR_UNUSED * sset, ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2030,7 +1958,6 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t H5_ATTR_UNUSED * sset, ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2091,7 +2018,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED outputformat = &string_dataformat; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2127,7 +2053,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2135,7 +2060,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2143,7 +2067,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2151,7 +2074,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2159,7 +2081,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2172,7 +2093,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED case H5T_COMPOUND: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2183,7 +2103,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED case H5T_REFERENCE: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2191,7 +2110,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); if (!H5Tequal(type, H5T_STD_REF_OBJ)) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2199,7 +2117,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2208,7 +2125,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2218,7 +2134,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED xml_print_refs(attr_id, ATTRIBUTE_DATA); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2227,7 +2142,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2237,7 +2151,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED case H5T_VLEN: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2250,7 +2163,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED case H5T_NCLASSES: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2258,7 +2170,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2266,7 +2177,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2274,7 +2184,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2287,7 +2196,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED /* The case of an attribute never yet written ?? * Or dataspace is H5S_NULL. */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2297,7 +2205,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2307,7 +2214,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2322,7 +2228,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED H5Aclose(attr_id); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2337,7 +2242,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2347,7 +2251,6 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2434,7 +2337,6 @@ xml_dump_named_datatype(hid_t type, const char *name) */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2449,7 +2351,6 @@ xml_dump_named_datatype(hid_t type, const char *name) H5O_info_t oinfo; /* Object info */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2486,7 +2387,6 @@ xml_dump_named_datatype(hid_t type, const char *name) xml_name_to_XID(found_obj->objname, pointerxid, (int)sizeof(pointerxid), 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2496,7 +2396,6 @@ xml_dump_named_datatype(hid_t type, const char *name) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2514,7 +2413,6 @@ xml_dump_named_datatype(hid_t type, const char *name) dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2528,7 +2426,6 @@ xml_dump_named_datatype(hid_t type, const char *name) dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2539,7 +2436,6 @@ xml_dump_named_datatype(hid_t type, const char *name) dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2679,7 +2575,6 @@ xml_dump_group(hid_t gid, const char *name) xml_name_to_XID("/", grpxid, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2694,7 +2589,6 @@ xml_dump_group(hid_t gid, const char *name) xml_name_to_XID(par, parentxid, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2714,7 +2608,6 @@ xml_dump_group(hid_t gid, const char *name) xml_name_to_XID(par, parentxid, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2738,7 +2631,6 @@ xml_dump_group(hid_t gid, const char *name) xml_name_to_XID("/", grpxid, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2754,7 +2646,6 @@ xml_dump_group(hid_t gid, const char *name) xml_name_to_XID(par, parentxid, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2824,7 +2715,6 @@ xml_dump_group(hid_t gid, const char *name) char *parentxid = (char *)HDmalloc((size_t)100); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -2897,7 +2787,6 @@ xml_dump_group(hid_t gid, const char *name) } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3024,7 +2913,6 @@ xml_print_refs(hid_t did, int source) if (!path) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3035,7 +2923,6 @@ xml_print_refs(hid_t did, int source) char *t_path = xml_escape_the_string(path, -1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3181,7 +3068,6 @@ xml_print_strs(hid_t did, int source) if (!onestring) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3289,7 +3175,6 @@ check_filters(hid_t dcpl) if (filter == H5Z_FILTER_DEFLATE) { ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3308,7 +3193,6 @@ check_filters(hid_t dcpl) else if (filter == H5Z_FILTER_FLETCHER32) { ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3319,7 +3203,6 @@ check_filters(hid_t dcpl) else if (filter == H5Z_FILTER_SHUFFLE) { ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3331,7 +3214,6 @@ check_filters(hid_t dcpl) ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3425,7 +3307,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3443,7 +3324,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) const char * path = lookup_ref_path(*(hobj_ref_t *) buf); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3451,7 +3331,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); if (!path) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3462,7 +3341,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) char *t_path = xml_escape_the_string(path, -1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3472,7 +3350,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3482,7 +3359,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) else if (H5Tget_class(type) == H5T_STRING) { /* ????? */ ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3490,7 +3366,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3502,7 +3377,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) switch (H5Tget_class(type)) { case H5T_INTEGER: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3518,7 +3392,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3527,7 +3400,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_FLOAT: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3543,7 +3415,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3553,7 +3424,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) case H5T_BITFIELD: case H5T_OPAQUE: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3575,7 +3445,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3584,7 +3453,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_ENUM: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3602,7 +3470,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) if(name) H5free_memory(name); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3611,7 +3478,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_ARRAY: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3619,7 +3485,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3628,7 +3493,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_TIME: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3636,7 +3500,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3645,7 +3508,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_COMPOUND: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3653,7 +3515,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3662,7 +3523,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) break; case H5T_VLEN: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3670,7 +3530,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3683,7 +3542,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) case H5T_REFERENCE: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3691,7 +3549,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3705,7 +3562,6 @@ xml_dump_fill_value(hid_t dcpl, hid_t type) dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3792,7 +3648,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s xml_name_to_XID(prefix, pstr, 100, 1); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3827,7 +3682,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3837,7 +3691,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3852,7 +3705,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s for (i = 0; i < ndims; i++) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3861,7 +3713,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3875,7 +3726,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3886,7 +3736,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3896,7 +3745,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3911,7 +3759,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3920,7 +3767,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3929,7 +3775,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3941,7 +3786,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3950,7 +3794,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3959,7 +3802,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -3975,7 +3817,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4024,7 +3865,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent += COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4036,7 +3876,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4049,7 +3888,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4060,7 +3898,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4113,7 +3950,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4121,7 +3957,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4129,7 +3964,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4137,7 +3971,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4149,7 +3982,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s case H5T_COMPOUND: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4165,7 +3997,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s case H5T_REFERENCE: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4173,7 +4004,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); if (!H5Tequal(type, H5T_STD_REF_OBJ)) { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4181,7 +4011,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4190,7 +4019,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s } else { ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4200,7 +4028,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s xml_print_refs(did, DATASET_DATA); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4209,7 +4036,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s } ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4221,7 +4047,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level--; dump_indent -= COL; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4240,7 +4065,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s case H5T_NCLASSES: default: ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4248,7 +4072,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4256,7 +4079,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4264,7 +4086,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4278,7 +4099,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4287,7 +4107,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level++; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4296,7 +4115,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4310,7 +4128,6 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED * s H5Pclose(dcpl); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4376,7 +4193,6 @@ xml_print_enum(hid_t type) super = H5Tget_super(type); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4386,7 +4202,6 @@ xml_print_enum(hid_t type) xml_print_datatype(super,0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4437,7 +4252,6 @@ xml_print_enum(hid_t type) char *t_name = xml_escape_the_name(name[i]); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4455,7 +4269,6 @@ xml_print_enum(hid_t type) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4463,7 +4276,6 @@ xml_print_enum(hid_t type) h5tools_render_element(rawoutstream, outputformat, &ctx, &buffer, &curr_pos, (size_t)outputformat->line_ncols, (hsize_t)0, (hsize_t)0); ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); @@ -4493,7 +4305,6 @@ xml_print_enum(hid_t type) ctx.indent_level--; ctx.need_prefix = TRUE; - h5tools_simple_prefix(rawoutstream, outputformat, &ctx, (hsize_t)0, 0); /* Render the element */ h5tools_str_reset(&buffer); diff --git a/tools/lib/h5tools_dump.c b/tools/lib/h5tools_dump.c index 31c54d3..7ec5da8 100644 --- a/tools/lib/h5tools_dump.c +++ b/tools/lib/h5tools_dump.c @@ -2060,7 +2060,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); @@ -2071,7 +2070,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ h5tools_render_element(stream, info, ctx, buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); @@ -2111,7 +2109,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ h5tools_render_element(stream, info, ctx, buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); @@ -2150,7 +2147,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ h5tools_render_element(stream, info, ctx, buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); @@ -2225,7 +2221,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); if(H5Tclose(str_type) < 0) @@ -2268,7 +2263,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ H5E_THROW(FAIL, H5E_tools_min_id_g, "H5Tget_tag failed"); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_str_append(buffer, "OPAQUE_TAG \"%s\";", ttag); @@ -2279,7 +2273,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_str_append(buffer, "%s", h5tools_dump_header_format->structblockend); @@ -2298,7 +2291,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ mname = H5Tget_member_name(type, i); if((mtype = H5Tget_member_type(type, i)) >= 0) { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_print_datatype(stream, buffer, info, ctx, mtype, TRUE); @@ -2315,7 +2307,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_str_append(buffer, "%s", h5tools_dump_header_format->structblockend); @@ -2340,7 +2331,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_print_datatype(stream, buffer, info, ctx, super, TRUE); @@ -2356,7 +2346,6 @@ h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer, const h5tool_format_ ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(buffer); h5tools_str_append(buffer, "%s", h5tools_dump_header_format->enumblockend); @@ -2772,7 +2761,6 @@ h5tools_dump_oid(FILE *stream, const h5tool_format_t *info, ncols = info->line_ncols; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s %d %s", OBJID, BEGIN, oid, END); @@ -2862,7 +2850,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, *------------------------------------------------------------------------- */ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s", STORAGE_LAYOUT, BEGIN); @@ -2873,7 +2860,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, case H5D_CHUNKED: ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s ", CHUNKED); @@ -2886,7 +2872,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t) ncols, (hsize_t) 0, (hsize_t) 0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); @@ -2942,14 +2927,12 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, case H5D_COMPACT: ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", COMPACT); h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t) ncols, (hsize_t) 0, (hsize_t) 0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "SIZE " HSIZE_T_FORMAT, storage_size); @@ -2969,14 +2952,12 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; if (next) { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", CONTIGUOUS); h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t) ncols, (hsize_t) 0, (hsize_t) 0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s", EXTERNAL, BEGIN); @@ -2987,7 +2968,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, H5Pget_external(dcpl_id, j, sizeof(name), name, &offset, &size); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "FILENAME %s SIZE " HSIZE_T_FORMAT, name, size); @@ -2997,7 +2977,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3007,21 +2986,18 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, haddr_t ioffset; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", CONTIGUOUS); h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t) ncols, (hsize_t) 0, (hsize_t) 0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer,"SIZE " HSIZE_T_FORMAT, storage_size); h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t) ncols, (hsize_t) 0, (hsize_t) 0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); ioffset = H5Dget_offset(obj_id); @@ -3041,7 +3017,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, }/*switch*/ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3053,7 +3028,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, */ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s", FILTERS, BEGIN); @@ -3071,7 +3045,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, continue; /* nothing to print for invalid filter */ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); switch(filtn) { @@ -3097,14 +3070,12 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "PIXELS_PER_BLOCK %d", szip_pixels_per_block); h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); if(szip_options_mask & H5_SZIP_CHIP_OPTION_MASK) @@ -3114,7 +3085,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); if(szip_options_mask & H5_SZIP_EC_OPTION_MASK) @@ -3124,7 +3094,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); if(szip_options_mask & H5_SZIP_LSB_OPTION_MASK) @@ -3135,7 +3104,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, if(szip_options_mask & H5_SZIP_RAW_OPTION_MASK) { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "HEADER %s", "RAW"); @@ -3145,7 +3113,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3166,7 +3133,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "FILTER_ID %d", filtn); @@ -3174,7 +3140,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, if(f_name[0] != '\0') { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "COMMENT %s", f_name); @@ -3182,7 +3147,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, } if (cd_nelmts) { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s ","PARAMS", BEGIN); @@ -3194,7 +3158,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3206,7 +3169,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, else { ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "NONE"); @@ -3215,7 +3177,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3226,7 +3187,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, *------------------------------------------------------------------------- */ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s", FILLVALUE, BEGIN); @@ -3235,7 +3195,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "FILL_TIME "); @@ -3259,7 +3218,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s ", "VALUE "); @@ -3285,7 +3243,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3296,7 +3253,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, *------------------------------------------------------------------------- */ ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "ALLOCATION_TIME %s", BEGIN); @@ -3305,7 +3261,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); H5Pget_alloc_time(dcpl_id, &at); @@ -3330,7 +3285,6 @@ h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info, ctx->indent_level--; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s", END); @@ -3423,7 +3377,6 @@ h5tools_dump_attribute(FILE *stream, const h5tool_format_t *info, ncols = info->line_ncols; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, curr_pos, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s \"%s\" %s", @@ -3460,7 +3413,6 @@ h5tools_dump_attribute(FILE *stream, const h5tool_format_t *info, } ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); @@ -3579,7 +3531,6 @@ h5tools_dump_subsetting_header(FILE *stream, const h5tool_format_t *info, ncols = info->line_ncols; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s", h5tools_dump_header_format->subsettingbegin, h5tools_dump_header_format->subsettingblockbegin); @@ -3588,7 +3539,6 @@ h5tools_dump_subsetting_header(FILE *stream, const h5tool_format_t *info, ctx->indent_level++; ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s ", h5tools_dump_header_format->startbegin, h5tools_dump_header_format->startblockbegin); @@ -3597,7 +3547,6 @@ h5tools_dump_subsetting_header(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s ", h5tools_dump_header_format->stridebegin, h5tools_dump_header_format->strideblockbegin); @@ -3606,7 +3555,6 @@ h5tools_dump_subsetting_header(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s ", h5tools_dump_header_format->countbegin, h5tools_dump_header_format->countblockbegin); @@ -3620,7 +3568,6 @@ h5tools_dump_subsetting_header(FILE *stream, const h5tool_format_t *info, h5tools_render_element(stream, info, ctx, &buffer, &curr_pos, (size_t)ncols, (hsize_t)0, (hsize_t)0); ctx->need_prefix = TRUE; - h5tools_simple_prefix(stream, info, ctx, (hsize_t)0, 0); h5tools_str_reset(&buffer); h5tools_str_append(&buffer, "%s %s ", h5tools_dump_header_format->blockbegin, h5tools_dump_header_format->blockblockbegin); -- cgit v0.12 From b0cb6af193c76935b91f1b14ed03bbd748c9b212 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 28 Jan 2018 21:39:57 -0600 Subject: Snapshot version 1.8 release 21 (snap4) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index 2281894..9af5df4 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap4 currently under development +HDF5 version 1.8.21-snap5 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index f3a2180..60a61b8 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap4, currently under development" +PROJECT_NUMBER = "1.8.21-snap5, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index e6e0936..492d883 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap4") +set (CTEST_SOURCE_VERSEXT "-snap5") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index 6284a02..ceb7f0b 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap4], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap5], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 3f30ef2..ff16bb6 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap4 currently under development +HDF5 version 1.8.21-snap5 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index a6001d9..acca700 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap4" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap5" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap4" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap5" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 9e311657771d7aaa59bf941d6d6494369f4181ff Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 29 Jan 2018 11:33:11 -0600 Subject: Fix windows and mac compile issues --- CMakeLists.txt | 81 +++----------------------------- config/cmake/libhdf5.settings.cmake.in | 2 +- config/cmake_ext_mod/HDFMacros.cmake | 84 +++++++++++++++++++++++++++++++++- fortran/src/CMakeLists.txt | 10 ++-- 4 files changed, 95 insertions(+), 82 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 564c091..11bd2e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,44 +183,6 @@ set (HDF5_TOOLS_SRC_DIR ${HDF5_SOURCE_DIR}/tools) set (HDF5_PERFORM_SRC_DIR ${HDF5_SOURCE_DIR}/tools/perform) set (HDF5_F90_SRC_DIR ${HDF5_SOURCE_DIR}/fortran) -if (APPLE) - option (HDF5_BUILD_FRAMEWORKS "TRUE to build as frameworks libraries, FALSE to build according to BUILD_SHARED_LIBS" FALSE) -endif () - -if (NOT HDF5_INSTALL_BIN_DIR) - set (HDF5_INSTALL_BIN_DIR bin) -endif () -if (NOT HDF5_INSTALL_LIB_DIR) - if (APPLE) - set (HDF5_INSTALL_FMWK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) - endif () - set (HDF5_INSTALL_LIB_DIR lib) -endif () -if (NOT HDF5_INSTALL_INCLUDE_DIR) - set (HDF5_INSTALL_INCLUDE_DIR include) -endif () -if (NOT HDF5_INSTALL_DATA_DIR) - if (NOT WIN32) - if (APPLE) - if (HDF5_BUILD_FRAMEWORKS) - set (HDF5_INSTALL_EXTRA_DIR ../SharedSupport) - else () - set (HDF5_INSTALL_EXTRA_DIR share) - endif () - set (HDF5_INSTALL_FWRK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) - endif () - set (HDF5_INSTALL_DATA_DIR share) - set (HDF5_INSTALL_CMAKE_DIR share/cmake) - else () - set (HDF5_INSTALL_DATA_DIR ".") - set (HDF5_INSTALL_CMAKE_DIR cmake) - endif () -endif () - -if (DEFINED ADDITIONAL_CMAKE_PREFIX_PATH AND EXISTS "${ADDITIONAL_CMAKE_PREFIX_PATH}") - set (CMAKE_PREFIX_PATH ${ADDITIONAL_CMAKE_PREFIX_PATH} ${CMAKE_PREFIX_PATH}) -endif () - #----------------------------------------------------------------------------- # parse the full version number from H5public.h and include in H5_VERS_INFO #----------------------------------------------------------------------------- @@ -325,46 +287,15 @@ set (HDF5_PACKAGE_BUGREPORT "help@hdfgroup.org") # Include some macros for reusable code #----------------------------------------------------------------------------- include (${HDF_RESOURCES_EXT_DIR}/HDFMacros.cmake) -include (${HDF_RESOURCES_EXT_DIR}/HDFLibMacros.cmake) -include (${HDF_RESOURCES_DIR}/HDF5Macros.cmake) -SET_HDF_BUILD_TYPE() +HDF_DIR_PATHS(${HDF5_PACKAGE_NAME}) -#----------------------------------------------------------------------------- -# Setup output Directories -#----------------------------------------------------------------------------- -if (NOT HDF5_EXTERNALLY_CONFIGURED) - set (CMAKE_RUNTIME_OUTPUT_DIRECTORY - ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Executables." - ) - set (CMAKE_LIBRARY_OUTPUT_DIRECTORY - ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Libraries" - ) - set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY - ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all static libraries." - ) - set (CMAKE_Fortran_MODULE_DIRECTORY - ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all fortran modules." - ) - if (WIN32) - set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) - set (CMAKE_PDB_OUTPUT_DIRECTORY - ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all pdb files." - ) - else () - set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) - endif () -else () - # if we are externally configured, but the project uses old cmake scripts - # this may not be set and utilities like H5detect will fail - if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY) - set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}) - endif () -endif () +include (${HDF_RESOURCES_EXT_DIR}/HDFLibMacros.cmake) +include (${HDF_RESOURCES_DIR}/HDF5Macros.cmake) #----------------------------------------------------------------------------- # Targets built within this project are exported at Install time for use -# by other projects using FindHDF5. +# by other projects. #----------------------------------------------------------------------------- if (NOT HDF5_EXPORTED_TARGETS) set (HDF5_EXPORTED_TARGETS "hdf5-targets") @@ -651,13 +582,13 @@ add_subdirectory (${HDF5_SOURCE_DIR}/src ${PROJECT_BINARY_DIR}/src) if (HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT" OR HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") if (ZLIB_FOUND AND ZLIB_USE_EXTERNAL) - ADD_DEPENDENCIES (${HDF5_LIB_TARGET} ZLIB) + add_dependencies (${HDF5_LIB_TARGET} ZLIB) if (BUILD_SHARED_LIBS) add_dependencies (${HDF5_LIBSH_TARGET} ZLIB) endif () endif () if (SZIP_FOUND AND SZIP_USE_EXTERNAL) - ADD_DEPENDENCIES (${HDF5_LIB_TARGET} SZIP) + add_dependencies (${HDF5_LIB_TARGET} SZIP) if (BUILD_SHARED_LIBS) add_dependencies (${HDF5_LIBSH_TARGET} SZIP) endif () diff --git a/config/cmake/libhdf5.settings.cmake.in b/config/cmake/libhdf5.settings.cmake.in index 5d97172..8ef67a5 100644 --- a/config/cmake/libhdf5.settings.cmake.in +++ b/config/cmake/libhdf5.settings.cmake.in @@ -15,7 +15,7 @@ General Information: Compiling Options: ------------------ - Compilation Mode: @HDF_BUILD_TYPE@ + Compilation Mode: @CMAKE_BUILD_TYPE@ C Compiler: @CMAKE_C_COMPILER@ CFLAGS: @CMAKE_C_FLAGS@ H5_CFLAGS: @H5_CFLAGS@ diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 1326420..4097ca9 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -166,7 +166,7 @@ macro (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) if (${importtype} MATCHES "IMPORT") set (importprefix "${CMAKE_STATIC_LIBRARY_PREFIX}") endif () - if (${HDF_CFG_NAME} MATCHES "Debug") + if (${CMAKE_BUILD_TYPE} MATCHES "Debug") set (IMPORT_LIB_NAME ${LIB_DEBUG_NAME}) else () set (IMPORT_LIB_NAME ${LIB_RELEASE_NAME}) @@ -331,3 +331,85 @@ macro (HDFTEST_COPY_FILE src dest target) ) list (APPEND ${target}_list "${dest}") endmacro () + +macro (HDF_DIR_PATHS package_prefix) + if (APPLE) + option (${package_prefix}_BUILD_FRAMEWORKS "TRUE to build as frameworks libraries, FALSE to build according to BUILD_SHARED_LIBS" FALSE) + endif () + + if (NOT ${package_prefix}_INSTALL_BIN_DIR) + set (${package_prefix}_INSTALL_BIN_DIR bin) + endif () + if (NOT ${package_prefix}_INSTALL_LIB_DIR) + if (APPLE) + if (${package_prefix}_BUILD_FRAMEWORKS) + set (${package_prefix}_INSTALL_JAR_DIR ../Java) + else () + set (${package_prefix}_INSTALL_JAR_DIR lib) + endif () + set (${package_prefix}_INSTALL_FMWK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) + else () + set (${package_prefix}_INSTALL_JAR_DIR lib) + endif () + set (${package_prefix}_INSTALL_LIB_DIR lib) + endif () + if (NOT ${package_prefix}_INSTALL_INCLUDE_DIR) + set (${package_prefix}_INSTALL_INCLUDE_DIR include) + endif () + if (NOT ${package_prefix}_INSTALL_DATA_DIR) + if (NOT WIN32) + if (APPLE) + if (${package_prefix}_BUILD_FRAMEWORKS) + set (${package_prefix}_INSTALL_EXTRA_DIR ../SharedSupport) + else () + set (${package_prefix}_INSTALL_EXTRA_DIR share) + endif () + set (${package_prefix}_INSTALL_FWRK_DIR ${CMAKE_INSTALL_FRAMEWORK_PREFIX}) + endif () + set (${package_prefix}_INSTALL_DATA_DIR share) + set (${package_prefix}_INSTALL_CMAKE_DIR share/cmake) + else () + set (${package_prefix}_INSTALL_DATA_DIR ".") + set (${package_prefix}_INSTALL_CMAKE_DIR cmake) + endif () + endif () + + if (DEFINED ADDITIONAL_CMAKE_PREFIX_PATH AND EXISTS "${ADDITIONAL_CMAKE_PREFIX_PATH}") + set (CMAKE_PREFIX_PATH ${ADDITIONAL_CMAKE_PREFIX_PATH} ${CMAKE_PREFIX_PATH}) + endif () + + SET_HDF_BUILD_TYPE() + +#----------------------------------------------------------------------------- +# Setup output Directories +#----------------------------------------------------------------------------- + if (NOT ${package_prefix}_EXTERNALLY_CONFIGURED) + set (CMAKE_RUNTIME_OUTPUT_DIRECTORY + ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Executables." + ) + set (CMAKE_LIBRARY_OUTPUT_DIRECTORY + ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Libraries" + ) + set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY + ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all static libraries." + ) + set (CMAKE_Fortran_MODULE_DIRECTORY + ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all fortran modules." + ) + if (WIN32) + set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) + set (CMAKE_PDB_OUTPUT_DIRECTORY + ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all pdb files." + ) + else () + set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CTEST_CONFIGURATION_TYPE}) + endif () + else () + # if we are externally configured, but the project uses old cmake scripts + # this may not be set and utilities like H5detect will fail + if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY) + set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}) + endif () + endif () +endmacro () + diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 4d98b81..59acaf0 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -4,7 +4,7 @@ PROJECT (HDF5_F90_SRC C CXX Fortran) #----------------------------------------------------------------------------- # configure def file for shared libs on windows if (WIN32) - if (BUILD_SHARED_LIBS) + if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) if (MSVC) if (NOT H5_HAVE_PARALLEL) set (H5_NOPAREXP ";") @@ -58,7 +58,7 @@ else () endif () endif () if (WIN32 AND MSVC) - if (BUILD_SHARED_LIBS) + if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set_target_properties (H5test_FortranHavekind-shared PROPERTIES COMPILE_FLAGS "/MT" @@ -93,7 +93,7 @@ add_executable (H5fortran_detect ${HDF5_F90_BINARY_DIR}/H5fortran_detect.f90 ) if (WIN32 AND MSVC) - if (BUILD_SHARED_LIBS) + if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set_target_properties (H5fortran_detect PROPERTIES COMPILE_FLAGS "/MT" @@ -139,7 +139,7 @@ add_custom_command ( ) set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h PROPERTIES GENERATED TRUE) set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 PROPERTIES GENERATED TRUE) -if (BUILD_SHARED_LIBS) +if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) set (CMDSH $) add_custom_command ( OUTPUT ${HDF5_F90_BINARY_DIR}/shared/H5f90i_gen.h @@ -197,7 +197,7 @@ set_target_properties (${HDF5_F90_C_LIB_TARGET} PROPERTIES ) set (install_targets ${HDF5_F90_C_LIB_TARGET}) -if (BUILD_SHARED_LIBS) +if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) add_library (${HDF5_F90_C_LIBSH_TARGET} SHARED ${f90CStub_C_SOURCES} ${f90CStub_C_SHHDRS}) target_include_directories(${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR}/shared) TARGET_C_PROPERTIES (${HDF5_F90_C_LIBSH_TARGET} SHARED " " " ") -- cgit v0.12 From c382cdc13679d5350b93f61d94cbcf819a857f4d Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 29 Jan 2018 12:55:20 -0600 Subject: Update CMake usage --- config/cmake/CTestScript.cmake | 7 -- config/cmake/HDF518_Examples.cmake.in | 6 +- config/cmake/scripts/CTestScript.cmake | 7 -- config/cmake/scripts/HDF5config.cmake | 39 +----- config/cmake/scripts/HDF5options.cmake | 20 +++ release_docs/USING_HDF5_CMake.txt | 215 +++++++++++++++++++-------------- 6 files changed, 147 insertions(+), 147 deletions(-) diff --git a/config/cmake/CTestScript.cmake b/config/cmake/CTestScript.cmake index c59b10c..a8b7bbc 100644 --- a/config/cmake/CTestScript.cmake +++ b/config/cmake/CTestScript.cmake @@ -63,13 +63,6 @@ if (APPLE) set (ENV{CC} "${XCODE_CC}") set (ENV{CXX} "${XCODE_CXX}") - if (NOT NO_MAC_FORTRAN) - # Shared fortran is not supported, build static - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") - else () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=OFF") - endif () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DCTEST_USE_LAUNCHERS:BOOL=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=OFF") endif () diff --git a/config/cmake/HDF518_Examples.cmake.in b/config/cmake/HDF518_Examples.cmake.in index a239ded..1aedda3 100644 --- a/config/cmake/HDF518_Examples.cmake.in +++ b/config/cmake/HDF518_Examples.cmake.in @@ -66,7 +66,7 @@ endif() if(NOT DEFINED CTEST_BUILD_NAME) set(CTEST_BUILD_NAME "examples") endif() -set(BUILD_OPTIONS "${BUILD_OPTIONS} -DSITE:STRING=${CTEST_SITE} -DBUILDNAME:STRING=${CTEST_BUILD_NAME}") +set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DSITE:STRING=${CTEST_SITE} -DBUILDNAME:STRING=${CTEST_BUILD_NAME}") #TAR_SOURCE - name of tarfile #if(NOT DEFINED TAR_SOURCE) @@ -88,9 +88,9 @@ else() set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_BINARY_NAME}") endif() if(${CDASH_LOCAL}) - set(BUILD_OPTIONS "${BUILD_OPTIONS} -DCDASH_LOCAL:BOOL=ON") + set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCDASH_LOCAL:BOOL=ON") endif() -set(BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF5_PACKAGE_NAME:STRING=@HDF5_PACKAGE@@HDF_PACKAGE_EXT@") +set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_PACKAGE_NAME:STRING=@HDF5_PACKAGE@@HDF_PACKAGE_EXT@") ############################################################################################################### # For any comments please contact cdashhelp@hdfgroup.org diff --git a/config/cmake/scripts/CTestScript.cmake b/config/cmake/scripts/CTestScript.cmake index 3cb9a5e..f826e31 100755 --- a/config/cmake/scripts/CTestScript.cmake +++ b/config/cmake/scripts/CTestScript.cmake @@ -64,13 +64,6 @@ if (APPLE) set (ENV{CC} "${XCODE_CC}") set (ENV{CXX} "${XCODE_CXX}") - if (NOT NO_MAC_FORTRAN) - # Shared fortran is not supported, build static - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") - else () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=OFF") - endif () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DCTEST_USE_LAUNCHERS:BOOL=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=OFF") endif () diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 492d883..a19ad3d 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -32,9 +32,6 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) # INSTALLDIR - root folder where hdf5 is installed # CTEST_CONFIGURATION_TYPE - Release, Debug, etc # CTEST_SOURCE_NAME - source folder -# STATIC_ONLY - Build/use static libraries -# FORTRAN_LIBRARIES - Build/use fortran libraries -# NO_MAC_FORTRAN - Yes to be SHARED on a Mac ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") @@ -46,9 +43,6 @@ set (CTEST_SOURCE_VERSEXT "-snap5") #INSTALLDIR - HDF5-1.8 root folder #CTEST_CONFIGURATION_TYPE - Release, Debug, RelWithDebInfo #CTEST_SOURCE_NAME - name of source folder; HDF5-1.8.20 -#STATIC_ONLY - Default is YES -#FORTRAN_LIBRARIES - Default is NO -#NO_MAC_FORTRAN - set to TRUE to allow shared libs on a Mac if (DEFINED CTEST_SCRIPT_ARG) # transform ctest script arguments of the form # script.ctest,var1=value1,var2=value2 @@ -68,6 +62,7 @@ endif () ################################################################### ### Following Line is one of [Release, RelWithDebInfo, Debug] ##### +### (default use command line -C value) set (CTEST_CONFIGURATION_TYPE "$ENV{CMAKE_CONFIG_TYPE}") ################################################################### @@ -84,16 +79,6 @@ endif () if (NOT DEFINED CTEST_SOURCE_NAME) set (CTEST_SOURCE_NAME "hdf5-${CTEST_SOURCE_VERSION}${CTEST_SOURCE_VERSEXT}") endif () -if (NOT DEFINED STATIC_ONLY) - set (STATICONLYLIBRARIES "YES") -else () - set (STATICONLYLIBRARIES "NO") -endif () -if (NOT DEFINED FORTRAN_LIBRARIES) - set (FORTRANLIBRARIES "NO") -else () - set(FORTRANLIBRARIES "YES") -endif () set (CTEST_BINARY_NAME "build") set (CTEST_DASHBOARD_ROOT "${CTEST_SCRIPT_DIRECTORY}") @@ -205,28 +190,6 @@ set (REPOSITORY_BRANCH "hdf5_1_8_20") #set(CTEST_USE_TAR_SOURCE "${CTEST_SOURCE_VERSION}") ################################################################### -################################################################### -if (${STATICONLYLIBRARIES}) - set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF") - ######### Following describes computer ############ - ## following is optional to describe build ## - set (SITE_BUILDNAME_SUFFIX "STATIC") -endif () -################################################################### -#### fortran #### -if (${FORTRANLIBRARIES}) - set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=ON") - ### enable Fortran 2003 depends on HDF5_BUILD_FORTRAN - set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_F2003:BOOL=ON") -else () - set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=OFF") - ### enable Fortran 2003 depends on HDF5_BUILD_FORTRAN - set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_F2003:BOOL=OFF") -endif () - -### change install prefix -set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCMAKE_INSTALL_PREFIX:PATH=${INSTALLDIR}") -set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCTEST_CONFIGURATION_TYPE:STRING=$ENV{CMAKE_CONFIG_TYPE}") ################################################################### diff --git a/config/cmake/scripts/HDF5options.cmake b/config/cmake/scripts/HDF5options.cmake index b090434..23477ff 100644 --- a/config/cmake/scripts/HDF5options.cmake +++ b/config/cmake/scripts/HDF5options.cmake @@ -21,6 +21,26 @@ #set(CMAKE_GENERATOR_TOOLSET "Intel C++ Compiler 17.0") ############################################################################################# +#### Only build static libraries #### +#set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF") +#### Add PICC option on linux/mac #### +#set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") + +############################################################################################# +#### fortran enabled #### +#set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=ON") + ### enable Fortran 2003 depends on HDF5_BUILD_FORTRAN +#set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_F2003:BOOL=ON") +#### fortran disabled #### +set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=OFF") + ### enable Fortran 2003 depends on HDF5_BUILD_FORTRAN +set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_F2003:BOOL=OFF") + +############################################################################################# +### change install prefix (default use INSTALLDIR value) +set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCMAKE_INSTALL_PREFIX:PATH=${INSTALLDIR}") + +############################################################################################# #### ext libraries #### ### ext libs from tgz diff --git a/release_docs/USING_HDF5_CMake.txt b/release_docs/USING_HDF5_CMake.txt index ce12528..dbd2ddc 100644 --- a/release_docs/USING_HDF5_CMake.txt +++ b/release_docs/USING_HDF5_CMake.txt @@ -219,68 +219,74 @@ NOTE: this file is available at the HDF web site: http://www.hdfgroup.org/HDF5/release/cmakebuild.html HDF518_Examples.cmake + HDF5_Examples_options.cmake Also available at the HDF web site is a CMake application framework template. You can quickly add files to the framework and execute the script to compile your application with an installed HDF5 binary. ======================================================================== -ctest +ctest use of HDF518_Examples.cmake and HDF5_Examples_options.cmake ======================================================================== cmake_minimum_required(VERSION 3.2.2 FATAL_ERROR) ############################################################################################################### # This script will build and run the examples from a folder # Execute from a command line: -# ctest -S HDF5_Examples.cmake,OPTION=VALUE -C Release -V -O test.log +# ctest -S HDF518_Examples.cmake,OPTION=VALUE -C Release -V -O test.log ############################################################################################################### -set (CTEST_CMAKE_GENERATOR "@CMAKE_GENERATOR@") -set (CTEST_DASHBOARD_ROOT ${CTEST_SCRIPT_DIRECTORY}) +set(CTEST_CMAKE_GENERATOR "@CMAKE_GENERATOR@") +if("@CMAKE_GENERATOR_TOOLSET@") + set(CMAKE_GENERATOR_TOOLSET "@CMAKE_GENERATOR_TOOLSET@") +endif() +set(CTEST_DASHBOARD_ROOT ${CTEST_SCRIPT_DIRECTORY}) # handle input parameters to script. #INSTALLDIR - HDF5 root folder #CTEST_CONFIGURATION_TYPE - Release, Debug, RelWithDebInfo -#CTEST_SOURCE_NAME - name of source folder; HDF4Examples -#STATIC_ONLY - Default is YES -#FORTRAN_LIBRARIES - Default is NO -#JAVA_LIBRARIES - Default is NO -##NO_MAC_FORTRAN - set to TRUE to allow shared libs on a Mac) -if (DEFINED CTEST_SCRIPT_ARG) - # transform ctest script arguments of the form - # script.ctest,var1=value1,var2=value2 - # to variables with the respective names set to the respective values - string (REPLACE "," ";" script_args "${CTEST_SCRIPT_ARG}") - foreach (current_var ${script_args}) - if ("${current_var}" MATCHES "^([^=]+)=(.+)$") - set("${CMAKE_MATCH_1}" "${CMAKE_MATCH_2}") - endif () - endforeach () -endif () -if (NOT DEFINED INSTALLDIR) - set (INSTALLDIR "@CMAKE_INSTALL_PREFIX@") -endif () -if (NOT DEFINED CTEST_CONFIGURATION_TYPE) - set (CTEST_CONFIGURATION_TYPE "Release") -endif () -if (NOT DEFINED CTEST_SOURCE_NAME) - set (CTEST_SOURCE_NAME "HDF5Examples") -endif () -if (NOT DEFINED STATIC_ONLY) - set (STATICONLYLIBRARIES "YES") -else () - set (STATICONLYLIBRARIES "NO") -endif () -if (NOT DEFINED FORTRAN_LIBRARIES) - set (FORTRANLIBRARIES "NO") -else () - set (FORTRANLIBRARIES "YES") -endif () -if (NOT DEFINED JAVA_LIBRARIES) - set (JAVALIBRARIES "NO") -else () - set (JAVALIBRARIES "YES") -endif () +#CTEST_SOURCE_NAME - name of source folder; HDF5Examples +if(DEFINED CTEST_SCRIPT_ARG) + # transform ctest script arguments of the form + # script.ctest,var1=value1,var2=value2 + # to variables with the respective names set to the respective values + string(REPLACE "," ";" script_args "${CTEST_SCRIPT_ARG}") + foreach(current_var ${script_args}) + if("${current_var}" MATCHES "^([^=]+)=(.+)$") + set("${CMAKE_MATCH_1}" "${CMAKE_MATCH_2}") + endif() + endforeach() +endif() + +################################################################### +### Following Line is one of [Release, RelWithDebInfo, Debug] ##### +set(CTEST_CONFIGURATION_TYPE "$ENV{CMAKE_CONFIG_TYPE}") +if(NOT DEFINED CTEST_CONFIGURATION_TYPE) + set(CTEST_CONFIGURATION_TYPE "Release") +endif() +set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCTEST_CONFIGURATION_TYPE:STRING=${CTEST_CONFIGURATION_TYPE}") +################################################################## + +if(NOT DEFINED INSTALLDIR) + set(INSTALLDIR "@CMAKE_INSTALL_PREFIX@") +endif() + +if(NOT DEFINED CTEST_SOURCE_NAME) + set(CTEST_SOURCE_NAME "HDF5Examples") +endif() + +if(NOT DEFINED HDF_LOCAL) + set(CDASH_LOCAL "NO") +else() + set(CDASH_LOCAL "YES") +endif() +if(NOT DEFINED CTEST_SITE) + set(CTEST_SITE "local") +endif() +if(NOT DEFINED CTEST_BUILD_NAME) + set(CTEST_BUILD_NAME "examples") +endif() +set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DSITE:STRING=${CTEST_SITE} -DBUILDNAME:STRING=${CTEST_BUILD_NAME}") #TAR_SOURCE - name of tarfile #if (NOT DEFINED TAR_SOURCE) @@ -288,60 +294,38 @@ endif () #endif () ############################################################################################################### -# Adjust the following SET Commands as needed -############################################################################################################### -if (WIN32) - if (${STATICONLYLIBRARIES}) - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF") - endif () - set (ENV{HDF5_DIR} "${INSTALLDIR}/cmake") - set (CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}\\build) - set (CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_SOURCE_NAME}") - set (CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_BINARY_NAME}") -else (WIN32) - if (${STATICONLYLIBRARIES}) - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") - endif () - set (ENV{HDF5_DIR} "${INSTALLDIR}/share/cmake") - set (ENV{LD_LIBRARY_PATH} "${INSTALLDIR}/lib") - set (CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}/build) - set (CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_SOURCE_NAME}") - set (CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_BINARY_NAME}") -endif(WIN32) -if (${FORTRANLIBRARIES}) - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF_BUILD_FORTRAN:BOOL=ON") -else () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF_BUILD_FORTRAN:BOOL=OFF") -endif () -if (${JAVALIBRARIES}) - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF_BUILD_JAVA:BOOL=ON") -else () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF_BUILD_JAVA:BOOL=OFF") -endif () -set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF5_PACKAGE_NAME:STRING=@HDF5_PACKAGE@@HDF_PACKAGE_EXT@") +if(WIN32) + set(SITE_OS_NAME "Windows") + set(ENV{HDF5_DIR} "${INSTALLDIR}/cmake") + set(CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}\\build) + set(CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_SOURCE_NAME}") + set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_BINARY_NAME}") +else() + set(ENV{HDF5_DIR} "${INSTALLDIR}/share/cmake") + set(ENV{LD_LIBRARY_PATH} "${INSTALLDIR}/lib") + set(CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}/build) + set(CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_SOURCE_NAME}") + set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_BINARY_NAME}") +endif() +if(${CDASH_LOCAL}) + set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCDASH_LOCAL:BOOL=ON") +endif() +set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_PACKAGE_NAME:STRING=@HDF5_PACKAGE@@HDF_PACKAGE_EXT@") ############################################################################################################### # For any comments please contact cdashhelp@hdfgroup.org # ############################################################################################################### -#----------------------------------------------------------------------------- -# MAC machines need special option -#----------------------------------------------------------------------------- -if (APPLE) - # Compiler choice - execute_process (COMMAND xcrun --find cc OUTPUT_VARIABLE XCODE_CC OUTPUT_STRIP_TRAILING_WHITESPACE) - execute_process (COMMAND xcrun --find c++ OUTPUT_VARIABLE XCODE_CXX OUTPUT_STRIP_TRAILING_WHITESPACE) - set (ENV{CC} "${XCODE_CC}") - set (ENV{CXX} "${XCODE_CXX}") - if (NOT NO_MAC_FORTRAN) - # Shared fortran is not supported, build static - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") - else () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DHDF_BUILD_FORTRAN:BOOL=OFF") - endif () - set (BUILD_OPTIONS "${BUILD_OPTIONS} -DCTEST_USE_LAUNCHERS:BOOL=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=OFF") -endif () +############################################################################################# +#### Change default configuration of options in config/cmake/cacheinit.cmake file ### +#### format for file: set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DXXX:YY=ZZZZ") ### +############################################################################################# +if(WIN32) + include(${CTEST_SCRIPT_DIRECTORY}\\HDF5_Examples_options.cmake) +else() + include(${CTEST_SCRIPT_DIRECTORY}/HDF5_Examples_options.cmake) +endif() #----------------------------------------------------------------------------- set (CTEST_CMAKE_COMMAND "\"${CMAKE_COMMAND}\"") @@ -415,6 +399,53 @@ endif () #----------------------------------------------------------------------------- ############################################################################################################## +############################################################################################################## +#### HDF5_Examples_options.cmake ### +#### Change default configuration of options in config/cmake/cacheinit.cmake file ### +############################################################################################################## +############################################################################################# +#### Change default configuration of options in config/cmake/cacheinit.cmake file ### +#### format: set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DXXX:YY=ZZZZ") ### +#### DEFAULT: ### +#### BUILD_SHARED_LIBS:BOOL=OFF ### +#### HDF_BUILD_C:BOOL=ON ### +#### HDF_BUILD_CXX:BOOL=OFF ### +#### HDF_BUILD_FORTRAN:BOOL=OFF ### +#### BUILD_TESTING:BOOL=OFF ### +#### HDF_ENABLE_PARALLEL:BOOL=OFF ### +#### HDF_ENABLE_THREADSAFE:BOOL=OFF ### +############################################################################################# + +### uncomment/comment and change the following lines for other configuration options +### build with shared libraries +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=ON") + +############################################################################################# +#### languages #### +### disable C builds +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_BUILD_C:BOOL=OFF") + +### enable C++ builds +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_BUILD_CXX:BOOL=ON") + +### enable Fortran builds +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_BUILD_FORTRAN:BOOL=ON") + +############################################################################################# +### enable parallel program builds +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_ENABLE_PARALLEL:BOOL=ON") + +############################################################################################# +### enable threadsafe program builds +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF_ENABLE_THREADSAFE:BOOL=ON") + +############################################################################################# +### enable test program builds, requires reference files in testfiles subdirectory +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_TESTING:BOOL=ON") +#set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DCOMPARE_TESTING:BOOL=ON") + +############################################################################################# + ======================================================================== -- cgit v0.12 From 74cef485ae8026403a660308495fc364523c5f93 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 1 Feb 2018 11:05:59 -0600 Subject: HDFFV-10398 Merge from develop --- CMakeLists.txt | 32 +++--- MANIFEST | 1 - c++/CMakeLists.txt | 6 +- config/cmake/ConfigureChecks.cmake | 17 +-- config/cmake/ConversionTests.c | 167 +++++++++++++++-------------- config/cmake/HDFCompilerFlags.cmake | 4 +- config/cmake_ext_mod/CheckTypeSize.cmake | 61 ----------- config/cmake_ext_mod/ConfigureChecks.cmake | 28 ++--- config/cmake_ext_mod/HDFTests.c | 14 +++ fortran/CMakeLists.txt | 8 +- fortran/src/CMakeLists.txt | 12 +-- hl/CMakeLists.txt | 8 +- hl/c++/CMakeLists.txt | 6 +- hl/fortran/CMakeLists.txt | 6 +- hl/tools/CMakeLists.txt | 2 +- release_docs/RELEASE.txt | 10 ++ src/CMakeLists.txt | 12 ++- tools/CMakeLists.txt | 22 ++-- 18 files changed, 189 insertions(+), 227 deletions(-) delete mode 100644 config/cmake_ext_mod/CheckTypeSize.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 11bd2e8..e44b90f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -446,9 +446,13 @@ endif () #----------------------------------------------------------------------------- # Option to embed library info into executables #----------------------------------------------------------------------------- -option (HDF5_ENABLE_EMBEDDED_LIBINFO "embed library info into executables" ON) -if (HDF5_ENABLE_EMBEDDED_LIBINFO) - set (H5_HAVE_EMBEDDED_LIBINFO 1) +if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") + set (H5_HAVE_EMBEDDED_LIBINFO 0) +else () + option (HDF5_ENABLE_EMBEDDED_LIBINFO "embed library info into executables" ON) + if (HDF5_ENABLE_EMBEDDED_LIBINFO) + set (H5_HAVE_EMBEDDED_LIBINFO 1) + endif () endif () include (${HDF_RESOURCES_DIR}/HDFCompilerFlags.cmake) @@ -578,7 +582,7 @@ endif () #----------------------------------------------------------------------------- # Add the HDF5 Library Target to the build #----------------------------------------------------------------------------- -add_subdirectory (${HDF5_SOURCE_DIR}/src ${PROJECT_BINARY_DIR}/src) +add_subdirectory (src) if (HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT" OR HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") if (ZLIB_FOUND AND ZLIB_USE_EXTERNAL) @@ -626,12 +630,12 @@ if (BUILD_TESTING) if (NOT HDF5_EXTERNALLY_CONFIGURED) if (EXISTS "${HDF5_SOURCE_DIR}/test" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/test") - add_subdirectory (${HDF5_SOURCE_DIR}/tools/lib ${PROJECT_BINARY_DIR}/tools/lib) - add_subdirectory (${HDF5_SOURCE_DIR}/test ${PROJECT_BINARY_DIR}/test) + add_subdirectory (tools/lib) + add_subdirectory (test) endif () if (H5_HAVE_PARALLEL) if (EXISTS "${HDF5_SOURCE_DIR}/testpar" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/testpar") - add_subdirectory (${HDF5_SOURCE_DIR}/testpar ${PROJECT_BINARY_DIR}/testpar) + add_subdirectory (testpar) endif () endif () endif () @@ -643,7 +647,7 @@ endif () if (EXISTS "${HDF5_SOURCE_DIR}/tools" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/tools") option (HDF5_BUILD_TOOLS "Build HDF5 Tools" ON) if (HDF5_BUILD_TOOLS) - add_subdirectory (${HDF5_SOURCE_DIR}/tools ${PROJECT_BINARY_DIR}/tools) + add_subdirectory (tools) endif () endif () @@ -653,7 +657,7 @@ endif () if (EXISTS "${HDF5_SOURCE_DIR}/examples" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/examples") option (HDF5_BUILD_EXAMPLES "Build HDF5 Library Examples" ON) if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_SOURCE_DIR}/examples ${PROJECT_BINARY_DIR}/examples) + add_subdirectory (examples) endif () endif () @@ -664,7 +668,7 @@ if (EXISTS "${HDF5_SOURCE_DIR}/hl" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/hl") option (HDF5_BUILD_HL_LIB "Build HIGH Level HDF5 Library" ON) if (HDF5_BUILD_HL_LIB) set (H5_INCLUDE_HL 1) - add_subdirectory (${HDF5_SOURCE_DIR}/hl ${PROJECT_BINARY_DIR}/hl) + add_subdirectory (hl) endif () endif () @@ -708,11 +712,11 @@ if (EXISTS "${HDF5_SOURCE_DIR}/fortran" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/for endif () endif () - add_subdirectory (${HDF5_SOURCE_DIR}/fortran ${PROJECT_BINARY_DIR}/fortran) + add_subdirectory (fortran) if (HDF5_BUILD_HL_LIB) if (EXISTS "${HDF5_SOURCE_DIR}/hl/fortran" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/hl/fortran") #-- Build the High Level Fortran source codes - add_subdirectory (${HDF5_SOURCE_DIR}/hl/fortran ${PROJECT_BINARY_DIR}/hl/fortran) + add_subdirectory (hl/fortran) endif () endif () endif () @@ -735,11 +739,11 @@ if (EXISTS "${HDF5_SOURCE_DIR}/c++" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/c++") if (CMAKE_NO_STD_NAMESPACE) set (H5_NO_STD 1) endif () - add_subdirectory (${HDF5_SOURCE_DIR}/c++ ${PROJECT_BINARY_DIR}/c++) + add_subdirectory (c++) if (HDF5_BUILD_HL_LIB) if (EXISTS "${HDF5_SOURCE_DIR}/hl/c++" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/hl/c++") #-- Build the High Level Fortran source codes - add_subdirectory (${HDF5_SOURCE_DIR}/hl/c++ ${PROJECT_BINARY_DIR}/hl/c++) + add_subdirectory (hl/c++) endif () endif () endif () diff --git a/MANIFEST b/MANIFEST index ff188d1..d1a0f7f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2339,7 +2339,6 @@ ./config/cmake/userblockTest.cmake ./config/cmake/vfdTest.cmake -./config/cmake_ext_mod/CheckTypeSize.cmake ./config/cmake_ext_mod/ConfigureChecks.cmake ./config/cmake_ext_mod/CTestCustom.cmake ./config/cmake_ext_mod/FindMPI.cmake diff --git a/c++/CMakeLists.txt b/c++/CMakeLists.txt index c9c4815..adbf1a4 100644 --- a/c++/CMakeLists.txt +++ b/c++/CMakeLists.txt @@ -27,18 +27,18 @@ if (H5_HAVE_PARALLEL) add_definitions ("-DMPICH_IGNORE_CXX_SEEK") endif () -add_subdirectory (${HDF5_CPP_SOURCE_DIR}/src ${HDF5_CPP_BINARY_DIR}/src) +add_subdirectory (src) #----------------------------------------------------------------------------- # Build the CPP Examples #----------------------------------------------------------------------------- if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_CPP_SOURCE_DIR}/examples ${HDF5_CPP_BINARY_DIR}/examples) + add_subdirectory (examples) endif () #----------------------------------------------------------------------------- # Build the CPP unit tests #----------------------------------------------------------------------------- if (BUILD_TESTING) - add_subdirectory (${HDF5_CPP_SOURCE_DIR}/test ${HDF5_CPP_BINARY_DIR}/test) + add_subdirectory (test) endif () diff --git a/config/cmake/ConfigureChecks.cmake b/config/cmake/ConfigureChecks.cmake index 77918a4..85e0492 100644 --- a/config/cmake/ConfigureChecks.cmake +++ b/config/cmake/ConfigureChecks.cmake @@ -173,7 +173,7 @@ endif () # Macro to determine the various conversion capabilities #----------------------------------------------------------------------------- macro (H5ConversionTests TEST msg) - if ("${TEST}" MATCHES "^${TEST}$") + if (NOT DEFINED ${TEST}) # message (STATUS "===> ${TEST}") TRY_RUN (${TEST}_RUN ${TEST}_COMPILE ${CMAKE_BINARY_DIR} @@ -204,21 +204,6 @@ macro (H5ConversionTests TEST msg) endmacro () #----------------------------------------------------------------------------- -# Macro to make some of the conversion tests easier to write/read -#----------------------------------------------------------------------------- -macro (H5MiscConversionTest VAR TEST msg) - if ("${TEST}" MATCHES "^${TEST}$") - if (${VAR}) - set (${TEST} 1 CACHE INTERNAL ${msg}) - message (STATUS "${msg}... yes") - else () - set (${TEST} "" CACHE INTERNAL ${msg}) - message (STATUS "${msg}... no") - endif () - endif () -endmacro () - -#----------------------------------------------------------------------------- # Check various conversion capabilities #----------------------------------------------------------------------------- diff --git a/config/cmake/ConversionTests.c b/config/cmake/ConversionTests.c index 082dbd4..002bc88 100644 --- a/config/cmake/ConversionTests.c +++ b/config/cmake/ConversionTests.c @@ -9,12 +9,23 @@ * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ ++ +#if defined(__has_attribute) +#if __has_attribute(no_sanitize) +#define HDF_NO_UBSAN __attribute__((no_sanitize("undefined"))) +#else +#define HDF_NO_UBSAN +#endif +#else +#define HDF_NO_UBSAN +#endif + #ifdef H5_LDOUBLE_TO_LONG_SPECIAL_TEST #include #include -int main(void) +int main(void) HDF_NO_UBSAN { long double ld = 20041683600089727.779961L; long ll; @@ -24,44 +35,44 @@ int main(void) int ret = 1; if(sizeof(long double) == 16 && sizeof(long) == 8) { - /*make sure the long double type has 16 bytes in size and - * 11 bits of exponent. If it is, - *the bit sequence should be like below. It's not - *a decent way to check but this info isn't available. */ - memcpy(s, &ld, 16); - if(s[0]==0x43 && s[1]==0x51 && s[2]==0xcc && s[3]==0xf3 && - s[4]==0x85 && s[5]==0xeb && s[6]==0xc8 && s[7]==0xa0 && - s[8]==0xbf && s[9]==0xcc && s[10]==0x2a && s[11]==0x3c) { - - /* Assign the hexadecimal value of long double type. */ - s[0]=0x43; s[1]=0x51; s[2]=0xcc; s[3]=0xf3; - s[4]=0x85; s[5]=0xeb; s[6]=0xc8; s[7]=0xa0; - s[8]=0xbf; s[9]=0xcc; s[10]=0x2a; s[11]=0x3c; - s[12]=0x3d; s[13]=0x85; s[14]=0x56; s[15]=0x20; - - memcpy(&ld, s, 16); - - ll = (long)ld; - memcpy(s2, &ll, 8); - - /* The library's algorithm converts it to 0x 00 47 33 ce 17 af 22 82 - * and gets wrong value 20041683600089730 on the IBM Power6 Linux. - * But the IBM Power6 Linux converts it to 0x00 47 33 ce 17 af 22 7f - * and gets the correct value 20041683600089727. It uses some special - * algorithm. We're going to define the macro and skip the test until - * we can figure out how they do it. */ - if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && - s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) - ret = 0; - - ull = (unsigned long)ld; - memcpy(s2, &ull, 8); - - /* The unsigned long is the same as signed long. */ - if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && - s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) - ret = 0; - } + /*make sure the long double type has 16 bytes in size and + * 11 bits of exponent. If it is, + *the bit sequence should be like below. It's not + *a decent way to check but this info isn't available. */ + memcpy(s, &ld, 16); + if(s[0]==0x43 && s[1]==0x51 && s[2]==0xcc && s[3]==0xf3 && + s[4]==0x85 && s[5]==0xeb && s[6]==0xc8 && s[7]==0xa0 && + s[8]==0xbf && s[9]==0xcc && s[10]==0x2a && s[11]==0x3c) { + + /* Assign the hexadecimal value of long double type. */ + s[0]=0x43; s[1]=0x51; s[2]=0xcc; s[3]=0xf3; + s[4]=0x85; s[5]=0xeb; s[6]=0xc8; s[7]=0xa0; + s[8]=0xbf; s[9]=0xcc; s[10]=0x2a; s[11]=0x3c; + s[12]=0x3d; s[13]=0x85; s[14]=0x56; s[15]=0x20; + + memcpy(&ld, s, 16); + + ll = (long)ld; + memcpy(s2, &ll, 8); + + /* The library's algorithm converts it to 0x 00 47 33 ce 17 af 22 82 + * and gets wrong value 20041683600089730 on the IBM Power6 Linux. + * But the IBM Power6 Linux converts it to 0x00 47 33 ce 17 af 22 7f + * and gets the correct value 20041683600089727. It uses some special + * algorithm. We're going to define the macro and skip the test until + * we can figure out how they do it. */ + if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && + s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) + ret = 0; + + ull = (unsigned long)ld; + memcpy(s2, &ull, 8); + + /* The unsigned long is the same as signed long. */ + if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && + s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) + ret = 0; + } } done: @@ -75,7 +86,7 @@ done: #include #include -int main(void) +int main(void) HDF_NO_UBSAN { long double ld; long ll; @@ -86,46 +97,46 @@ int main(void) /*Determine if long double has 16 byte in size, 11 bit exponent, and *the bias is 0x3ff */ if(sizeof(long double) == 16) { - ld = 1.0L; - memcpy(s, &ld, 16); - if(s[0]==0x3f && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && - s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00) - flag = 1; + ld = 1.0L; + memcpy(s, &ld, 16); + if(s[0]==0x3f && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && + s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00) + flag = 1; } if(flag==1 && sizeof(long)==8) { - ll = 0x003fffffffffffffL; - ld = (long double)ll; - memcpy(s, &ld, 16); - /* The library converts the value to 0x434fffffffffffff8000000000000000. - * In decimal it is 18014398509481982.000000, one value short of the original. - * The IBM Power6 Linux converts it to 0x4350000000000000bff0000000000000. - * The value is correct in decimal. It uses some special - * algorithm. We're going to define the macro and skip the test until - * we can figure out how they do it. */ - if(s[0]==0x43 && s[1]==0x50 && s[2]==0x00 && s[3]==0x00 && - s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && - s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && - s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) - ret = 0; + ll = 0x003fffffffffffffL; + ld = (long double)ll; + memcpy(s, &ld, 16); + /* The library converts the value to 0x434fffffffffffff8000000000000000. + * In decimal it is 18014398509481982.000000, one value short of the original. + * The IBM Power6 Linux converts it to 0x4350000000000000bff0000000000000. + * The value is correct in decimal. It uses some special + * algorithm. We're going to define the macro and skip the test until + * we can figure out how they do it. */ + if(s[0]==0x43 && s[1]==0x50 && s[2]==0x00 && s[3]==0x00 && + s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && + s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && + s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) + ret = 0; } if(flag==1 && sizeof(unsigned long)==8) { - ull = 0xffffffffffffffffUL; - ld = (long double)ull; - memcpy(s, &ld, 16); - /* Use a different value from signed long to test. The problem is the same - * for both long and unsigned long. The value is 18446744073709551615. - * The library converts the value to 0x43effffffffffffffe000000000000000. - * In decimal it's 18446744073709548544.000000, very different from the original. - * The IBM Power6 Linux converts it to 0x43f0000000000000bff0000000000000. - * The value is correct in decimal. It uses some special - * algorithm. We're going to define the macro and skip the test until - * we can figure out how they do it. */ - if(s[0]==0x43 && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && - s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && - s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && - s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) - ret = 0; + ull = 0xffffffffffffffffUL; + ld = (long double)ull; + memcpy(s, &ld, 16); + /* Use a different value from signed long to test. The problem is the same + * for both long and unsigned long. The value is 18446744073709551615. + * The library converts the value to 0x43effffffffffffffe000000000000000. + * In decimal it's 18446744073709548544.000000, very different from the original. + * The IBM Power6 Linux converts it to 0x43f0000000000000bff0000000000000. + * The value is correct in decimal. It uses some special + * algorithm. We're going to define the macro and skip the test until + * we can figure out how they do it. */ + if(s[0]==0x43 && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && + s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && + s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && + s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) + ret = 0; } done: exit(ret); @@ -138,7 +149,7 @@ done: #include #include -int main(void) +int main(void) HDF_NO_UBSAN { long double ld = 20041683600089727.779961L; long long ll; @@ -181,7 +192,7 @@ done: #include #include -int main(void) +int main(void) HDF_NO_UBSAN { long double ld; long long ll; @@ -243,7 +254,7 @@ int FC_DUMMY_MAIN() #endif #endif int -main () +main () HDF_NO_UBSAN { char *chp = "beefs"; diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake index a414cea..56277fa 100644 --- a/config/cmake/HDFCompilerFlags.cmake +++ b/config/cmake/HDFCompilerFlags.cmake @@ -49,9 +49,9 @@ if (HDF5_DISABLE_COMPILER_WARNINGS) if (MSVC) set (HDF5_WARNINGS_BLOCKED 1) string (REGEX REPLACE "(^| )([/-])W[0-9]( |$)" " " CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /w") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W0") string (REGEX REPLACE "(^| )([/-])W[0-9]( |$)" " " CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /w") + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W0") endif () if (WIN32) add_definitions (-D_CRT_SECURE_NO_WARNINGS) diff --git a/config/cmake_ext_mod/CheckTypeSize.cmake b/config/cmake_ext_mod/CheckTypeSize.cmake deleted file mode 100644 index c14c2f2..0000000 --- a/config/cmake_ext_mod/CheckTypeSize.cmake +++ /dev/null @@ -1,61 +0,0 @@ -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# Check if the type exists and determine size of type. if the type -# exists, the size will be stored to the variable. -# -# CHECK_TYPE_SIZE - macro which checks the size of type -# VARIABLE - variable to store size if the type exists. -# HAVE_${VARIABLE} - does the variable exists or not -# - -macro (HDF_CHECK_TYPE_SIZE TYPE VARIABLE) - set (CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS 1) - if ("HAVE_${VARIABLE}" MATCHES "^HAVE_${VARIABLE}$") - set (MACRO_CHECK_TYPE_SIZE_FLAGS - "-DCHECK_TYPE_SIZE_TYPE=\"${TYPE}\" ${CMAKE_REQUIRED_FLAGS}" - ) - foreach (def HAVE_SYS_TYPES_H HAVE_STDINT_H HAVE_STDDEF_H HAVE_INTTYPES_H) - if ("${def}") - set (MACRO_CHECK_TYPE_SIZE_FLAGS "${MACRO_CHECK_TYPE_SIZE_FLAGS} -D${def}") - endif () - endforeach () - - message (STATUS "Check size of ${TYPE}") - if (CMAKE_REQUIRED_LIBRARIES) - set (CHECK_TYPE_SIZE_ADD_LIBRARIES - "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}" - ) - endif () - try_run (${VARIABLE} HAVE_${VARIABLE} - ${CMAKE_BINARY_DIR} - ${HDF_RESOURCES_EXT_DIR}/CheckTypeSize.c - CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_TYPE_SIZE_FLAGS} - "${CHECK_TYPE_SIZE_ADD_LIBRARIES}" - OUTPUT_VARIABLE OUTPUT - ) - if (HAVE_${VARIABLE}) - message (STATUS "Check size of ${TYPE} - done") - file (APPEND - ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeOutput.log - "Determining size of ${TYPE} passed with the following output:\n${OUTPUT}\n\n" - ) - else () - message (STATUS "Check size of ${TYPE} - failed") - file (APPEND - ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log - "Determining size of ${TYPE} failed with the following output:\n${OUTPUT}\n\n" - ) - endif () - endif () - set (CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS) -endmacro () diff --git a/config/cmake_ext_mod/ConfigureChecks.cmake b/config/cmake_ext_mod/ConfigureChecks.cmake index 56d45f9..3797768 100644 --- a/config/cmake_ext_mod/ConfigureChecks.cmake +++ b/config/cmake_ext_mod/ConfigureChecks.cmake @@ -12,18 +12,18 @@ #----------------------------------------------------------------------------- # Include all the necessary files for macros #----------------------------------------------------------------------------- -include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake) -include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) -include (${CMAKE_ROOT}/Modules/CheckIncludeFileCXX.cmake) -include (${CMAKE_ROOT}/Modules/CheckIncludeFiles.cmake) -include (${CMAKE_ROOT}/Modules/CheckLibraryExists.cmake) -include (${CMAKE_ROOT}/Modules/CheckSymbolExists.cmake) -include (${CMAKE_ROOT}/Modules/CheckTypeSize.cmake) -include (${CMAKE_ROOT}/Modules/CheckVariableExists.cmake) -include (${CMAKE_ROOT}/Modules/CheckFortranFunctionExists.cmake) -include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake) +include (CheckFunctionExists) +include (CheckIncludeFile) +include (CheckIncludeFileCXX) +include (CheckIncludeFiles) +include (CheckLibraryExists) +include (CheckSymbolExists) +include (CheckTypeSize) +include (CheckVariableExists) +include (CheckFortranFunctionExists) +include (TestBigEndian) if (CMAKE_CXX_COMPILER AND CMAKE_CXX_COMPILER_LOADED) - include (${CMAKE_ROOT}/Modules/TestForSTDNamespace.cmake) + include (TestForSTDNamespace) endif () #----------------------------------------------------------------------------- @@ -145,7 +145,7 @@ endif () # For other specific tests, use this MACRO. macro (HDF_FUNCTION_TEST OTHER_TEST) - if ("${HDF_PREFIX}_${OTHER_TEST}" MATCHES "^${HDF_PREFIX}_${OTHER_TEST}$") + if (NOT DEFINED ${HDF_PREFIX}_${OTHER_TEST}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) @@ -587,7 +587,7 @@ endif () # For other CXX specific tests, use this MACRO. macro (HDF_CXX_FUNCTION_TEST OTHER_TEST) - if ("${OTHER_TEST}" MATCHES "^${OTHER_TEST}$") + if (NOT DEFINED ${OTHER_TEST}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) @@ -656,7 +656,7 @@ endif () if (WINDOWS) if (NOT HDF_NO_IOEO_TEST) message (STATUS "Checking for InitOnceExecuteOnce:") - if ("${${HDF_PREFIX}_HAVE_IOEO}" MATCHES "^${${HDF_PREFIX}_HAVE_IOEO}$") + if (NOT DEFINED ${${HDF_PREFIX}_HAVE_IOEO}) if (LARGEFILE) set (CMAKE_REQUIRED_DEFINITIONS "${CURRENT_TEST_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" diff --git a/config/cmake_ext_mod/HDFTests.c b/config/cmake_ext_mod/HDFTests.c index 60ac744..320fd5b 100644 --- a/config/cmake_ext_mod/HDFTests.c +++ b/config/cmake_ext_mod/HDFTests.c @@ -222,12 +222,26 @@ SIMPLE_TEST(struct stat sb; sb.st_blocks=0); #include #include +#if defined(_MSC_VER) && defined(_DEBUG) +# include +int DebugReport(int reportType, char* message, int* returnValue) +{ + (void)reportType; + (void)message; + (void)returnValue; + return 1; /* no further handling required */ +} +#endif + int main(void) { char *llwidthArgs[] = { "I64", "l64", "l", "L", "q", "ll", NULL }; char *s = malloc(128); char **currentArg = NULL; LL_TYPE x = (LL_TYPE)1048576 * (LL_TYPE)1048576; + #if defined(_MSC_VER) && defined(_DEBUG) + _CrtSetReportHook(DebugReport); + #endif for (currentArg = llwidthArgs; *currentArg != NULL; currentArg++) { char formatString[64]; diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index 075e1da..a0f92d3 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -10,21 +10,21 @@ endif () #----------------------------------------------------------------------------- # Traverse source subdirectory #----------------------------------------------------------------------------- -add_subdirectory (${HDF5_F90_SOURCE_DIR}/src ${HDF5_F90_BINARY_DIR}/src) +add_subdirectory (src) #----------------------------------------------------------------------------- # Build the Fortran Examples #----------------------------------------------------------------------------- if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_F90_SOURCE_DIR}/examples ${HDF5_F90_BINARY_DIR}/examples) + add_subdirectory (examples) endif () #----------------------------------------------------------------------------- # Testing #----------------------------------------------------------------------------- if (BUILD_TESTING) - add_subdirectory (${HDF5_F90_SOURCE_DIR}/test ${HDF5_F90_BINARY_DIR}/test) + add_subdirectory (test) if (MPI_Fortran_FOUND) - add_subdirectory (${HDF5_F90_SOURCE_DIR}/testpar ${HDF5_F90_BINARY_DIR}/testpar) + add_subdirectory (testpar) endif () endif () diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 59acaf0..f094b47 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -80,10 +80,9 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) ) endif () -set (CMD $) add_custom_command ( OUTPUT ${HDF5_F90_BINARY_DIR}/H5fortran_detect.f90 - COMMAND ${CMD} + COMMAND $ ARGS > ${HDF5_F90_BINARY_DIR}/H5fortran_detect.f90 WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR} DEPENDS H5test_FortranHavekind @@ -106,10 +105,9 @@ if (WIN32 AND MSVC) endif () set_target_properties (H5fortran_detect PROPERTIES LINKER_LANGUAGE Fortran) -set (CMD $) add_custom_command ( OUTPUT ${HDF5_F90_BINARY_DIR}/H5fort_type_defines.h - COMMAND ${CMD} + COMMAND $ ARGS > ${HDF5_F90_BINARY_DIR}/H5fort_type_defines.h WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR} DEPENDS H5fortran_detect @@ -129,22 +127,20 @@ add_executable (H5match_types ${HDF5_F90_BINARY_DIR}/H5fort_type_defines.h ${HDF5_F90_SRC_SOURCE_DIR}/H5match_types.c ) -set (CMD $) add_custom_command ( OUTPUT ${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h ${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 - COMMAND ${CMD} + COMMAND $ WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR}/static DEPENDS H5match_types ) set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5f90i_gen.h PROPERTIES GENERATED TRUE) set_source_files_properties (${HDF5_F90_BINARY_DIR}/static/H5fortran_types.f90 PROPERTIES GENERATED TRUE) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) - set (CMDSH $) add_custom_command ( OUTPUT ${HDF5_F90_BINARY_DIR}/shared/H5f90i_gen.h ${HDF5_F90_BINARY_DIR}/shared/H5fortran_types.f90 - COMMAND ${CMDSH} + COMMAND $ WORKING_DIRECTORY ${HDF5_F90_BINARY_DIR}/shared DEPENDS H5match_types ) diff --git a/hl/CMakeLists.txt b/hl/CMakeLists.txt index a47e023..d80b4f9 100644 --- a/hl/CMakeLists.txt +++ b/hl/CMakeLists.txt @@ -12,21 +12,21 @@ add_definitions (${HDF_EXTRA_C_FLAGS}) #----------------------------------------------------------------------------- INCLUDE_DIRECTORIES (${HDF5_HL_SOURCE_DIR}/src ) -add_subdirectory (${HDF5_HL_SOURCE_DIR}/src ${HDF5_HL_BINARY_DIR}/src) +add_subdirectory (src) #-- Build the High level Tools if (HDF5_BUILD_TOOLS) - add_subdirectory (${HDF5_HL_SOURCE_DIR}/tools ${HDF5_HL_BINARY_DIR}/tools) + add_subdirectory (tools) endif () #-- Add High Level Examples if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_HL_SOURCE_DIR}/examples ${HDF5_HL_BINARY_DIR}/examples) + add_subdirectory (examples) endif () #-- Build the Unit testing if requested if (NOT HDF5_EXTERNALLY_CONFIGURED) if (BUILD_TESTING) - add_subdirectory (${HDF5_HL_SOURCE_DIR}/test ${HDF5_HL_BINARY_DIR}/test) + add_subdirectory (test) endif () endif () diff --git a/hl/c++/CMakeLists.txt b/hl/c++/CMakeLists.txt index 91bfa14..9a1d059 100644 --- a/hl/c++/CMakeLists.txt +++ b/hl/c++/CMakeLists.txt @@ -4,13 +4,13 @@ PROJECT (HDF5_HL_CPP) #----------------------------------------------------------------------------- # Main HL lib is in /src #----------------------------------------------------------------------------- -add_subdirectory (${HDF5_HL_CPP_SOURCE_DIR}/src ${HDF5_HL_CPP_BINARY_DIR}/src) +add_subdirectory (src) # -------------------------------------------------------------------- # Add in the examples for the Packet Table codes # -------------------------------------------------------------------- if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_HL_CPP_SOURCE_DIR}/examples ${HDF5_HL_CPP_BINARY_DIR}/examples) + add_subdirectory (examples) endif () # -------------------------------------------------------------------- @@ -18,5 +18,5 @@ endif () # -------------------------------------------------------------------- if (BUILD_TESTING) - add_subdirectory (${HDF5_HL_CPP_SOURCE_DIR}/test ${HDF5_HL_CPP_BINARY_DIR}/test) + add_subdirectory (test) endif () diff --git a/hl/fortran/CMakeLists.txt b/hl/fortran/CMakeLists.txt index c651ce9..00d7517 100644 --- a/hl/fortran/CMakeLists.txt +++ b/hl/fortran/CMakeLists.txt @@ -4,18 +4,18 @@ PROJECT (HDF5_HL_F90 C CXX Fortran) #----------------------------------------------------------------------------- # List Source files #----------------------------------------------------------------------------- -add_subdirectory (${HDF5_HL_F90_SOURCE_DIR}/src ${HDF5_HL_F90_BINARY_DIR}/src) +add_subdirectory (src) #----------------------------------------------------------------------------- # Build the HL Fortran Examples #----------------------------------------------------------------------------- if (HDF5_BUILD_EXAMPLES) - add_subdirectory (${HDF5_HL_F90_SOURCE_DIR}/examples ${HDF5_HL_F90_BINARY_DIR}/examples) + add_subdirectory (examples) endif () #----------------------------------------------------------------------------- # Testing #----------------------------------------------------------------------------- if (BUILD_TESTING) - add_subdirectory (${HDF5_HL_F90_SOURCE_DIR}/test ${HDF5_HL_F90_BINARY_DIR}/test) + add_subdirectory (test) endif () diff --git a/hl/tools/CMakeLists.txt b/hl/tools/CMakeLists.txt index 482bf91..5503f41 100644 --- a/hl/tools/CMakeLists.txt +++ b/hl/tools/CMakeLists.txt @@ -1,4 +1,4 @@ cmake_minimum_required (VERSION 3.2.2) PROJECT (HDF5_HL_TOOLS C CXX) -add_subdirectory (${HDF5_HL_TOOLS_SOURCE_DIR}/gif2h5 ${HDF5_HL_TOOLS_BINARY_DIR}/gif2h5) +add_subdirectory (gif2h5) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ff16bb6..3e20248 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -116,6 +116,16 @@ Bug Fixes since HDF5-1.8.20 ------------- - CMake + Update CMake commands configuration. + + A number of improvements were made to the CMake commands. Most + changes simplify usage or eliminate unused constructs. Also, + some changes support better cross-platform support. + + (ADB - 2018/02/01, HDFFV-10398) + + - CMake + Correct usage of CMAKE_BUILD_TYPE variable. The use of the CMAKE_BUILD_TYPE is incorrect for multi-config diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dc180c3..1593466 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -616,11 +616,13 @@ TARGET_C_PROPERTIES (H5detect STATIC " " " ") if (MSVC OR MINGW) target_link_libraries (H5detect "ws2_32.lib") endif () +if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") + set_property(TARGET H5detect PROPERTY LINK_FLAGS "-O0") +endif () -set (CMD $) add_custom_command ( OUTPUT ${HDF5_BINARY_DIR}/H5Tinit.c - COMMAND ${CMD} + COMMAND $ ARGS > ${HDF5_BINARY_DIR}/H5Tinit.c DEPENDS H5detect ) @@ -630,11 +632,13 @@ TARGET_C_PROPERTIES (H5make_libsettings STATIC " " " ") if (MSVC OR MINGW) target_link_libraries (H5make_libsettings "ws2_32.lib") endif () +if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") + set_property(TARGET H5make_libsettings PROPERTY LINK_FLAGS "-O0") +endif () -set (CMD $) add_custom_command ( OUTPUT ${HDF5_BINARY_DIR}/H5lib_settings.c - COMMAND ${CMD} + COMMAND $ ARGS > ${HDF5_BINARY_DIR}/H5lib_settings.c DEPENDS H5make_libsettings WORKING_DIRECTORY ${HDF5_BINARY_DIR} diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index c9cc21b..8f4372a 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -15,35 +15,35 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SOURCE_DIR}/lib) # If testing was NOT enabled, then we need to build the tools library # -------------------------------------------------------------------- if (NOT BUILD_TESTING) - add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/lib) + add_subdirectory (lib) endif () #-- Add the h5diff and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5diff) +add_subdirectory (h5diff) #-- Add the h5ls executable -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5ls) +add_subdirectory (h5ls) #-- Misc Executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/misc) +add_subdirectory (misc) #-- Add the h5import and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5import) +add_subdirectory (h5import) #-- h5Repack executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5repack) +add_subdirectory (h5repack) #-- Add the h5dump and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5jam) +add_subdirectory (h5jam) #-- Add the h5copy and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5copy) +add_subdirectory (h5copy) #-- Add the h5stat and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5stat) +add_subdirectory (h5stat) #-- Add the h5dump and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/h5dump) +add_subdirectory (h5dump) #-- Add the perform and test executables -add_subdirectory (${HDF5_TOOLS_SOURCE_DIR}/perform) +add_subdirectory (perform) -- cgit v0.12 From 957d1b85d8e7551c975a8378b9753a628068748c Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 4 Feb 2018 21:40:52 -0600 Subject: Snapshot version 1.8 release 21 (snap5) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index 9af5df4..2a847a5 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap5 currently under development +HDF5 version 1.8.21-snap6 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 60a61b8..ef95fd3 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap5, currently under development" +PROJECT_NUMBER = "1.8.21-snap6, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index a19ad3d..1dc875b 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap5") +set (CTEST_SOURCE_VERSEXT "-snap6") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index ceb7f0b..cbc0c53 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap5], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap6], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 3e20248..919dd2f 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap5 currently under development +HDF5 version 1.8.21-snap6 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index acca700..ce1915a 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap5" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap6" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap5" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap6" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 7f831740f03b2687042c6e5ab951b9ad417d76e2 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 5 Feb 2018 13:01:55 -0600 Subject: HDFFV-10398 patch for UBSAN --- src/H5detect.c | 42 +++++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/src/H5detect.c b/src/H5detect.c index 2dae228..33eba81 100644 --- a/src/H5detect.c +++ b/src/H5detect.c @@ -36,8 +36,8 @@ static const char *FileHeader = "\n\ * Livermore National Laboratory. * * Detects machine byte order and floating point - * format and generates a C source file (native.c) - * to describe those paramters. + * format and generates a C source file (H5Tinit.c) + * to describe those parameters. * * Assumptions: We have an ANSI compiler. We're on a Unix like * system or configure has detected those Unix @@ -54,6 +54,16 @@ static const char *FileHeader = "\n\ #include "H5Tpublic.h" #include "H5Rpublic.h" +#if defined(__has_attribute) +#if __has_attribute(no_sanitize) +#define HDF_NO_UBSAN __attribute__((no_sanitize("undefined"))) +#else +#define HDF_NO_UBSAN +#endif +#else +#define HDF_NO_UBSAN +#endif + #define MAXDETECT 64 /* The ALIGNMENT test code may generate the SIGBUS, SIGSEGV, or SIGILL signals. @@ -65,7 +75,7 @@ static const char *FileHeader = "\n\ /* Define H5SETJMP/H5LONGJMP depending on if sigsetjmp/siglongjmp are */ /* supported. */ #if defined(H5_HAVE_SIGSETJMP) && defined(H5_HAVE_SIGLONGJMP) -/* Always save blocked signals to be restore by siglongjmp. */ +/* Always save blocked signals to be restored by siglongjmp. */ #define H5JMP_BUF sigjmp_buf #define H5SETJMP(buf) HDsigsetjmp(buf, 1) #define H5LONGJMP(buf, val) HDsiglongjmp(buf, val) @@ -1348,7 +1358,7 @@ bit.\n"; *------------------------------------------------------------------------- */ static void -detect_C89_integers(void) +detect_C89_integers(void) HDF_NO_UBSAN { DETECT_BYTE(signed char, SCHAR, d_g[nd_g]); nd_g++; DETECT_BYTE(unsigned char, UCHAR, d_g[nd_g]); nd_g++; @@ -1376,7 +1386,7 @@ detect_C89_integers(void) *------------------------------------------------------------------------- */ static void -detect_C89_floats(void) +detect_C89_floats(void) HDF_NO_UBSAN { DETECT_F(float, FLOAT, d_g[nd_g]); nd_g++; DETECT_F(double, DOUBLE, d_g[nd_g]); nd_g++; @@ -1398,7 +1408,7 @@ detect_C89_floats(void) *------------------------------------------------------------------------- */ static void -detect_C99_integers8(void) +detect_C99_integers8(void) HDF_NO_UBSAN { #if H5_SIZEOF_INT8_T>0 #if H5_SIZEOF_INT8_T==1 @@ -1460,7 +1470,7 @@ detect_C99_integers8(void) *------------------------------------------------------------------------- */ static void -detect_C99_integers16(void) +detect_C99_integers16(void) HDF_NO_UBSAN { #if H5_SIZEOF_INT16_T>0 DETECT_I(int16_t, INT16, d_g[nd_g]); nd_g++; @@ -1498,7 +1508,7 @@ detect_C99_integers16(void) *------------------------------------------------------------------------- */ static void -detect_C99_integers32(void) +detect_C99_integers32(void) HDF_NO_UBSAN { #if H5_SIZEOF_INT32_T>0 DETECT_I(int32_t, INT32, d_g[nd_g]); nd_g++; @@ -1536,7 +1546,7 @@ detect_C99_integers32(void) *------------------------------------------------------------------------- */ static void -detect_C99_integers64(void) +detect_C99_integers64(void) HDF_NO_UBSAN { #if H5_SIZEOF_INT64_T>0 DETECT_I(int64_t, INT64, d_g[nd_g]); nd_g++; @@ -1587,7 +1597,7 @@ detect_C99_integers64(void) *------------------------------------------------------------------------- */ static void -detect_C99_integers(void) +detect_C99_integers(void) HDF_NO_UBSAN { /* break it down to more subroutines so that each module subroutine */ /* is smaller and takes less time to compile with optimization on. */ @@ -1613,7 +1623,7 @@ detect_C99_integers(void) *------------------------------------------------------------------------- */ static void -detect_C99_floats(void) +detect_C99_floats(void) HDF_NO_UBSAN { #if H5_SIZEOF_DOUBLE == H5_SIZEOF_LONG_DOUBLE /* @@ -1644,7 +1654,7 @@ detect_C99_floats(void) *------------------------------------------------------------------------- */ static void -detect_alignments(void) +detect_alignments(void) HDF_NO_UBSAN { /* Detect structure alignment for pointers, hvl_t, hobj_ref_t, hdset_reg_ref_t */ DETECT_M(void *, POINTER, m_g[na_g]); na_g++; @@ -1662,6 +1672,12 @@ detect_alignments(void) */ static int verify_signal_handlers(int signum, void (*handler)(int)) { +#if defined(__has_feature) +#if __has_feature(address_sanitizer) || __has_feature(thread_sanitizer) + /* Under the address and thread sanitizers, don't raise any signals. */ + return 0; +#endif +#endif void (*save_handler)(int) = HDsignal(signum, handler); int i, val; int ntries=5; @@ -1726,7 +1742,7 @@ static int verify_signal_handlers(int signum, void (*handler)(int)) *------------------------------------------------------------------------- */ int -main(void) +main(void) HDF_NO_UBSAN { #if defined(H5_HAVE_SETSYSINFO) && defined(SSI_NVPAIRS) -- cgit v0.12 From 77aba5e8802e5fc10522e2cca8c2879d9bb1338e Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 5 Feb 2018 16:10:33 -0600 Subject: Remove old dependency construct --- CMakeLists.txt | 1 - tools/CMakeLists.txt | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e44b90f..cd40b2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -630,7 +630,6 @@ if (BUILD_TESTING) if (NOT HDF5_EXTERNALLY_CONFIGURED) if (EXISTS "${HDF5_SOURCE_DIR}/test" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/test") - add_subdirectory (tools/lib) add_subdirectory (test) endif () if (H5_HAVE_PARALLEL) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 8f4372a..0b812bf 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -14,9 +14,7 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SOURCE_DIR}/lib) # -------------------------------------------------------------------- # If testing was NOT enabled, then we need to build the tools library # -------------------------------------------------------------------- -if (NOT BUILD_TESTING) - add_subdirectory (lib) -endif () +add_subdirectory (lib) #-- Add the h5diff and test executables add_subdirectory (h5diff) -- cgit v0.12 From 953f1e432fabec937665acec5a5ea73754f246b4 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 8 Feb 2018 15:50:50 -0600 Subject: HDFFV-10403 fix soname --- config/cmake/HDF5Macros.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cmake/HDF5Macros.cmake b/config/cmake/HDF5Macros.cmake index f08349e..c3dea9a 100644 --- a/config/cmake/HDF5Macros.cmake +++ b/config/cmake/HDF5Macros.cmake @@ -17,12 +17,12 @@ macro (H5_SET_LIB_OPTIONS libtarget libname libtype) if (ARGN) set (PACKAGE_SOVERSION ${ARGN}) else () - set (PACKAGE_SOVERSION ${HDF5_PACKAGE_SOVERSION}) + set (PACKAGE_SOVERSION ${H5_SOVERS_MAJOR}) endif () if (WIN32) set (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION_MAJOR}) else () - set (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION}) + set (LIBHDF_VERSION ${HDF5_PACKAGE_SOVERSION}) endif () set_target_properties (${libtarget} PROPERTIES VERSION ${LIBHDF_VERSION}) if (WIN32) -- cgit v0.12 From 9b693a7b99ae192d5cccfb712ac55fd85fbb1cf7 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 11 Feb 2018 22:25:00 -0600 Subject: Snapshot version 1.8 release 21 (snap6) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index 2a847a5..3668574 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap6 currently under development +HDF5 version 1.8.21-snap7 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index ef95fd3..751c934 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap6, currently under development" +PROJECT_NUMBER = "1.8.21-snap7, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 1dc875b..ab9df52 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap6") +set (CTEST_SOURCE_VERSEXT "-snap7") ############################################################################## # handle input parameters to script. diff --git a/configure.ac b/configure.ac index cbc0c53..ce90a34 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap6], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap7], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 919dd2f..8b96379 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap6 currently under development +HDF5 version 1.8.21-snap7 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index ce1915a..fdb5ed2 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap6" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap7" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap6" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap7" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From f7d2fbe58db16922e6ff360f46e4334bbcd88831 Mon Sep 17 00:00:00 2001 From: hdftest Date: Mon, 19 Feb 2018 06:49:27 -0600 Subject: Snapshot version 1.8 release 21 (snap7) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 3668574..757294f 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap7 currently under development +HDF5 version 1.8.21-snap8 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 751c934..a10a675 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap7, currently under development" +PROJECT_NUMBER = "1.8.21-snap8, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index ab9df52..9530638 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap7") +set (CTEST_SOURCE_VERSEXT "-snap8") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 1671c32..815f71f 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap2. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap8. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap2' -PACKAGE_STRING='HDF5 1.8.21-snap2' +PACKAGE_VERSION='1.8.21-snap8' +PACKAGE_STRING='HDF5 1.8.21-snap8' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap2 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap2:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap8:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap2 +HDF5 configure 1.8.21-snap8 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap2, which was +It was created by HDF5 $as_me 1.8.21-snap8, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap2' + VERSION='1.8.21-snap8' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap2 +HDF5 config.lt 1.8.21-snap8 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap2, which was +This file was extended by HDF5 $as_me 1.8.21-snap8, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap2 +HDF5 config.status 1.8.21-snap8 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index ce90a34..a7703c5 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap7], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap8], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 8b96379..571afe4 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap7 currently under development +HDF5 version 1.8.21-snap8 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index fdb5ed2..54f89d6 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap7" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap8" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap7" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap8" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 905b1456abfc65ee370c64aea672442f5f3a7ecd Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 19 Feb 2018 13:22:19 -0600 Subject: HDFFV-10384 merge from develop --- tools/h5copy/h5copy.c | 4 ++-- tools/h5diff/h5diff_common.c | 2 +- tools/h5diff/h5diff_main.c | 2 +- tools/h5dump/h5dump.c | 33 ++++++++++++++++++--------------- tools/h5import/h5import.c | 4 ++-- tools/h5ls/h5ls.c | 2 ++ tools/h5repack/h5repack_main.c | 6 +++--- tools/lib/h5tools.c | 22 +++++++++++++++++----- tools/lib/h5tools.h | 2 +- 9 files changed, 47 insertions(+), 30 deletions(-) diff --git a/tools/h5copy/h5copy.c b/tools/h5copy/h5copy.c index 1d15d12..1800810 100644 --- a/tools/h5copy/h5copy.c +++ b/tools/h5copy/h5copy.c @@ -293,7 +293,7 @@ main (int argc, const char *argv[]) break; case 'E': - enable_error_stack = TRUE; + enable_error_stack = 1; break; default: @@ -330,7 +330,7 @@ main (int argc, const char *argv[]) leave(EXIT_FAILURE); } - if (enable_error_stack) { + if (enable_error_stack > 0) { H5Eset_auto2(H5E_DEFAULT, func, edata); H5Eset_auto2(H5tools_ERR_STACK_g, tools_func, tools_edata); } diff --git a/tools/h5diff/h5diff_common.c b/tools/h5diff/h5diff_common.c index f8e02be..6221843 100644 --- a/tools/h5diff/h5diff_common.c +++ b/tools/h5diff/h5diff_common.c @@ -178,7 +178,7 @@ void parse_command_line(int argc, break; case 'S': - enable_error_stack = TRUE; + enable_error_stack = 1; break; case 'E': diff --git a/tools/h5diff/h5diff_main.c b/tools/h5diff/h5diff_main.c index ad488a4..c5a0cbf 100644 --- a/tools/h5diff/h5diff_main.c +++ b/tools/h5diff/h5diff_main.c @@ -100,7 +100,7 @@ int main(int argc, const char *argv[]) */ parse_command_line(argc, argv, &fname1, &fname2, &objname1, &objname2, &opts); - if (enable_error_stack) { + if (enable_error_stack > 0) { H5Eset_auto2(H5E_DEFAULT, func, edata); H5Eset_auto2(H5tools_ERR_STACK_g, tools_func, tools_edata); } diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 80e653a..fa67548 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -67,7 +67,7 @@ struct handler_t { */ /* The following initialization makes use of C language cancatenating */ /* "xxx" "yyy" into "xxxyyy". */ -static const char *s_opts = "hn*peyBHirVa:c:d:f:g:k:l:t:w:xD:uX:o*b*F:s:S:A*q:z:m:RECM:O*N:"; +static const char *s_opts = "hn*peyBHirVa:c:d:f:g:k:l:t:w:xD:uX:o*b*F:s:S:A*q:z:m:RE*CM:O*N:"; static struct long_options l_opts[] = { { "help", no_arg, 'h' }, { "hel", no_arg, 'h' }, @@ -181,7 +181,7 @@ static struct long_options l_opts[] = { { "sort_order", require_arg, 'z' }, { "format", require_arg, 'm' }, { "region", no_arg, 'R' }, - { "enable-error-stack", no_arg, 'E' }, + { "enable-error-stack", optional_arg, 'E' }, { "packed-bits", require_arg, 'M' }, { "no-compact-subset", no_arg, 'C' }, { "ddl", optional_arg, 'O' }, @@ -269,8 +269,8 @@ usage(const char *prog) PRINTVALSTREAM(rawoutstream, " -m T, --format=T Set the floating point output format\n"); PRINTVALSTREAM(rawoutstream, " -q Q, --sort_by=Q Sort groups and attributes by index Q\n"); PRINTVALSTREAM(rawoutstream, " -z Z, --sort_order=Z Sort groups and attributes by order Z\n"); - PRINTVALSTREAM(rawoutstream, " --enable-error-stack Prints messages from the HDF5 error stack as they\n"); - PRINTVALSTREAM(rawoutstream, " occur.\n"); + PRINTVALSTREAM(rawoutstream, " --enable-error-stack Prints messages from the HDF5 error stack as they occur.\n"); + PRINTVALSTREAM(rawoutstream, " Optional value 2 also prints file open errors.\n"); PRINTVALSTREAM(rawoutstream, " --no-compact-subset Disable compact form of subsetting and allow the use\n"); PRINTVALSTREAM(rawoutstream, " of \"[\" in dataset names.\n"); PRINTVALSTREAM(rawoutstream, " -w N, --width=N Set the number of columns of output. A value of 0 (zero)\n"); @@ -916,9 +916,8 @@ parse_start: case 'n': display_fi = TRUE; last_was_dset = FALSE; - if ( opt_arg != NULL) { + if (opt_arg != NULL) h5trav_set_verbose(HDatoi(opt_arg)); - } break; case 'p': display_dcpl = TRUE; @@ -935,8 +934,9 @@ parse_start: last_was_dset = FALSE; break; case 'A': - if ( opt_arg != NULL) { - if(0 == HDatoi(opt_arg)) include_attrs = FALSE; + if (opt_arg != NULL) { + if(0 == HDatoi(opt_arg)) + include_attrs = FALSE; } else { display_data = FALSE; @@ -1055,7 +1055,7 @@ parse_start: break; case 'o': - if ( bin_output ) { + if (bin_output) { if (h5tools_set_data_output_file(opt_arg, 1) < 0) { usage(h5tools_getprogname()); goto error; @@ -1082,8 +1082,8 @@ parse_start: break; case 'b': - if ( opt_arg != NULL) { - if ( ( bin_form = set_binary_form(opt_arg)) < 0) { + if (opt_arg != NULL) { + if ((bin_form = set_binary_form(opt_arg)) < 0) { /* failed to set binary form */ usage(h5tools_getprogname()); goto error; @@ -1102,7 +1102,7 @@ parse_start: break; case 'q': - if ( ( sort_by = set_sort_by(opt_arg)) < 0) { + if ((sort_by = set_sort_by(opt_arg)) < 0) { /* failed to set "sort by" form */ usage(h5tools_getprogname()); goto error; @@ -1110,7 +1110,7 @@ parse_start: break; case 'z': - if ( ( sort_order = set_sort_order(opt_arg)) < 0) { + if ((sort_order = set_sort_order(opt_arg)) < 0) { /* failed to set "sort order" form */ usage(h5tools_getprogname()); goto error; @@ -1254,7 +1254,10 @@ end_collect: /** end subsetting parameters **/ case 'E': - enable_error_stack = TRUE; + if (opt_arg != NULL) + enable_error_stack = HDatoi(opt_arg); + else + enable_error_stack = 1; break; case 'C': disable_compact_subset = TRUE; @@ -1374,7 +1377,7 @@ main(int argc, const char *argv[]) goto done; } - if (enable_error_stack) { + if (enable_error_stack > 0) { H5Eset_auto2(H5E_DEFAULT, func, edata); H5Eset_auto2(H5tools_ERR_STACK_g, tools_func, tools_edata); } diff --git a/tools/h5import/h5import.c b/tools/h5import/h5import.c index 36a8c21..76e78af 100644 --- a/tools/h5import/h5import.c +++ b/tools/h5import/h5import.c @@ -1405,7 +1405,7 @@ static int processConfigurationFile(char *infile, struct Input *in) const char *err14a = "COMPRESSION-PARAM keyword appears twice in %s.\n"; const char *err14b = "Error in retrieving the compression parameter from %s.\n"; const char *err15a = "EXTERNAL-STORAGE keyword appears twice in %s.\n"; - const char *err15b = "Error in retrieving the external storage paramters from %s.\n"; + const char *err15b = "Error in retrieving the external storage parameters from %s.\n"; const char *err16a = "MAXIMUM-DIMENSIONS keyword appears twice in %s.\n"; const char *err16b = "MAXIMUM-DIMENSIONS cannot appear before DIMENSION-SIZES are provided.\n"; const char *err16c = "Error in retrieving the maximum dimension sizes from %s.\n"; @@ -3690,7 +3690,7 @@ static int getCompressionParameter(struct Input *in, FILE *strm) { /* currently supports only GZIP */ /* can be extended by adding more values to COMPRESSION-TYPE and */ - /* handling the paramters here by adding more cases */ + /* handling the parameters here by adding more cases */ int ival; const char *err1 = "Unable to get integer value.\n"; diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index 583f8bf..78a2cce 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -2680,6 +2680,7 @@ main(int argc, const char *argv[]) case 'h': /* --help */ usage(); leave(EXIT_SUCCESS); + break; case 'a': /* --address */ address_g = TRUE; @@ -2730,6 +2731,7 @@ main(int argc, const char *argv[]) case 'V': /* --version */ print_version(h5tools_getprogname()); leave(EXIT_SUCCESS); + break; case 'x': /* --hexdump */ hexdump_g = TRUE; diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c index 0c5aac6..c739960 100644 --- a/tools/h5repack/h5repack_main.c +++ b/tools/h5repack/h5repack_main.c @@ -558,8 +558,8 @@ int parse_command_line(int argc, const char **argv, pack_opt_t* options) break; case 'E': - enable_error_stack = TRUE; - break; + enable_error_stack = 1; + break; default: break; @@ -651,7 +651,7 @@ int main(int argc, const char **argv) } } - if (enable_error_stack) { + if (enable_error_stack > 0) { H5Eset_auto2(H5E_DEFAULT, func, edata); H5Eset_auto2(H5tools_ERR_STACK_g, tools_func, tools_edata); } diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index 9230bb1..8ceaecc 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -43,7 +43,7 @@ unsigned packed_bits_num; /* number of packed bits to display */ unsigned packed_data_offset; /* offset of packed bits to display */ unsigned packed_data_length; /* length of packed bits to display */ unsigned long long packed_data_mask; /* mask in which packed bits to display */ -int enable_error_stack= FALSE; /* re-enable error stack */ +int enable_error_stack = 0; /* re-enable error stack; disable=0 enable=1 */ /* sort parameters */ H5_index_t sort_by = H5_INDEX_NAME; /*sort_by [creation_order | name] */ @@ -548,9 +548,15 @@ h5tools_fopen(const char *fname, unsigned flags, hid_t fapl, const char *driver, if ((my_fapl = h5tools_get_fapl(fapl, driver, &drivernum)) < 0) goto done; - H5E_BEGIN_TRY { + /* allow error stack display if enable-error-stack has optional arg number */ + if (enable_error_stack > 1) { fid = H5Fopen(fname, flags, my_fapl); - } H5E_END_TRY; + } + else { + H5E_BEGIN_TRY { + fid = H5Fopen(fname, flags, my_fapl); + } H5E_END_TRY; + } if (fid == FAIL) goto done; @@ -563,9 +569,15 @@ h5tools_fopen(const char *fname, unsigned flags, hid_t fapl, const char *driver, if((my_fapl = h5tools_get_fapl(fapl, drivernames[drivernum], NULL)) < 0) goto done; - H5E_BEGIN_TRY { + /* allow error stack display if enable-error-stack has optional arg number */ + if (enable_error_stack > 1) { fid = H5Fopen(fname, flags, my_fapl); - } H5E_END_TRY; + } + else { + H5E_BEGIN_TRY { + fid = H5Fopen(fname, flags, my_fapl); + } H5E_END_TRY; + } if (fid != FAIL) break; diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h index 09ec527..e24d654 100644 --- a/tools/lib/h5tools.h +++ b/tools/lib/h5tools.h @@ -545,7 +545,7 @@ H5TOOLS_DLLVAR H5_index_t sort_by; /*sort_by [creation_order | name] * H5TOOLS_DLLVAR H5_iter_order_t sort_order; /*sort_order [ascending | descending] */ /* things to display or which are set via command line parameters */ -H5TOOLS_DLLVAR int enable_error_stack; /* re-enable error stack */ +H5TOOLS_DLLVAR int enable_error_stack; /* re-enable error stack; disable=0 enable=1 */ /* Strings for output */ #define H5_TOOLS_GROUP "GROUP" -- cgit v0.12 From 4de5558a97b189ad889c7933644e8dc9fc8566c1 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 19 Feb 2018 13:24:29 -0600 Subject: HDFFV-10384 merge from develop --- release_docs/RELEASE.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 571afe4..3ab9fc0 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -171,6 +171,18 @@ Bug Fixes since HDF5-1.8.20 ----- - h5dump + the tools library will hide the error stack during file open. + + While this is preferable almost always, there are reasons to enable + display of the error stack when a tool will not open a file. Adding an + optional argument to the --enable-error-stack will provide this use case. + As an optional argument it will not affect the operation of the + --enable-error-stack. h5dump is the only tool to implement this change. + + (ADB - 2018/02/15, HDFFV-10384) + + - h5dump + h5dump would output an indented blank line in the filters section. h5dump overused the h5tools_simple_prefix function, which is a -- cgit v0.12 From a4ea00337111da256d250618bd15d84758c94dce Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 19 Feb 2018 13:27:46 -0600 Subject: HDFFV-10384 update ref files - merge from develop --- tools/testfiles/h5dump-help.txt | 4 ++-- tools/testfiles/pbits/tnofilename-with-packed-bits.ddl | 4 ++-- tools/testfiles/pbits/tpbitsIncomplete.ddl | 4 ++-- tools/testfiles/pbits/tpbitsLengthExceeded.ddl | 6 ++++-- tools/testfiles/pbits/tpbitsLengthPositive.ddl | 4 ++-- tools/testfiles/pbits/tpbitsMaxExceeded.ddl | 4 ++-- tools/testfiles/pbits/tpbitsOffsetExceeded.ddl | 4 ++-- tools/testfiles/pbits/tpbitsOffsetNegative.ddl | 4 ++-- 8 files changed, 18 insertions(+), 16 deletions(-) diff --git a/tools/testfiles/h5dump-help.txt b/tools/testfiles/h5dump-help.txt index c80999e..bc37a8f 100644 --- a/tools/testfiles/h5dump-help.txt +++ b/tools/testfiles/h5dump-help.txt @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tnofilename-with-packed-bits.ddl b/tools/testfiles/pbits/tnofilename-with-packed-bits.ddl index c16fdf9..9de5727 100644 --- a/tools/testfiles/pbits/tnofilename-with-packed-bits.ddl +++ b/tools/testfiles/pbits/tnofilename-with-packed-bits.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsIncomplete.ddl b/tools/testfiles/pbits/tpbitsIncomplete.ddl index 0a9d38c..206cd0e 100644 --- a/tools/testfiles/pbits/tpbitsIncomplete.ddl +++ b/tools/testfiles/pbits/tpbitsIncomplete.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsLengthExceeded.ddl b/tools/testfiles/pbits/tpbitsLengthExceeded.ddl index 796f0f9..ffe0da9 100644 --- a/tools/testfiles/pbits/tpbitsLengthExceeded.ddl +++ b/tools/testfiles/pbits/tpbitsLengthExceeded.ddl @@ -25,6 +25,8 @@ usage: h5dump [OPTIONS] files P can be the absolute path or just a relative path. -A, --onlyattr Print the header and value of attributes Optional value 0 suppresses printing attributes. + --vds-view-first-missing Set the VDS bounds to first missing mapped elements. + --vds-gap-size=N Set the missing file gap size, N=non-negative integers --------------- Object Property Options --------------- -i, --object-ids Print the object ids -p, --properties Print dataset filters, storage layout and fill value @@ -42,8 +44,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsLengthPositive.ddl b/tools/testfiles/pbits/tpbitsLengthPositive.ddl index 55a0e76..5a82df1 100644 --- a/tools/testfiles/pbits/tpbitsLengthPositive.ddl +++ b/tools/testfiles/pbits/tpbitsLengthPositive.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsMaxExceeded.ddl b/tools/testfiles/pbits/tpbitsMaxExceeded.ddl index 89901c6..7aae845 100644 --- a/tools/testfiles/pbits/tpbitsMaxExceeded.ddl +++ b/tools/testfiles/pbits/tpbitsMaxExceeded.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsOffsetExceeded.ddl b/tools/testfiles/pbits/tpbitsOffsetExceeded.ddl index 51777d8..6982a78 100644 --- a/tools/testfiles/pbits/tpbitsOffsetExceeded.ddl +++ b/tools/testfiles/pbits/tpbitsOffsetExceeded.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) diff --git a/tools/testfiles/pbits/tpbitsOffsetNegative.ddl b/tools/testfiles/pbits/tpbitsOffsetNegative.ddl index e76ff7f..086c3ce 100644 --- a/tools/testfiles/pbits/tpbitsOffsetNegative.ddl +++ b/tools/testfiles/pbits/tpbitsOffsetNegative.ddl @@ -42,8 +42,8 @@ usage: h5dump [OPTIONS] files -m T, --format=T Set the floating point output format -q Q, --sort_by=Q Sort groups and attributes by index Q -z Z, --sort_order=Z Sort groups and attributes by order Z - --enable-error-stack Prints messages from the HDF5 error stack as they - occur. + --enable-error-stack Prints messages from the HDF5 error stack as they occur. + Optional value 2 also prints file open errors. --no-compact-subset Disable compact form of subsetting and allow the use of "[" in dataset names. -w N, --width=N Set the number of columns of output. A value of 0 (zero) -- cgit v0.12 From 85590e85cbe38d4491e4d79e0c277bcfe81b8e4c Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 22 Feb 2018 11:37:06 -0600 Subject: HDFFV-10412 merge from develop --- release_docs/RELEASE.txt | 12 +++++++ tools/h5repack/h5repack_filters.c | 38 +++++++++++----------- .../testfiles/deflate_limit.h5repack_layout.h5.ddl | 4 +-- .../testfiles/h5repack_layout.h5-plugin_test.ddl | 2 +- .../h5repack_layout.h5-plugin_version_test.ddl | 2 +- 5 files changed, 35 insertions(+), 23 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 3ab9fc0..5d01e13 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -169,6 +169,18 @@ Bug Fixes since HDF5-1.8.20 Tools ----- + - h5repack + + h5repack changes the chunk parameters when a change of layout is not + specified and a filter is applied. + + HDFFV-10297, HDFFV-10319 reworked code for h5repack and h5diff code + in the tools library. The check for an existing layout was incorrectly + placed into an if block and not executed. The check was moved into + the normal path of the function. + + (ADB - 2018/02/21, HDFFV-10412) + - h5dump the tools library will hide the error stack during file open. diff --git a/tools/h5repack/h5repack_filters.c b/tools/h5repack/h5repack_filters.c index eb8d724..8cc7b92 100644 --- a/tools/h5repack/h5repack_filters.c +++ b/tools/h5repack/h5repack_filters.c @@ -277,25 +277,6 @@ int apply_filters(const char* name, /* object name from traverse list */ *has_filter = 1; if (H5Premove_filter(dcpl_id, H5Z_FILTER_ALL) < 0) HGOTO_ERROR(FAIL, H5E_tools_min_id_g, "H5Premove_filter failed"); - - /*------------------------------------------------------------------------- - * check if there is an existent chunk - * read it only if there is not a requested layout - *------------------------------------------------------------------------- - */ - if (obj.layout == -1) { - if ((layout = H5Pget_layout(dcpl_id)) < 0) - HGOTO_ERROR(FAIL, H5E_tools_min_id_g, "H5Pget_layout failed"); - - if (layout == H5D_CHUNKED) { - if ((rank = H5Pget_chunk(dcpl_id, NELMTS(chsize), chsize/*out*/)) < 0) - HGOTO_ERROR(FAIL, H5E_tools_min_id_g, "H5Pget_chunk failed"); - obj.layout = H5D_CHUNKED; - obj.chunk.rank = rank; - for (i = 0; i < rank; i++) - obj.chunk.chunk_lengths[i] = chsize[i]; - } - } } else if(nfilters) { *has_filter = 1; @@ -304,6 +285,25 @@ int apply_filters(const char* name, /* object name from traverse list */ } /*------------------------------------------------------------------------- + * check if there is an existent chunk + * read it only if there is not a requested layout + *------------------------------------------------------------------------- + */ + if (obj.layout == -1) { + if ((layout = H5Pget_layout(dcpl_id)) < 0) + HGOTO_ERROR(FAIL, H5E_tools_min_id_g, "H5Pget_layout failed"); + + if (layout == H5D_CHUNKED) { + if ((rank = H5Pget_chunk(dcpl_id, NELMTS(chsize), chsize/*out*/)) < 0) + HGOTO_ERROR(FAIL, H5E_tools_min_id_g, "H5Pget_chunk failed"); + obj.layout = H5D_CHUNKED; + obj.chunk.rank = rank; + for (i = 0; i < rank; i++) + obj.chunk.chunk_lengths[i] = chsize[i]; + } + } + + /*------------------------------------------------------------------------- * the type of filter and additional parameter * type can be one of the filters * H5Z_FILTER_NONE 0 , uncompress if compressed diff --git a/tools/h5repack/testfiles/deflate_limit.h5repack_layout.h5.ddl b/tools/h5repack/testfiles/deflate_limit.h5repack_layout.h5.ddl index 1b0b821..80b8a19 100644 --- a/tools/h5repack/testfiles/deflate_limit.h5repack_layout.h5.ddl +++ b/tools/h5repack/testfiles/deflate_limit.h5repack_layout.h5.ddl @@ -76,8 +76,8 @@ GROUP "/" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 40, 20 ) / ( 40, H5S_UNLIMITED ) } STORAGE_LAYOUT { - CHUNKED ( 40, 20 ) - SIZE 1150 (2.783:1 COMPRESSION) + CHUNKED ( 20, 10 ) + SIZE 1283 (2.494:1 COMPRESSION) } FILTERS { COMPRESSION DEFLATE { LEVEL 1 } diff --git a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_test.ddl b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_test.ddl index 9e80c72..87b133d 100644 --- a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_test.ddl +++ b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_test.ddl @@ -92,7 +92,7 @@ GROUP "/" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 40, 20 ) / ( 40, H5S_UNLIMITED ) } STORAGE_LAYOUT { - CHUNKED ( 40, 20 ) + CHUNKED ( 20, 10 ) SIZE 3200 (1.000:1 COMPRESSION) } FILTERS { diff --git a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl index d582d2d..e8ac9a4 100644 --- a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl +++ b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl @@ -92,7 +92,7 @@ GROUP "/" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 40, 20 ) / ( 40, H5S_UNLIMITED ) } STORAGE_LAYOUT { - CHUNKED ( 40, 20 ) + CHUNKED ( 20, 10 ) SIZE 3200 (1.000:1 COMPRESSION) } FILTERS { -- cgit v0.12 From a3fc897d5e8fa6cec58a0c4fcbbc336514a436f6 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 22 Feb 2018 12:14:43 -0600 Subject: Correct merge typo --- tools/testfiles/pbits/tpbitsLengthExceeded.ddl | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/testfiles/pbits/tpbitsLengthExceeded.ddl b/tools/testfiles/pbits/tpbitsLengthExceeded.ddl index ffe0da9..6b37ac6 100644 --- a/tools/testfiles/pbits/tpbitsLengthExceeded.ddl +++ b/tools/testfiles/pbits/tpbitsLengthExceeded.ddl @@ -25,8 +25,6 @@ usage: h5dump [OPTIONS] files P can be the absolute path or just a relative path. -A, --onlyattr Print the header and value of attributes Optional value 0 suppresses printing attributes. - --vds-view-first-missing Set the VDS bounds to first missing mapped elements. - --vds-gap-size=N Set the missing file gap size, N=non-negative integers --------------- Object Property Options --------------- -i, --object-ids Print the object ids -p, --properties Print dataset filters, storage layout and fill value -- cgit v0.12 From 4ceeadc767518dba99d81de1c458ae35ad2a8625 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 25 Feb 2018 21:31:12 -0600 Subject: Snapshot version 1.8 release 21 (snap8) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 757294f..2c5d7d8 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap8 currently under development +HDF5 version 1.8.21-snap9 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index a10a675..c446992 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap8, currently under development" +PROJECT_NUMBER = "1.8.21-snap9, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 9530638..bbce0ad 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap8") +set (CTEST_SOURCE_VERSEXT "-snap9") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 815f71f..cf782b3 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap8. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap9. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap8' -PACKAGE_STRING='HDF5 1.8.21-snap8' +PACKAGE_VERSION='1.8.21-snap9' +PACKAGE_STRING='HDF5 1.8.21-snap9' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap8 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap8:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap9:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap8 +HDF5 configure 1.8.21-snap9 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap8, which was +It was created by HDF5 $as_me 1.8.21-snap9, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap8' + VERSION='1.8.21-snap9' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap8 +HDF5 config.lt 1.8.21-snap9 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap8, which was +This file was extended by HDF5 $as_me 1.8.21-snap9, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap8 +HDF5 config.status 1.8.21-snap9 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index a7703c5..2fe7412 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap8], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap9], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 5d01e13..5228b37 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap8 currently under development +HDF5 version 1.8.21-snap9 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 54f89d6..d003af9 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap8" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap9" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap8" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap9" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 6db78aab250683d5b5a4add876a4aca299f629ce Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 26 Feb 2018 14:16:45 -0600 Subject: Update list of options --- release_docs/INSTALL_CMake.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index 58169fc..a9d9726 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -564,7 +564,6 @@ if (HDF5_BUILD_FORTRAN) ALLOW_UNSUPPORTED "Allow unsupported combinations of configure options" OFF HDF5_DISABLE_COMPILER_WARNINGS "Disable compiler warnings" OFF HDF5_Enable_Clear_File_Buffers "Securely clear file buffers before writing to file" ON -HDF5_Enable_Instrument "Instrument The library" OFF HDF5_ENABLE_CODESTACK "Enable the function stack tracing (for developer debugging)." OFF HDF5_ENABLE_COVERAGE "Enable code coverage for Libraries and Programs" OFF HDF5_ENABLE_DEPRECATED_SYMBOLS "Enable deprecated public API symbols" ON @@ -580,6 +579,8 @@ HDF5_METADATA_TRACE_FILE "Enable metadata trace file collection" HDF5_NO_PACKAGES "Do not include CPack Packaging" OFF HDF5_PACK_EXAMPLES "Package the HDF5 Library Examples Compressed File" OFF HDF5_PACK_MACOSX_FRAMEWORK "Package the HDF5 Library in a Frameworks" OFF +HDF5_BUILD_FRAMEWORKS "TRUE to build as frameworks libraries, + FALSE to build according to BUILD_SHARED_LIBS" FALSE HDF5_PACKAGE_EXTLIBS "CPACK - include external libraries" OFF HDF5_STRICT_FORMAT_CHECKS "Whether to perform strict file format checks" OFF HDF_TEST_EXPRESS "Control testing framework (0-3)" "0" @@ -593,7 +594,7 @@ SKIP_HDF5_FORTRAN_SHARED "Do not build the fortran shared libraries" if (APPLE) HDF5_BUILD_WITH_INSTALL_NAME "Build with library install_name set to the installation path" OFF if (CMAKE_BUILD_TYPE MATCHES Debug) - HDF5_ENABLE_TRACE "Enable API tracing capability" ON + HDF5_ENABLE_INSTRUMENT "Instrument The library" OFF if (HDF5_TEST_VFD) HDF5_TEST_FHEAP_VFD "Execute fheap test with different VFDs" ON -- cgit v0.12 From e1107fa559474a6b6a4147d24192be75a495b971 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 26 Feb 2018 14:19:29 -0600 Subject: Update list --- release_docs/INSTALL_CMake.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index a9d9726..2c8bc1a 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -563,6 +563,7 @@ if (HDF5_BUILD_FORTRAN) ---------------- HDF5 Advanced Options --------------------- ALLOW_UNSUPPORTED "Allow unsupported combinations of configure options" OFF HDF5_DISABLE_COMPILER_WARNINGS "Disable compiler warnings" OFF +HDF5_ENABLE_ALL_WARNINGS "Enable all warnings" OFF HDF5_Enable_Clear_File_Buffers "Securely clear file buffers before writing to file" ON HDF5_ENABLE_CODESTACK "Enable the function stack tracing (for developer debugging)." OFF HDF5_ENABLE_COVERAGE "Enable code coverage for Libraries and Programs" OFF -- cgit v0.12 From 344940dd2dc894c8e1474ddd20d30886fcc74a1e Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 1 Mar 2018 10:58:53 -0600 Subject: Merge compiler versions from develop --- config/cmake/libhdf5.settings.cmake.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/cmake/libhdf5.settings.cmake.in b/config/cmake/libhdf5.settings.cmake.in index 8ef67a5..c337dea 100644 --- a/config/cmake/libhdf5.settings.cmake.in +++ b/config/cmake/libhdf5.settings.cmake.in @@ -15,7 +15,7 @@ General Information: Compiling Options: ------------------ - Compilation Mode: @CMAKE_BUILD_TYPE@ + Compilation Mode: @CMAKE_BUILD_TYPE@ @CMAKE_C_COMPILER_VERSION@ C Compiler: @CMAKE_C_COMPILER@ CFLAGS: @CMAKE_C_FLAGS@ H5_CFLAGS: @H5_CFLAGS@ @@ -37,7 +37,7 @@ Compiling Options: Languages: ---------- Fortran: @HDF5_BUILD_FORTRAN@ -@BUILD_FORTRAN_CONDITIONAL_TRUE@ Fortran Compiler: @CMAKE_Fortran_COMPILER@ +@BUILD_FORTRAN_CONDITIONAL_TRUE@ Fortran Compiler: @CMAKE_Fortran_COMPILER@ @CMAKE_Fortran_COMPILER_VERSION@ @BUILD_FORTRAN_CONDITIONAL_TRUE@ Fortran 2003 Compiler: @HDF5_ENABLE_F2003@ @BUILD_FORTRAN_CONDITIONAL_TRUE@ Fortran Flags: @CMAKE_Fortran_FLAGS@ @BUILD_FORTRAN_CONDITIONAL_TRUE@ H5 Fortran Flags: @H5_FCFLAGS@ @@ -46,7 +46,7 @@ Languages: @BUILD_FORTRAN_CONDITIONAL_TRUE@ Static Fortran Library: YES C++: @HDF5_BUILD_CPP_LIB@ -@BUILD_CXX_CONDITIONAL_TRUE@ C++ Compiler: @CMAKE_CXX_COMPILER@ +@BUILD_CXX_CONDITIONAL_TRUE@ C++ Compiler: @CMAKE_CXX_COMPILER@ @CMAKE_CXX_COMPILER_VERSION@ @BUILD_CXX_CONDITIONAL_TRUE@ C++ Flags: @CMAKE_CXX_FLAGS@ @BUILD_CXX_CONDITIONAL_TRUE@ H5 C++ Flags: @H5_CXXFLAGS@ @BUILD_CXX_CONDITIONAL_TRUE@ AM C++ Flags: @AM_CXXFLAGS@ -- cgit v0.12 From c1cc4a123fd1a7b3acdad6c3d9376168c87108b0 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 4 Mar 2018 21:23:03 -0600 Subject: Snapshot version 1.8 release 21 (snap9) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 2c5d7d8..5c52946 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap9 currently under development +HDF5 version 1.8.21-snap10 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index c446992..c8869af 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap9, currently under development" +PROJECT_NUMBER = "1.8.21-snap10, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index bbce0ad..c220c66e 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap9") +set (CTEST_SOURCE_VERSEXT "-snap10") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index cf782b3..e09da0b 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap9. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap10. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap9' -PACKAGE_STRING='HDF5 1.8.21-snap9' +PACKAGE_VERSION='1.8.21-snap10' +PACKAGE_STRING='HDF5 1.8.21-snap10' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap9 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap9:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap10:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap9 +HDF5 configure 1.8.21-snap10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap9, which was +It was created by HDF5 $as_me 1.8.21-snap10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap9' + VERSION='1.8.21-snap10' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap9 +HDF5 config.lt 1.8.21-snap10 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap9, which was +This file was extended by HDF5 $as_me 1.8.21-snap10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap9 +HDF5 config.status 1.8.21-snap10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 2fe7412..6303100 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap9], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap10], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 5228b37..84bed48 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap9 currently under development +HDF5 version 1.8.21-snap10 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index d003af9..3aba4c3 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap9" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap10" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap9" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap10" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From e835063ebfada628b80046cc8328d8771abd9e11 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 9 Mar 2018 12:38:48 -0600 Subject: Change CMake min to 3.10 --- CMakeLists.txt | 2 +- c++/CMakeLists.txt | 2 +- c++/examples/CMakeLists.txt | 2 +- c++/src/CMakeLists.txt | 2 +- c++/test/CMakeLists.txt | 2 +- config/cmake/CTestScript.cmake | 2 +- config/cmake/HDF518_Examples.cmake.in | 2 +- config/cmake/scripts/CTestScript.cmake | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- config/cmake_ext_mod/FindMPI.cmake | 1514 -------------------- .../cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in | 4 - config/cmake_ext_mod/FindMPI/libver_mpi.c | 19 - config/cmake_ext_mod/FindMPI/libver_mpi.f90.in | 7 - config/cmake_ext_mod/FindMPI/mpiver.f90.in | 10 - config/cmake_ext_mod/FindMPI/test_mpi.c | 37 - config/cmake_ext_mod/FindMPI/test_mpi.f90.in | 6 - examples/CMakeLists.txt | 2 +- fortran/CMakeLists.txt | 2 +- fortran/examples/CMakeLists.txt | 2 +- fortran/src/CMakeLists.txt | 2 +- fortran/test/CMakeLists.txt | 2 +- fortran/testpar/CMakeLists.txt | 2 +- hl/CMakeLists.txt | 2 +- hl/c++/CMakeLists.txt | 2 +- hl/c++/examples/CMakeLists.txt | 2 +- hl/c++/src/CMakeLists.txt | 2 +- hl/c++/test/CMakeLists.txt | 2 +- hl/examples/CMakeLists.txt | 2 +- hl/fortran/CMakeLists.txt | 2 +- hl/fortran/examples/CMakeLists.txt | 2 +- hl/fortran/src/CMakeLists.txt | 2 +- hl/fortran/test/CMakeLists.txt | 2 +- hl/src/CMakeLists.txt | 2 +- hl/test/CMakeLists.txt | 2 +- hl/tools/CMakeLists.txt | 2 +- hl/tools/gif2h5/CMakeLists.txt | 2 +- release_docs/INSTALL_CMake.txt | 2 +- release_docs/USING_HDF5_CMake.txt | 4 +- src/CMakeLists.txt | 2 +- test/CMakeLists.txt | 2 +- testpar/CMakeLists.txt | 2 +- tools/CMakeLists.txt | 2 +- tools/h5copy/CMakeLists.txt | 2 +- tools/h5diff/CMakeLists.txt | 2 +- tools/h5dump/CMakeLists.txt | 2 +- tools/h5import/CMakeLists.txt | 2 +- tools/h5jam/CMakeLists.txt | 2 +- tools/h5ls/CMakeLists.txt | 2 +- tools/h5repack/CMakeLists.txt | 2 +- tools/h5stat/CMakeLists.txt | 2 +- tools/lib/CMakeLists.txt | 2 +- tools/misc/CMakeLists.txt | 2 +- tools/perform/CMakeLists.txt | 2 +- 53 files changed, 47 insertions(+), 1644 deletions(-) delete mode 100644 config/cmake_ext_mod/FindMPI.cmake delete mode 100644 config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in delete mode 100644 config/cmake_ext_mod/FindMPI/libver_mpi.c delete mode 100644 config/cmake_ext_mod/FindMPI/libver_mpi.f90.in delete mode 100644 config/cmake_ext_mod/FindMPI/mpiver.f90.in delete mode 100644 config/cmake_ext_mod/FindMPI/test_mpi.c delete mode 100644 config/cmake_ext_mod/FindMPI/test_mpi.f90.in diff --git a/CMakeLists.txt b/CMakeLists.txt index cd40b2c..61ed4c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.3) +cmake_minimum_required (VERSION 3.10) (VERSION 3.3) PROJECT (HDF5 C CXX) #----------------------------------------------------------------------------- diff --git a/c++/CMakeLists.txt b/c++/CMakeLists.txt index adbf1a4..2c161f1 100644 --- a/c++/CMakeLists.txt +++ b/c++/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_CPP) #----------------------------------------------------------------------------- diff --git a/c++/examples/CMakeLists.txt b/c++/examples/CMakeLists.txt index 300f6bc..22ecb19 100644 --- a/c++/examples/CMakeLists.txt +++ b/c++/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_CPP_EXAMPLES) # -------------------------------------------------------------------- diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 82ece33..1352c66 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_CPP_SRC) #----------------------------------------------------------------------------- diff --git a/c++/test/CMakeLists.txt b/c++/test/CMakeLists.txt index 9bf983d..665a49f 100644 --- a/c++/test/CMakeLists.txt +++ b/c++/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_CPP_TEST) # -------------------------------------------------------------------- # Notes: When creating unit test executables they should be prefixed diff --git a/config/cmake/CTestScript.cmake b/config/cmake/CTestScript.cmake index a8b7bbc..0269ba8 100644 --- a/config/cmake/CTestScript.cmake +++ b/config/cmake/CTestScript.cmake @@ -9,7 +9,7 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # -cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ######################################################## # For any comments please contact cdashhelp@hdfgroup.org # diff --git a/config/cmake/HDF518_Examples.cmake.in b/config/cmake/HDF518_Examples.cmake.in index 1aedda3..f1f5ac2 100644 --- a/config/cmake/HDF518_Examples.cmake.in +++ b/config/cmake/HDF518_Examples.cmake.in @@ -9,7 +9,7 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # -cmake_minimum_required(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) ############################################################################################################### # This script will build and run the examples from a folder # Execute from a command line: diff --git a/config/cmake/scripts/CTestScript.cmake b/config/cmake/scripts/CTestScript.cmake index f826e31..670196b 100755 --- a/config/cmake/scripts/CTestScript.cmake +++ b/config/cmake/scripts/CTestScript.cmake @@ -9,7 +9,7 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # -cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ######################################################## # This dashboard is maintained by The HDF Group # For any comments please contact cdashhelp@hdfgroup.org diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index c220c66e..33ef682 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -15,7 +15,7 @@ ### ctest -S HDF518config.cmake,BUILD_GENERATOR=VS201264 -C Release -VV -O hdf518.log ### ############################################################################################# -cmake_minimum_required (VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ############################################################################ # Usage: # ctest -S HDF518config.cmake,OPTION=VALUE -C Release -VV -O test.log diff --git a/config/cmake_ext_mod/FindMPI.cmake b/config/cmake_ext_mod/FindMPI.cmake deleted file mode 100644 index d01dd35..0000000 --- a/config/cmake_ext_mod/FindMPI.cmake +++ /dev/null @@ -1,1514 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See https://cmake.org/licensing for details. - -#.rst: -# FindMPI -# ------- -# -# Find a Message Passing Interface (MPI) implementation. -# -# The Message Passing Interface (MPI) is a library used to write -# high-performance distributed-memory parallel applications, and is -# typically deployed on a cluster. MPI is a standard interface (defined -# by the MPI forum) for which many implementations are available. -# -# Variables for using MPI -# ^^^^^^^^^^^^^^^^^^^^^^^ -# -# The module exposes the components ``C``, ``CXX``, ``MPICXX`` and ``Fortran``. -# Each of these controls the various MPI languages to search for. -# The difference between ``CXX`` and ``MPICXX`` is that ``CXX`` refers to the -# MPI C API being usable from C++, whereas ``MPICXX`` refers to the MPI-2 C++ API -# that was removed again in MPI-3. -# -# Depending on the enabled components the following variables will be set: -# -# ``MPI_FOUND`` -# Variable indicating that MPI settings for all requested languages have been found. -# If no components are specified, this is true if MPI settings for all enabled languages -# were detected. Note that the ``MPICXX`` component does not affect this variable. -# ``MPI_VERSION`` -# Minimal version of MPI detected among the requested languages, or all enabled languages -# if no components were specified. -# -# This module will set the following variables per language in your -# project, where ```` is one of C, CXX, or Fortran: -# -# ``MPI__FOUND`` -# Variable indicating the MPI settings for ```` were found and that -# simple MPI test programs compile with the provided settings. -# ``MPI__COMPILER`` -# MPI compiler for ```` if such a program exists. -# ``MPI__COMPILE_OPTIONS`` -# Compilation options for MPI programs in ````, given as a :ref:`;-list `. -# ``MPI__COMPILE_DEFINITIONS`` -# Compilation definitions for MPI programs in ````, given as a :ref:`;-list `. -# ``MPI__INCLUDE_DIRS`` -# Include path(s) for MPI header. -# ``MPI__LINK_FLAGS`` -# Linker flags for MPI programs. -# ``MPI__LIBRARIES`` -# All libraries to link MPI programs against. -# -# Additionally, the following :prop_tgt:`IMPORTED` targets are defined: -# -# ``MPI::MPI_`` -# Target for using MPI from ````. -# -# The following variables indicating which bindings are present will be defined: -# -# ``MPI_MPICXX_FOUND`` -# Variable indicating whether the MPI-2 C++ bindings are present (introduced in MPI-2, removed with MPI-3). -# ``MPI_Fortran_HAVE_F77_HEADER`` -# True if the Fortran 77 header ``mpif.h`` is available. -# ``MPI_Fortran_HAVE_F90_MODULE`` -# True if the Fortran 90 module ``mpi`` can be used for accessing MPI (MPI-2 and higher only). -# ``MPI_Fortran_HAVE_F08_MODULE`` -# True if the Fortran 2008 ``mpi_f08`` is available to MPI programs (MPI-3 and higher only). -# -# If possible, the MPI version will be determined by this module. The facilities to detect the MPI version -# were introduced with MPI-1.2, and therefore cannot be found for older MPI versions. -# -# ``MPI__VERSION_MAJOR`` -# Major version of MPI implemented for ```` by the MPI distribution. -# ``MPI__VERSION_MINOR`` -# Minor version of MPI implemented for ```` by the MPI distribution. -# ``MPI__VERSION`` -# MPI version implemented for ```` by the MPI distribution. -# -# Note that there's no variable for the C bindings being accessible through ``mpi.h``, since the MPI standards -# always have required this binding to work in both C and C++ code. -# -# For running MPI programs, the module sets the following variables -# -# ``MPIEXEC_EXECUTABLE`` -# Executable for running MPI programs, if such exists. -# ``MPIEXEC_NUMPROC_FLAG`` -# Flag to pass to ``mpiexec`` before giving it the number of processors to run on. -# ``MPIEXEC_MAX_NUMPROCS`` -# Number of MPI processors to utilize. Defaults to the number -# of processors detected on the host system. -# ``MPIEXEC_PREFLAGS`` -# Flags to pass to ``mpiexec`` directly before the executable to run. -# ``MPIEXEC_POSTFLAGS`` -# Flags to pass to ``mpiexec`` after other flags. -# -# Variables for locating MPI -# ^^^^^^^^^^^^^^^^^^^^^^^^^^ -# -# This module performs a three step search for an MPI implementation: -# -# 1. Check if the compiler has MPI support built-in. This is the case if the user passed a -# compiler wrapper as ``CMAKE__COMPILER`` or if they're on a Cray system. -# 2. Attempt to find an MPI compiler wrapper and determine the compiler information from it. -# 3. Try to find an MPI implementation that does not ship such a wrapper by guessing settings. -# Currently, only Microsoft MPI and MPICH2 on Windows are supported. -# -# For controlling the second step, the following variables may be set: -# -# ``MPI__COMPILER`` -# Search for the specified compiler wrapper and use it. -# ``MPI__COMPILER_FLAGS`` -# Flags to pass to the MPI compiler wrapper during interrogation. Some compiler wrappers -# support linking debug or tracing libraries if a specific flag is passed and this variable -# may be used to obtain them. -# ``MPI_COMPILER_FLAGS`` -# Used to initialize ``MPI__COMPILER_FLAGS`` if no language specific flag has been given. -# Empty by default. -# ``MPI_EXECUTABLE_SUFFIX`` -# A suffix which is appended to all names that are being looked for. For instance you may set this -# to ``.mpich`` or ``.openmpi`` to prefer the one or the other on Debian and its derivatives. -# -# In order to control the guessing step, the following variable may be set: -# -# ``MPI_GUESS_LIBRARY_NAME`` -# Valid values are ``MSMPI`` and ``MPICH2``. If set, only the given library will be searched for. -# By default, ``MSMPI`` will be preferred over ``MPICH2`` if both are available. -# This also sets ``MPI_SKIP_COMPILER_WRAPPER`` to ``true``, which may be overridden. -# -# Each of the search steps may be skipped with the following control variables: -# -# ``MPI_ASSUME_NO_BUILTIN_MPI`` -# If true, the module assumes that the compiler itself does not provide an MPI implementation and -# skips to step 2. -# ``MPI_SKIP_COMPILER_WRAPPER`` -# If true, no compiler wrapper will be searched for. -# ``MPI_SKIP_GUESSING`` -# If true, the guessing step will be skipped. -# -# Additionally, the following control variable is available to change search behavior: -# -# ``MPI_CXX_SKIP_MPICXX`` -# Add some definitions that will disable the MPI-2 C++ bindings. -# Currently supported are MPICH, Open MPI, Platform MPI and derivatives thereof, -# for example MVAPICH or Intel MPI. -# -# If the find procedure fails for a variable ``MPI__WORKS``, then the settings detected by or passed to -# the module did not work and even a simple MPI test program failed to compile. -# -# If all of these parameters were not sufficient to find the right MPI implementation, a user may -# disable the entire autodetection process by specifying both a list of libraries in ``MPI__LIBRARIES`` -# and a list of include directories in ``MPI__ADDITIONAL_INCLUDE_DIRS``. -# Any other variable may be set in addition to these two. The module will then validate the MPI settings and store the -# settings in the cache. -# -# Cache variables for MPI -# ^^^^^^^^^^^^^^^^^^^^^^^ -# -# The variable ``MPI__INCLUDE_DIRS`` will be assembled from the following variables. -# For C and CXX: -# -# ``MPI__HEADER_DIR`` -# Location of the ``mpi.h`` header on disk. -# -# For Fortran: -# -# ``MPI_Fortran_F77_HEADER_DIR`` -# Location of the Fortran 77 header ``mpif.h``, if it exists. -# ``MPI_Fortran_MODULE_DIR`` -# Location of the ``mpi`` or ``mpi_f08`` modules, if available. -# -# For all languages the following variables are additionally considered: -# -# ``MPI__ADDITIONAL_INCLUDE_DIRS`` -# A :ref:`;-list ` of paths needed in addition to the normal include directories. -# ``MPI__INCLUDE_DIR`` -# Path variables for include folders referred to by ````. -# ``MPI__ADDITIONAL_INCLUDE_VARS`` -# A :ref:`;-list ` of ```` that will be added to the include locations of ````. -# -# The variable ``MPI__LIBRARIES`` will be assembled from the following variables: -# -# ``MPI__LIBRARY`` -# The location of a library called ```` for use with MPI. -# ``MPI__LIB_NAMES`` -# A :ref:`;-list ` of ```` that will be added to the include locations of ````. -# -# Usage of mpiexec -# ^^^^^^^^^^^^^^^^ -# -# When using ``MPIEXEC_EXECUTABLE`` to execute MPI applications, you should typically -# use all of the ``MPIEXEC_EXECUTABLE`` flags as follows: -# -# :: -# -# ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} -# ${MPIEXEC_PREFLAGS} EXECUTABLE ${MPIEXEC_POSTFLAGS} ARGS -# -# where ``EXECUTABLE`` is the MPI program, and ``ARGS`` are the arguments to -# pass to the MPI program. -# -# Advanced variables for using MPI -# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -# -# The module can perform some advanced feature detections upon explicit request. -# -# **Important notice:** The following checks cannot be performed without *executing* an MPI test program. -# Consider the special considerations for the behavior of :command:`try_run` during cross compilation. -# Moreover, running an MPI program can cause additional issues, like a firewall notification on some systems. -# You should only enable these detections if you absolutely need the information. -# -# If the following variables are set to true, the respective search will be performed: -# -# ``MPI_DETERMINE_Fortran_CAPABILITIES`` -# Determine for all available Fortran bindings what the values of ``MPI_SUBARRAYS_SUPPORTED`` and -# ``MPI_ASYNC_PROTECTS_NONBLOCKING`` are and make their values available as ``MPI_Fortran__SUBARRAYS`` -# and ``MPI_Fortran__ASYNCPROT``, where ```` is one of ``F77_HEADER``, ``F90_MODULE`` and -# ``F08_MODULE``. -# ``MPI_DETERMINE_LIBRARY_VERSION`` -# For each language, find the output of ``MPI_Get_library_version`` and make it available as ``MPI__LIBRARY_VERSION``. -# This information is usually tied to the runtime component of an MPI implementation and might differ depending on ````. -# Note that the return value is entirely implementation defined. This information might be used to identify -# the MPI vendor and for example pick the correct one of multiple third party binaries that matches the MPI vendor. -# -# Backward Compatibility -# ^^^^^^^^^^^^^^^^^^^^^^ -# -# For backward compatibility with older versions of FindMPI, these -# variables are set, but deprecated: -# -# :: -# -# MPI_COMPILER MPI_LIBRARY MPI_EXTRA_LIBRARY -# MPI_COMPILE_FLAGS MPI_INCLUDE_PATH MPI_LINK_FLAGS -# MPI_LIBRARIES -# -# In new projects, please use the ``MPI__XXX`` equivalents. -# Additionally, the following variables are deprecated: -# -# ``MPI__COMPILE_FLAGS`` -# Use ``MPI__COMPILE_OPTIONS`` and ``MPI__COMPILE_DEFINITIONS`` instead. -# ``MPI__INCLUDE_PATH`` -# For consumption use ``MPI__INCLUDE_DIRS`` and for specifying folders use ``MPI__ADDITIONAL_INCLUDE_DIRS`` instead. -# ``MPIEXEC`` -# Use ``MPIEXEC_EXECUTABLE`` instead. - -cmake_policy(PUSH) -cmake_policy(SET CMP0057 NEW) # if IN_LIST - -# include this to handle the QUIETLY and REQUIRED arguments -include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake) -include(GetPrerequisites) - -# Generic compiler names -set(_MPI_C_GENERIC_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r) -set(_MPI_CXX_GENERIC_COMPILER_NAMES mpicxx mpiCC mpcxx mpCC mpic++ mpc++ - mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r) -set(_MPI_Fortran_GENERIC_COMPILER_NAMES mpif95 mpif95_r mpf95 mpf95_r - mpif90 mpif90_r mpf90 mpf90_r - mpif77 mpif77_r mpf77 mpf77_r - mpifc) - -# GNU compiler names -set(_MPI_GNU_C_COMPILER_NAMES mpigcc mpgcc mpigcc_r mpgcc_r) -set(_MPI_GNU_CXX_COMPILER_NAMES mpig++ mpg++ mpig++_r mpg++_r mpigxx) -set(_MPI_GNU_Fortran_COMPILER_NAMES mpigfortran mpgfortran mpigfortran_r mpgfortran_r - mpig77 mpig77_r mpg77 mpg77_r) - -# Intel MPI compiler names on Windows -if(WIN32) - list(APPEND _MPI_C_GENERIC_COMPILER_NAMES mpicc.bat) - list(APPEND _MPI_CXX_GENERIC_COMPILER_NAMES mpicxx.bat) - list(APPEND _MPI_Fortran_GENERIC_COMPILER_NAMES mpifc.bat) - - # Intel MPI compiler names - set(_MPI_Intel_C_COMPILER_NAMES mpiicc.bat) - set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc.bat) - set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort.bat mpif77.bat mpif90.bat) - - # Intel MPI compiler names for MSMPI - set(_MPI_MSVC_C_COMPILER_NAMES mpicl.bat) - set(_MPI_MSVC_CXX_COMPILER_NAMES mpicl.bat) -else() - # Intel compiler names - set(_MPI_Intel_C_COMPILER_NAMES mpiicc) - set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc mpiicxx mpiic++) - set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort mpiif95 mpiif90 mpiif77) -endif() - -# PGI compiler names -set(_MPI_PGI_C_COMPILER_NAMES mpipgcc mppgcc) -set(_MPI_PGI_CXX_COMPILER_NAMES mpipgCC mppgCC) -set(_MPI_PGI_Fortran_COMPILER_NAMES mpipgf95 mpipgf90 mppgf95 mppgf90 mpipgf77 mppgf77) - -# XLC MPI Compiler names -set(_MPI_XL_C_COMPILER_NAMES mpxlc mpxlc_r mpixlc mpixlc_r) -set(_MPI_XL_CXX_COMPILER_NAMES mpixlcxx mpixlC mpixlc++ mpxlcxx mpxlc++ mpixlc++ mpxlCC - mpixlcxx_r mpixlC_r mpixlc++_r mpxlcxx_r mpxlc++_r mpixlc++_r mpxlCC_r) -set(_MPI_XL_Fortran_COMPILER_NAMES mpixlf95 mpixlf95_r mpxlf95 mpxlf95_r - mpixlf90 mpixlf90_r mpxlf90 mpxlf90_r - mpixlf77 mpixlf77_r mpxlf77 mpxlf77_r - mpixlf mpixlf_r mpxlf mpxlf_r) - -# Prepend vendor-specific compiler wrappers to the list. If we don't know the compiler, -# attempt all of them. -# By attempting vendor-specific compiler names first, we should avoid situations where the compiler wrapper -# stems from a proprietary MPI and won't know which compiler it's being used for. For instance, Intel MPI -# controls its settings via the I_MPI_CC environment variables if the generic name is being used. -# If we know which compiler we're working with, we can use the most specialized wrapper there is in order to -# pick up the right settings for it. -foreach (LANG IN ITEMS C CXX Fortran) - set(_MPI_${LANG}_COMPILER_NAMES "") - foreach (id IN ITEMS GNU Intel MSVC PGI XL) - if (NOT CMAKE_${LANG}_COMPILER_ID OR CMAKE_${LANG}_COMPILER_ID STREQUAL id) - list(APPEND _MPI_${LANG}_COMPILER_NAMES ${_MPI_${id}_${LANG}_COMPILER_NAMES}${MPI_EXECUTABLE_SUFFIX}) - endif() - unset(_MPI_${id}_${LANG}_COMPILER_NAMES) - endforeach() - list(APPEND _MPI_${LANG}_COMPILER_NAMES ${_MPI_${LANG}_GENERIC_COMPILER_NAMES}${MPI_EXECUTABLE_SUFFIX}) - unset(_MPI_${LANG}_GENERIC_COMPILER_NAMES) -endforeach() - -# Names to try for mpiexec -# Only mpiexec commands are guaranteed to behave as described in the standard, -# mpirun commands are not covered by the standard in any way whatsoever. -# lamexec is the executable for LAM/MPI, srun is for SLURM or Open MPI with SLURM support. -# srun -n X is however a valid command, so it behaves 'like' mpiexec. -set(_MPIEXEC_NAMES_BASE mpiexec mpiexec.hydra mpiexec.mpd mpirun lamexec srun) - -unset(_MPIEXEC_NAMES) -foreach(_MPIEXEC_NAME IN LISTS _MPIEXEC_NAMES_BASE) - list(APPEND _MPIEXEC_NAMES "${_MPIEXEC_NAME}${MPI_EXECUTABLE_SUFFIX}") -endforeach() -unset(_MPIEXEC_NAMES_BASE) - -function (_MPI_check_compiler LANG QUERY_FLAG OUTPUT_VARIABLE RESULT_VARIABLE) - if(DEFINED MPI_${LANG}_COMPILER_FLAGS) - separate_arguments(_MPI_COMPILER_WRAPPER_OPTIONS NATIVE_COMMAND "${MPI_${LANG}_COMPILER_FLAGS}") - else() - separate_arguments(_MPI_COMPILER_WRAPPER_OPTIONS NATIVE_COMMAND "${MPI_COMPILER_FLAGS}") - endif() - execute_process( - COMMAND ${MPI_${LANG}_COMPILER} ${_MPI_COMPILER_WRAPPER_OPTIONS} ${QUERY_FLAG} - OUTPUT_VARIABLE WRAPPER_OUTPUT OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE WRAPPER_OUTPUT ERROR_STRIP_TRAILING_WHITESPACE - RESULT_VARIABLE WRAPPER_RETURN) - # Some compiler wrappers will yield spurious zero return values, for example - # Intel MPI tolerates unknown arguments and if the MPI wrappers loads a shared - # library that has invalid or missing version information there would be warning - # messages emitted by ld.so in the compiler output. In either case, we'll treat - # the output as invalid. - if("${WRAPPER_OUTPUT}" MATCHES "undefined reference|unrecognized|need to set|no version information available|command not found") - set(WRAPPER_RETURN 255) - endif() - # Ensure that no error output might be passed upwards. - if(NOT WRAPPER_RETURN EQUAL 0) - unset(WRAPPER_OUTPUT) - endif() - set(${OUTPUT_VARIABLE} "${WRAPPER_OUTPUT}" PARENT_SCOPE) - set(${RESULT_VARIABLE} "${WRAPPER_RETURN}" PARENT_SCOPE) -endfunction() - -function (_MPI_interrogate_compiler lang) - unset(MPI_COMPILE_CMDLINE) - unset(MPI_LINK_CMDLINE) - - unset(MPI_COMPILE_OPTIONS_WORK) - unset(MPI_COMPILE_DEFINITIONS_WORK) - unset(MPI_INCLUDE_DIRS_WORK) - unset(MPI_LINK_FLAGS_WORK) - unset(MPI_LIB_NAMES_WORK) - unset(MPI_LIB_FULLPATHS_WORK) - - # Check whether the -showme:compile option works. This indicates that we have either Open MPI - # or a newer version of LAM/MPI, and implies that -showme:link will also work. - # Open MPI also supports -show, but separates linker and compiler information - _MPI_check_compiler(${LANG} "-showme:compile" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - if (MPI_COMPILER_RETURN EQUAL 0) - _MPI_check_compiler(${LANG} "-showme:link" MPI_LINK_CMDLINE MPI_COMPILER_RETURN) - - if (NOT MPI_COMPILER_RETURN EQUAL 0) - unset(MPI_COMPILE_CMDLINE) - endif() - endif() - - # MPICH and MVAPICH offer -compile-info and -link-info. - # For modern versions, both do the same as -show. However, for old versions, they do differ - # when called for mpicxx and mpif90 and it's necessary to use them over -show in order to find the - # removed MPI C++ bindings. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - _MPI_check_compiler(${LANG} "-compile-info" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - - if (MPI_COMPILER_RETURN EQUAL 0) - _MPI_check_compiler(${LANG} "-link-info" MPI_LINK_CMDLINE MPI_COMPILER_RETURN) - - if (NOT MPI_COMPILER_RETURN EQUAL 0) - unset(MPI_COMPILE_CMDLINE) - endif() - endif() - endif() - - # MPICH, MVAPICH2 and Intel MPI just use "-show". Open MPI also offers this, but the - # -showme commands are more specialized. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - _MPI_check_compiler(${LANG} "-show" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - endif() - - # Older versions of LAM/MPI have "-showme". Open MPI also supports this. - # Unknown to MPICH, MVAPICH and Intel MPI. - if (NOT MPI_COMPILER_RETURN EQUAL 0) - _MPI_check_compiler(${LANG} "-showme" MPI_COMPILE_CMDLINE MPI_COMPILER_RETURN) - endif() - - if (NOT (MPI_COMPILER_RETURN EQUAL 0) OR NOT (DEFINED MPI_COMPILE_CMDLINE)) - # Cannot interrogate this compiler, so exit. - set(MPI_${LANG}_WRAPPER_FOUND FALSE PARENT_SCOPE) - return() - endif() - unset(MPI_COMPILER_RETURN) - - # We have our command lines, but we might need to copy MPI_COMPILE_CMDLINE - # into MPI_LINK_CMDLINE, if we didn't find the link line. - if (NOT DEFINED MPI_LINK_CMDLINE) - set(MPI_LINK_CMDLINE "${MPI_COMPILE_CMDLINE}") - endif() - - # At this point, we obtained some output from a compiler wrapper that works. - # We'll now try to parse it into variables with meaning to us. - if("${LANG}" STREQUAL "Fortran") - # Some MPICH-1 and MVAPICH-1 versions return a three command answer for Fortran, consisting - # out of a symlink command for mpif.h, the actual compiler command and a deletion of the - # created symlink. We need to detect that case, remember the include path and drop the - # symlink/deletion operation to obtain the link/compile lines we'd usually expect. - if("${MPI_COMPILE_CMDLINE}" MATCHES "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h") - get_filename_component(MPI_INCLUDE_DIRS_WORK "${CMAKE_MATCH_1}" DIRECTORY) - string(REGEX REPLACE "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h\n" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") - string(REGEX REPLACE "^ln -s ([^\" ]+|\"[^\"]+\") mpif.h\n" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") - string(REGEX REPLACE "\nrm -f mpif.h$" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") - string(REGEX REPLACE "\nrm -f mpif.h$" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") - endif() - endif() - - # The Intel MPI wrapper on Linux will emit some objcopy commands after its compile command - # if -static_mpi was passed to the wrapper. To avoid spurious matches, we need to drop these lines. - if(UNIX) - string(REGEX REPLACE "(^|\n)objcopy[^\n]+(\n|$)" "" MPI_COMPILE_CMDLINE "${MPI_COMPILE_CMDLINE}") - string(REGEX REPLACE "(^|\n)objcopy[^\n]+(\n|$)" "" MPI_LINK_CMDLINE "${MPI_LINK_CMDLINE}") - endif() - - # Extract compile options from the compile command line. - string(REGEX MATCHALL "(^| )-f([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_OPTIONS "${MPI_COMPILE_CMDLINE}") - - foreach(_MPI_COMPILE_OPTION IN LISTS MPI_ALL_COMPILE_OPTIONS) - string(REGEX REPLACE "^ " "" _MPI_COMPILE_OPTION "${_MPI_COMPILE_OPTION}") - # Ignore -fstack-protector directives: These occur on MPICH and MVAPICH when the libraries - # themselves were built with this flag. However, this flag is unrelated to using MPI, and - # we won't match the accompanying --param-ssp-size and -Wp,-D_FORTIFY_SOURCE flags and therefore - # produce inconsistent results with the regularly flags. - # Similarly, aliasing flags do not belong into our flag array. - if(NOT "${_MPI_COMPILE_OPTION}" MATCHES "^-f(stack-protector|(no-|)strict-aliasing|PI[CE]|pi[ce])") - list(APPEND MPI_COMPILE_OPTIONS_WORK "${_MPI_COMPILE_OPTION}") - endif() - endforeach() - - # Same deal, with the definitions. We also treat arguments passed to the preprocessor directly. - string(REGEX MATCHALL "(^| )(-Wp,|-Xpreprocessor |)[-/]D([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_DEFINITIONS "${MPI_COMPILE_CMDLINE}") - - foreach(_MPI_COMPILE_DEFINITION IN LISTS MPI_ALL_COMPILE_DEFINITIONS) - string(REGEX REPLACE "^ ?(-Wp,|-Xpreprocessor )?[-/]D" "" _MPI_COMPILE_DEFINITION "${_MPI_COMPILE_DEFINITION}") - string(REPLACE "\"" "" _MPI_COMPILE_DEFINITION "${_MPI_COMPILE_DEFINITION}") - if(NOT "${_MPI_COMPILE_DEFINITION}" MATCHES "^_FORTIFY_SOURCE.*") - list(APPEND MPI_COMPILE_DEFINITIONS_WORK "${_MPI_COMPILE_DEFINITION}") - endif() - endforeach() - - # Extract include paths from compile command line - string(REGEX MATCHALL "(^| )[-/]I([^\" ]+|\"[^\"]+\")" MPI_ALL_INCLUDE_PATHS "${MPI_COMPILE_CMDLINE}") - - # If extracting failed to work, we'll try using -showme:incdirs. - if (NOT MPI_ALL_INCLUDE_PATHS) - _MPI_check_compiler(${LANG} "-showme:incdirs" MPI_INCDIRS_CMDLINE MPI_INCDIRS_COMPILER_RETURN) - if(MPI_INCDIRS_COMPILER_RETURN) - separate_arguments(MPI_ALL_INCLUDE_PATHS NATIVE_COMMAND "${MPI_INCDIRS_CMDLINE}") - endif() - endif() - - foreach(_MPI_INCLUDE_PATH IN LISTS MPI_ALL_INCLUDE_PATHS) - string(REGEX REPLACE "^ ?[-/]I" "" _MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}") - string(REPLACE "\"" "" _MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}") - get_filename_component(_MPI_INCLUDE_PATH "${_MPI_INCLUDE_PATH}" REALPATH) - list(APPEND MPI_INCLUDE_DIRS_WORK "${_MPI_INCLUDE_PATH}") - endforeach() - - # Extract linker paths from the link command line - string(REGEX MATCHALL "(^| )(-Wl,|-Xlinker |)(-L|[/-]LIBPATH:|[/-]libpath:)([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_PATHS "${MPI_LINK_CMDLINE}") - - # If extracting failed to work, we'll try using -showme:libdirs. - if (NOT MPI_ALL_LINK_PATHS) - _MPI_check_compiler(${LANG} "-showme:libdirs" MPI_LIBDIRS_CMDLINE MPI_LIBDIRS_COMPILER_RETURN) - if(MPI_LIBDIRS_COMPILER_RETURN) - separate_arguments(MPI_ALL_LINK_PATHS NATIVE_COMMAND "${MPI_LIBDIRS_CMDLINE}") - endif() - endif() - - foreach(_MPI_LPATH IN LISTS MPI_ALL_LINK_PATHS) - string(REGEX REPLACE "^ ?(-Wl,|-Xlinker )?(-L|[/-]LIBPATH:|[/-]libpath:)" "" _MPI_LPATH "${_MPI_LPATH}") - string(REPLACE "\"" "" _MPI_LPATH "${_MPI_LPATH}") - get_filename_component(_MPI_LPATH "${_MPI_LPATH}" REALPATH) - list(APPEND MPI_LINK_DIRECTORIES_WORK "${_MPI_LPATH}") - endforeach() - - # Extract linker flags from the link command line - string(REGEX MATCHALL "(^| )(-Wl,|-Xlinker )([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_FLAGS "${MPI_LINK_CMDLINE}") - - foreach(_MPI_LINK_FLAG IN LISTS MPI_ALL_LINK_FLAGS) - string(STRIP "${_MPI_LINK_FLAG}" _MPI_LINK_FLAG) - # MPI might be marked to build with non-executable stacks but this should not propagate. - if (NOT "${_MPI_LINK_FLAG}" MATCHES "(-Wl,|-Xlinker )-z,noexecstack") - if (MPI_LINK_FLAGS_WORK) - string(APPEND MPI_LINK_FLAGS_WORK " ${_MPI_LINK_FLAG}") - else() - set(MPI_LINK_FLAGS_WORK "${_MPI_LINK_FLAG}") - endif() - endif() - endforeach() - - # Extract the set of libraries to link against from the link command - # line - string(REGEX MATCHALL "(^| )-l([^\" ]+|\"[^\"]+\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") - - foreach(_MPI_LIB_NAME IN LISTS MPI_LIBNAMES) - string(REGEX REPLACE "^ ?-l" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) - if(NOT "${_MPI_LIB_PATH}" STREQUAL "") - list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") - else() - list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") - endif() - endforeach() - - if(WIN32) - # A compiler wrapper on Windows will just have the name of the - # library to link on its link line, potentially with a full path - string(REGEX MATCHALL "(^| )([^\" ]+\\.lib|\"[^\"]+\\.lib\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") - foreach(_MPI_LIB_NAME IN LISTS MPI_LIBNAMES) - string(REGEX REPLACE "^ " "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) - if(NOT "${_MPI_LIB_PATH}" STREQUAL "") - list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") - else() - list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") - endif() - endforeach() - else() - # On UNIX platforms, archive libraries can be given with full path. - string(REGEX MATCHALL "(^| )([^\" ]+\\.a|\"[^\"]+\\.a\")" MPI_LIBFULLPATHS "${MPI_LINK_CMDLINE}") - foreach(_MPI_LIB_NAME IN LISTS MPI_LIBFULLPATHS) - string(REGEX REPLACE "^ " "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - string(REPLACE "\"" "" _MPI_LIB_NAME "${_MPI_LIB_NAME}") - get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_NAME}" DIRECTORY) - if(NOT "${_MPI_LIB_PATH}" STREQUAL "") - list(APPEND MPI_LIB_FULLPATHS_WORK "${_MPI_LIB_NAME}") - else() - list(APPEND MPI_LIB_NAMES_WORK "${_MPI_LIB_NAME}") - endif() - endforeach() - endif() - - # An MPI compiler wrapper could have its MPI libraries in the implictly - # linked directories of the compiler itself. - if(DEFINED CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES) - list(APPEND MPI_LINK_DIRECTORIES_WORK "${CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES}") - endif() - - # Determine full path names for all of the libraries that one needs - # to link against in an MPI program - unset(MPI_PLAIN_LIB_NAMES_WORK) - foreach(_MPI_LIB_NAME IN LISTS MPI_LIB_NAMES_WORK) - get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB_NAME}" NAME_WE) - list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") - find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY - NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" - HINTS ${MPI_LINK_DIRECTORIES_WORK} - DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" - ) - mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) - endforeach() - - # Deal with the libraries given with full path next - unset(MPI_DIRECT_LIB_NAMES_WORK) - foreach(_MPI_LIB_FULLPATH IN LISTS MPI_LIB_FULLPATHS_WORK) - get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB_FULLPATH}" NAME_WE) - get_filename_component(_MPI_LIB_NAME "${_MPI_LIB_FULLPATH}" NAME) - get_filename_component(_MPI_LIB_PATH "${_MPI_LIB_FULLPATH}" DIRECTORY) - list(APPEND MPI_DIRECT_LIB_NAMES_WORK "${_MPI_PLAIN_LIB_NAME}") - find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY - NAMES "${_MPI_LIB_NAME}" - HINTS ${_MPI_LIB_PATH} - DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" - ) - mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) - endforeach() - if(MPI_DIRECT_LIB_NAMES_WORK) - set(MPI_PLAIN_LIB_NAMES_WORK "${MPI_DIRECT_LIB_NAMES_WORK};${MPI_PLAIN_LIB_NAMES_WORK}") - endif() - - # MPI might require pthread to work. The above mechanism wouldn't detect it, but we need to - # link it in that case. -lpthread is covered by the normal library treatment on the other hand. - if("${MPI_COMPILE_CMDLINE}" MATCHES "-pthread") - list(APPEND MPI_COMPILE_OPTIONS_WORK "-pthread") - if(MPI_LINK_FLAGS_WORK) - string(APPEND MPI_LINK_FLAGS_WORK " -pthread") - else() - set(MPI_LINK_FLAGS_WORK "-pthread") - endif() - endif() - - if(MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS) - list(APPEND MPI_COMPILE_DEFINITIONS_WORK "${MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS}") - endif() - if(MPI_${LANG}_EXTRA_COMPILE_OPTIONS) - list(APPEND MPI_COMPILE_OPTIONS_WORK "${MPI_${LANG}_EXTRA_COMPILE_OPTIONS}") - endif() - if(MPI_${LANG}_EXTRA_LIB_NAMES) - list(APPEND MPI_PLAIN_LIB_NAMES_WORK "${MPI_${LANG}_EXTRA_LIB_NAMES}") - endif() - - # If we found MPI, set up all of the appropriate cache entries - if(NOT MPI_${LANG}_COMPILE_OPTIONS) - set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_COMPILE_OPTIONS_WORK} CACHE STRING "MPI ${LANG} compilation options" FORCE) - endif() - if(NOT MPI_${LANG}_COMPILE_DEFINITIONS) - set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_COMPILE_DEFINITIONS_WORK} CACHE STRING "MPI ${LANG} compilation definitions" FORCE) - endif() - if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_INCLUDE_DIRS_WORK} CACHE STRING "MPI ${LANG} additional include directories" FORCE) - endif() - if(NOT MPI_${LANG}_LINK_FLAGS) - set(MPI_${LANG}_LINK_FLAGS ${MPI_LINK_FLAGS_WORK} CACHE STRING "MPI ${LANG} linker flags" FORCE) - endif() - if(NOT MPI_${LANG}_LIB_NAMES) - set(MPI_${LANG}_LIB_NAMES ${MPI_PLAIN_LIB_NAMES_WORK} CACHE STRING "MPI ${LANG} libraries to link against" FORCE) - endif() - set(MPI_${LANG}_WRAPPER_FOUND TRUE PARENT_SCOPE) -endfunction() - -function(_MPI_guess_settings LANG) - set(MPI_GUESS_FOUND FALSE) - # Currently only MSMPI and MPICH2 on Windows are supported, so we can skip this search if we're not targeting that. - if(WIN32) - # MSMPI - - # The environment variables MSMPI_INC and MSMPILIB32/64 are the only ways of locating the MSMPI_SDK, - # which is installed separately from the runtime. Thus it's possible to have mpiexec but not MPI headers - # or import libraries and vice versa. - if(NOT MPI_GUESS_LIBRARY_NAME OR "${MPI_GUESS_LIBRARY_NAME}" STREQUAL "MSMPI") - # We first attempt to locate the msmpi.lib. Should be find it, we'll assume that the MPI present is indeed - # Microsoft MPI. - if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8) - set(MPI_MSMPI_LIB_PATH "$ENV{MSMPI_LIB64}") - set(MPI_MSMPI_INC_PATH_EXTRA "$ENV{MSMPI_INC}/x64") - else() - set(MPI_MSMPI_LIB_PATH "$ENV{MSMPI_LIB32}") - set(MPI_MSMPI_INC_PATH_EXTRA "$ENV{MSMPI_INC}/x86") - endif() - - find_library(MPI_msmpi_LIBRARY - NAMES msmpi - HINTS ${MPI_MSMPI_LIB_PATH} - DOC "Location of the msmpi library for Microsoft MPI") - mark_as_advanced(MPI_msmpi_LIBRARY) - - if(MPI_msmpi_LIBRARY) - # Next, we attempt to locate the MPI header. Note that for Fortran we know that mpif.h is a way - # MSMPI can be used and therefore that header has to be present. - if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - get_filename_component(MPI_MSMPI_INC_DIR "$ENV{MSMPI_INC}" REALPATH) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_MSMPI_INC_DIR}" CACHE STRING "MPI ${LANG} additional include directories" FORCE) - unset(MPI_MSMPI_INC_DIR) - endif() - - # For MSMPI, one can compile the MPI module by building the mpi.f90 shipped with the MSMPI SDK, - # thus it might be present or provided by the user. Figuring out which is supported is done later on. - # The PGI Fortran compiler for instance ships a prebuilt set of modules in its own include folder. - # Should a user be employing PGI or have built its own set and provided it via cache variables, the - # splitting routine would have located the module files. - - # For C and C++, we're done here (MSMPI does not ship the MPI-2 C++ bindings) - however, for Fortran - # we need some extra library to glue Fortran support together: - # MSMPI ships 2-4 Fortran libraries, each for different Fortran compiler behaviors. The library names - # ending with a c are using the cdecl calling convention, whereas those ending with an s are for Fortran - # implementations using stdcall. Therefore, the 64-bit MSMPI only ships those ending in 'c', whereas the 32-bit - # has both variants available. - # The second difference is the last but one letter, if it's an e(nd), the length of a string argument is - # passed by the Fortran compiler after all other arguments on the parameter list, if it's an m(ixed), - # it's passed immediately after the string address. - - # To summarize: - # - msmpifec: CHARACTER length passed after the parameter list and using cdecl calling convention - # - msmpifmc: CHARACTER length passed directly after string address and using cdecl calling convention - # - msmpifes: CHARACTER length passed after the parameter list and using stdcall calling convention - # - msmpifms: CHARACTER length passed directly after string address and using stdcall calling convention - # 32-bit MSMPI ships all four libraries, 64-bit MSMPI ships only the first two. - - # As is, Intel Fortran and PGI Fortran both use the 'ec' variant of the calling convention, whereas - # the old Compaq Visual Fortran compiler defaulted to the 'ms' version. It's possible to make Intel Fortran - # use the CVF calling convention using /iface:cvf, but we assume - and this is also assumed in FortranCInterface - - # this isn't the case. It's also possible to make CVF use the 'ec' variant, using /iface=(cref,nomixed_str_len_arg). - - # Our strategy is now to locate all libraries, but enter msmpifec into the LIB_NAMES array. - # Should this not be adequate it's a straightforward way for a user to change the LIB_NAMES array and - # have his library found. Still, this should not be necessary outside of exceptional cases, as reasoned. - if ("${LANG}" STREQUAL "Fortran") - set(MPI_MSMPI_CALLINGCONVS c) - if("${CMAKE_SIZEOF_VOID_P}" EQUAL 4) - list(APPEND MPI_MSMPI_CALLINGCONVS s) - endif() - foreach(mpistrlenpos IN ITEMS e m) - foreach(mpicallingconv IN LISTS MPI_MSMPI_CALLINGCONVS) - find_library(MPI_msmpif${mpistrlenpos}${mpicallingconv}_LIBRARY - NAMES msmpif${mpistrlenpos}${mpicallingconv} - HINTS "${MPI_MSMPI_LIB_PATH}" - DOC "Location of the msmpi${mpistrlenpos}${mpicallingconv} library for Microsoft MPI") - mark_as_advanced(MPI_msmpif${mpistrlenpos}${mpicallingconv}_LIBRARY) - endforeach() - endforeach() - if(NOT MPI_${LANG}_LIB_NAMES) - set(MPI_${LANG}_LIB_NAMES "msmpi;msmpifec" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) - endif() - - # At this point we're *not* done. MSMPI requires an additional include file for Fortran giving the value - # of MPI_AINT. This file is called mpifptr.h located in the x64 and x86 subfolders, respectively. - find_path(MPI_mpifptr_INCLUDE_DIR - NAMES "mpifptr.h" - HINTS "${MPI_MSMPI_INC_PATH_EXTRA}" - DOC "Location of the mpifptr.h extra header for Microsoft MPI") - if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS "mpifptr" CACHE STRING "MPI ${LANG} additional include directory variables, given in the form MPI__INCLUDE_DIR." FORCE) - endif() - mark_as_advanced(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS MPI_mpifptr_INCLUDE_DIR) - else() - if(NOT MPI_${LANG}_LIB_NAMES) - set(MPI_${LANG}_LIB_NAMES "msmpi" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) - endif() - endif() - mark_as_advanced(MPI_${LANG}_LIB_NAMES) - set(MPI_GUESS_FOUND TRUE) - endif() - endif() - - # At this point there's not many MPIs that we could still consider. - # OpenMPI 1.6.x and below supported Windows, but these ship compiler wrappers that still work. - # The only other relevant MPI implementation without a wrapper is MPICH2, which had Windows support in 1.4.1p1 and older. - if(NOT MPI_GUESS_LIBRARY_NAME OR "${MPI_GUESS_LIBRARY_NAME}" STREQUAL "MPICH2") - set(MPI_MPICH_PREFIX_PATHS - "$ENV{ProgramW6432}/MPICH2/lib" - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH\\SMPD;binary]/../lib" - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH2;Path]/lib" - ) - - # All of C, C++ and Fortran will need mpi.lib, so we'll look for this first - find_library(MPI_mpi_LIBRARY - NAMES mpi - HINTS ${MPI_MPICH_PREFIX_PATHS}) - mark_as_advanced(MPI_mpi_LIBRARY) - # If we found mpi.lib, we detect the rest of MPICH2 - if(MPI_mpi_LIBRARY) - set(MPI_MPICH_LIB_NAMES "mpi") - # If MPI-2 C++ bindings are requested, we need to locate cxx.lib as well. - # Otherwise, MPICH_SKIP_MPICXX will be defined and these bindings aren't needed. - if("${LANG}" STREQUAL "CXX" AND NOT MPI_CXX_SKIP_MPICXX) - find_library(MPI_cxx_LIBRARY - NAMES cxx - HINTS ${MPI_MPICH_PREFIX_PATHS}) - mark_as_advanced(MPI_cxx_LIBRARY) - list(APPEND MPI_MPICH_LIB_NAMES "cxx") - # For Fortran, MPICH2 provides three different libraries: - # fmpich2.lib which uses uppercase symbols and cdecl, - # fmpich2s.lib which uses uppercase symbols and stdcall (32-bit only), - # fmpich2g.lib which uses lowercase symbols with double underscores and cdecl. - # fmpich2s.lib would be useful for Compaq Visual Fortran, fmpich2g.lib has to be used with GNU g77 and is also - # provided in the form of an .a archive for MinGW and Cygwin. From our perspective, fmpich2.lib is the only one - # we need to try, and if it doesn't work with the given Fortran compiler we'd find out later on during validation - elseif("${LANG}" STREQUAL "Fortran") - find_library(MPI_fmpich2_LIBRARY - NAMES fmpich2 - HINTS ${MPI_MPICH_PREFIX_PATHS}) - find_library(MPI_fmpich2s_LIBRARY - NAMES fmpich2s - HINTS ${MPI_MPICH_PREFIX_PATHS}) - find_library(MPI_fmpich2g_LIBRARY - NAMES fmpich2g - HINTS ${MPI_MPICH_PREFIX_PATHS}) - mark_as_advanced(MPI_fmpich2_LIBRARY MPI_fmpich2s_LIBRARY MPI_fmpich2g_LIBRARY) - list(APPEND MPI_MPICH_LIB_NAMES "fmpich2") - endif() - - if(NOT MPI_${LANG}_LIB_NAMES) - set(MPI_${LANG}_LIB_NAMES "${MPI_MPICH_LIB_NAMES}" CACHE STRING "MPI ${LANG} libraries to link against" FORCE) - endif() - unset(MPI_MPICH_LIB_NAMES) - - if(NOT MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - # For MPICH2, the include folder would be in ../include relative to the library folder. - get_filename_component(MPI_MPICH_ROOT_DIR "${MPI_mpi_LIBRARY}" DIRECTORY) - get_filename_component(MPI_MPICH_ROOT_DIR "${MPI_MPICH_ROOT_DIR}" DIRECTORY) - if(IS_DIRECTORY "${MPI_MPICH_ROOT_DIR}/include") - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_MPICH_ROOT_DIR}/include" CACHE STRING "MPI ${LANG} additional include directory variables, given in the form MPI__INCLUDE_DIR." FORCE) - endif() - unset(MPI_MPICH_ROOT_DIR) - endif() - set(MPI_GUESS_FOUND TRUE) - endif() - unset(MPI_MPICH_PREFIX_PATHS) - endif() - endif() - set(MPI_${LANG}_GUESS_FOUND "${MPI_GUESS_FOUND}" PARENT_SCOPE) -endfunction() - -function(_MPI_adjust_compile_definitions LANG) - if("${LANG}" STREQUAL "CXX") - # To disable the C++ bindings, we need to pass some definitions since the mpi.h header has to deal with both C and C++ - # bindings in MPI-2. - if(MPI_CXX_SKIP_MPICXX AND NOT MPI_${LANG}_COMPILE_DEFINITIONS MATCHES "SKIP_MPICXX") - # MPICH_SKIP_MPICXX is being used in MPICH and derivatives like MVAPICH or Intel MPI - # OMPI_SKIP_MPICXX is being used in Open MPI - # _MPICC_H is being used for IBM Platform MPI - list(APPEND MPI_${LANG}_COMPILE_DEFINITIONS "MPICH_SKIP_MPICXX" "OMPI_SKIP_MPICXX" "_MPICC_H") - set(MPI_${LANG}_COMPILE_DEFINITIONS "${MPI_${LANG}_COMPILE_DEFINITIONS}" CACHE STRING "MPI ${LANG} compilation definitions" FORCE) - endif() - endif() -endfunction() - -macro(_MPI_assemble_libraries LANG) - set(MPI_${LANG}_LIBRARIES "") - # Only for libraries do we need to check whether the compiler's linking stage is separate. - if(NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}" OR NOT MPI_${LANG}_WORKS_IMPLICIT) - foreach(mpilib IN LISTS MPI_${LANG}_LIB_NAMES) - list(APPEND MPI_${LANG}_LIBRARIES ${MPI_${mpilib}_LIBRARY}) - endforeach() - endif() -endmacro() - -macro(_MPI_assemble_include_dirs LANG) - if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") - set(MPI_${LANG}_INCLUDE_DIRS "") - else() - set(MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS}") - if("${LANG}" MATCHES "(C|CXX)") - if(MPI_${LANG}_HEADER_DIR) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") - endif() - else() # Fortran - if(MPI_${LANG}_F77_HEADER_DIR) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_F77_HEADER_DIR}") - endif() - if(MPI_${LANG}_MODULE_DIR AND NOT "${MPI_${LANG}_MODULE_DIR}" IN_LIST MPI_${LANG}_INCLUDE_DIRS) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${LANG}_MODULE_DIR}") - endif() - endif() - if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - foreach(MPI_ADDITIONAL_INC_DIR IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - list(APPEND MPI_${LANG}_INCLUDE_DIRS "${MPI_${MPI_ADDITIONAL_INC_DIR}_INCLUDE_DIR}") - endforeach() - endif() - endif() -endmacro() - -function(_MPI_split_include_dirs LANG) - if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") - return() - endif() - # Backwards compatibility: Search INCLUDE_PATH if given. - if(MPI_${LANG}_INCLUDE_PATH) - list(APPEND MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_${LANG}_INCLUDE_PATH}") - endif() - - # We try to find the headers/modules among those paths (and system paths) - # For C/C++, we just need to have a look for mpi.h. - if("${LANG}" MATCHES "(C|CXX)") - find_path(MPI_${LANG}_HEADER_DIR "mpi.h" - HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} - ) - mark_as_advanced(MPI_${LANG}_HEADER_DIR) - if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "${MPI_${LANG}_HEADER_DIR}") - endif() - # Fortran is more complicated here: An implementation could provide - # any of the Fortran 77/90/2008 APIs for MPI. For example, MSMPI - # only provides Fortran 77 and - if mpi.f90 is built - potentially - # a Fortran 90 module. - elseif("${LANG}" STREQUAL "Fortran") - find_path(MPI_${LANG}_F77_HEADER_DIR "mpif.h" - HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} - ) - find_path(MPI_${LANG}_MODULE_DIR - NAMES "mpi.mod" "mpi_f08.mod" - HINTS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} - ) - if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS - "${MPI_${LANG}_F77_HEADER_DIR}" - "${MPI_${LANG}_MODULE_DIR}" - ) - endif() - mark_as_advanced(MPI_${LANG}_F77_HEADER_DIR MPI_${LANG}_MODULE_DIR) - endif() - # Remove duplicates and default system directories from the list. - if(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - list(REMOVE_DUPLICATES MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS) - foreach(MPI_IMPLICIT_INC_DIR IN LISTS CMAKE_${LANG}_IMPLICIT_LINK_DIRECTORIES) - list(REMOVE_ITEM MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_IMPLICIT_INC_DIR}) - endforeach() - endif() - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories" FORCE) -endfunction() - -macro(_MPI_create_imported_target LANG) - if(NOT TARGET MPI::MPI_${LANG}) - add_library(MPI::MPI_${LANG} INTERFACE IMPORTED) - endif() - - set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_COMPILE_OPTIONS "${MPI_${LANG}_COMPILE_OPTIONS}") - set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_COMPILE_DEFINITIONS "${MPI_${LANG}_COMPILE_DEFINITIONS}") - - set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_LINK_LIBRARIES "") - if(MPI_${LANG}_LINK_FLAGS) - set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${MPI_${LANG}_LINK_FLAGS}") - endif() - # If the compiler links MPI implicitly, no libraries will be found as they're contained within - # CMAKE__IMPLICIT_LINK_LIBRARIES already. - if(MPI_${LANG}_LIBRARIES) - set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${MPI_${LANG}_LIBRARIES}") - endif() - # Given the new design of FindMPI, INCLUDE_DIRS will always be located, even under implicit linking. - set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_INCLUDE_DIRECTORIES "${MPI_${LANG}_INCLUDE_DIRS}") -endmacro() - -function(_MPI_try_staged_settings LANG MPI_TEST_FILE_NAME MODE RUN_BINARY) - set(WORK_DIR "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI") - set(SRC_DIR "${CMAKE_CURRENT_LIST_DIR}/FindMPI") - set(BIN_FILE "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI/${MPI_TEST_FILE_NAME}_${LANG}.bin") - unset(MPI_TEST_COMPILE_DEFINITIONS) - if("${LANG}" STREQUAL "Fortran") - if("${MODE}" STREQUAL "F90_MODULE") - set(MPI_Fortran_INCLUDE_LINE "use mpi\n implicit none") - elseif("${MODE}" STREQUAL "F08_MODULE") - set(MPI_Fortran_INCLUDE_LINE "use mpi_f08\n implicit none") - else() # F77 header - set(MPI_Fortran_INCLUDE_LINE "implicit none\n include 'mpif.h'") - endif() - configure_file("${SRC_DIR}/${MPI_TEST_FILE_NAME}.f90.in" "${WORK_DIR}/${MPI_TEST_FILE_NAME}.f90" @ONLY) - set(MPI_TEST_SOURCE_FILE "${WORK_DIR}/${MPI_TEST_FILE_NAME}.f90") - elseif("${LANG}" STREQUAL "CXX") - configure_file("${SRC_DIR}/${MPI_TEST_FILE_NAME}.c" "${WORK_DIR}/${MPI_TEST_FILE_NAME}.cpp" COPYONLY) - set(MPI_TEST_SOURCE_FILE "${WORK_DIR}/${MPI_TEST_FILE_NAME}.cpp") - if("${MODE}" STREQUAL "TEST_MPICXX") - set(MPI_TEST_COMPILE_DEFINITIONS TEST_MPI_MPICXX) - endif() - else() # C - set(MPI_TEST_SOURCE_FILE "${SRC_DIR}/${MPI_TEST_FILE_NAME}.c") - endif() - if(RUN_BINARY) - try_run(MPI_RUN_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} MPI_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} - "${CMAKE_BINARY_DIR}" SOURCES "${MPI_TEST_SOURCE_FILE}" - COMPILE_DEFINITIONS ${MPI_TEST_COMPILE_DEFINITIONS} - LINK_LIBRARIES MPI::MPI_${LANG} - RUN_OUTPUT_VARIABLE MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE}) - set(MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} "${MPI_RUN_OUTPUT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE}}" PARENT_SCOPE) - else() - try_compile(MPI_RESULT_${LANG}_${MPI_TEST_FILE_NAME}_${MODE} - "${CMAKE_BINARY_DIR}" SOURCES "${MPI_TEST_SOURCE_FILE}" - COMPILE_DEFINITIONS ${MPI_TEST_COMPILE_DEFINITIONS} - LINK_LIBRARIES MPI::MPI_${LANG} - COPY_FILE "${BIN_FILE}") - endif() -endfunction() - -macro(_MPI_check_lang_works LANG) - # For Fortran we may have by the MPI-3 standard an implementation that provides: - # - the mpi_f08 module - # - *both*, the mpi module and 'mpif.h' - # Since older MPI standards (MPI-1) did not define anything but 'mpif.h', we need to check all three individually. - if( NOT MPI_${LANG}_WORKS ) - if("${LANG}" STREQUAL "Fortran") - set(MPI_Fortran_INTEGER_LINE "(kind=MPI_INTEGER_KIND)") - _MPI_try_staged_settings(${LANG} test_mpi F77_HEADER FALSE) - _MPI_try_staged_settings(${LANG} test_mpi F90_MODULE FALSE) - _MPI_try_staged_settings(${LANG} test_mpi F08_MODULE FALSE) - - set(MPI_${LANG}_WORKS FALSE) - - foreach(mpimethod IN ITEMS F77_HEADER F08_MODULE F90_MODULE) - if(MPI_RESULT_${LANG}_test_mpi_${mpimethod}) - set(MPI_${LANG}_WORKS TRUE) - set(MPI_${LANG}_HAVE_${mpimethod} TRUE) - else() - set(MPI_${LANG}_HAVE_${mpimethod} FALSE) - endif() - endforeach() - # MPI-1 versions had no MPI_INTGER_KIND defined, so we need to try without it. - # However, MPI-1 also did not define the Fortran 90 and 08 modules, so we only try the F77 header. - unset(MPI_Fortran_INTEGER_LINE) - if(NOT MPI_${LANG}_WORKS) - _MPI_try_staged_settings(${LANG} test_mpi F77_HEADER_NOKIND FALSE) - if(MPI_RESULT_${LANG}_test_mpi_F77_HEADER_NOKIND) - set(MPI_${LANG}_WORKS TRUE) - set(MPI_${LANG}_HAVE_F77_HEADER TRUE) - endif() - endif() - else() - _MPI_try_staged_settings(${LANG} test_mpi normal FALSE) - # If 'test_mpi' built correctly, we've found valid MPI settings. There might not be MPI-2 C++ support, but there can't - # be MPI-2 C++ support without the C bindings being present, so checking for them is sufficient. - set(MPI_${LANG}_WORKS "${MPI_RESULT_${LANG}_test_mpi_normal}") - endif() - endif() -endmacro() - -# Some systems install various MPI implementations in separate folders in some MPI prefix -# This macro enumerates all such subfolders and adds them to the list of hints that will be searched. -macro(MPI_search_mpi_prefix_folder PREFIX_FOLDER) - if(EXISTS "${PREFIX_FOLDER}") - file(GLOB _MPI_folder_children RELATIVE "${PREFIX_FOLDER}" "${PREFIX_FOLDER}/*") - foreach(_MPI_folder_child IN LISTS _MPI_folder_children) - if(IS_DIRECTORY "${PREFIX_FOLDER}/${_MPI_folder_child}") - list(APPEND MPI_HINT_DIRS "${PREFIX_FOLDER}/${_MPI_folder_child}") - endif() - endforeach() - endif() -endmacro() - -set(MPI_HINT_DIRS ${MPI_HOME} $ENV{MPI_HOME} $ENV{I_MPI_ROOT}) -if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Linux") - # SUSE Linux Enterprise Server stores its MPI implementations under /usr/lib64/mpi/gcc/ - # We enumerate the subfolders and append each as a prefix - MPI_search_mpi_prefix_folder("/usr/lib64/mpi/gcc") -elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") - # MSMPI stores its runtime in a special folder, this adds the possible locations to the hints. - list(APPEND MPI_HINT_DIRS $ENV{MSMPI_BIN} "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\MPI;InstallRoot]") -elseif("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "FreeBSD") - # FreeBSD ships mpich under the normal system paths - but available openmpi implementations - # will be found in /usr/local/mpi/ - MPI_search_mpi_prefix_folder("/usr/local/mpi") -endif() - -# Most MPI distributions have some form of mpiexec or mpirun which gives us something we can look for. -# The MPI standard does not mandate the existence of either, but instead only makes requirements if a distribution -# ships an mpiexec program (mpirun executables are not regulated by the standard). -find_program(MPIEXEC_EXECUTABLE - NAMES ${_MPIEXEC_NAMES} - PATH_SUFFIXES bin sbin - HINTS ${MPI_HINT_DIRS} - DOC "Executable for running MPI programs.") - -# call get_filename_component twice to remove mpiexec and the directory it exists in (typically bin). -# This gives us a fairly reliable base directory to search for /bin /lib and /include from. -get_filename_component(_MPI_BASE_DIR "${MPIEXEC_EXECUTABLE}" PATH) -get_filename_component(_MPI_BASE_DIR "${_MPI_BASE_DIR}" PATH) - -# According to the MPI standard, section 8.8 -n is a guaranteed, and the only guaranteed way to -# launch an MPI process using mpiexec if such a program exists. -set(MPIEXEC_NUMPROC_FLAG "-n" CACHE STRING "Flag used by MPI to specify the number of processes for mpiexec; the next option will be the number of processes.") -set(MPIEXEC_PREFLAGS "" CACHE STRING "These flags will be directly before the executable that is being run by mpiexec.") -set(MPIEXEC_POSTFLAGS "" CACHE STRING "These flags will be placed after all flags passed to mpiexec.") - -# Set the number of processes to the physical processor count -cmake_host_system_information(RESULT _MPIEXEC_NUMPROCS QUERY NUMBER_OF_PHYSICAL_CORES) -set(MPIEXEC_MAX_NUMPROCS "${_MPIEXEC_NUMPROCS}" CACHE STRING "Maximum number of processors available to run MPI applications.") -unset(_MPIEXEC_NUMPROCS) -mark_as_advanced(MPIEXEC_EXECUTABLE MPIEXEC_NUMPROC_FLAG MPIEXEC_PREFLAGS MPIEXEC_POSTFLAGS MPIEXEC_MAX_NUMPROCS) - -#============================================================================= -# Backward compatibility input hacks. Propagate the FindMPI hints to C and -# CXX if the respective new versions are not defined. Translate the old -# MPI_LIBRARY and MPI_EXTRA_LIBRARY to respective MPI_${LANG}_LIBRARIES. -# -# Once we find the new variables, we translate them back into their old -# equivalents below. -if(NOT MPI_IGNORE_LEGACY_VARIABLES) - foreach (LANG IN ITEMS C CXX) - # Old input variables. - set(_MPI_OLD_INPUT_VARS COMPILER COMPILE_FLAGS INCLUDE_PATH LINK_FLAGS) - - # Set new vars based on their old equivalents, if the new versions are not already set. - foreach (var ${_MPI_OLD_INPUT_VARS}) - if (NOT MPI_${LANG}_${var} AND MPI_${var}) - set(MPI_${LANG}_${var} "${MPI_${var}}") - endif() - endforeach() - - # Chop the old compile flags into options and definitions - - unset(MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS) - unset(MPI_${LANG}_EXTRA_COMPILE_OPTIONS) - if(MPI_${LANG}_COMPILE_FLAGS) - separate_arguments(MPI_SEPARATE_FLAGS NATIVE_COMMAND "${MPI_${LANG}_COMPILE_FLAGS}") - foreach(_MPI_FLAG IN LISTS MPI_SEPARATE_FLAGS) - if("${_MPI_FLAG}" MATCHES "^ *[-/D]([^ ]+)") - list(APPEND MPI_${LANG}_EXTRA_COMPILE_DEFINITIONS "${CMAKE_MATCH_1}") - else() - list(APPEND MPI_${LANG}_EXTRA_COMPILE_OPTIONS "${_MPI_FLAG}") - endif() - endforeach() - unset(MPI_SEPARATE_FLAGS) - endif() - - # If a list of libraries was given, we'll split it into new-style cache variables - unset(MPI_${LANG}_EXTRA_LIB_NAMES) - if(NOT MPI_${LANG}_LIB_NAMES) - foreach(_MPI_LIB IN LISTS MPI_${LANG}_LIBRARIES MPI_LIBRARY MPI_EXTRA_LIBRARY) - if(_MPI_LIB) - get_filename_component(_MPI_PLAIN_LIB_NAME "${_MPI_LIB}" NAME_WE) - get_filename_component(_MPI_LIB_NAME "${_MPI_LIB}" NAME) - get_filename_component(_MPI_LIB_DIR "${_MPI_LIB}" DIRECTORY) - list(APPEND MPI_${LANG}_EXTRA_LIB_NAMES "${_MPI_PLAIN_LIB_NAME}") - find_library(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY - NAMES "${_MPI_LIB_NAME}" "lib${_MPI_LIB_NAME}" - HINTS ${_MPI_LIB_DIR} $ENV{MPI_LIB} - DOC "Location of the ${_MPI_PLAIN_LIB_NAME} library for MPI" - ) - mark_as_advanced(MPI_${_MPI_PLAIN_LIB_NAME}_LIBRARY) - endif() - endforeach() - endif() - endforeach() -endif() -#============================================================================= - -unset(MPI_VERSION) -unset(MPI_VERSION_MAJOR) -unset(MPI_VERSION_MINOR) - -unset(_MPI_MIN_VERSION) - -# If the user specified a library name we assume they prefer that library over a wrapper. If not, they can disable skipping manually. -if(NOT DEFINED MPI_SKIP_COMPILER_WRAPPER AND MPI_GUESS_LIBRARY_NAME) - set(MPI_SKIP_COMPILER_WRAPPER TRUE) -endif() - -# This loop finds the compilers and sends them off for interrogation. -foreach(LANG IN ITEMS C CXX Fortran) - if(CMAKE_${LANG}_COMPILER_LOADED) - if(NOT MPI_FIND_COMPONENTS) - set(_MPI_FIND_${LANG} TRUE) - elseif( ${LANG} IN_LIST MPI_FIND_COMPONENTS) - set(_MPI_FIND_${LANG} TRUE) - elseif( ${LANG} STREQUAL CXX AND NOT MPI_CXX_SKIP_MPICXX AND MPICXX IN_LIST MPI_FIND_COMPONENTS ) - set(_MPI_FIND_${LANG} TRUE) - else() - set(_MPI_FIND_${LANG} FALSE) - endif() - else() - set(_MPI_FIND_${LANG} FALSE) - endif() - if(_MPI_FIND_${LANG}) - if( ${LANG} STREQUAL CXX AND NOT MPICXX IN_LIST MPI_FIND_COMPONENTS ) - set(MPI_CXX_SKIP_MPICXX FALSE CACHE BOOL "If true, the MPI-2 C++ bindings are disabled using definitions.") - mark_as_advanced(MPI_CXX_SKIP_MPICXX) - endif() - if(NOT (MPI_${LANG}_LIB_NAMES AND (MPI_${LANG}_INCLUDE_PATH OR MPI_${LANG}_INCLUDE_DIRS OR MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS))) - set(MPI_${LANG}_TRIED_IMPLICIT FALSE) - set(MPI_${LANG}_WORKS_IMPLICIT FALSE) - if(NOT MPI_${LANG}_COMPILER AND NOT MPI_ASSUME_NO_BUILTIN_MPI) - # Should the imported targets be empty, we effectively try whether the compiler supports MPI on its own, which is the case on e.g. - # Cray PrgEnv. - _MPI_create_imported_target(${LANG}) - _MPI_check_lang_works(${LANG}) - - # If the compiler can build MPI code on its own, it functions as an MPI compiler and we'll set the variable to point to it. - if(MPI_${LANG}_WORKS) - set(MPI_${LANG}_COMPILER "${CMAKE_${LANG}_COMPILER}" CACHE FILEPATH "MPI compiler for ${LANG}" FORCE) - set(MPI_${LANG}_WORKS_IMPLICIT TRUE) - endif() - set(MPI_${LANG}_TRIED_IMPLICIT TRUE) - endif() - - if(NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}" OR NOT MPI_${LANG}_WORKS) - set(MPI_${LANG}_WRAPPER_FOUND FALSE) - set(MPI_PINNED_COMPILER FALSE) - - if(NOT MPI_SKIP_COMPILER_WRAPPER) - if(MPI_${LANG}_COMPILER) - # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. - if (NOT IS_ABSOLUTE "${MPI_${LANG}_COMPILER}") - # Get rid of our default list of names and just search for the name the user wants. - set(_MPI_${LANG}_COMPILER_NAMES "${MPI_${LANG}_COMPILER}") - unset(MPI_${LANG}_COMPILER CACHE) - endif() - # If the user specifies a compiler, we don't want to try to search libraries either. - set(MPI_PINNED_COMPILER TRUE) - endif() - - # If we have an MPI base directory, we'll try all compiler names in that one first. - # This should prevent mixing different MPI environments - if(_MPI_BASE_DIR) - find_program(MPI_${LANG}_COMPILER - NAMES ${_MPI_${LANG}_COMPILER_NAMES} - PATH_SUFFIXES bin sbin - HINTS ${_MPI_BASE_DIR} - NO_DEFAULT_PATH - DOC "MPI compiler for ${LANG}" - ) - endif() - - # If the base directory did not help (for example because the mpiexec isn't in the same directory as the compilers), - # we shall try searching in the default paths. - find_program(MPI_${LANG}_COMPILER - NAMES ${_MPI_${LANG}_COMPILER_NAMES} - PATH_SUFFIXES bin sbin - DOC "MPI compiler for ${LANG}" - ) - - if("${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") - set(MPI_PINNED_COMPILER TRUE) - - # If we haven't made the implicit compiler test yet, perform it now. - if(NOT MPI_${LANG}_TRIED_IMPLICIT) - _MPI_create_imported_target(${LANG}) - _MPI_check_lang_works(${LANG}) - endif() - - # Should the MPI compiler not work implicitly for MPI, still interrogate it. - # Otherwise, MPI compilers for which CMake has separate linking stages, e.g. Intel MPI on Windows where link.exe is being used - # directly during linkage instead of CMAKE__COMPILER will not work. - if(NOT MPI_${LANG}_WORKS) - set(MPI_${LANG}_WORKS_IMPLICIT FALSE) - _MPI_interrogate_compiler(${LANG}) - else() - set(MPI_${LANG}_WORKS_IMPLICIT TRUE) - endif() - elseif(MPI_${LANG}_COMPILER) - _MPI_interrogate_compiler(${LANG}) - endif() - endif() - - if(NOT MPI_SKIP_GUESSING AND NOT MPI_${LANG}_WRAPPER_FOUND AND NOT MPI_PINNED_COMPILER) - # For C++, we may use the settings for C. Should a given compiler wrapper for C++ not exist, but one for C does, we copy over the - # settings for C. An MPI distribution that is in this situation would be IBM Platform MPI. - if("${LANG}" STREQUAL "CXX" AND MPI_C_WRAPPER_FOUND) - set(MPI_${LANG}_COMPILE_OPTIONS ${MPI_C_COMPILE_OPTIONS} CACHE STRING "MPI ${LANG} compilation options" ) - set(MPI_${LANG}_COMPILE_DEFINITIONS ${MPI_C_COMPILE_DEFINITIONS} CACHE STRING "MPI ${LANG} compilation definitions" ) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS ${MPI_C_INCLUDE_DIRS} CACHE STRING "MPI ${LANG} additional include directories") - set(MPI_${LANG}_LINK_FLAGS ${MPI_C_LINK_FLAGS} CACHE STRING "MPI ${LANG} linker flags" ) - set(MPI_${LANG}_LIB_NAMES ${MPI_C_LIB_NAMES} CACHE STRING "MPI ${LANG} libraries to link against" ) - else() - _MPI_guess_settings(${LANG}) - endif() - endif() - endif() - endif() - - _MPI_split_include_dirs(${LANG}) - _MPI_assemble_include_dirs(${LANG}) - _MPI_assemble_libraries(${LANG}) - - _MPI_adjust_compile_definitions(${LANG}) - # We always create imported targets even if they're empty - _MPI_create_imported_target(${LANG}) - - if(NOT MPI_${LANG}_WORKS) - _MPI_check_lang_works(${LANG}) - endif() - - # Next, we'll initialize the MPI variables that have not been previously set. - set(MPI_${LANG}_COMPILE_OPTIONS "" CACHE STRING "MPI ${LANG} compilation flags" ) - set(MPI_${LANG}_COMPILE_DEFINITIONS "" CACHE STRING "MPI ${LANG} compilation definitions" ) - set(MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "MPI ${LANG} additional include directories") - set(MPI_${LANG}_LINK_FLAGS "" CACHE STRING "MPI ${LANG} linker flags" ) - if(NOT MPI_${LANG}_COMPILER STREQUAL CMAKE_${LANG}_COMPILER) - set(MPI_${LANG}_LIB_NAMES "" CACHE STRING "MPI ${LANG} libraries to link against" ) - endif() - mark_as_advanced(MPI_${LANG}_COMPILE_OPTIONS MPI_${LANG}_COMPILE_DEFINITIONS MPI_${LANG}_LINK_FLAGS - MPI_${LANG}_LIB_NAMES MPI_${LANG}_ADDITIONAL_INCLUDE_DIRS MPI_${LANG}_COMPILER) - - # If we've found MPI, then we'll perform additional analysis: Determine the MPI version, MPI library version, supported - # MPI APIs (i.e. MPI-2 C++ bindings). For Fortran we also need to find specific parameters if we're under MPI-3. - if(MPI_${LANG}_WORKS) - if("${LANG}" STREQUAL "CXX" AND NOT DEFINED MPI_MPICXX_FOUND) - if(NOT MPI_CXX_SKIP_MPICXX AND NOT MPI_CXX_VALIDATE_SKIP_MPICXX) - _MPI_try_staged_settings(${LANG} test_mpi MPICXX FALSE) - if(MPI_RESULT_${LANG}_test_mpi_MPICXX) - set(MPI_MPICXX_FOUND TRUE) - else() - set(MPI_MPICXX_FOUND FALSE) - endif() - else() - set(MPI_MPICXX_FOUND FALSE) - endif() - endif() - - # At this point, we know the bindings present but not the MPI version or anything else. - if(NOT DEFINED MPI_${LANG}_VERSION) - unset(MPI_${LANG}_VERSION_MAJOR) - unset(MPI_${LANG}_VERSION_MINOR) - endif() - set(MPI_BIN_FOLDER ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/FindMPI) - - # For Fortran, we'll want to use the most modern MPI binding to test capabilities other than the - # Fortran parameters, since those depend on the method of consumption. - # For C++, we can always use the C bindings, and should do so, since the C++ bindings do not exist in MPI-3 - # whereas the C bindings do, and the C++ bindings never offered any feature advantage over their C counterparts. - if("${LANG}" STREQUAL "Fortran") - if(MPI_${LANG}_HAVE_F08_MODULE) - set(MPI_${LANG}_HIGHEST_METHOD F08_MODULE) - elseif(MPI_${LANG}_HAVE_F90_MODULE) - set(MPI_${LANG}_HIGHEST_METHOD F90_MODULE) - else() - set(MPI_${LANG}_HIGHEST_METHOD F77_HEADER) - endif() - - # Another difference between C and Fortran is that we can't use the preprocessor to determine whether MPI_VERSION - # and MPI_SUBVERSION are provided. These defines did not exist in MPI 1.0 and 1.1 and therefore might not - # exist. For C/C++, test_mpi.c will handle the MPI_VERSION extraction, but for Fortran, we need mpiver.f90. - if(NOT DEFINED MPI_${LANG}_VERSION) - _MPI_try_staged_settings(${LANG} mpiver ${MPI_${LANG}_HIGHEST_METHOD} FALSE) - if(MPI_RESULT_${LANG}_mpiver_${MPI_${LANG}_HIGHEST_METHOD}) - file(STRINGS ${MPI_BIN_FOLDER}/mpiver_${LANG}.bin _MPI_VERSION_STRING LIMIT_COUNT 1 REGEX "INFO:MPI-VER") - if("${_MPI_VERSION_STRING}" MATCHES ".*INFO:MPI-VER\\[([0-9]+)\\.([0-9]+)\\].*") - set(MPI_${LANG}_VERSION_MAJOR "${CMAKE_MATCH_1}") - set(MPI_${LANG}_VERSION_MINOR "${CMAKE_MATCH_2}") - set(MPI_${LANG}_VERSION "${MPI_${LANG}_VERSION_MAJOR}.${MPI_${LANG}_VERSION_MINOR}") - endif() - endif() - endif() - - # Finally, we want to find out which capabilities a given interface supports, compare the MPI-3 standard. - # This is determined by interface specific parameters MPI_SUBARRAYS_SUPPORTED and MPI_ASYNC_PROTECTS_NONBLOCKING - # and might vary between the different methods of consumption. - if(MPI_DETERMINE_Fortran_CAPABILITIES AND NOT MPI_Fortran_CAPABILITIES_DETERMINED) - foreach(mpimethod IN ITEMS F08_MODULE F90_MODULE F77_HEADER) - if(MPI_${LANG}_HAVE_${mpimethod}) - set(MPI_${LANG}_${mpimethod}_SUBARRAYS FALSE) - set(MPI_${LANG}_${mpimethod}_ASYNCPROT FALSE) - _MPI_try_staged_settings(${LANG} fortranparam_mpi ${mpimethod} TRUE) - if(MPI_RESULT_${LANG}_fortranparam_mpi_${mpimethod} AND - NOT "${MPI_RUN_RESULT_${LANG}_fortranparam_mpi_${mpimethod}}" STREQUAL "FAILED_TO_RUN") - if("${MPI_RUN_OUTPUT_${LANG}_fortranparam_mpi_${mpimethod}}" MATCHES - ".*INFO:SUBARRAYS\\[ *([TF]) *\\]-ASYNCPROT\\[ *([TF]) *\\].*") - if("${CMAKE_MATCH_1}" STREQUAL "T") - set(MPI_${LANG}_${mpimethod}_SUBARRAYS TRUE) - endif() - if("${CMAKE_MATCH_2}" STREQUAL "T") - set(MPI_${LANG}_${mpimethod}_ASYNCPROT TRUE) - endif() - endif() - endif() - endif() - endforeach() - set(MPI_Fortran_CAPABILITIES_DETERMINED TRUE) - endif() - else() - set(MPI_${LANG}_HIGHEST_METHOD normal) - - # By the MPI-2 standard, MPI_VERSION and MPI_SUBVERSION are valid for both C and C++ bindings. - if(NOT DEFINED MPI_${LANG}_VERSION) - file(STRINGS ${MPI_BIN_FOLDER}/test_mpi_${LANG}.bin _MPI_VERSION_STRING LIMIT_COUNT 1 REGEX "INFO:MPI-VER") - if("${_MPI_VERSION_STRING}" MATCHES ".*INFO:MPI-VER\\[([0-9]+)\\.([0-9]+)\\].*") - set(MPI_${LANG}_VERSION_MAJOR "${CMAKE_MATCH_1}") - set(MPI_${LANG}_VERSION_MINOR "${CMAKE_MATCH_2}") - set(MPI_${LANG}_VERSION "${MPI_${LANG}_VERSION_MAJOR}.${MPI_${LANG}_VERSION_MINOR}") - endif() - endif() - endif() - - unset(MPI_BIN_FOLDER) - - # At this point, we have dealt with determining the MPI version and parameters for each Fortran method available. - # The one remaining issue is to determine which MPI library is installed. - # Determining the version and vendor of the MPI library is only possible via MPI_Get_library_version() at runtime, - # and therefore we cannot do this while cross-compiling (a user may still define MPI__LIBRARY_VERSION_STRING - # themselves and we'll attempt splitting it, which is equivalent to provide the try_run output). - # It's also worth noting that the installed version string can depend on the language, or on the system the binary - # runs on if MPI is not statically linked. - if(MPI_DETERMINE_LIBRARY_VERSION AND NOT MPI_${LANG}_LIBRARY_VERSION_STRING) - _MPI_try_staged_settings(${LANG} libver_mpi ${MPI_${LANG}_HIGHEST_METHOD} TRUE) - if(MPI_RESULT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD} AND - "${MPI_RUN_RESULT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD}}" EQUAL "0") - string(STRIP "${MPI_RUN_OUTPUT_${LANG}_libver_mpi_${MPI_${LANG}_HIGHEST_METHOD}}" - MPI_${LANG}_LIBRARY_VERSION_STRING) - else() - set(MPI_${LANG}_LIBRARY_VERSION_STRING "NOTFOUND") - endif() - endif() - endif() - - set(MPI_${LANG}_FIND_QUIETLY ${MPI_FIND_QUIETLY}) - set(MPI_${LANG}_FIND_VERSION ${MPI_FIND_VERSION}) - set(MPI_${LANG}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT}) - - unset(MPI_${LANG}_REQUIRED_VARS) - if (NOT "${MPI_${LANG}_COMPILER}" STREQUAL "${CMAKE_${LANG}_COMPILER}") - foreach(mpilibname IN LISTS MPI_${LANG}_LIB_NAMES) - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${mpilibname}_LIBRARY") - endforeach() - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_LIB_NAMES") - if("${LANG}" STREQUAL "Fortran") - # For Fortran we only need one of the module or header directories to have *some* support for MPI. - if(NOT MPI_${LANG}_MODULE_DIR) - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_F77_HEADER_DIR") - endif() - if(NOT MPI_${LANG}_F77_HEADER_DIR) - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_MODULE_DIR") - endif() - else() - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_HEADER_DIR") - endif() - if(MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - foreach(mpiincvar IN LISTS MPI_${LANG}_ADDITIONAL_INCLUDE_VARS) - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${mpiincvar}_INCLUDE_DIR") - endforeach() - endif() - # Append the works variable now. If the settings did not work, this will show up properly. - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_WORKS") - else() - # If the compiler worked implicitly, use its path as output. - # Should the compiler variable be set, we also require it to work. - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_COMPILER") - if(MPI_${LANG}_COMPILER) - list(APPEND MPI_${LANG}_REQUIRED_VARS "MPI_${LANG}_WORKS") - endif() - endif() - find_package_handle_standard_args(MPI_${LANG} REQUIRED_VARS ${MPI_${LANG}_REQUIRED_VARS} - VERSION_VAR MPI_${LANG}_VERSION) - - if(DEFINED MPI_${LANG}_VERSION) - if(NOT _MPI_MIN_VERSION OR _MPI_MIN_VERSION VERSION_GREATER MPI_${LANG}_VERSION) - set(_MPI_MIN_VERSION MPI_${LANG}_VERSION) - endif() - endif() - endif() -endforeach() - -unset(_MPI_REQ_VARS) -foreach(LANG IN ITEMS C CXX Fortran) - if((NOT MPI_FIND_COMPONENTS AND CMAKE_${LANG}_COMPILER_LOADED) OR LANG IN_LIST MPI_FIND_COMPONENTS) - list(APPEND _MPI_REQ_VARS "MPI_${LANG}_FOUND") - endif() -endforeach() - -if(MPICXX IN_LIST MPI_FIND_COMPONENTS) - list(APPEND _MPI_REQ_VARS "MPI_MPICXX_FOUND") -endif() - -find_package_handle_standard_args(MPI - REQUIRED_VARS ${_MPI_REQ_VARS} - VERSION_VAR ${_MPI_MIN_VERSION} - HANDLE_COMPONENTS) - -#============================================================================= -# More backward compatibility stuff - -# For compatibility reasons, we also define MPIEXEC -set(MPIEXEC "${MPIEXEC_EXECUTABLE}") - -# Copy over MPI__INCLUDE_PATH from the assembled INCLUDE_DIRS. -foreach(LANG IN ITEMS C CXX Fortran) - if(MPI_${LANG}_FOUND) - set(MPI_${LANG}_INCLUDE_PATH "${MPI_${LANG}_INCLUDE_DIRS}") - unset(MPI_${LANG}_COMPILE_FLAGS) - if(MPI_${LANG}_COMPILE_OPTIONS) - set(MPI_${LANG}_COMPILE_FLAGS "${MPI_${LANG}_COMPILE_OPTIONS}") - endif() - if(MPI_${LANG}_COMPILE_DEFINITIONS) - foreach(_MPI_DEF IN LISTS MPI_${LANG}_COMPILE_DEFINITIONS) - string(APPEND MPI_${LANG}_COMPILE_FLAGS " -D${_MPI_DEF}") - endforeach() - endif() - endif() -endforeach() - -# Bare MPI sans ${LANG} vars are set to CXX then C, depending on what was found. -# This mimics the behavior of the old language-oblivious FindMPI. -set(_MPI_OLD_VARS COMPILER INCLUDE_PATH COMPILE_FLAGS LINK_FLAGS LIBRARIES) -if (MPI_CXX_FOUND) - foreach (var ${_MPI_OLD_VARS}) - set(MPI_${var} ${MPI_CXX_${var}}) - endforeach() -elseif (MPI_C_FOUND) - foreach (var ${_MPI_OLD_VARS}) - set(MPI_${var} ${MPI_C_${var}}) - endforeach() -endif() - -# Chop MPI_LIBRARIES into the old-style MPI_LIBRARY and MPI_EXTRA_LIBRARY, and set them in cache. -if (MPI_LIBRARIES) - list(GET MPI_LIBRARIES 0 MPI_LIBRARY_WORK) - set(MPI_LIBRARY "${MPI_LIBRARY_WORK}") - unset(MPI_LIBRARY_WORK) -else() - set(MPI_LIBRARY "MPI_LIBRARY-NOTFOUND") -endif() - -list(LENGTH MPI_LIBRARIES MPI_NUMLIBS) -if (MPI_NUMLIBS GREATER 1) - set(MPI_EXTRA_LIBRARY_WORK "${MPI_LIBRARIES}") - list(REMOVE_AT MPI_EXTRA_LIBRARY_WORK 0) - set(MPI_EXTRA_LIBRARY "${MPI_EXTRA_LIBRARY_WORK}") - unset(MPI_EXTRA_LIBRARY_WORK) -else() - set(MPI_EXTRA_LIBRARY "MPI_EXTRA_LIBRARY-NOTFOUND") -endif() -set(MPI_IGNORE_LEGACY_VARIABLES TRUE) -#============================================================================= - -# unset these vars to cleanup namespace -unset(_MPI_OLD_VARS) -unset(_MPI_PREFIX_PATH) -unset(_MPI_BASE_DIR) -foreach (lang C CXX Fortran) - unset(_MPI_${LANG}_COMPILER_NAMES) -endforeach() - -cmake_policy(POP) diff --git a/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in b/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in deleted file mode 100644 index 30f912c..0000000 --- a/config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in +++ /dev/null @@ -1,4 +0,0 @@ - program mpi_ver - @MPI_Fortran_INCLUDE_LINE@ - print *, 'INFO:SUBARRAYS[', MPI_SUBARRAYS_SUPPORTED, ']-ASYNCPROT[', MPI_ASYNC_PROTECTS_NONBLOCKING, ']' - end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/libver_mpi.c b/config/cmake_ext_mod/FindMPI/libver_mpi.c deleted file mode 100644 index be9d19d..0000000 --- a/config/cmake_ext_mod/FindMPI/libver_mpi.c +++ /dev/null @@ -1,19 +0,0 @@ -#include - -#ifdef __cplusplus -#include -#else -#include -#endif - -int main(int argc, char* argv[]) -{ - char mpilibver_str[MPI_MAX_LIBRARY_VERSION_STRING]; - int mpilibver_len; - MPI_Get_library_version(mpilibver_str, &mpilibver_len); -#ifdef __cplusplus - std::puts(mpilibver_str); -#else - puts(mpilibver_str); -#endif -} diff --git a/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in b/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in deleted file mode 100644 index 7938587..0000000 --- a/config/cmake_ext_mod/FindMPI/libver_mpi.f90.in +++ /dev/null @@ -1,7 +0,0 @@ - program mpi_ver - @MPI_Fortran_INCLUDE_LINE@ - character(len=MPI_MAX_LIBRARY_VERSION_STRING) :: mpilibver_str - integer(kind=MPI_INTEGER_KIND) :: ierror, reslen - call MPI_GET_LIBRARY_VERSION(mpilibver_str, reslen, ierror) - print *, mpilibver_str - end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/mpiver.f90.in b/config/cmake_ext_mod/FindMPI/mpiver.f90.in deleted file mode 100644 index a254523..0000000 --- a/config/cmake_ext_mod/FindMPI/mpiver.f90.in +++ /dev/null @@ -1,10 +0,0 @@ - program mpi_ver - @MPI_Fortran_INCLUDE_LINE@ - integer(kind=kind(MPI_VERSION)), parameter :: zero = ichar('0') - character, dimension(17), parameter :: mpiver_str =& - (/ 'I', 'N', 'F', 'O', ':', 'M', 'P', 'I', '-', 'V', 'E', 'R', '[', & - char(zero + MPI_VERSION), & - '.', & - char(zero + MPI_SUBVERSION), ']' /) - print *, mpiver_str - end program mpi_ver diff --git a/config/cmake_ext_mod/FindMPI/test_mpi.c b/config/cmake_ext_mod/FindMPI/test_mpi.c deleted file mode 100644 index b8a308a..0000000 --- a/config/cmake_ext_mod/FindMPI/test_mpi.c +++ /dev/null @@ -1,37 +0,0 @@ -#include - -#ifdef __cplusplus -#include -#else -#include -#endif - -#if defined(MPI_VERSION) && defined(MPI_SUBVERSION) -const char mpiver_str[] = { 'I', 'N', - 'F', 'O', - ':', 'M', - 'P', 'I', - '-', 'V', - 'E', 'R', - '[', ('0' + MPI_VERSION), - '.', ('0' + MPI_SUBVERSION), - ']', '\0' }; -#endif - -int main(int argc, char* argv[]) -{ -#if defined(MPI_VERSION) && defined(MPI_SUBVERSION) -#ifdef __cplusplus - std::puts(mpiver_str); -#else - puts(mpiver_str); -#endif -#endif -#ifdef TEST_MPI_MPICXX - MPI::MPI_Init(&argc, &argv); - MPI::MPI_Finalize(); -#else - MPI_Init(&argc, &argv); - MPI_Finalize(); -#endif -} diff --git a/config/cmake_ext_mod/FindMPI/test_mpi.f90.in b/config/cmake_ext_mod/FindMPI/test_mpi.f90.in deleted file mode 100644 index 4d43a04..0000000 --- a/config/cmake_ext_mod/FindMPI/test_mpi.f90.in +++ /dev/null @@ -1,6 +0,0 @@ - program hello - @MPI_Fortran_INCLUDE_LINE@ - integer@MPI_Fortran_INTEGER_LINE@ ierror - call MPI_INIT(ierror) - call MPI_FINALIZE(ierror) - end program diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 174c787..d643f35 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_EXAMPLES) #----------------------------------------------------------------------------- diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index a0f92d3..8c7b8f6 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_F90 C CXX Fortran) if (H5_HAVE_PARALLEL) diff --git a/fortran/examples/CMakeLists.txt b/fortran/examples/CMakeLists.txt index e5b277d..5300453 100644 --- a/fortran/examples/CMakeLists.txt +++ b/fortran/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_F90_EXAMPLES C CXX Fortran) # -------------------------------------------------------------------- # Notes: When creating examples they should be prefixed diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index f094b47..964a302 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_F90_SRC C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/fortran/test/CMakeLists.txt b/fortran/test/CMakeLists.txt index c7416df..1ba6ed7 100644 --- a/fortran/test/CMakeLists.txt +++ b/fortran/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_FORTRAN_TESTS C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/fortran/testpar/CMakeLists.txt b/fortran/testpar/CMakeLists.txt index ed9d28c..979d305 100644 --- a/fortran/testpar/CMakeLists.txt +++ b/fortran/testpar/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_FORTRAN_TESTPAR C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/hl/CMakeLists.txt b/hl/CMakeLists.txt index d80b4f9..54d5976 100644 --- a/hl/CMakeLists.txt +++ b/hl/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL C CXX) #----------------------------------------------------------------------------- diff --git a/hl/c++/CMakeLists.txt b/hl/c++/CMakeLists.txt index 9a1d059..71e5bb3 100644 --- a/hl/c++/CMakeLists.txt +++ b/hl/c++/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_CPP) #----------------------------------------------------------------------------- diff --git a/hl/c++/examples/CMakeLists.txt b/hl/c++/examples/CMakeLists.txt index 8c48795..25158f2 100644 --- a/hl/c++/examples/CMakeLists.txt +++ b/hl/c++/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_CPP_EXAMPLES) #----------------------------------------------------------------------------- diff --git a/hl/c++/src/CMakeLists.txt b/hl/c++/src/CMakeLists.txt index fca96fb..ce4da72 100644 --- a/hl/c++/src/CMakeLists.txt +++ b/hl/c++/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_CPP_SRC) #----------------------------------------------------------------------------- diff --git a/hl/c++/test/CMakeLists.txt b/hl/c++/test/CMakeLists.txt index 54afd7c..b48d147 100644 --- a/hl/c++/test/CMakeLists.txt +++ b/hl/c++/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_CPP_TEST) #----------------------------------------------------------------------------- diff --git a/hl/examples/CMakeLists.txt b/hl/examples/CMakeLists.txt index 68f0128..79dfee1 100644 --- a/hl/examples/CMakeLists.txt +++ b/hl/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_EXAMPLES ) #----------------------------------------------------------------------------- diff --git a/hl/fortran/CMakeLists.txt b/hl/fortran/CMakeLists.txt index 00d7517..7955de2 100644 --- a/hl/fortran/CMakeLists.txt +++ b/hl/fortran/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_F90 C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/hl/fortran/examples/CMakeLists.txt b/hl/fortran/examples/CMakeLists.txt index d920d64..411ceea 100644 --- a/hl/fortran/examples/CMakeLists.txt +++ b/hl/fortran/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_F90_EXAMPLES C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/hl/fortran/src/CMakeLists.txt b/hl/fortran/src/CMakeLists.txt index 93ba5ed..fa6abf6 100644 --- a/hl/fortran/src/CMakeLists.txt +++ b/hl/fortran/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT(HDF5_HL_F90_SRC C CXX Fortran) if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) diff --git a/hl/fortran/test/CMakeLists.txt b/hl/fortran/test/CMakeLists.txt index 25fe40d..9939fec 100644 --- a/hl/fortran/test/CMakeLists.txt +++ b/hl/fortran/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_FORTRAN_TESTS C CXX Fortran) #----------------------------------------------------------------------------- diff --git a/hl/src/CMakeLists.txt b/hl/src/CMakeLists.txt index 0a48f77..526c866 100644 --- a/hl/src/CMakeLists.txt +++ b/hl/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_SRC) #----------------------------------------------------------------------------- diff --git a/hl/test/CMakeLists.txt b/hl/test/CMakeLists.txt index 52194a8..054b786 100644 --- a/hl/test/CMakeLists.txt +++ b/hl/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_TEST) # -------------------------------------------------------------------- # Notes: When creating unit test executables they should be prefixed diff --git a/hl/tools/CMakeLists.txt b/hl/tools/CMakeLists.txt index 5503f41..407a0bb 100644 --- a/hl/tools/CMakeLists.txt +++ b/hl/tools/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_TOOLS C CXX) add_subdirectory (gif2h5) diff --git a/hl/tools/gif2h5/CMakeLists.txt b/hl/tools/gif2h5/CMakeLists.txt index 34d7074..2697dfd 100644 --- a/hl/tools/gif2h5/CMakeLists.txt +++ b/hl/tools/gif2h5/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_HL_TOOLS_GIF2H5) #----------------------------------------------------------------------------- diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index 2c8bc1a..d464ef8 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -645,7 +645,7 @@ adding an option (${CTEST_SCRIPT_ARG}) to the platform configuration script. ### ctest -S HDF518config.cmake,BUILD_GENERATOR=VS201264 -C Release -VV -O hdf518.log ### ############################################################################################# -cmake_minimum_required(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) ############################################################################ # Usage: # ctest -S HDF518config.cmake,OPTION=VALUE -C Release -VV -O test.log diff --git a/release_docs/USING_HDF5_CMake.txt b/release_docs/USING_HDF5_CMake.txt index dbd2ddc..caa0c1d 100644 --- a/release_docs/USING_HDF5_CMake.txt +++ b/release_docs/USING_HDF5_CMake.txt @@ -180,7 +180,7 @@ Given the preconditions in section I, create a CMakeLists.txt file at the source root. Include the following text in the file: ########################################################## -cmake_minimum_required (VERSION 3.10.1) +cmake_minimum_required (VERSION 3.10) (VERSION 3.10.1) project (HDF5MyApp C CXX) set (LIB_TYPE STATIC) # or SHARED @@ -229,7 +229,7 @@ your application with an installed HDF5 binary. ctest use of HDF518_Examples.cmake and HDF5_Examples_options.cmake ======================================================================== -cmake_minimum_required(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) ############################################################################################################### # This script will build and run the examples from a folder # Execute from a command line: diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1593466..b1109d1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_SRC C CXX) #----------------------------------------------------------------------------- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 40db60f..86678f1 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TEST) #----------------------------------------------------------------------------- diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 891645c..b341782 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TEST_PAR) #----------------------------------------------------------------------------- diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 0b812bf..6a12aa0 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS) #----------------------------------------------------------------------------- diff --git a/tools/h5copy/CMakeLists.txt b/tools/h5copy/CMakeLists.txt index d40656b..f94e369 100644 --- a/tools/h5copy/CMakeLists.txt +++ b/tools/h5copy/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5COPY) #----------------------------------------------------------------------------- diff --git a/tools/h5diff/CMakeLists.txt b/tools/h5diff/CMakeLists.txt index 3a900f5..61ae8a5 100644 --- a/tools/h5diff/CMakeLists.txt +++ b/tools/h5diff/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5DIFF) #----------------------------------------------------------------------------- diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index e40c6f5..5f5978f 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5DUMP) #----------------------------------------------------------------------------- diff --git a/tools/h5import/CMakeLists.txt b/tools/h5import/CMakeLists.txt index 6e0ac7e..095b596 100644 --- a/tools/h5import/CMakeLists.txt +++ b/tools/h5import/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5IMPORT) #----------------------------------------------------------------------------- diff --git a/tools/h5jam/CMakeLists.txt b/tools/h5jam/CMakeLists.txt index 58ad777..eaa6e20 100644 --- a/tools/h5jam/CMakeLists.txt +++ b/tools/h5jam/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5JAM) #----------------------------------------------------------------------------- diff --git a/tools/h5ls/CMakeLists.txt b/tools/h5ls/CMakeLists.txt index 6cf6fc0..33db24a 100644 --- a/tools/h5ls/CMakeLists.txt +++ b/tools/h5ls/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5LS) #----------------------------------------------------------------------------- diff --git a/tools/h5repack/CMakeLists.txt b/tools/h5repack/CMakeLists.txt index fd1ad3e..f5af433 100644 --- a/tools/h5repack/CMakeLists.txt +++ b/tools/h5repack/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5REPACK) #----------------------------------------------------------------------------- diff --git a/tools/h5stat/CMakeLists.txt b/tools/h5stat/CMakeLists.txt index 6b3c06b..6e601d9 100644 --- a/tools/h5stat/CMakeLists.txt +++ b/tools/h5stat/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_H5STAT) #----------------------------------------------------------------------------- diff --git a/tools/lib/CMakeLists.txt b/tools/lib/CMakeLists.txt index 068a635..6fd0280 100644 --- a/tools/lib/CMakeLists.txt +++ b/tools/lib/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_LIB) #----------------------------------------------------------------------------- diff --git a/tools/misc/CMakeLists.txt b/tools/misc/CMakeLists.txt index 919535f..de41a76 100644 --- a/tools/misc/CMakeLists.txt +++ b/tools/misc/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_TOOLS_MISC) #----------------------------------------------------------------------------- diff --git a/tools/perform/CMakeLists.txt b/tools/perform/CMakeLists.txt index 647f846..afafd42 100644 --- a/tools/perform/CMakeLists.txt +++ b/tools/perform/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.2.2) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5_PERFORM ) #----------------------------------------------------------------------------- -- cgit v0.12 From 542ef4045634ad84cee2e49962d105f6008a3651 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 9 Mar 2018 12:50:34 -0600 Subject: Merge from develop HDFFV-8359 and remove FindMPI copies --- CMakeLists.txt | 2 +- MANIFEST | 2 ++ c++/src/CMakeLists.txt | 47 ++++++++++++++++++++++++++++++++++ config/cmake/HDF518_Examples.cmake.in | 2 +- config/cmake/libh5cc.in | 32 +++++++++++++++++++++++ config/cmake/libhdf5.pc.in | 14 ++++++++++ hl/c++/src/CMakeLists.txt | 47 ++++++++++++++++++++++++++++++++++ hl/src/CMakeLists.txt | 46 +++++++++++++++++++++++++++++++++ release_docs/INSTALL_CMake.txt | 2 +- release_docs/RELEASE.txt | 20 +++++++++++++++ release_docs/USING_HDF5_CMake.txt | 4 +-- src/CMakeLists.txt | 48 +++++++++++++++++++++++++++++++++++ 12 files changed, 261 insertions(+), 5 deletions(-) create mode 100644 config/cmake/libh5cc.in create mode 100644 config/cmake/libhdf5.pc.in diff --git a/CMakeLists.txt b/CMakeLists.txt index 61ed4c7..dfbfbe7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.10) (VERSION 3.3) +cmake_minimum_required (VERSION 3.10) PROJECT (HDF5 C CXX) #----------------------------------------------------------------------------- diff --git a/MANIFEST b/MANIFEST index d1a0f7f..85e0c13 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2331,6 +2331,8 @@ ./config/cmake/hdf5-config-version.cmake.in ./config/cmake/HDFCompilerFlags.cmake ./config/cmake/HDF5Macros.cmake +./config/cmake/libh5cc.in +./config/cmake/libhdf5.pc.in ./config/cmake/libhdf5.settings.cmake.in ./config/cmake/mccacheinit.cmake ./config/cmake/patch.xml diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 1352c66..4e36521 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -139,3 +139,50 @@ if (HDF5_EXPORTED_TARGETS) INCLUDES DESTINATION include ) endif () + +#----------------------------------------------------------------------------- +# Create pkgconfig files +#----------------------------------------------------------------------------- +set (_PKG_CONFIG_PREFIX ${CMAKE_INSTALL_PREFIX}) +set (_PKG_CONFIG_EXEC_PREFIX \${prefix}) +set (_PKG_CONFIG_LIBDIR \${exec_prefix}/lib) +set (_PKG_CONFIG_INCLUDEDIR \${prefix}/include) +set (_PKG_CONFIG_LIBNAME "${HDF5_CPP_LIB_CORENAME}") +set (_PKG_CONFIG_VERSION "${HDF5_PACKAGE_VERSION}") + +set (_PKG_CONFIG_LIBS_PRIVATE) + +set (_PKG_CONFIG_LIBS "${_PKG_CONFIG_LIBS} -l${HDF5_CPP_LIB_CORENAME}") +if (BUILD_SHARED_LIBS) + set (_PKG_CONFIG_SH_LIBS "${_PKG_CONFIG_SH_LIBS} -l${HDF5_CPP_LIB_CORENAME}") +endif () + +set (_PKG_CONFIG_REQUIRES "${HDF5_LIB_CORENAME}") +set (_PKG_CONFIG_REQUIRES_PRIVATE "${HDF5_LIB_CORENAME}") + +configure_file ( + ${HDF_RESOURCES_DIR}/libhdf5.pc.in + ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_CPP_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + @ONLY +) +install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_CPP_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + DESTINATION ${HDF5_INSTALL_LIB_DIR}/pkgconfig + COMPONENT cpplibraries +) + +if (NOT WIN32) + set (_PKG_CONFIG_COMPILER ${CMAKE_CXX_COMPILER}) + configure_file ( + ${HDF_RESOURCES_DIR}/libh5cc.in + ${HDF5_BINARY_DIR}/CMakeFiles/h5c++ + @ONLY + ) + install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5c++ + DESTINATION ${HDF5_INSTALL_BIN_DIR} + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE + COMPONENT cpplibraries + ) +endif () + diff --git a/config/cmake/HDF518_Examples.cmake.in b/config/cmake/HDF518_Examples.cmake.in index f1f5ac2..c95a6f6 100644 --- a/config/cmake/HDF518_Examples.cmake.in +++ b/config/cmake/HDF518_Examples.cmake.in @@ -9,7 +9,7 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # -cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ############################################################################################################### # This script will build and run the examples from a folder # Execute from a command line: diff --git a/config/cmake/libh5cc.in b/config/cmake/libh5cc.in new file mode 100644 index 0000000..f462d56 --- /dev/null +++ b/config/cmake/libh5cc.in @@ -0,0 +1,32 @@ +#! /bin/sh +## +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +## + +prg=$0 +if [ ! -e "$prg" ]; then + case $prg in + (*/*) exit 1;; + (*) prg=$(command -v -- "$prg") || exit;; + esac +fi +dir=$( + cd -P -- "$(dirname -- "$prg")/.." && pwd -P +) || exit +prg=$dir/$(basename -- "$prg") || exit + +printf '%s\n' "$prg" +printf 'dir is %s\n' "$dir" + +export PKG_CONFIG_PATH=$dir/lib/pkgconfig + +@_PKG_CONFIG_COMPILER@ `pkg-config --define-variable=prefix=$dir --cflags --libs @_PKG_CONFIG_LIBNAME@-@_PKG_CONFIG_VERSION@` $@ diff --git a/config/cmake/libhdf5.pc.in b/config/cmake/libhdf5.pc.in new file mode 100644 index 0000000..4a2ebaa --- /dev/null +++ b/config/cmake/libhdf5.pc.in @@ -0,0 +1,14 @@ +prefix=@_PKG_CONFIG_PREFIX@ +exec_prefix=@_PKG_CONFIG_EXEC_PREFIX@ +libdir=@_PKG_CONFIG_LIBDIR@ +includedir=@_PKG_CONFIG_INCLUDEDIR@ + +Name: @_PKG_CONFIG_LIBNAME@ +Description: HDF5 (Hierarchical Data Format 5) Software Library +Version: @_PKG_CONFIG_VERSION@ + +Cflags: -I${includedir} +Libs: -L${libdir} @_PKG_CONFIG_SH_LIBS@ +Requires: @_PKG_CONFIG_REQUIRES@ +Libs.private: @_PKG_CONFIG_LIBS_PRIVATE@ @_PKG_CONFIG_LIBS@ +Requires.private: @_PKG_CONFIG_REQUIRES_PRIVATE@ diff --git a/hl/c++/src/CMakeLists.txt b/hl/c++/src/CMakeLists.txt index ce4da72..e6b374e 100644 --- a/hl/c++/src/CMakeLists.txt +++ b/hl/c++/src/CMakeLists.txt @@ -69,3 +69,50 @@ if (HDF5_EXPORTED_TARGETS) INCLUDES DESTINATION include ) endif () + +#----------------------------------------------------------------------------- +# Create pkgconfig files +#----------------------------------------------------------------------------- +set (_PKG_CONFIG_PREFIX ${CMAKE_INSTALL_PREFIX}) +set (_PKG_CONFIG_EXEC_PREFIX \${prefix}) +set (_PKG_CONFIG_LIBDIR \${exec_prefix}/lib) +set (_PKG_CONFIG_INCLUDEDIR \${prefix}/include) +set (_PKG_CONFIG_LIBNAME "${HDF5_HL_CPP_LIB_CORENAME}") +set (_PKG_CONFIG_VERSION "${HDF5_PACKAGE_VERSION}") + +set (_PKG_CONFIG_LIBS_PRIVATE) + +set (_PKG_CONFIG_LIBS "${_PKG_CONFIG_LIBS} -l${HDF5_HL_CPP_LIB_CORENAME}") +if (BUILD_SHARED_LIBS) + set (_PKG_CONFIG_SH_LIBS "${_PKG_CONFIG_SH_LIBS} -l${HDF5_HL_CPP_LIB_CORENAME}") +endif () + +set (_PKG_CONFIG_REQUIRES "${HDF5_HL_LIB_CORENAME}") +set (_PKG_CONFIG_REQUIRES_PRIVATE "${HDF5_HL_LIB_CORENAME}") + +configure_file ( + ${HDF_RESOURCES_DIR}/libhdf5.pc.in + ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_HL_CPP_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + @ONLY +) +install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_HL_CPP_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + DESTINATION ${HDF5_INSTALL_LIB_DIR}/pkgconfig + COMPONENT hlcpplibraries +) + +if (NOT WIN32) + set (_PKG_CONFIG_COMPILER ${CMAKE_CXX_COMPILER}) + configure_file ( + ${HDF_RESOURCES_DIR}/libh5cc.in + ${HDF5_BINARY_DIR}/CMakeFiles/h5hlc++ + @ONLY + ) + install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5hlc++ + DESTINATION ${HDF5_INSTALL_BIN_DIR} + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE + COMPONENT hlcpplibraries + ) +endif () + diff --git a/hl/src/CMakeLists.txt b/hl/src/CMakeLists.txt index 526c866..d9ecf4e 100644 --- a/hl/src/CMakeLists.txt +++ b/hl/src/CMakeLists.txt @@ -85,3 +85,49 @@ if (HDF5_EXPORTED_TARGETS) INCLUDES DESTINATION include ) endif () + +#----------------------------------------------------------------------------- +# Create pkgconfig files +#----------------------------------------------------------------------------- +set (_PKG_CONFIG_PREFIX ${CMAKE_INSTALL_PREFIX}) +set (_PKG_CONFIG_EXEC_PREFIX \${prefix}) +set (_PKG_CONFIG_LIBDIR \${exec_prefix}/lib) +set (_PKG_CONFIG_INCLUDEDIR \${prefix}/include) +set (_PKG_CONFIG_LIBNAME "${HDF5_HL_LIB_CORENAME}") +set (_PKG_CONFIG_VERSION "${HDF5_PACKAGE_VERSION}") + +set (_PKG_CONFIG_LIBS_PRIVATE) + +set (_PKG_CONFIG_LIBS "${_PKG_CONFIG_LIBS} -l${HDF5_HL_LIB_CORENAME}") +if (BUILD_SHARED_LIBS) + set (_PKG_CONFIG_SH_LIBS "${_PKG_CONFIG_SH_LIBS} -l${HDF5_HL_LIB_CORENAME}") +endif () + +set (_PKG_CONFIG_REQUIRES "${HDF5_LIB_CORENAME}") +set (_PKG_CONFIG_REQUIRES_PRIVATE "${HDF5_LIB_CORENAME}") + +configure_file ( + ${HDF_RESOURCES_DIR}/libhdf5.pc.in + ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_HL_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + @ONLY +) +install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_HL_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + DESTINATION ${HDF5_INSTALL_LIB_DIR}/pkgconfig + COMPONENT hllibraries +) + +if (NOT WIN32) + set (_PKG_CONFIG_COMPILER ${CMAKE_C_COMPILER}) + configure_file ( + ${HDF_RESOURCES_DIR}/libh5cc.in + ${HDF5_BINARY_DIR}/CMakeFiles/h5chl + @ONLY + ) + install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5chl + DESTINATION ${HDF5_INSTALL_BIN_DIR} + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE + COMPONENT hllibraries + ) +endif () diff --git a/release_docs/INSTALL_CMake.txt b/release_docs/INSTALL_CMake.txt index d464ef8..e33615d 100644 --- a/release_docs/INSTALL_CMake.txt +++ b/release_docs/INSTALL_CMake.txt @@ -645,7 +645,7 @@ adding an option (${CTEST_SCRIPT_ARG}) to the platform configuration script. ### ctest -S HDF518config.cmake,BUILD_GENERATOR=VS201264 -C Release -VV -O hdf518.log ### ############################################################################################# -cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ############################################################################ # Usage: # ctest -S HDF518config.cmake,OPTION=VALUE -C Release -VV -O test.log diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 84bed48..f7e698d 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -59,6 +59,26 @@ New Features ------------- - CMake + Change minimum version to 3.10. + + This change removes the need to support a copy of the FindMPI.cmake module, + which has been removed, along with its subfolder in the config/cmake_ext_mod + location. + + (ADB - 2018/03/09) + + - CMake + + Add pkg-config file generation + + Added pkg-config file generation for the C, C++, HL, and HL C++ libraries. + In addition, builds on linux will create h5cXXX scripts that use the pkg-config + files. This is a limited implementation of a script like autotools h5cc. + + (ADB - 2018/03/08, HDFFV-4359) + + - CMake + Refactor use of CMAKE_BUILD_TYPE for new variable, which understands the type of generator in use. diff --git a/release_docs/USING_HDF5_CMake.txt b/release_docs/USING_HDF5_CMake.txt index caa0c1d..e5be666 100644 --- a/release_docs/USING_HDF5_CMake.txt +++ b/release_docs/USING_HDF5_CMake.txt @@ -180,7 +180,7 @@ Given the preconditions in section I, create a CMakeLists.txt file at the source root. Include the following text in the file: ########################################################## -cmake_minimum_required (VERSION 3.10) (VERSION 3.10.1) +cmake_minimum_required (VERSION 3.10) project (HDF5MyApp C CXX) set (LIB_TYPE STATIC) # or SHARED @@ -229,7 +229,7 @@ your application with an installed HDF5 binary. ctest use of HDF518_Examples.cmake and HDF5_Examples_options.cmake ======================================================================== -cmake_minimum_required (VERSION 3.10)(VERSION 3.2.2 FATAL_ERROR) +cmake_minimum_required (VERSION 3.10) ############################################################################################################### # This script will build and run the examples from a folder # Execute from a command line: diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b1109d1..8177835 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -785,3 +785,51 @@ if (HDF5_EXPORTED_TARGETS) INCLUDES DESTINATION include ) endif () + +#----------------------------------------------------------------------------- +# Create pkgconfig files +#----------------------------------------------------------------------------- +set (_PKG_CONFIG_PREFIX ${CMAKE_INSTALL_PREFIX}) +set (_PKG_CONFIG_EXEC_PREFIX \${prefix}) +set (_PKG_CONFIG_LIBDIR \${exec_prefix}/lib) +set (_PKG_CONFIG_INCLUDEDIR \${prefix}/include) +set (_PKG_CONFIG_LIBNAME "${HDF5_LIB_CORENAME}") +set (_PKG_CONFIG_VERSION "${HDF5_PACKAGE_VERSION}") + +foreach (libs ${LINK_LIBS} ${LINK_COMP_LIBS}) + set (_PKG_CONFIG_LIBS_PRIVATE "${_PKG_CONFIG_LIBS_PRIVATE} -l${libs}") +endforeach () + +set (_PKG_CONFIG_LIBS "${_PKG_CONFIG_LIBS} -l${HDF5_LIB_CORENAME}") +if (BUILD_SHARED_LIBS) + set (_PKG_CONFIG_SH_LIBS "${_PKG_CONFIG_SH_LIBS} -l${HDF5_LIB_CORENAME}") +endif () + +set (_PKG_CONFIG_REQUIRES) +set (_PKG_CONFIG_REQUIRES_PRIVATE) + +configure_file ( + ${HDF_RESOURCES_DIR}/libhdf5.pc.in + ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + @ONLY +) +install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/${HDF5_LIB_CORENAME}-${HDF5_PACKAGE_VERSION}.pc + DESTINATION ${HDF5_INSTALL_LIB_DIR}/pkgconfig + COMPONENT libraries +) + +if (NOT WIN32) + set (_PKG_CONFIG_COMPILER ${CMAKE_C_COMPILER}) + configure_file ( + ${HDF_RESOURCES_DIR}/libh5cc.in + ${HDF5_BINARY_DIR}/CMakeFiles/h5cc + @ONLY + ) + install ( + FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5cc + DESTINATION ${HDF5_INSTALL_BIN_DIR} + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE + COMPONENT libraries + ) +endif () -- cgit v0.12 From 6bda7f4a9d908771488c4652ecd4e6fe1ae51efd Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Tue, 13 Mar 2018 12:44:06 -0500 Subject: Remove obsolete files --- MANIFEST | 7 ------- 1 file changed, 7 deletions(-) diff --git a/MANIFEST b/MANIFEST index 85e0c13..9ab8b46 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2343,7 +2343,6 @@ ./config/cmake_ext_mod/ConfigureChecks.cmake ./config/cmake_ext_mod/CTestCustom.cmake -./config/cmake_ext_mod/FindMPI.cmake ./config/cmake_ext_mod/FindSZIP.cmake ./config/cmake_ext_mod/GetTimeOfDayTest.cpp ./config/cmake_ext_mod/grepTest.cmake @@ -2359,12 +2358,6 @@ ./config/cmake_ext_mod/NSIS.template.in ./config/cmake_ext_mod/runTest.cmake ./config/cmake_ext_mod/version.plist.in -./config/cmake_ext_mod/FindMPI/fortranparam_mpi.f90.in -./config/cmake_ext_mod/FindMPI/libver_mpi.c -./config/cmake_ext_mod/FindMPI/libver_mpi.f90.in -./config/cmake_ext_mod/FindMPI/mpiver.f90.in -./config/cmake_ext_mod/FindMPI/test_mpi.c -./config/cmake_ext_mod/FindMPI/test_mpi.f90.in # CMake-specific User Files ./config/cmake/UserMacros/Windows_MT.cmake -- cgit v0.12 From b7514b5990559c49674032bc5d431638f3d33310 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 22 Mar 2018 14:07:02 -0500 Subject: Puul vs2017 readme fix from develop --- config/cmake_ext_mod/HDFMacros.cmake | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/config/cmake_ext_mod/HDFMacros.cmake b/config/cmake_ext_mod/HDFMacros.cmake index 4097ca9..04d60e1 100644 --- a/config/cmake_ext_mod/HDFMacros.cmake +++ b/config/cmake_ext_mod/HDFMacros.cmake @@ -27,8 +27,12 @@ macro (SET_HDF_BUILD_TYPE) set(HDF_BUILD_TYPE "Release") endif() endif() - if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE "Release") + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.") + set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build." FORCE) + # Set the possible values of build type for cmake-gui + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" + "MinSizeRel" "RelWithDebInfo") endif() endmacro () @@ -287,9 +291,11 @@ macro (HDF_README_PROPERTIES target_fortran) elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "^18.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2013") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "^19.*") - set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2015") - elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "^20.*") - set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2017") + if (${CMAKE_C_COMPILER_VERSION} MATCHES "^19.0.*") + set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2015") + else () + set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2017") + endif () else () set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO ${CMAKE_C_COMPILER_VERSION}") endif () -- cgit v0.12 From b372465824217a10cac606d02487a5e59071ab38 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 25 Mar 2018 21:34:31 -0500 Subject: Snapshot version 1.8 release 21 (snap10) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 5c52946..3e9740d 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap10 currently under development +HDF5 version 1.8.21-snap11 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index c8869af..5ac9452 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap10, currently under development" +PROJECT_NUMBER = "1.8.21-snap11, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 33ef682..bddd6a0 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.10) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap10") +set (CTEST_SOURCE_VERSEXT "-snap11") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index e09da0b..79aadd9 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap10. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap11. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap10' -PACKAGE_STRING='HDF5 1.8.21-snap10' +PACKAGE_VERSION='1.8.21-snap11' +PACKAGE_STRING='HDF5 1.8.21-snap11' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap10 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap11 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap10:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap11:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap10 +HDF5 configure 1.8.21-snap11 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap10, which was +It was created by HDF5 $as_me 1.8.21-snap11, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap10' + VERSION='1.8.21-snap11' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap10 +HDF5 config.lt 1.8.21-snap11 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap10, which was +This file was extended by HDF5 $as_me 1.8.21-snap11, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap10 +HDF5 config.status 1.8.21-snap11 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 6303100..afafe9d 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap10], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap11], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f7e698d..040974d 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap10 currently under development +HDF5 version 1.8.21-snap11 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 3aba4c3..75905cf 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap10" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap11" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap10" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap11" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 87d751eb2805d774deaa45eefe06413c8d450922 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 28 Mar 2018 12:29:15 -0500 Subject: Correct name of hl compile script --- hl/src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hl/src/CMakeLists.txt b/hl/src/CMakeLists.txt index d9ecf4e..b3710e5 100644 --- a/hl/src/CMakeLists.txt +++ b/hl/src/CMakeLists.txt @@ -121,11 +121,11 @@ if (NOT WIN32) set (_PKG_CONFIG_COMPILER ${CMAKE_C_COMPILER}) configure_file ( ${HDF_RESOURCES_DIR}/libh5cc.in - ${HDF5_BINARY_DIR}/CMakeFiles/h5chl + ${HDF5_BINARY_DIR}/CMakeFiles/h5hlcc @ONLY ) install ( - FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5chl + FILES ${HDF5_BINARY_DIR}/CMakeFiles/h5hlcc DESTINATION ${HDF5_INSTALL_BIN_DIR} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE COMPONENT hllibraries -- cgit v0.12 From 727ef7c334464bb5068c0b90c9e442e72e8cd6a9 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 1 Apr 2018 20:43:28 -0500 Subject: Snapshot version 1.8 release 21 (snap11) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 3e9740d..223ccc1 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap11 currently under development +HDF5 version 1.8.21-snap12 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 5ac9452..86f0675 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap11, currently under development" +PROJECT_NUMBER = "1.8.21-snap12, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index bddd6a0..0af9e16 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.10) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap11") +set (CTEST_SOURCE_VERSEXT "-snap12") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 79aadd9..6d22908 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap11. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap12. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap11' -PACKAGE_STRING='HDF5 1.8.21-snap11' +PACKAGE_VERSION='1.8.21-snap12' +PACKAGE_STRING='HDF5 1.8.21-snap12' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap11 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap12 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap11:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap12:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap11 +HDF5 configure 1.8.21-snap12 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap11, which was +It was created by HDF5 $as_me 1.8.21-snap12, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap11' + VERSION='1.8.21-snap12' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap11 +HDF5 config.lt 1.8.21-snap12 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap11, which was +This file was extended by HDF5 $as_me 1.8.21-snap12, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap11 +HDF5 config.status 1.8.21-snap12 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index afafe9d..bd9203e 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap11], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap12], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 040974d..662127f 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap11 currently under development +HDF5 version 1.8.21-snap12 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 75905cf..6bb14f8 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap11" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap12" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap11" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap12" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From af64ad195c31665ae8333e3c4a4592c01b4a734b Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 9 Apr 2018 10:49:30 -0500 Subject: Removed external links from C++ doc. --- c++/src/H5CppDoc.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/c++/src/H5CppDoc.h b/c++/src/H5CppDoc.h index c922ab5..16361b2 100644 --- a/c++/src/H5CppDoc.h +++ b/c++/src/H5CppDoc.h @@ -26,12 +26,9 @@ * * The C++ API provides C++ wrappers for the HDF5 C Library. * - * It is assumed that the user has knowledge of the - * - * HDF5 file format and its components. - * For more information on the HDF5 C Library, see the - * - * HDF5 Software Documentation page. + * It is assumed that the user has knowledge of the HDF5 file format and its + * components. For more information on the HDF5 C Library, please refer to + * the HDF5 Software Documentation page. * * Because the HDF5 C Library maps very well to * the object oriented design approach, classes in the C++ API can -- cgit v0.12 From d87a94a00d09f8b441d02272b06d6866eec4c883 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Tue, 10 Apr 2018 11:48:59 -0500 Subject: HDFFV-10444 fix so numbers --- CMakeLists.txt | 19 +++++++++++++------ c++/examples/CMakeTests.cmake | 4 ++-- c++/src/CMakeLists.txt | 4 ++-- config/cmake/HDF5Macros.cmake | 10 +++------- fortran/src/CMakeLists.txt | 12 ++++++------ fortran/test/CMakeLists.txt | 8 ++++---- hl/c++/src/CMakeLists.txt | 4 ++-- hl/fortran/src/CMakeLists.txt | 8 ++++---- hl/src/CMakeLists.txt | 4 ++-- src/CMakeLists.txt | 4 ++-- test/CMakeLists.txt | 8 ++++---- tools/h5diff/CMakeLists.txt | 2 +- tools/h5dump/CMakeLists.txt | 2 +- tools/h5ls/CMakeLists.txt | 2 +- tools/h5repack/CMakeLists.txt | 4 ++-- tools/lib/CMakeLists.txt | 4 ++-- 16 files changed, 51 insertions(+), 48 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dfbfbe7..8fa2b6b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -202,13 +202,13 @@ string (REGEX REPLACE ".*#define[ \t]+H5_VERS_SUBRELEASE[ \t]+\"([0-9A-Za-z._]*) #----------------------------------------------------------------------------- file (READ ${HDF5_SOURCE_DIR}/config/lt_vers.am _lt_vers_am_contents) string (REGEX REPLACE ".*LT_VERS_INTERFACE[ \t]+=[ \t]+([0-9]*).*$" - "\\1" H5_SOVERS_INTERFACE ${_lt_vers_am_contents}) + "\\1" H5_LIB_SOVERS_INTERFACE ${_lt_vers_am_contents}) string (REGEX REPLACE ".*LT_VERS_REVISION[ \t]+=[ \t]+([0-9]*).*$" - "\\1" H5_SOVERS_MINOR ${_lt_vers_am_contents}) + "\\1" H5_LIB_SOVERS_MINOR ${_lt_vers_am_contents}) string (REGEX REPLACE ".*LT_VERS_AGE[ \t]+=[ \t]+([0-9]*).*$" - "\\1" H5_SOVERS_RELEASE ${_lt_vers_am_contents}) -math (EXPR H5_SOVERS_MAJOR ${H5_SOVERS_INTERFACE}-${H5_SOVERS_RELEASE}) -message (STATUS "SOVERSION: ${H5_SOVERS_MAJOR}.${H5_SOVERS_RELEASE}.${H5_SOVERS_MINOR}") + "\\1" H5_LIB_SOVERS_RELEASE ${_lt_vers_am_contents}) +math (EXPR H5_LIB_SOVERS_MAJOR ${H5_LIB_SOVERS_INTERFACE}-${H5_LIB_SOVERS_RELEASE}) +message (STATUS "SOVERSION: ${H5_LIB_SOVERS_MAJOR}.${H5_LIB_SOVERS_RELEASE}.${H5_LIB_SOVERS_MINOR}") string (REGEX REPLACE ".*LT_TOOLS_VERS_INTERFACE[ \t]+=[ \t]+([0-9]*).*$" "\\1" H5_TOOLS_SOVERS_INTERFACE ${_lt_vers_am_contents}) string (REGEX REPLACE ".*LT_TOOLS_VERS_REVISION[ \t]+=[ \t]+([0-9]*).*$" @@ -271,13 +271,20 @@ if (NOT "${H5_VERS_SUBRELEASE}" STREQUAL "") else () set (HDF5_PACKAGE_VERSION_STRING "${HDF5_PACKAGE_VERSION}") endif () -set (HDF5_PACKAGE_SOVERSION "${H5_SOVERS_MAJOR}.${H5_SOVERS_RELEASE}.${H5_SOVERS_MINOR}") +set (HDF5_LIB_PACKAGE_SOVERSION "${H5_LIB_SOVERS_MAJOR}.${H5_LIB_SOVERS_RELEASE}.${H5_LIB_SOVERS_MINOR}") set (HDF5_TOOLS_PACKAGE_SOVERSION "${H5_TOOLS_SOVERS_MAJOR}.${H5_TOOLS_SOVERS_RELEASE}.${H5_TOOLS_SOVERS_MINOR}") +set (HDF5_TOOLS_PACKAGE_SOVERSION_MAJOR "${H5_TOOLS_SOVERS_MAJOR}") +set (HDF5_LIB_PACKAGE_SOVERSION_MAJOR "${H5_LIB_SOVERS_MAJOR}") set (HDF5_CXX_PACKAGE_SOVERSION "${H5_CXX_SOVERS_MAJOR}.${H5_CXX_SOVERS_RELEASE}.${H5_CXX_SOVERS_MINOR}") +set (HDF5_CXX_PACKAGE_SOVERSION_MAJOR "${H5_CXX_SOVERS_MAJOR}") set (HDF5_F_PACKAGE_SOVERSION "${H5_F_SOVERS_MAJOR}.${H5_F_SOVERS_RELEASE}.${H5_F_SOVERS_MINOR}") +set (HDF5_F_PACKAGE_SOVERSION_MAJOR "${H5_F_SOVERS_MAJOR}") set (HDF5_HL_PACKAGE_SOVERSION "${H5_HL_SOVERS_MAJOR}.${H5_HL_SOVERS_RELEASE}.${H5_HL_SOVERS_MINOR}") +set (HDF5_HL_PACKAGE_SOVERSION_MAJOR "${H5_HL_SOVERS_MAJOR}") set (HDF5_HL_CXX_PACKAGE_SOVERSION "${H5_HL_CXX_SOVERS_MAJOR}.${H5_HL_CXX_SOVERS_RELEASE}.${H5_HL_CXX_SOVERS_MINOR}") +set (HDF5_HL_CXX_PACKAGE_SOVERSION_MAJOR "${H5_HL_CXX_SOVERS_MAJOR}") set (HDF5_HL_F_PACKAGE_SOVERSION "${H5_HL_F_SOVERS_MAJOR}.${H5_HL_F_SOVERS_RELEASE}.${H5_HL_F_SOVERS_MINOR}") +set (HDF5_HL_F_PACKAGE_SOVERSION_MAJOR "${H5_HL_F_SOVERS_MAJOR}") set (HDF5_PACKAGE_STRING "${HDF5_PACKAGE_NAME} ${HDF5_PACKAGE_VERSION_STRING}") set (HDF5_PACKAGE_TARNAME "${HDF5_PACKAGE}${HDF_PACKAGE_EXT}") set (HDF5_PACKAGE_URL "http://www.hdfgroup.org") diff --git a/c++/examples/CMakeTests.cmake b/c++/examples/CMakeTests.cmake index 264a7e7..bd1f95b 100644 --- a/c++/examples/CMakeTests.cmake +++ b/c++/examples/CMakeTests.cmake @@ -51,7 +51,7 @@ endif () set (last_test "CPP_ex_${example}") endforeach () -#the following dependicies are handled by the order of the files +#the following dependencies are handled by the order of the files # SET_TESTS_PROPERTIES(CPP_ex_readdata PROPERTIES DEPENDS CPP_ex_create) # SET_TESTS_PROPERTIES(CPP_ex_chunks PROPERTIES DEPENDS CPP_ex_extend_ds) @@ -91,7 +91,7 @@ endif () set (last_test "CPP_ex_${example}") endforeach () -#the following dependicies are handled by the order of the files +#the following dependencies are handled by the order of the files # SET_TESTS_PROPERTIES(CPP_ex_h5tutr_crtatt PROPERTIES DEPENDS CPP_ex_h5tutr_crtdat) # SET_TESTS_PROPERTIES(CPP_ex_h5tutr_rdwt PROPERTIES DEPENDS CPP_ex_h5tutr_crtdat) # SET_TESTS_PROPERTIES(CPP_ex_h5tutr_crtgrpd PROPERTIES DEPENDS CPP_ex_h5tutr_crtgrpar) diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 4e36521..5b36137 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -84,7 +84,7 @@ add_library (${HDF5_CPP_LIB_TARGET} STATIC ${CPP_SRCS} ${CPP_HDRS}) TARGET_C_PROPERTIES (${HDF5_CPP_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_CPP_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_CPP_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_CPP_LIB_TARGET} ${HDF5_CPP_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_CPP_LIB_TARGET} ${HDF5_CPP_LIB_NAME} STATIC 0) set_target_properties (${HDF5_CPP_LIB_TARGET} PROPERTIES FOLDER libraries/cpp INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -96,7 +96,7 @@ if (BUILD_SHARED_LIBS) TARGET_C_PROPERTIES (${HDF5_CPP_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_CPP_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_CPP_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_CPP_LIBSH_TARGET} ${HDF5_CPP_LIB_NAME} SHARED ${HDF5_CXX_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_CPP_LIBSH_TARGET} ${HDF5_CPP_LIB_NAME} SHARED "CXX") set_target_properties (${HDF5_CPP_LIBSH_TARGET} PROPERTIES FOLDER libraries/cpp COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" diff --git a/config/cmake/HDF5Macros.cmake b/config/cmake/HDF5Macros.cmake index c3dea9a..e472a67 100644 --- a/config/cmake/HDF5Macros.cmake +++ b/config/cmake/HDF5Macros.cmake @@ -10,19 +10,15 @@ # help@hdfgroup.org. # #------------------------------------------------------------------------------- -macro (H5_SET_LIB_OPTIONS libtarget libname libtype) +macro (H5_SET_LIB_OPTIONS libtarget libname libtype libpackage) set (LIB_OUT_NAME "${libname}") # SOVERSION passed in ARGN when shared if (${libtype} MATCHES "SHARED") - if (ARGN) - set (PACKAGE_SOVERSION ${ARGN}) - else () - set (PACKAGE_SOVERSION ${H5_SOVERS_MAJOR}) - endif () + set (PACKAGE_SOVERSION ${HDF5_${libpackage}_PACKAGE_SOVERSION}) if (WIN32) set (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION_MAJOR}) else () - set (LIBHDF_VERSION ${HDF5_PACKAGE_SOVERSION}) + set (LIBHDF_VERSION ${HDF5_${libpackage}_PACKAGE_SOVERSION_MAJOR}) endif () set_target_properties (${libtarget} PROPERTIES VERSION ${LIBHDF_VERSION}) if (WIN32) diff --git a/fortran/src/CMakeLists.txt b/fortran/src/CMakeLists.txt index 964a302..00035ba 100644 --- a/fortran/src/CMakeLists.txt +++ b/fortran/src/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.10) -PROJECT (HDF5_F90_SRC C CXX Fortran) +project (HDF5_F90_SRC C CXX Fortran) #----------------------------------------------------------------------------- # configure def file for shared libs on windows @@ -185,7 +185,7 @@ target_include_directories(${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_BINARY_DIR TARGET_C_PROPERTIES (${HDF5_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_F90_C_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIB_TARGET} ${HDF5_F90_C_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIB_TARGET} ${HDF5_F90_C_LIB_NAME} STATIC 0) set_target_properties (${HDF5_F90_C_LIB_TARGET} PROPERTIES FOLDER libraries/fortran LINKER_LANGUAGE C @@ -199,7 +199,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) TARGET_C_PROPERTIES (${HDF5_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_C_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIBSH_TARGET} ${HDF5_F90_C_LIB_NAME} SHARED ${HDF5_F_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_F90_C_LIBSH_TARGET} ${HDF5_F90_C_LIB_NAME} SHARED "F") set_target_properties (${HDF5_F90_C_LIBSH_TARGET} PROPERTIES FOLDER libraries/fortran LINKER_LANGUAGE C @@ -298,7 +298,7 @@ if (H5_HAVE_PARALLEL AND MPI_Fortran_FOUND) target_include_directories (${HDF5_F90_LIB_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_F90_LIB_TARGET} ${HDF5_F90_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_F90_LIB_TARGET} ${HDF5_F90_LIB_NAME} STATIC 0) set_target_properties (${HDF5_F90_LIB_TARGET} PROPERTIES FOLDER libraries/fortran LINKER_LANGUAGE Fortran @@ -326,7 +326,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) target_include_directories (${HDF5_F90_LIBSH_TARGET} PUBLIC ${MPI_Fortran_INCLUDE_DIRS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_F90_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_LIB_NAME} SHARED ${HDF5_F_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_F90_LIBSH_TARGET} ${HDF5_F90_LIB_NAME} SHARED "F") set_target_properties (${HDF5_F90_LIBSH_TARGET} PROPERTIES FOLDER libraries/fortran LINKER_LANGUAGE Fortran @@ -337,7 +337,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) ) if (WIN32) set_property (TARGET ${HDF5_F90_LIBSH_TARGET} - APPEND PROPERTY COMPILE_DEFINITIONS "BUILD_HDF5_DLL;HDF5F90_WINDOWS" + APPEND PROPERTY COMPILE_DEFINITIONS "BUILD_HDF5_DLL;HDF5F90_WINDOWS" ) endif () set (install_targets ${install_targets} ${HDF5_F90_LIBSH_TARGET}) diff --git a/fortran/test/CMakeLists.txt b/fortran/test/CMakeLists.txt index 1ba6ed7..738891e 100644 --- a/fortran/test/CMakeLists.txt +++ b/fortran/test/CMakeLists.txt @@ -24,7 +24,7 @@ target_link_libraries (${HDF5_F90_C_TEST_LIB_TARGET} ${HDF5_F90_C_LIB_TARGET} ${HDF5_TEST_LIB_TARGET} ) -H5_SET_LIB_OPTIONS (${HDF5_F90_C_TEST_LIB_TARGET} ${HDF5_F90_C_TEST_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_F90_C_TEST_LIB_TARGET} ${HDF5_F90_C_TEST_LIB_NAME} STATIC 0) set_target_properties (${HDF5_F90_C_TEST_LIB_TARGET} PROPERTIES FOLDER libraries/test/fortran LINKER_LANGUAGE C @@ -38,7 +38,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_TEST_LIBSH_TARGET} ) - H5_SET_LIB_OPTIONS (${HDF5_F90_C_TEST_LIBSH_TARGET} ${HDF5_F90_C_TEST_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_F90_C_TEST_LIBSH_TARGET} ${HDF5_F90_C_TEST_LIB_NAME} SHARED "F") set_target_properties (${HDF5_F90_C_TEST_LIBSH_TARGET} PROPERTIES FOLDER libraries/test/fortran LINKER_LANGUAGE C @@ -75,7 +75,7 @@ target_link_libraries (${HDF5_F90_TEST_LIB_TARGET} ${HDF5_F90_LIB_TARGET} ${HDF5_LIB_TARGET} ) -H5_SET_LIB_OPTIONS (${HDF5_F90_TEST_LIB_TARGET} ${HDF5_F90_TEST_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_F90_TEST_LIB_TARGET} ${HDF5_F90_TEST_LIB_NAME} STATIC 0) target_include_directories (${HDF5_F90_TEST_LIB_TARGET} PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/static) set_target_properties (${HDF5_F90_TEST_LIB_TARGET} PROPERTIES FOLDER libraries/test/fortran @@ -99,7 +99,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) ${HDF5_F90_LIBSH_TARGET} ${HDF5_LIBSH_TARGET} ) - H5_SET_LIB_OPTIONS (${HDF5_F90_TEST_LIBSH_TARGET} ${HDF5_F90_TEST_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_F90_TEST_LIBSH_TARGET} ${HDF5_F90_TEST_LIB_NAME} SHARED "F") target_include_directories (${HDF5_F90_TEST_LIBSH_TARGET} PRIVATE ${CMAKE_Fortran_MODULE_DIRECTORY}/shared) set_target_properties (${HDF5_F90_TEST_LIBSH_TARGET} PROPERTIES FOLDER libraries/test/fortran diff --git a/hl/c++/src/CMakeLists.txt b/hl/c++/src/CMakeLists.txt index e6b374e..7949b73 100644 --- a/hl/c++/src/CMakeLists.txt +++ b/hl/c++/src/CMakeLists.txt @@ -14,7 +14,7 @@ add_library (${HDF5_HL_CPP_LIB_TARGET} STATIC ${HDF5_HL_CPP_SRCS}) TARGET_C_PROPERTIES (${HDF5_HL_CPP_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_CPP_LIB_TARGET} PUBLIC ${HDF5_HL_LIB_TARGET} ${HDF5_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_CPP_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIB_TARGET} ${HDF5_HL_CPP_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIB_TARGET} ${HDF5_HL_CPP_LIB_NAME} STATIC 0) set_target_properties (${HDF5_HL_CPP_LIB_TARGET} PROPERTIES FOLDER libraries/hl INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -26,7 +26,7 @@ if (BUILD_SHARED_LIBS) TARGET_C_PROPERTIES (${HDF5_HL_CPP_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_HL_CPP_LIBSH_TARGET} PUBLIC ${HDF5_HL_LIBSH_TARGET} ${HDF5_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_CPP_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIBSH_TARGET} ${HDF5_HL_CPP_LIB_NAME} SHARED ${HDF5_HL_CXX_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_HL_CPP_LIBSH_TARGET} ${HDF5_HL_CPP_LIB_NAME} SHARED "HL_CXX") set_target_properties (${HDF5_HL_CPP_LIBSH_TARGET} PROPERTIES FOLDER libraries/hl COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" diff --git a/hl/fortran/src/CMakeLists.txt b/hl/fortran/src/CMakeLists.txt index fa6abf6..bdc43d3 100644 --- a/hl/fortran/src/CMakeLists.txt +++ b/hl/fortran/src/CMakeLists.txt @@ -39,7 +39,7 @@ target_include_directories(${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_BINARY_ TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_F90_C_LIB_TARGET} PUBLIC ${HDF5_F90_C_LIB_TARGET} ${HDF5_HL_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_HL_F90_C_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_HL_F90_C_LIB_NAME} STATIC 0) set_target_properties (${HDF5_HL_F90_C_LIB_TARGET} PROPERTIES FOLDER libraries/hl/fortran LINKER_LANGUAGE C @@ -53,7 +53,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) TARGET_C_PROPERTIES (${HDF5_HL_F90_C_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_HL_F90_C_LIBSH_TARGET} PUBLIC ${HDF5_F90_C_LIBSH_TARGET} ${HDF5_HL_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_C_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_HL_F90_C_LIB_NAME} SHARED ${HDF5_HL_F_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_HL_F90_C_LIB_NAME} SHARED "HL_F") set_target_properties (${HDF5_HL_F90_C_LIBSH_TARGET} PROPERTIES FOLDER libraries/hl/fortran LINKER_LANGUAGE C @@ -79,7 +79,7 @@ add_library (${HDF5_HL_F90_LIB_TARGET} STATIC ${HDF5_HL_F90_F_SRCS}) TARGET_FORTRAN_PROPERTIES (${HDF5_HL_F90_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_F90_LIB_TARGET} PUBLIC ${HDF5_HL_F90_C_LIB_TARGET} ${HDF5_F90_LIB_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIB_TARGET} ${HDF5_HL_F90_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIB_TARGET} ${HDF5_HL_F90_LIB_NAME} STATIC 0) set_target_properties (${HDF5_HL_F90_LIB_TARGET} PROPERTIES FOLDER libraries/hl/fortran LINKER_LANGUAGE Fortran @@ -102,7 +102,7 @@ if (BUILD_SHARED_LIBS AND NOT SKIP_HDF5_FORTRAN_SHARED) TARGET_FORTRAN_PROPERTIES (${HDF5_HL_F90_LIBSH_TARGET} SHARED " " ${SHARED_LINK_FLAGS}) target_link_libraries (${HDF5_HL_F90_LIBSH_TARGET} PUBLIC ${HDF5_HL_F90_C_LIBSH_TARGET} ${HDF5_F90_LIBSH_TARGET}) set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_HL_F90_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_HL_F90_LIB_NAME} SHARED ${HDF5_HL_F_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_HL_F90_LIBSH_TARGET} ${HDF5_HL_F90_LIB_NAME} SHARED "HL_F") set_target_properties (${HDF5_HL_F90_LIBSH_TARGET} PROPERTIES FOLDER libraries/hl/fortran LINKER_LANGUAGE Fortran diff --git a/hl/src/CMakeLists.txt b/hl/src/CMakeLists.txt index b3710e5..d570265 100644 --- a/hl/src/CMakeLists.txt +++ b/hl/src/CMakeLists.txt @@ -29,7 +29,7 @@ set (HL_HEADERS add_library (${HDF5_HL_LIB_TARGET} STATIC ${HL_SRCS} ${HL_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_LIB_TARGET} STATIC " " " ") target_link_libraries (${HDF5_HL_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) -H5_SET_LIB_OPTIONS (${HDF5_HL_LIB_TARGET} ${HDF5_HL_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_HL_LIB_TARGET} ${HDF5_HL_LIB_NAME} STATIC 0) set_target_properties (${HDF5_HL_LIB_TARGET} PROPERTIES FOLDER libraries/hl INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -41,7 +41,7 @@ if (BUILD_SHARED_LIBS) add_library (${HDF5_HL_LIBSH_TARGET} SHARED ${HL_SRCS} ${HL_HEADERS}) TARGET_C_PROPERTIES (${HDF5_HL_LIBSH_TARGET} SHARED " " " ") target_link_libraries (${HDF5_HL_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_HL_LIBSH_TARGET} ${HDF5_HL_LIB_NAME} SHARED ${HDF5_HL_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_HL_LIBSH_TARGET} ${HDF5_HL_LIB_NAME} SHARED "HL") set_target_properties (${HDF5_HL_LIBSH_TARGET} PROPERTIES FOLDER libraries/hl COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8177835..4d2f1bc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -703,7 +703,7 @@ if (NOT WIN32) target_link_libraries (${HDF5_LIB_TARGET} PUBLIC ${CMAKE_DL_LIBS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT ${HDF5_LIB_TARGET}) -H5_SET_LIB_OPTIONS (${HDF5_LIB_TARGET} ${HDF5_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_LIB_TARGET} ${HDF5_LIB_NAME} STATIC 0) set_target_properties (${HDF5_LIB_TARGET} PROPERTIES FOLDER libraries INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -726,7 +726,7 @@ if (BUILD_SHARED_LIBS) target_link_libraries (${HDF5_LIBSH_TARGET} PUBLIC ${CMAKE_DL_LIBS}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_LIBSH_TARGET} ${HDF5_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_LIBSH_TARGET} ${HDF5_LIB_NAME} SHARED "LIB") set_target_properties (${HDF5_LIBSH_TARGET} PROPERTIES FOLDER libraries COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 86678f1..c748fad 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -36,7 +36,7 @@ if (MINGW) endif () target_link_libraries (${HDF5_TEST_LIB_TARGET} PUBLIC ${LINK_LIBS}) target_link_libraries (${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) -H5_SET_LIB_OPTIONS (${HDF5_TEST_LIB_TARGET} ${HDF5_TEST_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_TEST_LIB_TARGET} ${HDF5_TEST_LIB_NAME} STATIC 0) set_target_properties (${HDF5_TEST_LIB_TARGET} PROPERTIES FOLDER libraries/test INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -53,7 +53,7 @@ if (BUILD_SHARED_LIBS) endif () target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PUBLIC ${LINK_LIBS}) target_link_libraries (${HDF5_TEST_LIBSH_TARGET} PUBLIC ${HDF5_LIBSH_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TEST_LIBSH_TARGET} ${HDF5_TEST_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TEST_LIBSH_TARGET} ${HDF5_TEST_LIB_NAME} SHARED "LIB") set_target_properties (${HDF5_TEST_LIBSH_TARGET} PROPERTIES FOLDER libraries/test COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" @@ -97,7 +97,7 @@ endif () add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c) TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} PUBLIC ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED "LIB") set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN) #----------------------------------------------------------------------------- @@ -123,7 +123,7 @@ endif () add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c) TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} PUBLIC ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED "LIB") set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN) #----------------------------------------------------------------------------- diff --git a/tools/h5diff/CMakeLists.txt b/tools/h5diff/CMakeLists.txt index 61ae8a5..4ef6fb7 100644 --- a/tools/h5diff/CMakeLists.txt +++ b/tools/h5diff/CMakeLists.txt @@ -70,7 +70,7 @@ if (BUILD_TESTING) add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_diff.c) TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED "LIB") # make plugins dir file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins") diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index 5f5978f..b384ce2 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -49,7 +49,7 @@ if (BUILD_TESTING) add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_dump.c) TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED "LIB") # make plugins dir file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins") diff --git a/tools/h5ls/CMakeLists.txt b/tools/h5ls/CMakeLists.txt index 33db24a..7763816 100644 --- a/tools/h5ls/CMakeLists.txt +++ b/tools/h5ls/CMakeLists.txt @@ -41,7 +41,7 @@ if (BUILD_TESTING) add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_ls.c) TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED "LIB") # make plugins dir file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins") diff --git a/tools/h5repack/CMakeLists.txt b/tools/h5repack/CMakeLists.txt index f5af433..68f4070 100644 --- a/tools/h5repack/CMakeLists.txt +++ b/tools/h5repack/CMakeLists.txt @@ -67,12 +67,12 @@ if (BUILD_TESTING) add_library (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED dynlib_rpk.c) TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_TARGET} SHARED " " " ") target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_TARGET} ${HDF5_TOOL_PLUGIN_LIB_NAME} SHARED "LIB") add_library (${HDF5_TOOL_PLUGIN_LIB_VTARGET} SHARED dynlib_vrpk.c) TARGET_C_PROPERTIES (${HDF5_TOOL_PLUGIN_LIB_VTARGET} SHARED " " " ") target_link_libraries (${HDF5_TOOL_PLUGIN_LIB_VTARGET} ${HDF5_TEST_LIB_TARGET}) - H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_VTARGET} ${HDF5_TOOL_PLUGIN_LIB_VNAME} SHARED ${HDF5_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOL_PLUGIN_LIB_VTARGET} ${HDF5_TOOL_PLUGIN_LIB_VNAME} SHARED "LIB") # make plugins dir file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/plugins") diff --git a/tools/lib/CMakeLists.txt b/tools/lib/CMakeLists.txt index 6fd0280..c8bc187 100644 --- a/tools/lib/CMakeLists.txt +++ b/tools/lib/CMakeLists.txt @@ -44,7 +44,7 @@ if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) target_link_libraries (${HDF5_TOOLS_LIB_TARGET} PRIVATE ${MPI_C_LIBRARIES}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_TOOLS_LIB_TARGET}") -H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIB_TARGET} ${HDF5_TOOLS_LIB_NAME} STATIC) +H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIB_TARGET} ${HDF5_TOOLS_LIB_NAME} STATIC 0) set_target_properties (${HDF5_TOOLS_LIB_TARGET} PROPERTIES FOLDER libraries/tools INTERFACE_INCLUDE_DIRECTORIES "$/include>" @@ -60,7 +60,7 @@ if (BUILD_SHARED_LIBS) target_link_libraries (${HDF5_TOOLS_LIBSH_TARGET} PRIVATE ${MPI_C_LIBRARIES}) endif () set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_TOOLS_LIBSH_TARGET}") - H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_TOOLS_LIB_NAME} SHARED ${HDF5_TOOLS_PACKAGE_SOVERSION}) + H5_SET_LIB_OPTIONS (${HDF5_TOOLS_LIBSH_TARGET} ${HDF5_TOOLS_LIB_NAME} SHARED "TOOLS") set_target_properties (${HDF5_TOOLS_LIBSH_TARGET} PROPERTIES FOLDER libraries/tools COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB" -- cgit v0.12 From 8b15b10c59b73cdc624cacbfe7652f32c3d44dae Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Thu, 12 Apr 2018 18:34:20 -0500 Subject: Fixed typos Description: Looked for typos similar to user's report in HDFFV-10404. Not all the same but many were found and fixed. Platforms tested: Linux/64 (jelly) - only typos --- src/H5.c | 4 +- src/H5AC.c | 6 +- src/H5ACpkg.h | 2 +- src/H5ACpublic.h | 6 +- src/H5Aint.c | 4 +- src/H5Apkg.h | 2 +- src/H5B.c | 2 +- src/H5Bprivate.h | 2 +- src/H5C.c | 10 +- src/H5Cpkg.h | 12 +- src/H5Cprivate.h | 8 +- src/H5Dchunk.c | 6 +- src/H5Edeprec.c | 10 +- src/H5F.c | 2 +- src/H5FDdirect.c | 6 +- src/H5FDfamily.c | 2 +- src/H5FDmpio.c | 4 +- src/H5FDmulti.c | 2 +- src/H5FL.c | 6 +- src/H5FS.c | 6 +- src/H5FScache.c | 2 +- src/H5Fint.c | 2 +- src/H5Gname.c | 2 +- src/H5Gobj.c | 2 +- src/H5HFtiny.c | 2 +- src/H5L.c | 743 ++++++++++++++++++++++++++++--------------------------- src/H5MF.c | 2 +- src/H5Ocopy.c | 2 +- src/H5Omessage.c | 58 ++--- src/H5Tpkg.h | 2 +- 30 files changed, 460 insertions(+), 459 deletions(-) diff --git a/src/H5.c b/src/H5.c index e25a57e..34e4613 100644 --- a/src/H5.c +++ b/src/H5.c @@ -417,7 +417,7 @@ H5dont_atexit(void) * library, which are supposed to free any unused memory they have * allocated. * - * These should probably be registered dynamicly in a linked list of + * These should probably be registered dynamically in a linked list of * functions to call, but there aren't that many right now, so we * hard-wire them... * @@ -758,7 +758,7 @@ H5check_version(unsigned majnum, unsigned minnum, unsigned relnum) HDfprintf (stderr, "%s", H5libhdf5_settings); break; default: - /* 2 or higer: continue silently */ + /* 2 or higher: continue silently */ break; } /* end switch */ diff --git a/src/H5AC.c b/src/H5AC.c index ecbea10..32bacc5 100644 --- a/src/H5AC.c +++ b/src/H5AC.c @@ -437,7 +437,7 @@ H5AC_create(const H5F_t *f, HGOTO_ERROR(H5E_VFL, H5E_CANTGET, FAIL, "can't get mpi size") if(NULL == (aux_ptr = H5FL_CALLOC(H5AC_aux_t))) - HGOTO_ERROR(H5E_CACHE, H5E_CANTALLOC, FAIL, "Can't allocate H5AC auxilary structure.") + HGOTO_ERROR(H5E_CACHE, H5E_CANTALLOC, FAIL, "Can't allocate H5AC auxiliary structure.") aux_ptr->magic = H5AC__H5AC_AUX_T_MAGIC; aux_ptr->mpi_comm = mpi_comm; @@ -545,7 +545,7 @@ H5AC_create(const H5F_t *f, done: #ifdef H5_HAVE_PARALLEL - /* if there is a failure, try to tidy up the auxilary structure */ + /* if there is a failure, try to tidy up the auxiliary structure */ if(ret_value < 0) { if(aux_ptr != NULL) { if(aux_ptr->d_slist_ptr != NULL) @@ -1419,7 +1419,7 @@ done: * from the cache, clear it, and free it without writing it to * disk. * - * This verion of the function is a complete re-write to + * This version of the function is a complete re-write to * use the new metadata cache. While there isn't all that * much difference between the old and new Purpose sections, * the original version is given below. diff --git a/src/H5ACpkg.h b/src/H5ACpkg.h index 9a6bb0f..42f0b18 100644 --- a/src/H5ACpkg.h +++ b/src/H5ACpkg.h @@ -155,7 +155,7 @@ * is permitted to write to file. * * dirty_bytes_threshold: Integer field containing the dirty bytes - * generation threashold. Whenever dirty byte creation + * generation threshold. Whenever dirty byte creation * exceeds this value, the metadata cache on process 0 * broadcasts a list of the entries it has flushed since * the last broadcast (or since the beginning of execution) diff --git a/src/H5ACpublic.h b/src/H5ACpublic.h index 83938d9..ceb225d 100644 --- a/src/H5ACpublic.h +++ b/src/H5ACpublic.h @@ -39,7 +39,7 @@ extern "C" { * structure H5AC_cache_config_t * * H5AC_cache_config_t is a public structure intended for use in public APIs. - * At least in its initial incarnation, it is basicaly a copy of struct + * At least in its initial incarnation, it is basically a copy of struct * H5C_auto_size_ctl_t, minus the report_fcn field, and plus the * dirty_bytes_threshold field. * @@ -76,7 +76,7 @@ extern "C" { * open_trace_file: Boolean field indicating whether the trace_file_name * field should be used to open a trace file for the cache. * - * The trace file is a debuging feature that allow the capture of + * The trace file is a debugging feature that allow the capture of * top level metadata cache requests for purposes of debugging and/or * optimization. This field should normally be set to FALSE, as * trace file collection imposes considerable overhead. @@ -206,7 +206,7 @@ extern "C" { * * flash_incr_mode: Instance of the H5C_cache_flash_incr_mode enumerated * type whose value indicates whether and by which algorithm we should - * make flash increases in the size of the cache to accomodate insertion + * make flash increases in the size of the cache to accommodate insertion * of large entries and large increases in the size of a single entry. * * The addition of the flash increment mode was occasioned by performance diff --git a/src/H5Aint.c b/src/H5Aint.c index f53dfba..894e356 100644 --- a/src/H5Aint.c +++ b/src/H5Aint.c @@ -997,7 +997,7 @@ H5A_free(H5A_t *attr) HDassert(attr); - /* Free dynamicly allocated items */ + /* Free dynamically allocated items */ if(attr->shared->name) { H5MM_xfree(attr->shared->name); attr->shared->name = NULL; @@ -1052,7 +1052,7 @@ H5A_close(H5A_t *attr) /* Reference count can be 0. It only happens when H5A_create fails. */ if(attr->shared->nrefs <= 1) { - /* Free dynamicly allocated items */ + /* Free dynamically allocated items */ if(H5A_free(attr) < 0) HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "can't release attribute info") diff --git a/src/H5Apkg.h b/src/H5Apkg.h index 2606387..84b82fe 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -86,7 +86,7 @@ typedef struct H5A_shared_t { void *data; /* Attribute data (on a temporary basis) */ size_t data_size; /* Size of data on disk */ H5O_msg_crt_idx_t crt_idx; /* Attribute's creation index in the object header */ - unsigned nrefs; /* Ref count for times this object is refered */ + unsigned nrefs; /* Ref count for times this object is referred */ } H5A_shared_t; /* Define the main attribute structure */ diff --git a/src/H5B.c b/src/H5B.c index f96ec98..5443155 100644 --- a/src/H5B.c +++ b/src/H5B.c @@ -775,7 +775,7 @@ H5B_insert_child(H5B_t *bt, unsigned *bt_flags, unsigned idx, * the specified type. * * On return, if LT_KEY_CHANGED is non-zero, then LT_KEY is - * the new native left key. Similarily for RT_KEY_CHANGED + * the new native left key. Similarly for RT_KEY_CHANGED * and RT_KEY. * * If the node splits, then MD_KEY contains the key that diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index 732e478..9b565ab 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -121,7 +121,7 @@ typedef struct H5B_class_t { H5B_ins_t (*insert)(H5F_t*, hid_t, haddr_t, void*, hbool_t*, void*, void*, void*, hbool_t*, haddr_t*); - /* min insert uses min leaf, not new(), similarily for max insert */ + /* min insert uses min leaf, not new(), similarly for max insert */ hbool_t follow_min; hbool_t follow_max; diff --git a/src/H5C.c b/src/H5C.c index e03a0c8..b3f76dc 100644 --- a/src/H5C.c +++ b/src/H5C.c @@ -5258,7 +5258,7 @@ H5C_unprotect(H5F_t * f, * * All this is a bit awkward, but until the metadata cache entries * are contiguous, with only one dirty flag, we have to let the supplied - * functions deal with the reseting the is_dirty flag. + * functions deal with the resetting the is_dirty flag. */ if ( entry_ptr->clear_on_unprotect ) { @@ -6912,7 +6912,7 @@ H5C__flash_increase_cache_size(H5C_t * cache_ptr, if ( (cache_ptr->resize_ctl).rpt_fcn != NULL ) { /* get the hit rate for the reporting function. Should still - * be good as we havent reset the hit rate statistics. + * be good as we haven't reset the hit rate statistics. */ if ( H5C_get_cache_hit_rate(cache_ptr, &hit_rate) != SUCCEED ) { @@ -7032,7 +7032,7 @@ H5C_flush_invalidate_cache(H5F_t * f, } } - /* The flush proceedure here is a bit strange. + /* The flush procedure here is a bit strange. * * In the outer while loop we make at least one pass through the * cache, and then repeat until either all the pinned entries @@ -7210,7 +7210,7 @@ H5C_flush_invalidate_cache(H5F_t * f, * * While this optimization used to be easy, with the possibility * of new entries being added to the slist in the midst of the - * flush, we must keep the slist in cannonical form at all + * flush, we must keep the slist in canonical form at all * times. */ @@ -7783,7 +7783,7 @@ H5C_flush_single_entry(H5F_t * f, if ( cache_ptr->aux_ptr != NULL ) { HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, \ - "resize/move in serialize occured in parallel case.") + "resize/move in serialize occurred in parallel case.") } } diff --git a/src/H5Cpkg.h b/src/H5Cpkg.h index 0df5bf7..3041ce1 100644 --- a/src/H5Cpkg.h +++ b/src/H5Cpkg.h @@ -1005,7 +1005,7 @@ struct H5C_t * We maintain doubly linked lists of instances of H5C_cache_entry_t for a * variety of reasons -- protected list, LRU list, and the clean and dirty * LRU lists at present. The following macros support linking and unlinking - * of instances of H5C_cache_entry_t by both their regular and auxilary next + * of instances of H5C_cache_entry_t by both their regular and auxiliary next * and previous pointers. * * The size and length fields are also maintained. @@ -2509,7 +2509,7 @@ if ( (cache_ptr)->index_size != \ * a bit more performance out of the cache. * * At least for the first cut, I am leaving the comments and - * white space in the macro. If they cause dificulties with + * white space in the macro. If they cause difficulties with * the pre-processor, I'll have to remove them. * * JRM - 7/28/04 @@ -2620,7 +2620,7 @@ if ( (cache_ptr)->index_size != \ * a bit more performance out of the cache. * * At least for the first cut, I am leaving the comments and - * white space in the macro. If they cause dificulties with + * white space in the macro. If they cause difficulties with * pre-processor, I'll have to remove them. * * JRM - 7/28/04 @@ -2764,7 +2764,7 @@ if ( (cache_ptr)->index_size != \ * a bit more performance out of the cache. * * At least for the first cut, I am leaving the comments and - * white space in the macro. If they cause dificulties with + * white space in the macro. If they cause difficulties with * pre-processor, I'll have to remove them. * * JRM - 7/28/04 @@ -2902,7 +2902,7 @@ if ( (cache_ptr)->index_size != \ * a bit more performance out of the cache. * * At least for the first cut, I am leaving the comments and - * white space in the macro. If they cause dificulties with + * white space in the macro. If they cause difficulties with * pre-processor, I'll have to remove them. * * JRM - 7/28/04 @@ -3443,7 +3443,7 @@ if ( (cache_ptr)->index_size != \ * squeeze a bit more performance out of the cache. * * At least for the first cut, I am leaving the comments and - * white space in the macro. If they cause dificulties with + * white space in the macro. If they cause difficulties with * pre-processor, I'll have to remove them. * * JRM - 7/28/04 diff --git a/src/H5Cprivate.h b/src/H5Cprivate.h index feed474..efddb3c 100644 --- a/src/H5Cprivate.h +++ b/src/H5Cprivate.h @@ -160,7 +160,7 @@ typedef struct H5C_class_t { } H5C_class_t; -/* Type defintions of call back functions used by the cache as a whole */ +/* Type definitions of call back functions used by the cache as a whole */ typedef herr_t (*H5C_write_permitted_func_t)(const H5F_t *f, hid_t dxpl_id, @@ -186,7 +186,7 @@ typedef herr_t (*H5C_log_flush_func_t)(H5C_t * cache_ptr, /* Default max cache size and min clean size are give here to make - * them generally accessable. + * them generally accessible. */ #define H5C__DEFAULT_MAX_CACHE_SIZE ((size_t)(4 * 1024 * 1024)) @@ -369,7 +369,7 @@ typedef herr_t (*H5C_log_flush_func_t)(H5C_t * cache_ptr, * flush_immediately: Boolean flag used only in Phdf5 -- and then only * for H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED. * - * When a destributed metadata write is triggered at a + * When a distributed metadata write is triggered at a * sync point, this field is used to mark entries that * must be flushed before leaving the sync point. At all * other times, this field should be set to FALSE. @@ -674,7 +674,7 @@ typedef struct H5C_cache_entry_t * * flash_incr_mode: Instance of the H5C_cache_flash_incr_mode enumerated * type whose value indicates whether and by what algorithm we should - * make flash increases in the size of the cache to accomodate insertion + * make flash increases in the size of the cache to accommodate insertion * of large entries and large increases in the size of a single entry. * * The addition of the flash increment mode was occasioned by performance diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 021335f..4cabd72 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -641,7 +641,7 @@ H5D__chunk_set_info_real(H5O_layout_chunk_t *layout, unsigned ndims, const hsize /* Compute the # of chunks in dataset dimensions */ for(u = 0, layout->nchunks = 1; u < ndims; u++) { - /* Round up to the next integer # of chunks, to accomodate partial chunks */ + /* Round up to the next integer # of chunks, to accommodate partial chunks */ layout->chunks[u] = ((curr_dims[u] + layout->dim[u]) - 1) / layout->dim[u]; /* Accumulate the # of chunks */ @@ -2731,7 +2731,7 @@ H5D__chunk_flush_entry(const H5D_t *dset, hid_t dxpl_id, const H5D_dxpl_cache_t } /* end if */ else { /* - * If we are reseting and something goes wrong after this + * If we are resetting and something goes wrong after this * point then it's too late to recover because we may have * destroyed the original data by calling H5Z_pipeline(). * The only safe option is to continue with the reset @@ -4267,7 +4267,7 @@ H5D__chunk_prune_by_extent(H5D_t *dset, hid_t dxpl_id, const hsize_t *old_dim) HGOTO_DONE(SUCCEED) } /* end if */ - /* Round up to the next integer # of chunks, to accomodate partial chunks */ + /* Round up to the next integer # of chunks, to accommodate partial chunks */ /* Use current dims because the indices have already been updated! -NAF */ /* (also compute the number of elements per chunk) */ /* (also copy the chunk dimensions into 'hsize_t' array for creating dataspace) */ diff --git a/src/H5Edeprec.c b/src/H5Edeprec.c index 8175899..e2ef79c 100644 --- a/src/H5Edeprec.c +++ b/src/H5Edeprec.c @@ -275,7 +275,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Eclear1 * - * Purpose: This function is for backward compatbility. + * Purpose: This function is for backward compatibility. * Clears the error stack for the specified error stack. * * Return: Non-negative on success/Negative on failure @@ -306,7 +306,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Eprint1 * - * Purpose: This function is for backward compatbility. + * Purpose: This function is for backward compatibility. * Prints the error stack in some default way. This is just a * convenience function for H5Ewalk() with a function that * prints error messages. Users are encouraged to write there @@ -344,7 +344,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Ewalk1 * - * Purpose: This function is for backward compatbility. + * Purpose: This function is for backward compatibility. * Walks the error stack for the current thread and calls some * function for each error along the way. * @@ -383,7 +383,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Eget_auto1 * - * Purpose: This function is for backward compatbility. + * Purpose: This function is for backward compatibility. * Returns the current settings for the automatic error stack * traversal function and its data for specific error stack. * Either (or both) arguments may be null in which case the @@ -434,7 +434,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Eset_auto1 * - * Purpose: This function is for backward compatbility. + * Purpose: This function is for backward compatibility. * Turns on or off automatic printing of errors for certain * error stack. When turned on (non-null FUNC pointer) any * API function which returns an error indication will first diff --git a/src/H5F.c b/src/H5F.c index 9c0c3ce..ca0fa57 100644 --- a/src/H5F.c +++ b/src/H5F.c @@ -703,7 +703,7 @@ H5Fflush(hid_t object_id, H5F_scope_t scope) if(!f) { if(!oloc) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "object is not assocated with a file") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "object is not associated with a file") f = oloc->file; } /* end if */ if(!f) diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index a14e676..ff18c71 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -946,7 +946,7 @@ H5FD_direct_read(H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type, hid_t H5_ATTR_UN do { /* Read the aligned data in file first. Not able to handle interrupted * system calls and partial results like sec2 driver does because the - * data may no longer be aligned. It's expecially true when the data in + * data may no longer be aligned. It's especially true when the data in * file is smaller than ALLOC_SIZE. */ HDmemset(copy_buf, 0, alloc_size); @@ -1131,9 +1131,9 @@ H5FD_direct_write(H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type, hid_t H5_ATTR_U /* * Read the aligned data first if the aligned region doesn't fall - * entirely in the range to be writen. Not able to handle interrupted + * entirely in the range to be written. Not able to handle interrupted * system calls and partial results like sec2 driver does because the - * data may no longer be aligned. It's expecially true when the data in + * data may no longer be aligned. It's especially true when the data in * file is smaller than ALLOC_SIZE. Only read the entire section if * both ends are misaligned, otherwise only read the block on the * misaligned end. diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index 4b45c62..269441a 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -548,7 +548,7 @@ H5FD_family_sb_encode(H5FD_t *_file, char *name/*out*/, unsigned char *buf/*out* /*------------------------------------------------------------------------- * Function: H5FD_family_sb_decode * - * Purpose: This function has 2 seperate purpose. One is to decodes the + * Purpose: This function has 2 separate purpose. One is to decodes the * superblock information for this driver. The NAME argument is * the eight-character (plus null termination) name stored in i * the file. The FILE argument is updated according to the diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c index 61fb46d..c8edb85 100644 --- a/src/H5FDmpio.c +++ b/src/H5FDmpio.c @@ -1483,7 +1483,7 @@ H5FD_mpio_read(H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type, hid_t dxpl_id, had /* Only look for MPI views for raw data transfers */ if(type==H5FD_MEM_DRAW) { - H5FD_mpio_xfer_t xfer_mode; /* I/O tranfer mode */ + H5FD_mpio_xfer_t xfer_mode; /* I/O transfer mode */ /* Obtain the data transfer properties */ if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id))) @@ -1769,7 +1769,7 @@ H5FD_mpio_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, #endif if(type == H5FD_MEM_DRAW) { - H5FD_mpio_xfer_t xfer_mode; /* I/O tranfer mode */ + H5FD_mpio_xfer_t xfer_mode; /* I/O transfer mode */ /* Obtain the data transfer properties */ if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id))) diff --git a/src/H5FDmulti.c b/src/H5FDmulti.c index 1ec988e..c76c2c0 100644 --- a/src/H5FDmulti.c +++ b/src/H5FDmulti.c @@ -262,7 +262,7 @@ H5FD_multi_term(void) /*------------------------------------------------------------------------- * Function: H5Pset_fapl_split * - * Purpose: Compatability function. Makes the multi driver act like the + * Purpose: Compatibility function. Makes the multi driver act like the * old split driver which stored meta data in one file and raw * data in another file. * diff --git a/src/H5FL.c b/src/H5FL.c index 0e49d69..59f0f82 100644 --- a/src/H5FL.c +++ b/src/H5FL.c @@ -18,7 +18,7 @@ * Purpose: Manage priority queues of free-lists (of blocks of bytes). * These are used in various places in the library which allocate and * free differently blocks of bytes repeatedly. Usually the same size - * of block is allocated and freed repeatly in a loop, while writing out + * of block is allocated and freed repeatedly in a loop, while writing out * chunked data for example, but the blocks may also be of different sizes * from different datasets and an attempt is made to optimize access to * the proper free list of blocks by using these priority queues to @@ -455,7 +455,7 @@ H5FL_reg_calloc(H5FL_reg_head_t *head H5FL_TRACK_PARAMS) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") /* Clear to zeros */ - /* (Accomodate tracking information, if present) */ + /* (Accommodate tracking information, if present) */ HDmemset(ret_value,0,head->size - H5FL_TRACK_SIZE); done: @@ -2190,7 +2190,7 @@ H5FL_fac_calloc(H5FL_fac_head_t *head H5FL_TRACK_PARAMS) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") /* Clear to zeros */ - /* (Accomodate tracking information, if present) */ + /* (Accommodate tracking information, if present) */ HDmemset(ret_value,0,head->size - H5FL_TRACK_SIZE); done: diff --git a/src/H5FS.c b/src/H5FS.c index e93302b..7cdbea1 100644 --- a/src/H5FS.c +++ b/src/H5FS.c @@ -134,7 +134,7 @@ HDfprintf(stderr, "%s: Creating free space manager, nclasses = %Zu\n", FUNC, ncl fspace->alignment = alignment; fspace->threshold = threshold; - /* Check if the free space tracker is supposed to be persistant */ + /* Check if the free space tracker is supposed to be persistent */ if(fs_addr) { /* Allocate space for the free space header */ if(HADDR_UNDEF == (fspace->addr = H5MF_alloc(f, H5FD_MEM_FSPACE_HDR, dxpl_id, (hsize_t)fspace->hdr_size))) @@ -373,7 +373,7 @@ HDfprintf(stderr, "%s: fspace->tot_sect_count = %Hu, fspace->serial_sect_count = HDfprintf(stderr, "%s: fspace->alloc_sect_size = %Hu, fspace->sect_size = %Hu\n", FUNC, fspace->alloc_sect_size, fspace->sect_size); #endif /* H5FS_DEBUG */ /* If there are sections to serialize, update them */ - /* (if the free space manager is persistant) */ + /* (if the free space manager is persistent) */ if(fspace->serial_sect_count > 0 && H5F_addr_defined(fspace->addr)) { #ifdef H5FS_DEBUG HDfprintf(stderr, "%s: Real sections to store in file\n", FUNC); @@ -729,7 +729,7 @@ HDfprintf(stderr, "%s: Marking free space header as dirty\n", FUNC); /* Sanity check */ HDassert(fspace); - /* Check if the free space manager is persistant */ + /* Check if the free space manager is persistent */ if(H5F_addr_defined(fspace->addr)) /* Mark header as dirty in cache */ if(H5AC_mark_entry_dirty(fspace) < 0) diff --git a/src/H5FScache.c b/src/H5FScache.c index db1d3b2..fdf4e4d 100644 --- a/src/H5FScache.c +++ b/src/H5FScache.c @@ -750,7 +750,7 @@ H5FS_sinfo_serialize_sect_cb(void *_item, void H5_ATTR_UNUSED *key, void *_udata /* Call 'serialize' callback for this section */ if(sect_cls->serialize) { if((*sect_cls->serialize)(sect_cls, sect, *udata->p) < 0) - HGOTO_ERROR(H5E_FSPACE, H5E_CANTSERIALIZE, FAIL, "can't syncronize section") + HGOTO_ERROR(H5E_FSPACE, H5E_CANTSERIALIZE, FAIL, "can't synchronize section") /* Update offset in serialization buffer */ (*udata->p) += sect_cls->serial_size; diff --git a/src/H5Fint.c b/src/H5Fint.c index 62f249e..a92fa46 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -2014,7 +2014,7 @@ H5F_get_file_image(H5F_t *file, void *buf_ptr, size_t buf_len) * * While this problem is quire solvable, the required time and * resources are lacking at present. Hence, for now, we don't - * allow the get file image operation to be perfomed on files + * allow the get file image operation to be performed on files * opened with the family file driver. * * Observe that the following test only looks at the top level diff --git a/src/H5Gname.c b/src/H5Gname.c index 6152417..6db4b48 100644 --- a/src/H5Gname.c +++ b/src/H5Gname.c @@ -1060,7 +1060,7 @@ done: * Function: H5G_name_replace * * Purpose: Search the list of open IDs and replace names according to a - * particular operation. The operation occured on the + * particular operation. The operation occurred on the * SRC_FILE/SRC_FULL_PATH_R object. The new name (if there is * one) is NEW_NAME_R. Additional entry location information * (currently only needed for the 'move' operation) is passed in diff --git a/src/H5Gobj.c b/src/H5Gobj.c index 7b01871..97c9a76 100644 --- a/src/H5Gobj.c +++ b/src/H5Gobj.c @@ -226,7 +226,7 @@ H5G__obj_create_real(H5F_t *f, hid_t dxpl_id, const H5O_ginfo_t *ginfo, size_t pline_size = 0; /* Size of the pipeline message */ size_t link_size; /* Size of a link message */ - /* Calculate message size infomation, for creating group's object header */ + /* Calculate message size information, for creating group's object header */ linfo_size = H5O_msg_size_f(f, gcpl_id, H5O_LINFO_ID, linfo, (size_t)0); HDassert(linfo_size); diff --git a/src/H5HFtiny.c b/src/H5HFtiny.c index 6dbdaa3..ea913a2 100644 --- a/src/H5HFtiny.c +++ b/src/H5HFtiny.c @@ -109,7 +109,7 @@ H5HF_tiny_init(H5HF_hdr_t *hdr) /* Check if tiny objects need an extra byte for their length */ /* (account for boundary condition when length of an object would need an * extra byte, but using that byte means that the extra length byte is - * unneccessary) + * unnecessary) */ if((hdr->id_len - 1) <= H5HF_TINY_LEN_SHORT) { hdr->tiny_max_len = hdr->id_len - 1; diff --git a/src/H5L.c b/src/H5L.c index d302e3f..1e60398 100644 --- a/src/H5L.c +++ b/src/H5L.c @@ -15,10 +15,10 @@ /* Module Setup */ /****************/ -#define H5L_PACKAGE /*suppress error about including H5Lpkg */ +#define H5L_PACKAGE /*suppress error about including H5Lpkg */ /* Interface initialization */ -#define H5_INTERFACE_INIT_FUNC H5L_init_interface +#define H5_INTERFACE_INIT_FUNC H5L_init_interface /***********/ /* Headers */ @@ -27,7 +27,7 @@ #include "H5ACprivate.h" /* Metadata cache */ #include "H5Dprivate.h" /* Datasets */ #include "H5Eprivate.h" /* Error handling */ -#include "H5Fprivate.h" /* File access */ +#include "H5Fprivate.h" /* File access */ #include "H5Gprivate.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ #include "H5Lpkg.h" /* Links */ @@ -78,7 +78,7 @@ typedef struct { typedef struct { const char *dst_name; /* Destination name for moving object */ H5T_cset_t cset; /* Char set for new name */ - H5G_loc_t *dst_loc; /* Destination location for moving object */ + H5G_loc_t *dst_loc; /* Destination location for moving object */ unsigned dst_target_flags; /* Target flags for destination object */ hbool_t copy; /* TRUE if this is a copy operation */ hid_t lapl_id; /* LAPL to use in callback */ @@ -206,15 +206,15 @@ static H5L_class_t *H5L_table_g = NULL; /*------------------------------------------------------------------------- - * Function: H5L_init + * Function: H5L_init * - * Purpose: Initialize the interface from some other package. + * Purpose: Initialize the interface from some other package. * - * Return: Success: non-negative + * Return: Success: non-negative * - * Failure: negative + * Failure: negative * - * Programmer: James Laird + * Programmer: James Laird * Thursday, July 13, 2006 * *------------------------------------------------------------------------- @@ -233,13 +233,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_init_interface + * Function: H5L_init_interface * - * Purpose: Initialize information specific to H5L interface. + * Purpose: Initialize information specific to H5L interface. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Tuesday, January 24, 2006 * *------------------------------------------------------------------------- @@ -261,13 +261,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_term_interface + * Function: H5L_term_interface * - * Purpose: Terminate any resources allocated in H5L_init_interface. + * Purpose: Terminate any resources allocated in H5L_init_interface. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Tuesday, January 24, 2006 * *------------------------------------------------------------------------- @@ -275,7 +275,7 @@ done: int H5L_term_interface(void) { - int n = 0; + int n = 0; FUNC_ENTER_NOAPI_NOINIT_NOERR @@ -291,18 +291,18 @@ H5L_term_interface(void) /*------------------------------------------------------------------------- - * Function: H5Lmove + * Function: H5Lmove * - * Purpose: Renames an object within an HDF5 file and moves it to a new + * Purpose: Renames an object within an HDF5 file and moves it to a new * group. The original name SRC is unlinked from the group graph * and then inserted with the new name DST (which can specify a * new path for the object) as an atomic operation. The names * are interpreted relative to SRC_LOC_ID and * DST_LOC_ID, which are either file IDs or group ID. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Wednesday, March 29, 2006 * *------------------------------------------------------------------------- @@ -311,8 +311,8 @@ herr_t H5Lmove(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, const char *dst_name, hid_t lcpl_id, hid_t lapl_id) { - H5G_loc_t src_loc, *src_loc_p; - H5G_loc_t dst_loc, *dst_loc_p; + H5G_loc_t src_loc, *src_loc_p; + H5G_loc_t dst_loc, *dst_loc_p; herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -344,7 +344,7 @@ H5Lmove(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, /* Move the link */ if(H5L_move(src_loc_p, src_name, dst_loc_p, dst_name, FALSE, lcpl_id, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTMOVE, FAIL, "unable to move link") + HGOTO_ERROR(H5E_LINK, H5E_CANTMOVE, FAIL, "unable to move link") done: FUNC_LEAVE_API(ret_value) @@ -352,15 +352,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lcopy + * Function: H5Lcopy * - * Purpose: Creates an identical copy of a link with the same creation + * Purpose: Creates an identical copy of a link with the same creation * time and target. The new link can have a different name * and be in a different location than the original. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Wednesday, March 29, 2006 * *------------------------------------------------------------------------- @@ -369,8 +369,8 @@ herr_t H5Lcopy(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, const char *dst_name, hid_t lcpl_id, hid_t lapl_id) { - H5G_loc_t src_loc, *src_loc_p; - H5G_loc_t dst_loc, *dst_loc_p; + H5G_loc_t src_loc, *src_loc_p; + H5G_loc_t dst_loc, *dst_loc_p; herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -402,7 +402,7 @@ H5Lcopy(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, /* Copy the link */ if(H5L_move(src_loc_p, src_name, dst_loc_p, dst_name, TRUE, lcpl_id, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTMOVE, FAIL, "unable to move link") + HGOTO_ERROR(H5E_LINK, H5E_CANTMOVE, FAIL, "unable to move link") done: FUNC_LEAVE_API(ret_value) @@ -410,19 +410,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lcreate_soft + * Function: H5Lcreate_soft * - * Purpose: Creates a soft link from LINK_NAME to LINK_TARGET. + * Purpose: Creates a soft link from LINK_NAME to LINK_TARGET. * - * LINK_TARGET can be anything and is interpreted at lookup + * LINK_TARGET can be anything and is interpreted at lookup * time relative to the group which contains the final component * of LINK_NAME. For instance, if LINK_TARGET is `./foo' and * LINK_NAME is `./x/y/bar' and a request is made for `./x/y/bar' * then the actual object looked up is `./x/y/./foo'. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 6, 1998 * *------------------------------------------------------------------------- @@ -431,7 +431,7 @@ herr_t H5Lcreate_soft(const char *link_target, hid_t link_loc_id, const char *link_name, hid_t lcpl_id, hid_t lapl_id) { - H5G_loc_t link_loc; /* Group location for new link */ + H5G_loc_t link_loc; /* Group location for new link */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -441,15 +441,15 @@ H5Lcreate_soft(const char *link_target, if(H5G_loc(link_loc_id, &link_loc) < 0) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!link_target || !*link_target) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no target specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no target specified") if(!link_name || !*link_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no new name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no new name specified") if(lcpl_id != H5P_DEFAULT && (TRUE != H5P_isa_class(lcpl_id, H5P_LINK_CREATE))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a link creation property list") /* Create the link */ if(H5L_create_soft(link_target, &link_loc, link_name, lcpl_id, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") + HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") done: FUNC_LEAVE_API(ret_value) @@ -457,17 +457,17 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lcreate_hard + * Function: H5Lcreate_hard * - * Purpose: Creates a hard link from NEW_NAME to CUR_NAME. + * Purpose: Creates a hard link from NEW_NAME to CUR_NAME. * - * CUR_NAME must name an existing object. CUR_NAME and + * CUR_NAME must name an existing object. CUR_NAME and * NEW_NAME are interpreted relative to CUR_LOC_ID and * NEW_LOC_ID, which are either file IDs or group IDs. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 6, 1998 * *------------------------------------------------------------------------- @@ -476,8 +476,8 @@ herr_t H5Lcreate_hard(hid_t cur_loc_id, const char *cur_name, hid_t new_loc_id, const char *new_name, hid_t lcpl_id, hid_t lapl_id) { - H5G_loc_t cur_loc, *cur_loc_p; - H5G_loc_t new_loc, *new_loc_p; + H5G_loc_t cur_loc, *cur_loc_p; + H5G_loc_t new_loc, *new_loc_p; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -488,13 +488,13 @@ H5Lcreate_hard(hid_t cur_loc_id, const char *cur_name, if(cur_loc_id == H5L_SAME_LOC && new_loc_id == H5L_SAME_LOC) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "source and destination should not be both H5L_SAME_LOC") if(cur_loc_id != H5L_SAME_LOC && H5G_loc(cur_loc_id, &cur_loc) < 0) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(new_loc_id != H5L_SAME_LOC && H5G_loc(new_loc_id, &new_loc) < 0) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!cur_name || !*cur_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no current name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no current name specified") if(!new_name || !*new_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no new name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no new name specified") if(lcpl_id != H5P_DEFAULT && (TRUE != H5P_isa_class(lcpl_id, H5P_LINK_CREATE))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a link creation property list") @@ -504,14 +504,14 @@ H5Lcreate_hard(hid_t cur_loc_id, const char *cur_name, if(cur_loc_id == H5L_SAME_LOC) cur_loc_p = new_loc_p; else if(new_loc_id == H5L_SAME_LOC) - new_loc_p = cur_loc_p; + new_loc_p = cur_loc_p; else if(cur_loc_p->oloc->file != new_loc_p->oloc->file) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "source and destination should be in the same file.") /* Create the link */ if(H5L_create_hard(cur_loc_p, cur_name, new_loc_p, new_name, lcpl_id, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") + HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") done: FUNC_LEAVE_API(ret_value) @@ -519,25 +519,25 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lcreate_ud + * Function: H5Lcreate_ud * - * Purpose: Creates a user-defined link of type LINK_TYPE named LINK_NAME + * Purpose: Creates a user-defined link of type LINK_TYPE named LINK_NAME * with user-specified data UDATA. * - * The format of the information pointed to by UDATA is + * The format of the information pointed to by UDATA is * defined by the user. UDATA_SIZE holds the size of this buffer. * - * LINK_NAME is interpreted relative to LINK_LOC_ID. + * LINK_NAME is interpreted relative to LINK_LOC_ID. * - * The property list specified by LCPL_ID holds properties used + * The property list specified by LCPL_ID holds properties used * to create the link. * * The link class of the new link must already be registered * with the library. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Tuesday, December 13, 2005 * *------------------------------------------------------------------------- @@ -546,7 +546,7 @@ herr_t H5Lcreate_ud(hid_t link_loc_id, const char *link_name, H5L_type_t link_type, const void *udata, size_t udata_size, hid_t lcpl_id, hid_t lapl_id) { - H5G_loc_t link_loc; + H5G_loc_t link_loc; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -557,13 +557,13 @@ H5Lcreate_ud(hid_t link_loc_id, const char *link_name, H5L_type_t link_type, if(H5G_loc(link_loc_id, &link_loc) < 0) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!link_name || !*link_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no link name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no link name specified") if(link_type < H5L_TYPE_UD_MIN || link_type > H5L_TYPE_MAX) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid link class") /* Create external link */ if(H5L_create_ud(&link_loc, link_name, udata, udata_size, link_type, lcpl_id, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") + HGOTO_ERROR(H5E_LINK, H5E_CANTINIT, FAIL, "unable to create link") done: FUNC_LEAVE_API(ret_value) @@ -571,18 +571,18 @@ done: /*------------------------------------------------------------------------- - * Function: H5Ldelete + * Function: H5Ldelete * - * Purpose: Removes the specified NAME from the group graph and - * decrements the link count for the object to which NAME - * points. If the link count reaches zero then all file-space - * associated with the object will be reclaimed (but if the - * object is open, then the reclamation of the file space is - * delayed until all handles to the object are closed). + * Purpose: Removes the specified NAME from the group graph and + * decrements the link count for the object to which NAME + * points. If the link count reaches zero then all file-space + * associated with the object will be reclaimed (but if the + * object is open, then the reclamation of the file space is + * delayed until all handles to the object are closed). * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 6, 1998 * *------------------------------------------------------------------------- @@ -590,7 +590,7 @@ done: herr_t H5Ldelete(hid_t loc_id, const char *name, hid_t lapl_id) { - H5G_loc_t loc; /* Group's location */ + H5G_loc_t loc; /* Group's location */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -598,13 +598,13 @@ H5Ldelete(hid_t loc_id, const char *name, hid_t lapl_id) /* Check arguments */ if(H5G_loc(loc_id, &loc) < 0) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!name || !*name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name") /* Unlink */ if(H5L_delete(&loc, name, lapl_id, H5AC_dxpl_id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_CANTDELETE, FAIL, "unable to delete link") + HGOTO_ERROR(H5E_LINK, H5E_CANTDELETE, FAIL, "unable to delete link") done: FUNC_LEAVE_API(ret_value) @@ -612,20 +612,20 @@ done: /*------------------------------------------------------------------------- - * Function: H5Ldelete_by_idx + * Function: H5Ldelete_by_idx * - * Purpose: Removes the specified link from the group graph and - * decrements the link count for the object to which it - * points, according to the order within an index. + * Purpose: Removes the specified link from the group graph and + * decrements the link count for the object to which it + * points, according to the order within an index. * - * If the link count reaches zero then all file-space - * associated with the object will be reclaimed (but if the - * object is open, then the reclamation of the file space is - * delayed until all handles to the object are closed). + * If the link count reaches zero then all file-space + * associated with the object will be reclaimed (but if the + * object is open, then the reclamation of the file space is + * delayed until all handles to the object are closed). * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 13, 2006 * *------------------------------------------------------------------------- @@ -634,7 +634,7 @@ herr_t H5Ldelete_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, hid_t lapl_id) { - H5G_loc_t loc; /* Group's location */ + H5G_loc_t loc; /* Group's location */ H5L_trav_rmbi_t udata; /* User data for callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -643,13 +643,13 @@ H5Ldelete_by_idx(hid_t loc_id, const char *group_name, /* Check arguments */ if(H5G_loc(loc_id, &loc) < 0) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -672,20 +672,20 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lget_val + * Function: H5Lget_val * - * Purpose: Returns the link value of a link whose name is NAME. For + * Purpose: Returns the link value of a link whose name is NAME. For * symbolic links, this is the path to which the link points, * including the null terminator. For user-defined links, it * is the link buffer. * * At most SIZE bytes are copied to the BUF result buffer. * - * Return: Success: Non-negative with the link value in BUF. + * Return: Success: Non-negative with the link value in BUF. * - * Failure: Negative + * Failure: Negative * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 13, 1998 * *------------------------------------------------------------------------- @@ -694,7 +694,7 @@ herr_t H5Lget_val(hid_t loc_id, const char *name, void *buf/*out*/, size_t size, hid_t lapl_id) { - H5G_loc_t loc; /* Group location for location to query */ + H5G_loc_t loc; /* Group location for location to query */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) @@ -702,9 +702,9 @@ H5Lget_val(hid_t loc_id, const char *name, void *buf/*out*/, size_t size, /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!name || !*name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -713,7 +713,7 @@ H5Lget_val(hid_t loc_id, const char *name, void *buf/*out*/, size_t size, /* Get the link value */ if(H5L_get_val(&loc, name, buf, size, lapl_id, H5AC_ind_dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link value for '%s'", name) + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link value for '%s'", name) done: FUNC_LEAVE_API(ret_value) @@ -721,19 +721,19 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lget_val_by_idx + * Function: H5Lget_val_by_idx * - * Purpose: Returns the link value of a link, according to the order of + * Purpose: Returns the link value of a link, according to the order of * an index. For symbolic links, this is the path to which the * link points, including the null terminator. For user-defined * links, it is the link buffer. * * At most SIZE bytes are copied to the BUF result buffer. * - * Return: Success: Non-negative with the link value in BUF. - * Failure: Negative + * Return: Success: Non-negative with the link value in BUF. + * Failure: Negative * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 13, 2006 * *------------------------------------------------------------------------- @@ -743,7 +743,7 @@ H5Lget_val_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, void *buf/*out*/, size_t size, hid_t lapl_id) { - H5G_loc_t loc; /* Group location for location to query */ + H5G_loc_t loc; /* Group location for location to query */ H5L_trav_gvbi_t udata; /* User data for callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -753,13 +753,13 @@ H5Lget_val_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -785,14 +785,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lexists + * Function: H5Lexists * - * Purpose: Checks if a link of a given name exists in a group + * Purpose: Checks if a link of a given name exists in a group * - * Return: Success: TRUE/FALSE - * Failure: Negative + * Return: Success: TRUE/FALSE + * Failure: Negative * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Friday, March 16, 2007 * *------------------------------------------------------------------------- @@ -800,7 +800,7 @@ done: htri_t H5Lexists(hid_t loc_id, const char *name, hid_t lapl_id) { - H5G_loc_t loc; + H5G_loc_t loc; htri_t ret_value; FUNC_ENTER_API(FAIL) @@ -808,9 +808,9 @@ H5Lexists(hid_t loc_id, const char *name, hid_t lapl_id) /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!name || !*name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -819,7 +819,7 @@ H5Lexists(hid_t loc_id, const char *name, hid_t lapl_id) /* Check for the existence of the link */ if((ret_value = H5L_exists(&loc, name, lapl_id, H5AC_ind_dxpl_id)) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") done: FUNC_LEAVE_API(ret_value) @@ -827,15 +827,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lget_info + * Function: H5Lget_info * - * Purpose: Gets metadata for a link. + * Purpose: Gets metadata for a link. * - * Return: Success: Non-negative with information in LINFO + * Return: Success: Non-negative with information in LINFO * - * Failure: Negative + * Failure: Negative * - * Programmer: James Laird + * Programmer: James Laird * Wednesday, June 21, 2006 * *------------------------------------------------------------------------- @@ -844,7 +844,7 @@ herr_t H5Lget_info(hid_t loc_id, const char *name, H5L_info_t *linfo /*out*/, hid_t lapl_id) { - H5G_loc_t loc; + H5G_loc_t loc; herr_t ret_value = SUCCEED; FUNC_ENTER_API(FAIL) @@ -852,9 +852,9 @@ H5Lget_info(hid_t loc_id, const char *name, H5L_info_t *linfo /*out*/, /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!name || !*name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -863,7 +863,7 @@ H5Lget_info(hid_t loc_id, const char *name, H5L_info_t *linfo /*out*/, /* Get the link information */ if(H5L_get_info(&loc, name, linfo, lapl_id, H5AC_ind_dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") done: FUNC_LEAVE_API(ret_value) @@ -871,15 +871,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lget_info_by_idx + * Function: H5Lget_info_by_idx * - * Purpose: Gets metadata for a link, according to the order within an + * Purpose: Gets metadata for a link, according to the order within an * index. * - * Return: Success: Non-negative with information in LINFO - * Failure: Negative + * Return: Success: Non-negative with information in LINFO + * Failure: Negative * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 6, 2006 * *------------------------------------------------------------------------- @@ -889,7 +889,7 @@ H5Lget_info_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, H5L_info_t *linfo /*out*/, hid_t lapl_id) { - H5G_loc_t loc; /* Group location for group to query */ + H5G_loc_t loc; /* Group location for group to query */ H5L_trav_gibi_t udata; /* User data for callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -899,13 +899,13 @@ H5Lget_info_by_idx(hid_t loc_id, const char *group_name, /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -921,7 +921,7 @@ H5Lget_info_by_idx(hid_t loc_id, const char *group_name, /* Traverse the group hierarchy to locate the object to get info about */ if(H5G_traverse(&loc, group_name, H5G_TARGET_SLINK|H5G_TARGET_UDLINK, H5L_get_info_by_idx_cb, &udata, lapl_id, H5AC_ind_dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to get link info") done: @@ -930,9 +930,9 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lregister + * Function: H5Lregister * - * Purpose: Registers a class of user-defined links, or changes the + * Purpose: Registers a class of user-defined links, or changes the * behavior of an existing class. * * The link class passed in will override any existing link @@ -941,9 +941,9 @@ done: * H5L_LINK_CLASS_T_VERS), a link class ID, and a traversal * function. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -958,7 +958,7 @@ H5Lregister(const H5L_class_t *cls) /* Check args */ if(cls == NULL) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid link class") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid link class") /* Check H5L_class_t version number; this is where a function to convert * from an outdated version should be called. @@ -981,16 +981,16 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lunregister + * Function: H5Lunregister * - * Purpose: Unregisters a class of user-defined links, preventing them + * Purpose: Unregisters a class of user-defined links, preventing them * from being traversed, queried, moved, etc. * * A link class can be re-registered using H5Lregister(). * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1005,11 +1005,11 @@ H5Lunregister(H5L_type_t id) /* Check args */ if(id < 0 || id > H5L_TYPE_MAX) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid link type") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid link type") /* Do it */ if(H5L_unregister(id) < 0) - HGOTO_ERROR(H5E_LINK, H5E_NOTREGISTERED, FAIL, "unable to unregister link type") + HGOTO_ERROR(H5E_LINK, H5E_NOTREGISTERED, FAIL, "unable to unregister link type") done: FUNC_LEAVE_API(ret_value) @@ -1017,16 +1017,16 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lis_registered + * Function: H5Lis_registered * - * Purpose: Tests whether a user-defined link class has been registered + * Purpose: Tests whether a user-defined link class has been registered * or not. * - * Return: Positive if the link class has been registered + * Return: Positive if the link class has been registered * Zero if it is unregistered * Negative on error (if the class is not a valid UD class ID) * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1046,7 +1046,7 @@ H5Lis_registered(H5L_type_t id) /* Is the link class already registered? */ for(i = 0; i < H5L_table_used_g; i++) - if(H5L_table_g[i].id == id) { + if(H5L_table_g[i].id == id) { ret_value = TRUE; break; } /* end if */ @@ -1057,18 +1057,18 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lget_name_by_idx + * Function: H5Lget_name_by_idx * - * Purpose: Gets name for a link, according to the order within an + * Purpose: Gets name for a link, according to the order within an * index. * * Same pattern of behavior as H5Iget_name. * - * Return: Success: Non-negative length of name, with information - * in NAME buffer - * Failure: Negative + * Return: Success: Non-negative length of name, with information + * in NAME buffer + * Failure: Negative * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Saturday, November 11, 2006 * *------------------------------------------------------------------------- @@ -1078,7 +1078,7 @@ H5Lget_name_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, char *name /*out*/, size_t size, hid_t lapl_id) { - H5G_loc_t loc; /* Location of group */ + H5G_loc_t loc; /* Location of group */ H5L_trav_gnbi_t udata; /* User data for callback */ ssize_t ret_value; /* Return value */ @@ -1088,13 +1088,13 @@ H5Lget_name_by_idx(hid_t loc_id, const char *group_name, /* Check arguments */ if(H5G_loc(loc_id, &loc)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location") if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -1123,23 +1123,23 @@ done: /*------------------------------------------------------------------------- - * Function: H5Literate + * Function: H5Literate * - * Purpose: Iterates over links in a group, with user callback routine, + * Purpose: Iterates over links in a group, with user callback routine, * according to the order within an index. * * Same pattern of behavior as H5Giterate. * - * Return: Success: The return value of the first operator that - * returns non-zero, or zero if all members were - * processed with no operator returning non-zero. + * Return: Success: The return value of the first operator that + * returns non-zero, or zero if all members were + * processed with no operator returning non-zero. * - * Failure: Negative if something goes wrong within the - * library, or the negative value returned by one - * of the operators. + * Failure: Negative if something goes wrong within the + * library, or the negative value returned by one + * of the operators. * * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Thursday, November 16, 2006 * *------------------------------------------------------------------------- @@ -1150,8 +1150,8 @@ H5Literate(hid_t grp_id, H5_index_t idx_type, H5_iter_order_t order, { H5I_type_t id_type; /* Type of ID */ H5G_link_iterate_t lnk_op; /* Link operator */ - hsize_t last_lnk; /* Index of last object looked at */ - hsize_t idx; /* Internal location to hold index */ + hsize_t last_lnk; /* Index of last object looked at */ + hsize_t idx; /* Internal location to hold index */ herr_t ret_value; /* Return value */ FUNC_ENTER_API(FAIL) @@ -1162,11 +1162,11 @@ H5Literate(hid_t grp_id, H5_index_t idx_type, H5_iter_order_t order, if(!(H5I_GROUP == id_type || H5I_FILE == id_type)) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid argument") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(!op) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no operator specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no operator specified") /* Set up iteration beginning/end info */ idx = (idx_p == NULL ? 0 : *idx_p); @@ -1178,7 +1178,7 @@ H5Literate(hid_t grp_id, H5_index_t idx_type, H5_iter_order_t order, /* Iterate over the links */ if((ret_value = H5G_iterate(grp_id, ".", idx_type, order, idx, &last_lnk, &lnk_op, op_data, H5P_DEFAULT, H5AC_ind_dxpl_id)) < 0) - HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link iteration failed") + HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link iteration failed") /* Set the index we stopped at */ if(idx_p) @@ -1190,23 +1190,23 @@ done: /*------------------------------------------------------------------------- - * Function: H5Literate_by_name + * Function: H5Literate_by_name * - * Purpose: Iterates over links in a group, with user callback routine, + * Purpose: Iterates over links in a group, with user callback routine, * according to the order within an index. * * Same pattern of behavior as H5Giterate. * - * Return: Success: The return value of the first operator that - * returns non-zero, or zero if all members were - * processed with no operator returning non-zero. + * Return: Success: The return value of the first operator that + * returns non-zero, or zero if all members were + * processed with no operator returning non-zero. * - * Failure: Negative if something goes wrong within the - * library, or the negative value returned by one - * of the operators. + * Failure: Negative if something goes wrong within the + * library, or the negative value returned by one + * of the operators. * * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Thursday, November 16, 2006 * *------------------------------------------------------------------------- @@ -1217,9 +1217,9 @@ H5Literate_by_name(hid_t loc_id, const char *group_name, H5L_iterate_t op, void *op_data, hid_t lapl_id) { H5G_link_iterate_t lnk_op; /* Link operator */ - hsize_t last_lnk; /* Index of last object looked at */ - hsize_t idx; /* Internal location to hold index */ - herr_t ret_value; /* Return value */ + hsize_t last_lnk; /* Index of last object looked at */ + hsize_t idx; /* Internal location to hold index */ + herr_t ret_value; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE8("e", "i*sIiIo*hx*xi", loc_id, group_name, idx_type, order, idx_p, op, @@ -1227,13 +1227,13 @@ H5Literate_by_name(hid_t loc_id, const char *group_name, /* Check arguments */ if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(!op) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no operator specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no operator specified") if(H5P_DEFAULT == lapl_id) lapl_id = H5P_LINK_ACCESS_DEFAULT; else @@ -1250,7 +1250,7 @@ H5Literate_by_name(hid_t loc_id, const char *group_name, /* Iterate over the links */ if((ret_value = H5G_iterate(loc_id, group_name, idx_type, order, idx, &last_lnk, &lnk_op, op_data, lapl_id, H5AC_ind_dxpl_id)) < 0) - HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link iteration failed") + HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link iteration failed") /* Set the index we stopped at */ if(idx_p) @@ -1262,9 +1262,9 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lvisit + * Function: H5Lvisit * - * Purpose: Recursively visit all the links in a group and all + * Purpose: Recursively visit all the links in a group and all * the groups that are linked to from that group. Links within * each group are visited according to the order within the * specified index (unless the specified index does not exist for @@ -1276,16 +1276,16 @@ done: * callback with more than one link that points to a particular * _object_. * - * Return: Success: The return value of the first operator that - * returns non-zero, or zero if all members were - * processed with no operator returning non-zero. + * Return: Success: The return value of the first operator that + * returns non-zero, or zero if all members were + * processed with no operator returning non-zero. * - * Failure: Negative if something goes wrong within the - * library, or the negative value returned by one - * of the operators. + * Failure: Negative if something goes wrong within the + * library, or the negative value returned by one + * of the operators. * - * Programmer: Quincey Koziol - * November 24 2007 + * Programmer: Quincey Koziol + * November 24 2007 * *------------------------------------------------------------------------- */ @@ -1304,15 +1304,15 @@ H5Lvisit(hid_t grp_id, H5_index_t idx_type, H5_iter_order_t order, if(!(H5I_GROUP == id_type || H5I_FILE == id_type)) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid argument") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(!op) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no callback operator specified") /* Call internal group visitation routine */ if((ret_value = H5G_visit(grp_id, ".", idx_type, order, op, op_data, H5P_DEFAULT, H5AC_ind_dxpl_id)) < 0) - HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link visitation failed") + HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link visitation failed") done: FUNC_LEAVE_API(ret_value) @@ -1320,9 +1320,9 @@ done: /*------------------------------------------------------------------------- - * Function: H5Lvisit_by_name + * Function: H5Lvisit_by_name * - * Purpose: Recursively visit all the links in a group and all + * Purpose: Recursively visit all the links in a group and all * the groups that are linked to from that group. Links within * each group are visited according to the order within the * specified index (unless the specified index does not exist for @@ -1334,16 +1334,16 @@ done: * callback with more than one link that points to a particular * _object_. * - * Return: Success: The return value of the first operator that - * returns non-zero, or zero if all members were - * processed with no operator returning non-zero. + * Return: Success: The return value of the first operator that + * returns non-zero, or zero if all members were + * processed with no operator returning non-zero. * - * Failure: Negative if something goes wrong within the - * library, or the negative value returned by one - * of the operators. + * Failure: Negative if something goes wrong within the + * library, or the negative value returned by one + * of the operators. * - * Programmer: Quincey Koziol - * November 3 2007 + * Programmer: Quincey Koziol + * November 3 2007 * *------------------------------------------------------------------------- */ @@ -1359,11 +1359,11 @@ H5Lvisit_by_name(hid_t loc_id, const char *group_name, H5_index_t idx_type, /* Check args */ if(!group_name || !*group_name) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name specified") if(idx_type <= H5_INDEX_UNKNOWN || idx_type >= H5_INDEX_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index type specified") if(order <= H5_ITER_UNKNOWN || order >= H5_ITER_N) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid iteration order specified") if(!op) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no callback operator specified") if(H5P_DEFAULT == lapl_id) @@ -1374,7 +1374,7 @@ H5Lvisit_by_name(hid_t loc_id, const char *group_name, H5_index_t idx_type, /* Call internal group visitation routine */ if((ret_value = H5G_visit(loc_id, group_name, idx_type, order, op, op_data, lapl_id, H5AC_ind_dxpl_id)) < 0) - HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link visitation failed") + HGOTO_ERROR(H5E_SYM, H5E_BADITER, FAIL, "link visitation failed") done: FUNC_LEAVE_API(ret_value) @@ -1390,16 +1390,16 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_find_class_idx + * Function: H5L_find_class_idx * - * Purpose: Given a link class ID, return the offset in the global array + * Purpose: Given a link class ID, return the offset in the global array * that holds all the registered link classes. * - * Return: Success: Non-negative index of entry in global + * Return: Success: Non-negative index of entry in global * link class table. - * Failure: Negative + * Failure: Negative * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1413,8 +1413,8 @@ H5L_find_class_idx(H5L_type_t id) FUNC_ENTER_NOAPI_NOINIT_NOERR for(i = 0; i < H5L_table_used_g; i++) - if(H5L_table_g[i].id == id) - HGOTO_DONE((int)i) + if(H5L_table_g[i].id == id) + HGOTO_DONE((int)i) done: FUNC_LEAVE_NOAPI(ret_value) @@ -1422,15 +1422,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_find_class + * Function: H5L_find_class * - * Purpose: Given a link class ID return a pointer to a global struct that - * defines the link class. + * Purpose: Given a link class ID return a pointer to a global struct that + * defines the link class. * - * Return: Success: Ptr to entry in global link class table. - * Failure: NULL + * Return: Success: Ptr to entry in global link class table. + * Failure: NULL * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1438,7 +1438,7 @@ done: const H5L_class_t * H5L_find_class(H5L_type_t id) { - int idx; /* Filter index in global table */ + int idx; /* Filter index in global table */ H5L_class_t *ret_value = NULL; /* Return value */ FUNC_ENTER_NOAPI(NULL) @@ -1456,16 +1456,16 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_register + * Function: H5L_register * - * Purpose: Registers a class of user-defined links, or changes the + * Purpose: Registers a class of user-defined links, or changes the * behavior of an existing class. * * See H5Lregister for full documentation. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1483,22 +1483,22 @@ H5L_register(const H5L_class_t *cls) /* Is the link type already registered? */ for(i = 0; i < H5L_table_used_g; i++) - if(H5L_table_g[i].id == cls->id) + if(H5L_table_g[i].id == cls->id) break; /* Filter not already registered */ if(i >= H5L_table_used_g) { - if(H5L_table_used_g >= H5L_table_alloc_g) { - size_t n = MAX(H5L_MIN_TABLE_SIZE, (2 * H5L_table_alloc_g)); - H5L_class_t *table = (H5L_class_t *)H5MM_realloc(H5L_table_g, (n * sizeof(H5L_class_t))); + if(H5L_table_used_g >= H5L_table_alloc_g) { + size_t n = MAX(H5L_MIN_TABLE_SIZE, (2 * H5L_table_alloc_g)); + H5L_class_t *table = (H5L_class_t *)H5MM_realloc(H5L_table_g, (n * sizeof(H5L_class_t))); if(!table) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend link type table") - H5L_table_g = table; + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to extend link type table") + H5L_table_g = table; H5L_table_alloc_g = n; - } /* end if */ + } /* end if */ - /* Initialize */ - i = H5L_table_used_g++; + /* Initialize */ + i = H5L_table_used_g++; } /* end if */ /* Copy link class info into table */ @@ -1510,15 +1510,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_unregister + * Function: H5L_unregister * - * Purpose: Unregisters a class of user-defined links. + * Purpose: Unregisters a class of user-defined links. * * See H5Lunregister for full documentation. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, July 10, 2006 * *------------------------------------------------------------------------- @@ -1535,7 +1535,7 @@ H5L_unregister(H5L_type_t id) /* Is the filter already registered? */ for(i = 0; i < H5L_table_used_g; i++) - if(H5L_table_g[i].id == id) + if(H5L_table_g[i].id == id) break; /* Fail if filter not found */ @@ -1553,14 +1553,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_link + * Function: H5L_link * - * Purpose: Creates a link from OBJ_ID to CUR_NAME. See H5Olink() for - * full documentation. + * Purpose: Creates a link from OBJ_ID to CUR_NAME. See H5Olink() for + * full documentation. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Tuesday, December 13, 2005 * *------------------------------------------------------------------------- @@ -1598,13 +1598,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_link_object + * Function: H5L_link_object * - * Purpose: Creates a new object and a link to it. + * Purpose: Creates a new object and a link to it. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, April 9, 2007 * *------------------------------------------------------------------------- @@ -1641,13 +1641,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_link_cb + * Function: H5L_link_cb * - * Purpose: Callback for creating a link to an object. + * Purpose: Callback for creating a link to an object. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, September 19, 2005 * *------------------------------------------------------------------------- @@ -1889,13 +1889,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_create_hard + * Function: H5L_create_hard * - * Purpose: Creates a hard link from NEW_NAME to CUR_NAME. + * Purpose: Creates a hard link from NEW_NAME to CUR_NAME. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 6, 1998 * *------------------------------------------------------------------------- @@ -1905,7 +1905,7 @@ H5L_create_hard(H5G_loc_t *cur_loc, const char *cur_name, const H5G_loc_t *link_loc, const char *link_name, hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id) { - char *norm_cur_name = NULL; /* Pointer to normalized current name */ + char *norm_cur_name = NULL; /* Pointer to normalized current name */ H5F_t *link_file = NULL; /* Pointer to file to link to */ H5O_link_t lnk; /* Link to insert */ H5G_loc_t obj_loc; /* Location of object to link to */ @@ -1963,13 +1963,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_create_soft + * Function: H5L_create_soft * - * Purpose: Creates a soft link from LINK_NAME to TARGET_PATH. + * Purpose: Creates a soft link from LINK_NAME to TARGET_PATH. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 6, 1998 * *------------------------------------------------------------------------- @@ -1978,7 +1978,7 @@ herr_t H5L_create_soft(const char *target_path, const H5G_loc_t *link_loc, const char *link_name, hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id) { - char *norm_target = NULL; /* Pointer to normalized current name */ + char *norm_target = NULL; /* Pointer to normalized current name */ H5O_link_t lnk; /* Link to insert */ herr_t ret_value = SUCCEED; /* Return value */ @@ -2011,14 +2011,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_create_ud + * Function: H5L_create_ud * - * Purpose: Creates a user-defined link. See H5Lcreate_ud for + * Purpose: Creates a user-defined link. See H5Lcreate_ud for * full documentation. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Friday, May 19, 2006 * *------------------------------------------------------------------------- @@ -2070,13 +2070,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_val_real + * Function: H5L_get_val_real * - * Purpose: Retrieve link value from a link object + * Purpose: Retrieve link value from a link object * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 13 2006 * *------------------------------------------------------------------------- @@ -2126,13 +2126,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_val_cb + * Function: H5L_get_val_cb * - * Purpose: Callback for retrieving link value or udata. + * Purpose: Callback for retrieving link value or udata. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Tuesday, September 20, 2005 * *------------------------------------------------------------------------- @@ -2164,20 +2164,20 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_val + * Function: H5L_get_val * - * Purpose: Returns the value of a symbolic link or the udata for a + * Purpose: Returns the value of a symbolic link or the udata for a * user-defined link. * - * Return: Success: Non-negative, with at most SIZE bytes of the - * link value copied into the BUF buffer. If the - * link value is larger than SIZE characters - * counting the null terminator then the BUF - * result will not be null terminated. + * Return: Success: Non-negative, with at most SIZE bytes of the + * link value copied into the BUF buffer. If the + * link value is larger than SIZE characters + * counting the null terminator then the BUF + * result will not be null terminated. * - * Failure: Negative + * Failure: Negative * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Monday, April 13, 1998 * *------------------------------------------------------------------------- @@ -2187,7 +2187,7 @@ H5L_get_val(H5G_loc_t *loc, const char *name, void *buf/*out*/, size_t size, hid_t lapl_id, hid_t dxpl_id) { H5L_trav_gv_t udata; /* User data for callback */ - herr_t ret_value = SUCCEED; /* Return value */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) @@ -2209,14 +2209,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_val_by_idx_cb + * Function: H5L_get_val_by_idx_cb * - * Purpose: Callback for retrieving a link's value according to an + * Purpose: Callback for retrieving a link's value according to an * index's order. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 13 2006 * *------------------------------------------------------------------------- @@ -2261,14 +2261,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_delete_cb + * Function: H5L_delete_cb * - * Purpose: Callback for deleting a link. This routine + * Purpose: Callback for deleting a link. This routine * actually deletes the link * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, September 19, 2005 * *------------------------------------------------------------------------- @@ -2298,7 +2298,7 @@ H5L_delete_cb(H5G_loc_t *grp_loc/*in*/, const char *name, const H5O_link_t *lnk, /* Remove the link from the group */ if(H5G_obj_remove(grp_loc->oloc, grp_loc->path->full_path_r, name, udata->dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "unable to remove link from group") + HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "unable to remove link from group") done: /* Indicate that this callback didn't take ownership of the group * @@ -2310,13 +2310,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_delete + * Function: H5L_delete * - * Purpose: Delete a link from a group. + * Purpose: Delete a link from a group. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Robb Matzke + * Programmer: Robb Matzke * Thursday, September 17, 1998 * *------------------------------------------------------------------------- @@ -2324,9 +2324,9 @@ done: herr_t H5L_delete(H5G_loc_t *loc, const char *name, hid_t lapl_id, hid_t dxpl_id) { - H5L_trav_rm_t udata; /* User data for callback */ - char *norm_name = NULL; /* Pointer to normalized name */ - herr_t ret_value = SUCCEED; /* Return value */ + H5L_trav_rm_t udata; /* User data for callback */ + char *norm_name = NULL; /* Pointer to normalized name */ + herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(FAIL) @@ -2353,13 +2353,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_delete_by_idx_cb + * Function: H5L_delete_by_idx_cb * - * Purpose: Callback for removing a link according to an index's order. + * Purpose: Callback for removing a link according to an index's order. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 13 2006 * *------------------------------------------------------------------------- @@ -2393,15 +2393,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_move_dest_cb + * Function: H5L_move_dest_cb * - * Purpose: Second callback for moving and renaming an object. This routine + * Purpose: Second callback for moving and renaming an object. This routine * inserts a new link into the group returned by the traversal. * It is called by H5L_move_cb. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, April 3, 2006 * *------------------------------------------------------------------------- @@ -2507,15 +2507,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_move_cb + * Function: H5L_move_cb * - * Purpose: Callback for moving and renaming an object. This routine + * Purpose: Callback for moving and renaming an object. This routine * replaces the names of open objects with the moved object * in the path * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Friday, April 3, 2006 * *------------------------------------------------------------------------- @@ -2561,7 +2561,7 @@ H5L_move_cb(H5G_loc_t *grp_loc/*in*/, const char *name, const H5O_link_t *lnk, /* Insert the link into its new location */ if(H5G_traverse(udata->dst_loc, udata->dst_name, udata->dst_target_flags, H5L_move_dest_cb, &udata_out, udata->lapl_id, udata->dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to follow symbolic link") + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to follow symbolic link") /* If this is a move and not a copy operation, change the object's name and remove the old link */ if(!udata->copy) { @@ -2617,9 +2617,9 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_move + * Function: H5L_move * - * Purpose: Atomically move or copy a link. + * Purpose: Atomically move or copy a link. * * Creates a copy of a link in a new destination with a new name. * SRC_LOC and SRC_NAME together define the link's original @@ -2629,9 +2629,9 @@ done: * If copy_flag is FALSE, the original link is removed * (effectively moving the link). * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, May 1, 2006 * *------------------------------------------------------------------------- @@ -2699,9 +2699,10 @@ H5L_move(H5G_loc_t *src_loc, const char *src_name, H5G_loc_t *dst_loc, udata.dxpl_id = dxpl_id; /* Do the move */ - if(H5G_traverse(src_loc, src_name, H5G_TARGET_MOUNT | H5G_TARGET_SLINK | H5G_TARGET_UDLINK, + if(H5G_traverse(src_loc, + src_name, H5G_TARGET_MOUNT | H5G_TARGET_SLINK | H5G_TARGET_UDLINK, H5L_move_cb, &udata, lapl_id, dxpl_id) < 0) - HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to find link") + HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to find link") done: FUNC_LEAVE_NOAPI(ret_value) @@ -2709,13 +2710,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_exists_cb + * Function: H5L_exists_cb * - * Purpose: Callback for checking whether a link exists + * Purpose: Callback for checking whether a link exists * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Friday, March 16 2007 * *------------------------------------------------------------------------- @@ -2741,13 +2742,13 @@ H5L_exists_cb(H5G_loc_t H5_ATTR_UNUSED *grp_loc/*in*/, const char H5_ATTR_UNUSED /*------------------------------------------------------------------------- - * Function: H5L_exists + * Function: H5L_exists * - * Purpose: Returns whether a link exists in a group + * Purpose: Returns whether a link exists in a group * - * Return: Non-negative (TRUE/FALSE) on success/Negative on failure + * Return: Non-negative (TRUE/FALSE) on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Friday, March 16 2007 * *------------------------------------------------------------------------- @@ -2773,13 +2774,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_info_cb + * Function: H5L_get_info_cb * - * Purpose: Callback for retrieving a link's metadata + * Purpose: Callback for retrieving a link's metadata * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, April 17 2006 * *------------------------------------------------------------------------- @@ -2812,13 +2813,13 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_info + * Function: H5L_get_info * - * Purpose: Returns metadata about a link. + * Purpose: Returns metadata about a link. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: James Laird + * Programmer: James Laird * Monday, April 17 2006 * *------------------------------------------------------------------------- @@ -2845,14 +2846,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_info_by_idx_cb + * Function: H5L_get_info_by_idx_cb * - * Purpose: Callback for retrieving a link's metadata according to an + * Purpose: Callback for retrieving a link's metadata according to an * index's order. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Monday, November 6 2006 * *------------------------------------------------------------------------- @@ -2897,15 +2898,15 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_default_lcpl + * Function: H5L_get_default_lcpl * - * Purpose: Accessor for the default Link Creation Property List + * Purpose: Accessor for the default Link Creation Property List * - * Return: Success: ID of the deafult lcpl + * Return: Success: ID of the default lcpl * - * Failure: Negative + * Failure: Negative * - * Programmer: James Laird + * Programmer: James Laird * Tuesday, July 4, 2006 * *------------------------------------------------------------------------- @@ -2925,14 +2926,14 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_get_name_by_idx_cb + * Function: H5L_get_name_by_idx_cb * - * Purpose: Callback for retrieving a link's name according to an + * Purpose: Callback for retrieving a link's name according to an * index's order. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol + * Programmer: Quincey Koziol * Saturday, November 11 2006 * *------------------------------------------------------------------------- @@ -2966,16 +2967,16 @@ done: /*------------------------------------------------------------------------- - * Function: H5L_link_copy_file + * Function: H5L_link_copy_file * * Purpose: Copy a link and the object it points to from one file to * another. * - * Return: Non-negative on success/Negative on failure + * Return: Non-negative on success/Negative on failure * - * Programmer: Quincey Koziol - * koziol@hdfgroup.org - * Sep 29 2006 + * Programmer: Quincey Koziol + * koziol@hdfgroup.org + * Sep 29 2006 * *------------------------------------------------------------------------- */ diff --git a/src/H5MF.c b/src/H5MF.c index 569bf99..60b142f 100644 --- a/src/H5MF.c +++ b/src/H5MF.c @@ -1117,7 +1117,7 @@ HDfprintf(stderr, "%s: Check 2.0 - f->shared->fs_man[%u] = %p, f->shared->fs_add #endif /* H5MF_ALLOC_DEBUG_MORE */ /* If there is free space manager info for this type, delete it */ - /* (XXX: Make this optional when free space for a file can be persistant) */ + /* (XXX: Make this optional when free space for a file can be persistent) */ if(H5F_addr_defined(f->shared->fs_addr[type])) { haddr_t tmp_fs_addr; /* Temporary holder for free space manager address */ diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 31beb0e..2d974f1 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -1044,7 +1044,7 @@ H5O_copy_header(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, HDassert(H5F_addr_defined(oloc_src->addr)); HDassert(oloc_dst->file); - /* Intialize copy info before errors can be thrown */ + /* Initialize copy info before errors can be thrown */ HDmemset(&cpy_info, 0, sizeof(H5O_copy_t)); /* Get the copy property list */ diff --git a/src/H5Omessage.c b/src/H5Omessage.c index bbcf5a6..b6d2876 100644 --- a/src/H5Omessage.c +++ b/src/H5Omessage.c @@ -14,8 +14,8 @@ /*------------------------------------------------------------------------- * * Created: H5Omessage.c - * Dec 3 2006 - * Quincey Koziol + * Dec 3 2006 + * Quincey Koziol * * Purpose: Object header message routines. * @@ -31,14 +31,14 @@ /***********/ /* Headers */ /***********/ -#include "H5private.h" /* Generic Functions */ -#include "H5Aprivate.h" /* Attributes */ +#include "H5private.h" /* Generic Functions */ +#include "H5Aprivate.h" /* Attributes */ #include "H5Eprivate.h" /* Error handling */ -#include "H5Fprivate.h" /* File access */ -#include "H5Iprivate.h" /* IDs */ -#include "H5MMprivate.h" /* Memory management */ -#include "H5Opkg.h" /* Object headers */ -#include "H5SMprivate.h" /* Shared object header messages */ +#include "H5Fprivate.h" /* File access */ +#include "H5Iprivate.h" /* IDs */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5Opkg.h" /* Object headers */ +#include "H5SMprivate.h" /* Shared object header messages */ /****************/ @@ -102,11 +102,11 @@ static herr_t H5O_copy_mesg(H5F_t *f, hid_t dxpl_id, H5O_t *oh, size_t idx, * * Return: Success: Non-negative * - * Failure: Negative + * Failure: Negative * * Programmer: Quincey Koziol - * koziol@hdfgroup.org - * Dec 1 2006 + * koziol@hdfgroup.org + * Dec 1 2006 * *------------------------------------------------------------------------- */ @@ -150,11 +150,11 @@ done: * * Return: Success: Non-negative * - * Failure: Negative + * Failure: Negative * * Programmer: Quincey Koziol - * koziol@ncsa.uiuc.edu - * Dec 31 2002 + * koziol@ncsa.uiuc.edu + * Dec 31 2002 * *------------------------------------------------------------------------- */ @@ -445,10 +445,10 @@ done: * to hold the result and return its pointer instead. * * Return: Success: Ptr to message in native format. The message - * should be freed by calling H5O_msg_reset(). If - * MESG is a null pointer then the caller should - * also call H5MM_xfree() on the return value - * after calling H5O_msg_reset(). + * should be freed by calling H5O_msg_reset(). If + * MESG is a null pointer then the caller should + * also call H5MM_xfree() on the return value + * after calling H5O_msg_reset(). * * Failure: NULL * @@ -499,10 +499,10 @@ done: * to hold the result and return its pointer instead. * * Return: Success: Ptr to message in native format. The message - * should be freed by calling H5O_msg_reset(). If - * MESG is a null pointer then the caller should - * also call H5MM_xfree() on the return value - * after calling H5O_msg_reset(). + * should be freed by calling H5O_msg_reset(). If + * MESG is a null pointer then the caller should + * also call H5MM_xfree() on the return value + * after calling H5O_msg_reset(). * * Failure: NULL * @@ -858,11 +858,11 @@ H5O_msg_count_real(const H5O_t *oh, const H5O_msg_class_t *type) * header without trying to decode the message. * * Return: Success: FALSE if the message does not exist; TRUE if - * th message exists. + * the message exists. * * Failure: FAIL if the existence of the message could - * not be determined due to some error such as - * not being able to read the object header. + * not be determined due to some error such as + * not being able to read the object header. * * Programmer: Robb Matzke * Monday, November 2, 1998 @@ -904,11 +904,11 @@ done: * header without trying to decode the message. * * Return: Success: FALSE if the message does not exist; TRUE if - * th message exists. + * the message exists. * * Failure: FAIL if the existence of the message could - * not be determined due to some error such as - * not being able to read the object header. + * not be determined due to some error such as + * not being able to read the object header. * * Programmer: Robb Matzke * Monday, November 2, 1998 diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h index 200fa09..d63b30d 100644 --- a/src/H5Tpkg.h +++ b/src/H5Tpkg.h @@ -282,7 +282,7 @@ typedef enum H5T_state_t { H5T_STATE_OPEN /*named constant, open object header */ } H5T_state_t; - /* This struct is shared between all occurances of an open named type */ + /* This struct is shared between all occurrences of an open named type */ typedef struct H5T_shared_t { hsize_t fo_count; /* number of references to this file object */ H5T_state_t state; /*current state of the type */ -- cgit v0.12 From ff30acd3c85b8611f3c21685783cb5986390d7b1 Mon Sep 17 00:00:00 2001 From: hdftest Date: Sun, 15 Apr 2018 21:24:32 -0500 Subject: Snapshot version 1.8 release 21 (snap12) --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++++++++++----------- configure.ac | 2 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.txt b/README.txt index 223ccc1..7599422 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap12 currently under development +HDF5 version 1.8.21-snap13 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 86f0675..9dd545d 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap12, currently under development" +PROJECT_NUMBER = "1.8.21-snap13, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 0af9e16..d06ed0b 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.10) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap12") +set (CTEST_SOURCE_VERSEXT "-snap13") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 6d22908..28832d8 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap12. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap13. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap12' -PACKAGE_STRING='HDF5 1.8.21-snap12' +PACKAGE_VERSION='1.8.21-snap13' +PACKAGE_STRING='HDF5 1.8.21-snap13' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap12 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-snap13 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap12:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-snap13:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap12 +HDF5 configure 1.8.21-snap13 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap12, which was +It was created by HDF5 $as_me 1.8.21-snap13, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap12' + VERSION='1.8.21-snap13' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap12 +HDF5 config.lt 1.8.21-snap13 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap12, which was +This file was extended by HDF5 $as_me 1.8.21-snap13, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap12 +HDF5 config.status 1.8.21-snap13 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index bd9203e..59494d4 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap12], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-snap13], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 662127f..c8e2bd5 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap12 currently under development +HDF5 version 1.8.21-snap13 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 6bb14f8..6007f16 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap12" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "snap13" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap12" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap13" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 01b3b7bf479477c60f11dcbb101fcfd29becbdc1 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sun, 6 May 2018 23:58:06 -0500 Subject: C++ API improvement Description: - Added another argument, LinkCreatPropList& lcpl, to the CommonFG::createGroup() functions for the use of link creation property list. The new argument has a default value. Group createGroup(const char* name, size_t size_hint = 0, const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) Group createGroup(const H5std_string& name, size_t size_hint = 0, const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) - Removed memory leaks caused by accidentally invoking p_get_member_type (in H5CompType.cpp, user reported via email, maybe no jira issue) - Made H5Location::closeObjId static, so no object is needed to close an hdf5 id. - Added classes StrCreatPropList, LinkCreatPropList, AttrCreatPropList for the C property list classes H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test) --- MANIFEST | 6 +++ c++/src/CMakeLists.txt | 6 +++ c++/src/H5AcreatProp.cpp | 113 +++++++++++++++++++++++++++++++++++++++++++++ c++/src/H5AcreatProp.h | 62 +++++++++++++++++++++++++ c++/src/H5ArrayType.cpp | 1 - c++/src/H5CommonFG.cpp | 25 ++++++---- c++/src/H5CommonFG.h | 4 +- c++/src/H5CompType.cpp | 83 +++++++++++++++++++-------------- c++/src/H5Cpp.h | 4 ++ c++/src/H5DxferProp.h | 2 +- c++/src/H5File.cpp | 4 +- c++/src/H5Group.cpp | 2 + c++/src/H5LaccProp.h | 10 ++-- c++/src/H5LcreatProp.cpp | 113 +++++++++++++++++++++++++++++++++++++++++++++ c++/src/H5LcreatProp.h | 62 +++++++++++++++++++++++++ c++/src/H5Library.cpp | 11 +++++ c++/src/H5Location.cpp | 52 +++++++++++++++------ c++/src/H5Location.h | 4 +- c++/src/H5StrcreatProp.cpp | 58 +++++++++++++++++++++++ c++/src/H5StrcreatProp.h | 57 +++++++++++++++++++++++ c++/src/Makefile.am | 18 ++++---- c++/src/Makefile.in | 24 ++++++---- c++/test/tfile.cpp | 27 ++++++++++- c++/test/tobject.cpp | 6 +-- 24 files changed, 665 insertions(+), 89 deletions(-) create mode 100644 c++/src/H5AcreatProp.cpp create mode 100644 c++/src/H5AcreatProp.h create mode 100644 c++/src/H5LcreatProp.cpp create mode 100644 c++/src/H5LcreatProp.h create mode 100644 c++/src/H5StrcreatProp.cpp create mode 100644 c++/src/H5StrcreatProp.h diff --git a/MANIFEST b/MANIFEST index 9ab8b46..76a40dc 100644 --- a/MANIFEST +++ b/MANIFEST @@ -345,6 +345,8 @@ ./c++/src/H5AbstractDs.cpp ./c++/src/H5AbstractDs.h +./c++/src/H5AcreatProp.cpp +./c++/src/H5AcreatProp.h ./c++/src/H5Alltypes.h ./c++/src/H5ArrayType.cpp ./c++/src/H5ArrayType.h @@ -392,6 +394,8 @@ ./c++/src/H5Library.h ./c++/src/H5LaccProp.cpp ./c++/src/H5LaccProp.h +./c++/src/H5LcreatProp.cpp +./c++/src/H5LcreatProp.h ./c++/src/H5Location.cpp ./c++/src/H5Location.h ./c++/src/H5Object.cpp @@ -402,6 +406,8 @@ ./c++/src/H5PredType.h ./c++/src/H5PropList.cpp ./c++/src/H5PropList.h +./c++/src/H5StrcreatProp.cpp +./c++/src/H5StrcreatProp.h ./c++/src/H5StrType.cpp ./c++/src/H5StrType.h ./c++/src/H5VarLenType.cpp diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt index 5b36137..9b9b745 100644 --- a/c++/src/CMakeLists.txt +++ b/c++/src/CMakeLists.txt @@ -13,6 +13,7 @@ configure_file (${HDF_RESOURCES_DIR}/H5cxx_config.h.in #----------------------------------------------------------------------------- set (CPP_SRCS ${HDF5_CPP_SRC_SOURCE_DIR}/H5AbstractDs.cpp + ${HDF5_CPP_SRC_SOURCE_DIR}/H5AcreatProp.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5ArrayType.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5AtomType.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5Attribute.cpp @@ -33,18 +34,21 @@ set (CPP_SRCS ${HDF5_CPP_SRC_SOURCE_DIR}/H5IdComponent.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5IntType.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5LaccProp.cpp + ${HDF5_CPP_SRC_SOURCE_DIR}/H5LcreatProp.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5Library.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5Location.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5Object.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5OcreatProp.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5PredType.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5PropList.cpp + ${HDF5_CPP_SRC_SOURCE_DIR}/H5StrcreatProp.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5StrType.cpp ${HDF5_CPP_SRC_SOURCE_DIR}/H5VarLenType.cpp ) set (CPP_HDRS ${HDF5_CPP_SRC_SOURCE_DIR}/H5AbstractDs.h + ${HDF5_CPP_SRC_SOURCE_DIR}/H5AcreatProp.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5Alltypes.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5ArrayType.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5AtomType.h @@ -70,12 +74,14 @@ set (CPP_HDRS ${HDF5_CPP_SRC_SOURCE_DIR}/H5Include.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5IntType.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5LaccProp.h + ${HDF5_CPP_SRC_SOURCE_DIR}/H5LcreatProp.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5Library.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5Location.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5Object.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5OcreatProp.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5PredType.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5PropList.h + ${HDF5_CPP_SRC_SOURCE_DIR}/H5StrcreatProp.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5StrType.h ${HDF5_CPP_SRC_SOURCE_DIR}/H5VarLenType.h ) diff --git a/c++/src/H5AcreatProp.cpp b/c++/src/H5AcreatProp.cpp new file mode 100644 index 0000000..29886d8 --- /dev/null +++ b/c++/src/H5AcreatProp.cpp @@ -0,0 +1,113 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#include + +#include "H5Include.h" +#include "H5Exception.h" +#include "H5IdComponent.h" +#include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5AcreatProp.h" + +namespace H5 { + +#ifndef DOXYGEN_SHOULD_SKIP_THIS +// This DOXYGEN_SHOULD_SKIP_THIS block is a work-around approach to control +// the order of creation and deletion of the global constants. See Design Notes +// in "H5PredType.cpp" for information. + +// Initialize a pointer for the constant +AttrCreatPropList* AttrCreatPropList::DEFAULT_ = 0; + +//-------------------------------------------------------------------------- +// Function: AttrCreatPropList::getConstant +// Creates a AttrCreatPropList object representing the HDF5 constant +// H5P_ATTRIBUTE_CREATE, pointed to by AttrCreatPropList::DEFAULT_ +// exception H5::PropListIException +// Description +// If AttrCreatPropList::DEFAULT_ already points to an allocated +// object, throw a PropListIException. This scenario should not +// happen. +// May, 2018 +//-------------------------------------------------------------------------- +AttrCreatPropList* AttrCreatPropList::getConstant() +{ + // Tell the C library not to clean up, H5Library::termH5cpp will call + // H5close - more dependency if use H5Library::dontAtExit() + if (!IdComponent::H5dontAtexit_called) + { + (void) H5dont_atexit(); + IdComponent::H5dontAtexit_called = true; + } + + // If the constant pointer is not allocated, allocate it. Otherwise, + // throw because it shouldn't be. + if (DEFAULT_ == 0) + DEFAULT_ = new AttrCreatPropList(H5P_ATTRIBUTE_CREATE); + else + throw PropListIException("AttrCreatPropList::getConstant", "AttrCreatPropList::getConstant is being invoked on an allocated DEFAULT_"); + return(DEFAULT_); +} + +//-------------------------------------------------------------------------- +// Function: AttrCreatPropList::deleteConstants +// Purpose: Deletes the constant object that AttrCreatPropList::DEFAULT_ +// points to. +// exception H5::PropListIException +// May, 2018 +//-------------------------------------------------------------------------- +void AttrCreatPropList::deleteConstants() +{ + if (DEFAULT_ != 0) + delete DEFAULT_; +} + +//-------------------------------------------------------------------------- +// Purpose: Constant for default link creation property +//-------------------------------------------------------------------------- +const AttrCreatPropList& AttrCreatPropList::DEFAULT = *getConstant(); + +#endif // DOXYGEN_SHOULD_SKIP_THIS + +//-------------------------------------------------------------------------- +// Function: Default Constructor +///\brief Creates a file access property list +// May, 2018 +//-------------------------------------------------------------------------- +AttrCreatPropList::AttrCreatPropList() : StrCreatPropList(H5P_ATTRIBUTE_CREATE) {} + +//-------------------------------------------------------------------------- +// Function: AttrCreatPropList copy constructor +///\brief Copy constructor: same HDF5 object as \a original +///\param original - IN: AttrCreatPropList instance to copy +// May, 2018 +//-------------------------------------------------------------------------- +AttrCreatPropList::AttrCreatPropList(const AttrCreatPropList& original) : StrCreatPropList(original) {} + +//-------------------------------------------------------------------------- +// Function: AttrCreatPropList overloaded constructor +///\brief Creates a file access property list using the id of an +/// existing one. +// May, 2018 +//-------------------------------------------------------------------------- +AttrCreatPropList::AttrCreatPropList(const hid_t plist_id) : StrCreatPropList(plist_id) {} + +//-------------------------------------------------------------------------- +// Function: AttrCreatPropList destructor +///\brief Noop destructor +// May, 2018 +//-------------------------------------------------------------------------- +AttrCreatPropList::~AttrCreatPropList() {} + +} // end namespace diff --git a/c++/src/H5AcreatProp.h b/c++/src/H5AcreatProp.h new file mode 100644 index 0000000..9f81897 --- /dev/null +++ b/c++/src/H5AcreatProp.h @@ -0,0 +1,62 @@ +// C++ informative line for the emacs editor: -*- C++ -*- +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#ifndef __H5AttrCreatPropList_H +#define __H5AttrCreatPropList_H + +namespace H5 { + +/*! \class AttrCreatPropList + \brief Class AttrCreatPropList inherits from StrCreatPropList and provides + wrappers for the HDF5 attribute creation property list. +*/ +// Inheritance: StrCreatPropList -> PropList -> IdComponent +class H5_DLLCPP AttrCreatPropList : public StrCreatPropList { + public: + ///\brief Default attribute creation property list. + static const AttrCreatPropList& DEFAULT; + + // Creates a attribute creation property list. + AttrCreatPropList(); + + ///\brief Returns this class name. + virtual H5std_string fromClass () const { return("AttrCreatPropList"); } + + // Copy constructor: same as the original AttrCreatPropList. + AttrCreatPropList(const AttrCreatPropList& original); + + // Creates a copy of an existing attribute creation property list + // using the property list id. + AttrCreatPropList(const hid_t acpl_id); + + // Noop destructor + virtual ~AttrCreatPropList(); + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + + // Deletes the global constant, should only be used by the library + static void deleteConstants(); + + private: + static AttrCreatPropList* DEFAULT_; + + // Creates the global constant, should only be used by the library + static AttrCreatPropList* getConstant(); + +#endif // DOXYGEN_SHOULD_SKIP_THIS +}; // end of AttrCreatPropList + +} // namespace H5 + +#endif // __H5AttrCreatPropList_H diff --git a/c++/src/H5ArrayType.cpp b/c++/src/H5ArrayType.cpp index 6be1a1f..b0d65b0 100644 --- a/c++/src/H5ArrayType.cpp +++ b/c++/src/H5ArrayType.cpp @@ -117,7 +117,6 @@ ArrayType::ArrayType(const H5Location& loc, const H5std_string& type_name) : Dat // Closes the id on the lhs object first with setId, then copies // each data member from the rhs object. (Issue HDFFV-9562) // Programmer Binh-Minh Ribler - Mar 2016 -// Modification //-------------------------------------------------------------------------- ArrayType& ArrayType::operator=(const ArrayType& rhs) { diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp index 684090f..97900f6 100644 --- a/c++/src/H5CommonFG.cpp +++ b/c++/src/H5CommonFG.cpp @@ -24,6 +24,8 @@ #include "H5DxferProp.h" #include "H5DcreatProp.h" #include "H5LaccProp.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5CommonFG.h" @@ -53,9 +55,11 @@ namespace H5 { // Function: CommonFG::createGroup ///\brief Creates a new group at this location which can be a file /// or another group. -///\param name - IN: Name of the group to create +///\param name - IN: Name of the group to create ///\param size_hint - IN: Indicates the number of bytes to reserve for -/// the names that will appear in the group +/// the names that will appear in the group - default to 0 +///\param lcpl - IN: Link creation property list - default to +/// LinkCreatPropList::DEFAULT ///\return Group instance ///\exception H5::FileIException or H5::GroupIException ///\par Description @@ -63,9 +67,12 @@ namespace H5 { /// reserve for storing the names that will appear in this new /// group. If a non-positive value is provided for the \a size_hint /// then a default size is chosen. -// Programmer Binh-Minh Ribler - 2000 +// 2000 +// Modification: +// May 2018 - 1.8.21 +// - Added an argument with default value LinkCreatPropList::DEFAULT //-------------------------------------------------------------------------- -Group CommonFG::createGroup(const char* name, size_t size_hint) const +Group CommonFG::createGroup(const char* name, size_t size_hint, const LinkCreatPropList& lcpl) const { // Group creation property list for size hint hid_t gcpl_id = 0; @@ -85,7 +92,7 @@ Group CommonFG::createGroup(const char* name, size_t size_hint) const // Call C routine H5Gcreate2 to create the named group, giving the // location id which can be a file id or a group id - hid_t group_id = H5Gcreate2(getLocId(), name, H5P_DEFAULT, gcpl_id, H5P_DEFAULT); + hid_t group_id = H5Gcreate2(getLocId(), name, lcpl.getId(), gcpl_id, H5P_DEFAULT); // Close the group creation property list, if necessary if(gcpl_id > 0) @@ -107,11 +114,13 @@ Group CommonFG::createGroup(const char* name, size_t size_hint) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a name. -// Programmer Binh-Minh Ribler - 2000 +// Modification: +// May 2018 - 1.8.21 +// - Added LinkCreatPropList& with default value LinkCreatPropList::DEFAULT //-------------------------------------------------------------------------- -Group CommonFG::createGroup(const H5std_string& name, size_t size_hint) const +Group CommonFG::createGroup(const H5std_string& name, size_t size_hint, const LinkCreatPropList& lcpl) const { - return(createGroup(name.c_str(), size_hint)); + return(createGroup(name.c_str(), size_hint, lcpl)); } //-------------------------------------------------------------------------- diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index 81a9a29..5e43d8c 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -30,8 +30,8 @@ class H5_DLLCPP CommonFG { public: // Creates a new group at this location which can be a file // or another group. - Group createGroup(const char* name, size_t size_hint = 0) const; - Group createGroup(const H5std_string& name, size_t size_hint = 0) const; + Group createGroup(const char* name, size_t size_hint = 0, const LinkCreatPropList& lc_plist = LinkCreatPropList::DEFAULT) const; + Group createGroup(const H5std_string& name, size_t size_hint = 0, const LinkCreatPropList& lc_plist = LinkCreatPropList::DEFAULT) const; // Opens an existing group in a location which can be a file // or another group. diff --git a/c++/src/H5CompType.cpp b/c++/src/H5CompType.cpp index 6d879bd..9527037 100644 --- a/c++/src/H5CompType.cpp +++ b/c++/src/H5CompType.cpp @@ -31,7 +31,7 @@ namespace H5 { //-------------------------------------------------------------------------- // Function: CompType default constructor ///\brief Default constructor: Creates a stub compound datatype -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::CompType() : DataType() {} @@ -39,7 +39,7 @@ CompType::CompType() : DataType() {} // Function: CompType copy constructor ///\brief Copy constructor: makes copy of the original CompType object ///\param original - IN: Original CompType instance -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::CompType(const CompType& original) : DataType(original) {} @@ -47,7 +47,7 @@ CompType::CompType(const CompType& original) : DataType(original) {} // Function: CompType overloaded constructor ///\brief Creates a CompType object using the id of an existing datatype. ///\param existing_id - IN: Id of an existing compound datatype -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::CompType(const hid_t existing_id) : DataType(existing_id) {} @@ -59,7 +59,7 @@ CompType::CompType(const hid_t existing_id) : DataType(existing_id) {} // Description // The DataType constructor calls the C API H5Tcreate to create // the compound datatype. -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::CompType(size_t size) : DataType(H5T_COMPOUND, size) {} @@ -69,7 +69,7 @@ CompType::CompType(size_t size) : DataType(H5T_COMPOUND, size) {} ///\param dataset - IN: Dataset that this enum datatype associates with ///\return CompType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::CompType(const DataSet& dataset) : DataType() { @@ -90,7 +90,7 @@ CompType::CompType(const DataSet& dataset) : DataType() ///\param loc - IN: Location of the type ///\param type_name - IN: Compound type name ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Sept 2017 +// Sept 2017 // Description // In 1.8.20, this constructor was introduced and may replace the // existing function CommonFG::openCompType(const char*) to @@ -109,7 +109,7 @@ CompType::CompType(const H5Location& loc, const char *type_name) : DataType() ///\param loc - IN: Location of the type ///\param type_name - IN: Compound type name ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Sept 2017 +// Sept 2017 // Description // In 1.8.20, this constructor was introduced and may replace the // existing function CommonFG::openCompType(const H5std_string&) to @@ -126,7 +126,7 @@ CompType::CompType(const H5Location& loc, const H5std_string& type_name) : DataT ///\brief Returns a CompType object via DataType* by decoding the /// binary object description of this datatype. ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Sept 2017 +// Sept 2017 //-------------------------------------------------------------------------- DataType* CompType::decode() const { @@ -147,7 +147,7 @@ DataType* CompType::decode() const ///\brief Returns the number of members in this compound datatype. ///\return Number of members ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- int CompType::getNmembers() const { @@ -166,7 +166,7 @@ int CompType::getNmembers() const ///\param member_num - IN: Zero-based index of the member ///\return Name of member ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- H5std_string CompType::getMemberName(unsigned member_num) const { @@ -184,14 +184,14 @@ H5std_string CompType::getMemberName(unsigned member_num) const //-------------------------------------------------------------------------- // Function: CompType::getMemberIndex ///\brief Returns the index of a member in this compound datatype. -///\param name - IN: Name of the member +///\param name - IN: Name of the member - \c char* ///\return Index of member ///\exception H5::DataTypeIException ///\par Description /// Members are stored in no particular order with numbers 0 /// through N-1, where N is the value returned by the member /// function \c CompType::getNmembers. -// Programmer Binh-Minh Ribler - May 16, 2002 +// May 16, 2002 //-------------------------------------------------------------------------- int CompType::getMemberIndex(const char* name) const { @@ -203,6 +203,21 @@ int CompType::getMemberIndex(const char* name) const } return(member_index); } + +//-------------------------------------------------------------------------- +// Function: CompType::getMemberIndex +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a name. +///\param name - IN: Name of the member - \c H5std_string +///\return Index of member +///\exception H5::DataTypeIException +///\par Description +/// Members are stored in no particular order with numbers 0 +/// through N-1, where N is the value returned by the member +/// function \c CompType::getNmembers. +// Apr 18, 2018 +//-------------------------------------------------------------------------- int CompType::getMemberIndex(const H5std_string& name) const { return(getMemberIndex(name.c_str())); @@ -214,14 +229,14 @@ int CompType::getMemberIndex(const H5std_string& name) const /// respect to the beginning of the compound data type datum. ///\param member_num - IN: Zero-based index of the member ///\return Byte offset -// Programmer Binh-Minh Ribler - 2000 +// 2000 // Description /// Members are stored in no particular order with numbers 0 /// through N-1, where N is the value returned by the member /// function \c CompType::getNmembers. // // Note that byte offset being returned as 0 doesn't indicate -// a failure. (According to Quincey) +// a failure. //-------------------------------------------------------------------------- size_t CompType::getMemberOffset(unsigned member_num) const { @@ -235,7 +250,7 @@ size_t CompType::getMemberOffset(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return Type class of the member ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 // Modification // Modified to use H5Tget_member_class instead. - Jul, 2005 //-------------------------------------------------------------------------- @@ -275,7 +290,7 @@ hid_t CompType::p_get_member_type(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return DataType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- DataType CompType::getMemberDataType(unsigned member_num) const { @@ -296,12 +311,12 @@ DataType CompType::getMemberDataType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return ArrayType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Jul, 2005 +// Jul, 2005 //-------------------------------------------------------------------------- ArrayType CompType::getMemberArrayType(unsigned member_num) const { try { - ArrayType arraytype(p_get_member_type(member_num)); + ArrayType arraytype; f_DataType_setId(&arraytype, p_get_member_type(member_num)); return(arraytype); } @@ -317,12 +332,12 @@ ArrayType CompType::getMemberArrayType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return CompType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType CompType::getMemberCompType(unsigned member_num) const { try { - CompType comptype(p_get_member_type(member_num)); + CompType comptype; f_DataType_setId(&comptype, p_get_member_type(member_num)); return(comptype); } @@ -338,12 +353,12 @@ CompType CompType::getMemberCompType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return EnumType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- EnumType CompType::getMemberEnumType(unsigned member_num) const { try { - EnumType enumtype(p_get_member_type(member_num)); + EnumType enumtype; f_DataType_setId(&enumtype, p_get_member_type(member_num)); return(enumtype); } @@ -359,12 +374,12 @@ EnumType CompType::getMemberEnumType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return IntType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- IntType CompType::getMemberIntType(unsigned member_num) const { try { - IntType inttype(p_get_member_type(member_num)); + IntType inttype; f_DataType_setId(&inttype, p_get_member_type(member_num)); return(inttype); } @@ -380,12 +395,12 @@ IntType CompType::getMemberIntType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return FloatType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- FloatType CompType::getMemberFloatType(unsigned member_num) const { try { - FloatType floatype(p_get_member_type(member_num)); + FloatType floatype; f_DataType_setId(&floatype, p_get_member_type(member_num)); return(floatype); } @@ -401,12 +416,12 @@ FloatType CompType::getMemberFloatType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return StrType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- StrType CompType::getMemberStrType(unsigned member_num) const { try { - StrType strtype(p_get_member_type(member_num)); + StrType strtype; f_DataType_setId(&strtype, p_get_member_type(member_num)); return(strtype); } @@ -422,12 +437,12 @@ StrType CompType::getMemberStrType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return VarLenType instance ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - Jul, 2005 +// Jul, 2005 //-------------------------------------------------------------------------- VarLenType CompType::getMemberVarLenType(unsigned member_num) const { try { - VarLenType varlentype(p_get_member_type(member_num)); + VarLenType varlentype; f_DataType_setId(&varlentype, p_get_member_type(member_num)); return(varlentype); } @@ -476,7 +491,7 @@ void CompType::getMemberType(unsigned member_num, StrType& strtype) const ///\param offset - IN: Offset in memory structure of the field to insert ///\param new_member - IN: New member to be inserted ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- void CompType::insertMember(const H5std_string& name, size_t offset, const DataType& new_member) const { @@ -499,7 +514,7 @@ void CompType::insertMember(const H5std_string& name, size_t offset, const DataT ///\brief Recursively removes padding from within a compound datatype. /// ///\exception H5::DataTypeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- void CompType::pack() const { @@ -518,7 +533,7 @@ void CompType::pack() const ///\exception H5::DataTypeIException // Note // H5Tset_size works on atom datatypes and compound datatypes only -// Programmer Binh-Minh Ribler - 2014 +// 2014 //-------------------------------------------------------------------------- void CompType::setSize(size_t size) const { @@ -533,7 +548,7 @@ void CompType::setSize(size_t size) const //-------------------------------------------------------------------------- // Function: CompType destructor ///\brief Properly terminates access to this compound datatype. -// Programmer Binh-Minh Ribler - 2000 +// 2000 //-------------------------------------------------------------------------- CompType::~CompType() {} diff --git a/c++/src/H5Cpp.h b/c++/src/H5Cpp.h index dcf3a17..af7d1e5fa 100644 --- a/c++/src/H5Cpp.h +++ b/c++/src/H5Cpp.h @@ -27,11 +27,15 @@ #include "H5Attribute.h" #include "H5OcreatProp.h" #include "H5DcreatProp.h" +#include "H5StrcreatProp.h" +#include "H5AcreatProp.h" +#include "H5LcreatProp.h" #include "H5CommonFG.h" #include "H5DataType.h" #include "H5DxferProp.h" #include "H5FaccProp.h" #include "H5FcreatProp.h" +#include "H5LaccProp.h" #include "H5AtomType.h" #include "H5PredType.h" #include "H5EnumType.h" diff --git a/c++/src/H5DxferProp.h b/c++/src/H5DxferProp.h index 370b271..a8b1fa9 100644 --- a/c++/src/H5DxferProp.h +++ b/c++/src/H5DxferProp.h @@ -21,7 +21,7 @@ namespace H5 { \brief Class DSetCreatPropList inherits from PropList and provides wrappers for the HDF5 dataset memory and transfer property list. */ -// Inheritance: ObjCreatPropList -> PropList -> IdComponent +// Inheritance: PropList -> IdComponent class H5_DLLCPP DSetMemXferPropList : public PropList { public: ///\brief Default dataset memory and transfer property list. diff --git a/c++/src/H5File.cpp b/c++/src/H5File.cpp index 395077d..782831b 100644 --- a/c++/src/H5File.cpp +++ b/c++/src/H5File.cpp @@ -27,6 +27,8 @@ #include "H5OcreatProp.h" #include "H5DcreatProp.h" #include "H5LaccProp.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5CommonFG.h" @@ -229,7 +231,7 @@ bool H5File::isHdf5(const H5std_string& name) /// will be reopened. Absence of this flag /// implies read-only access. /// -/// H5F_ACC_RDONLY: Open with read only access. - default +/// H5F_ACC_RDONLY: Open with read only access. /// // Programmer Binh-Minh Ribler - Oct, 2005 //-------------------------------------------------------------------------- diff --git a/c++/src/H5Group.cpp b/c++/src/H5Group.cpp index 00a69d6..c3f390c 100644 --- a/c++/src/H5Group.cpp +++ b/c++/src/H5Group.cpp @@ -25,6 +25,8 @@ #include "H5OcreatProp.h" #include "H5DcreatProp.h" #include "H5LaccProp.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5AbstractDs.h" diff --git a/c++/src/H5LaccProp.h b/c++/src/H5LaccProp.h index 9772cde..39fe7b8 100644 --- a/c++/src/H5LaccProp.h +++ b/c++/src/H5LaccProp.h @@ -22,16 +22,16 @@ namespace H5 { /*! \class LinkAccPropList \brief Class LinkAccPropList inherits from PropList and provides - wrappers for the HDF5 file access property list. + wrappers for the HDF5 link access property list. Inheritance: PropList -> IdComponent */ class H5_DLLCPP LinkAccPropList : public PropList { public: - ///\brief Default file access property list. + ///\brief Default link access property list. static const LinkAccPropList& DEFAULT; - // Creates a file access property list. + // Creates a link access property list. LinkAccPropList(); ///\brief Returns this class name. @@ -40,9 +40,9 @@ class H5_DLLCPP LinkAccPropList : public PropList { // Copy constructor: creates a copy of a LinkAccPropList object. LinkAccPropList(const LinkAccPropList& original); - // Creates a copy of an existing file access property list + // Creates a copy of an existing link access property list // using the property list id. - LinkAccPropList (const hid_t plist_id); + LinkAccPropList(const hid_t lapl_id); // Sets the number of soft or user-defined links that can be // traversed before a failure occurs. diff --git a/c++/src/H5LcreatProp.cpp b/c++/src/H5LcreatProp.cpp new file mode 100644 index 0000000..b6d6bd6 --- /dev/null +++ b/c++/src/H5LcreatProp.cpp @@ -0,0 +1,113 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#include + +#include "H5Include.h" +#include "H5Exception.h" +#include "H5IdComponent.h" +#include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" + +namespace H5 { + +#ifndef DOXYGEN_SHOULD_SKIP_THIS +// This DOXYGEN_SHOULD_SKIP_THIS block is a work-around approach to control +// the order of creation and deletion of the global constants. See Design Notes +// in "H5PredType.cpp" for information. + +// Initialize a pointer for the constant +LinkCreatPropList* LinkCreatPropList::DEFAULT_ = 0; + +//-------------------------------------------------------------------------- +// Function: LinkCreatPropList::getConstant +// Creates a LinkCreatPropList object representing the HDF5 constant +// H5P_LINK_CREATE, pointed to by LinkCreatPropList::DEFAULT_ +// exception H5::PropListIException +// Description +// If LinkCreatPropList::DEFAULT_ already points to an allocated +// object, throw a PropListIException. This scenario should not +// happen. +// May, 2018 +//-------------------------------------------------------------------------- +LinkCreatPropList* LinkCreatPropList::getConstant() +{ + // Tell the C library not to clean up, H5Library::termH5cpp will call + // H5close - more dependency if use H5Library::dontAtExit() + if (!IdComponent::H5dontAtexit_called) + { + (void) H5dont_atexit(); + IdComponent::H5dontAtexit_called = true; + } + + // If the constant pointer is not allocated, allocate it. Otherwise, + // throw because it shouldn't be. + if (DEFAULT_ == 0) + DEFAULT_ = new LinkCreatPropList(H5P_LINK_CREATE); + else + throw PropListIException("LinkCreatPropList::getConstant", "LinkCreatPropList::getConstant is being invoked on an allocated DEFAULT_"); + return(DEFAULT_); +} + +//-------------------------------------------------------------------------- +// Function: LinkCreatPropList::deleteConstants +// Purpose: Deletes the constant object that LinkCreatPropList::DEFAULT_ +// points to. +// exception H5::PropListIException +// May, 2018 +//-------------------------------------------------------------------------- +void LinkCreatPropList::deleteConstants() +{ + if (DEFAULT_ != 0) + delete DEFAULT_; +} + +//-------------------------------------------------------------------------- +// Purpose: Constant for default link creation property +//-------------------------------------------------------------------------- +const LinkCreatPropList& LinkCreatPropList::DEFAULT = *getConstant(); + +#endif // DOXYGEN_SHOULD_SKIP_THIS + +//-------------------------------------------------------------------------- +// Function: Default Constructor +///\brief Creates a file access property list +// May, 2018 +//-------------------------------------------------------------------------- +LinkCreatPropList::LinkCreatPropList() : StrCreatPropList(H5P_LINK_CREATE) {} + +//-------------------------------------------------------------------------- +// Function: LinkCreatPropList copy constructor +///\brief Copy constructor: same HDF5 object as \a original +///\param original - IN: LinkCreatPropList instance to copy +// May, 2018 +//-------------------------------------------------------------------------- +LinkCreatPropList::LinkCreatPropList(const LinkCreatPropList& original) : StrCreatPropList(original) {} + +//-------------------------------------------------------------------------- +// Function: LinkCreatPropList overloaded constructor +///\brief Creates a file access property list using the id of an +/// existing one. +// May, 2018 +//-------------------------------------------------------------------------- +LinkCreatPropList::LinkCreatPropList(const hid_t plist_id) : StrCreatPropList(plist_id) {} + +//-------------------------------------------------------------------------- +// Function: LinkCreatPropList destructor +///\brief Noop destructor +// May, 2018 +//-------------------------------------------------------------------------- +LinkCreatPropList::~LinkCreatPropList() {} + +} // end namespace diff --git a/c++/src/H5LcreatProp.h b/c++/src/H5LcreatProp.h new file mode 100644 index 0000000..2a3b700 --- /dev/null +++ b/c++/src/H5LcreatProp.h @@ -0,0 +1,62 @@ +// C++ informative line for the emacs editor: -*- C++ -*- +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#ifndef __H5LinkCreatPropList_H +#define __H5LinkCreatPropList_H + +namespace H5 { + +/*! \class LinkCreatPropList + \brief Class LinkCreatPropList inherits from StrCreatPropList and provides + wrappers for the HDF5 link creation property list. +*/ +// Inheritance: StrCreatPropList -> PropList -> IdComponent +class H5_DLLCPP LinkCreatPropList : public StrCreatPropList { + public: + ///\brief Default link creation property list. + static const LinkCreatPropList& DEFAULT; + + // Creates a link creation property list. + LinkCreatPropList(); + + ///\brief Returns this class name. + virtual H5std_string fromClass () const { return("LinkCreatPropList"); } + + // Copy constructor: same as the original LinkCreatPropList. + LinkCreatPropList(const LinkCreatPropList& original); + + // Creates a copy of an existing link creation property list + // using the property list id. + LinkCreatPropList(const hid_t lcpl_id); + + // Noop destructor + virtual ~LinkCreatPropList(); + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + + // Deletes the global constant, should only be used by the library + static void deleteConstants(); + + private: + static LinkCreatPropList* DEFAULT_; + + // Creates the global constant, should only be used by the library + static LinkCreatPropList* getConstant(); + +#endif // DOXYGEN_SHOULD_SKIP_THIS +}; // end of LinkCreatPropList + +} // namespace H5 + +#endif // __H5LinkCreatPropList_H diff --git a/c++/src/H5Library.cpp b/c++/src/H5Library.cpp index cedb74c..372fa14 100644 --- a/c++/src/H5Library.cpp +++ b/c++/src/H5Library.cpp @@ -25,6 +25,9 @@ #include "H5DcreatProp.h" #include "H5DxferProp.h" #include "H5LaccProp.h" +#include "H5StrcreatProp.h" +#include "H5AcreatProp.h" +#include "H5LcreatProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5DataType.h" @@ -188,6 +191,14 @@ void H5Library::initH5cpp() if (ret_value != 0) throw LibraryIException("H5Library::initH5cpp", "Registrating LinkAccPropList::deleteConstants failed"); + ret_value = std::atexit(LinkCreatPropList::deleteConstants); + if (ret_value != 0) + throw LibraryIException("H5Library::initH5cpp", "Registrating LinkCreatPropList::deleteConstants failed"); + + ret_value = std::atexit(AttrCreatPropList::deleteConstants); + if (ret_value != 0) + throw LibraryIException("H5Library::initH5cpp", "Registrating AttrCreatPropList::deleteConstants failed"); + ret_value = std::atexit(FileAccPropList::deleteConstants); if (ret_value != 0) throw LibraryIException("H5Library::initH5cpp", "Registrating FileAccPropList::deleteConstants failed"); diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index afeaca7..319fa9e 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -95,7 +95,7 @@ May, 2017 (1.8.19) //-------------------------------------------------------------------------- // Function: H5Location::createAttribute -///\brief Deprecated - replaced by H5Object::createAttribute +///\brief Deprecated - replaced by H5Object::createAttribute() // brief Creates an attribute for a group, dataset, or named datatype. ///\param name - IN: Name of the attribute ///\param data_type - IN: Datatype for the attribute @@ -114,6 +114,8 @@ May, 2017 (1.8.19) /// delete the existing one with \c H5Location::removeAttr, then /// recreate it with this function. // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- Attribute H5Location::createAttribute(const char* name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist) const { @@ -135,11 +137,13 @@ Attribute H5Location::createAttribute(const char* name, const DataType& data_typ //-------------------------------------------------------------------------- // Function: H5Location::createAttribute -///\brief Deprecated - replaced by H5Object::createAttribute +///\brief Deprecated - replaced by H5Object::createAttribute() // brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes /// a reference to an \c H5std_string for \a name. // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- Attribute H5Location::createAttribute(const H5std_string& name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist) const { @@ -148,12 +152,14 @@ Attribute H5Location::createAttribute(const H5std_string& name, const DataType& //-------------------------------------------------------------------------- // Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute +///\brief Deprecated - replaced by H5Object::openAttribute() // brief Opens an attribute given its name. ///\param name - IN: Name of the attribute ///\return Attribute instance ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- Attribute H5Location::openAttribute(const char* name) const { @@ -172,12 +178,14 @@ Attribute H5Location::openAttribute(const char* name) const //-------------------------------------------------------------------------- // Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute +///\brief Deprecated - replaced by H5Object::openAttribute() // brief This is an overloaded member function, provided for convenience. // It differs from the above function in that it takes // a reference to an \c H5std_string for \a name. ///\param name - IN: Name of the attribute // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- Attribute H5Location::openAttribute(const H5std_string& name) const { @@ -186,12 +194,14 @@ Attribute H5Location::openAttribute(const H5std_string& name) const //-------------------------------------------------------------------------- // Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute +///\brief Deprecated - replaced by H5Object::openAttribute() // brief Opens an attribute given its index. ///\param idx - IN: Index of the attribute, a 0-based, non-negative integer ///\return Attribute instance ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- Attribute H5Location::openAttribute(const unsigned int idx) const { @@ -225,7 +235,6 @@ Attribute H5Location::openAttribute(const unsigned int idx) const /// For information, please refer to the C layer Reference Manual /// at: /// https://support.hdfgroup.org/HDF5/doc/RM/RM_H5A.html#Annot-Iterate -// Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- int H5Location::iterateAttrs(attr_operator_t user_op, unsigned *_idx, void *op_data) { @@ -261,6 +270,8 @@ int H5Location::iterateAttrs(attr_operator_t user_op, unsigned *_idx, void *op_d ///\param name - IN: Name of the attribute to be queried ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - 2013 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- bool H5Location::attrExists(const char* name) const { @@ -284,6 +295,8 @@ bool H5Location::attrExists(const char* name) const // a reference to an \c H5std_string for \a name. ///\param name - IN: Name of the attribute to be queried // Programmer Binh-Minh Ribler - 2013 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- bool H5Location::attrExists(const H5std_string& name) const { @@ -297,6 +310,8 @@ bool H5Location::attrExists(const H5std_string& name) const ///\param name - IN: Name of the attribute to be removed ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- void H5Location::removeAttr(const char* name) const { @@ -313,6 +328,8 @@ void H5Location::removeAttr(const char* name) const // a reference to an \c H5std_string for \a name. ///\param name - IN: Name of the attribute to be removed // Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- void H5Location::removeAttr(const H5std_string& name) const { @@ -327,6 +344,8 @@ void H5Location::removeAttr(const H5std_string& name) const ///\param newname - IN: New name ame of the attribute ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - Mar, 2005 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- void H5Location::renameAttr(const char* oldname, const char* newname) const { @@ -346,6 +365,8 @@ void H5Location::renameAttr(const char* oldname, const char* newname) const ///\param newname - IN: New name ame of the attribute ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - Mar, 2005 +// Modification +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- void H5Location::renameAttr(const H5std_string& oldname, const H5std_string& newname) const { @@ -358,9 +379,9 @@ void H5Location::renameAttr(const H5std_string& oldname, const H5std_string& new // brief Returns the number of attributes attached to this HDF5 object. ///\return Number of attributes ///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2000 +// 2000 // Modification -// - Moved to H5Object in 1.8.20. -BMR +// - Moved to H5Object in 1.8.19. -BMR //-------------------------------------------------------------------------- int H5Location::getNumAttrs() const { @@ -378,8 +399,7 @@ int H5Location::getNumAttrs() const ///\param name - IN: Searched name - \c char* ///\param lapl - IN: Link access property list ///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Nov, 2016 -// Modification +// Nov, 2016 //-------------------------------------------------------------------------- bool H5Location::nameExists(const char* name, const LinkAccPropList& lapl) const { @@ -452,6 +472,7 @@ H5std_string H5Location::getFileName() const //-------------------------------------------------------------------------- // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by location. +/// ///\exception H5::LocationException // Programmer Binh-Minh Ribler - Aug, 2017 //-------------------------------------------------------------------------- @@ -467,6 +488,7 @@ void H5Location::getObjectInfo(H5O_info_t *objinfo) const //-------------------------------------------------------------------------- // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by name. +/// ///\exception H5::LocationException // Programmer Binh-Minh Ribler - Aug, 2017 //-------------------------------------------------------------------------- @@ -483,6 +505,7 @@ void H5Location::getObjectInfo(const char *name, H5O_info_t *objinfo, //-------------------------------------------------------------------------- // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by name. +/// ///\exception H5::LocationException // Programmer Binh-Minh Ribler - Aug, 2017 //-------------------------------------------------------------------------- @@ -507,6 +530,9 @@ void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, /// - an error returned by the C API /// - version number is not one of the valid values above // Programmer Binh-Minh Ribler - May, 2017 +// Developer's Note +// Maybe, this should be moved to H5Object because H5Oget_info is +// supposed to take an object ID, so it shouldn't be a location. //-------------------------------------------------------------------------- unsigned H5Location::objVersion() const { @@ -773,14 +799,14 @@ hid_t H5Location::openObjId(const H5std_string& obj_name, const LinkAccPropList& ///\brief Closes an object, which was opened with H5Location::openObjId /// ///\exception H5::LocationException -// Programmer Binh-Minh Ribler - May, 2017 +// May, 2017 //-------------------------------------------------------------------------- -void H5Location::closeObjId(hid_t obj_id) const +void H5Location::closeObjId(hid_t obj_id) { herr_t ret_value = H5Oclose(obj_id); if (ret_value < 0) { - throw LocationException(inMemFunc("closeObjId"), "H5Oclose failed"); + throw Exception("closeObjId", "H5Oclose failed"); } } diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h index 12c3e8a..0316a53 100644 --- a/c++/src/H5Location.h +++ b/c++/src/H5Location.h @@ -115,8 +115,8 @@ class H5_DLLCPP H5Location : public IdComponent { hid_t openObjId(const char* name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; hid_t openObjId(const H5std_string& name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; - // Closes an object opened by openObjId(). - void closeObjId(hid_t obj_id) const; + // Closes an object opened by openObjId() + static void closeObjId(hid_t obj_id); ///\brief Returns an identifier. (pure virtual) virtual hid_t getId() const = 0; diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp new file mode 100644 index 0000000..6237e2b --- /dev/null +++ b/c++/src/H5StrcreatProp.cpp @@ -0,0 +1,58 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#include + +#include "H5Include.h" +#include "H5Exception.h" +#include "H5IdComponent.h" +#include "H5PropList.h" +#include "H5StrcreatProp.h" + +namespace H5 { + +//-------------------------------------------------------------------------- +// Function: StrCreatPropList::setCharEncoding +///\brief Sets the character encoding of the string. +///\exception H5::PropListIException +// March, 2018 +//-------------------------------------------------------------------------- +void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const +{ + herr_t ret_value = H5Pset_char_encoding(id, encoding); + // Throw exception if H5Pset_char_encoding returns failure + if (ret_value < 0) + { + throw PropListIException("setCharEncoding", "H5Pset_char_encoding failed"); + } +} + +//-------------------------------------------------------------------------- +// Function: StrCreatPropList::getCharEncoding +///\brief Gets the character encoding of the string. +///\exception H5::PropListIException +// March, 2018 +//-------------------------------------------------------------------------- +H5T_cset_t StrCreatPropList::getCharEncoding() const +{ + H5T_cset_t encoding; + herr_t ret_value = H5Pget_char_encoding(id, &encoding); + // Throw exception if H5Pget_char_encoding returns failure + if (ret_value < 0) + { + throw PropListIException("getCharEncoding", "H5Pget_char_encoding failed"); + } + return(encoding); +} + +} // end namespace diff --git a/c++/src/H5StrcreatProp.h b/c++/src/H5StrcreatProp.h new file mode 100644 index 0000000..7b07dd6 --- /dev/null +++ b/c++/src/H5StrcreatProp.h @@ -0,0 +1,57 @@ +// C++ informative line for the emacs editor: -*- C++ -*- +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#ifndef __H5StrCreatPropList_H +#define __H5StrCreatPropList_H + +namespace H5 { + +// Class StrCreatPropList is not user-accessible. It provides +// wrappers for the HDF5 string creation properties. + +// Inheritance: PropList -> IdComponent +class H5_DLLCPP StrCreatPropList : public PropList { + public: + // There is no StrCreatPropList::DEFAULT; + + // Returns this class name. + virtual H5std_string fromClass () const { return("StrCreatPropList"); } + + // Sets the character encoding of the string. + void setCharEncoding(H5T_cset_t encoding) const; + + // Gets the character encoding of the string. + H5T_cset_t getCharEncoding() const; + +#ifndef DOXYGEN_SHOULD_SKIP_THIS + protected: + // Creates a link creation property list. + StrCreatPropList() {}; + + // Copy constructor: same as the original StrCreatPropList. + StrCreatPropList(const StrCreatPropList& original) {}; + + // Creates a copy of an existing link creation property list + // using the property list id. + StrCreatPropList(const hid_t plist_id) {}; + + // Noop destructor + virtual ~StrCreatPropList() {}; + +#endif // DOXYGEN_SHOULD_SKIP_THIS +}; // end of StrCreatPropList + +} // namespace H5 + +#endif // __H5StrCreatPropList_H diff --git a/c++/src/Makefile.am b/c++/src/Makefile.am index 976d503..416a3d3 100644 --- a/c++/src/Makefile.am +++ b/c++/src/Makefile.am @@ -32,14 +32,15 @@ bin_SCRIPTS=h5c++ # Source files for the library libhdf5_cpp_la_SOURCES=H5Exception.cpp H5IdComponent.cpp \ - H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ - H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ - H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ - H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ - H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ - H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ - H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ - H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ + H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ + H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ + H5StrcreatProp.cpp H5LcreatProp.cpp H5AcreatProp.cpp \ + H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ + H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ + H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ + H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ + H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ + H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ H5CommonFG.cpp H5Group.cpp H5File.cpp # HDF5 C++ library depends on HDF5 Library. @@ -51,6 +52,7 @@ include_HEADERS=H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \ H5OcreatProp.h H5DcreatProp.h H5DxferProp.h H5EnumType.h \ H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \ H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5LaccProp.h \ + H5StrcreatProp.h H5LcreatProp.h H5AcreatProp.h \ H5Library.h H5Location.h H5Object.h H5PredType.h H5PropList.h \ H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index a566368..59ec075 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -151,7 +151,8 @@ LTLIBRARIES = $(lib_LTLIBRARIES) libhdf5_cpp_la_DEPENDENCIES = $(LIBHDF5) am_libhdf5_cpp_la_OBJECTS = H5Exception.lo H5IdComponent.lo \ H5DataSpace.lo H5PropList.lo H5Library.lo H5FaccProp.lo \ - H5FcreatProp.lo H5LaccProp.lo H5DxferProp.lo H5DcreatProp.lo \ + H5FcreatProp.lo H5LaccProp.lo H5StrcreatProp.lo \ + H5LcreatProp.lo H5AcreatProp.lo H5DxferProp.lo H5DcreatProp.lo \ H5Location.lo H5AbstractDs.lo H5Attribute.lo H5Object.lo \ H5OcreatProp.lo H5DataType.lo H5AtomType.lo H5PredType.lo \ H5EnumType.lo H5IntType.lo H5FloatType.lo H5StrType.lo \ @@ -713,14 +714,15 @@ bin_SCRIPTS = h5c++ # Source files for the library libhdf5_cpp_la_SOURCES = H5Exception.cpp H5IdComponent.cpp \ - H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ - H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ - H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ - H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ - H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ - H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ - H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ - H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ + H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ + H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ + H5StrcreatProp.cpp H5LcreatProp.cpp H5AcreatProp.cpp \ + H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ + H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ + H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ + H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ + H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ + H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ H5CommonFG.cpp H5Group.cpp H5File.cpp @@ -733,6 +735,7 @@ include_HEADERS = H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h H5OcreatProp.h H5DcreatProp.h H5DxferProp.h H5EnumType.h \ H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \ H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5LaccProp.h \ + H5StrcreatProp.h H5LcreatProp.h H5AcreatProp.h \ H5Library.h H5Location.h H5Object.h H5PredType.h H5PropList.h \ H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h @@ -881,6 +884,7 @@ distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5AbstractDs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5AcreatProp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5ArrayType.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5AtomType.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Attribute.Plo@am__quote@ @@ -901,6 +905,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5IdComponent.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5IntType.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5LaccProp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5LcreatProp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Library.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Location.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Object.Plo@am__quote@ @@ -908,6 +913,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5PredType.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5PropList.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5StrType.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5StrcreatProp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5VarLenType.Plo@am__quote@ .cpp.o: diff --git a/c++/test/tfile.cpp b/c++/test/tfile.cpp index 059c548..23cf280 100644 --- a/c++/test/tfile.cpp +++ b/c++/test/tfile.cpp @@ -336,9 +336,12 @@ static void test_file_open() // Truncating should succeed now. H5File file3(FILE2, H5F_ACC_TRUNC); - // Opening another file to file3 object, FILE2 should be closed, so - // the next attempt to truncate FILE2 should succeed. + // Opening another file to file3 object. file3.openFile(FILE1, H5F_ACC_RDONLY); + + // In the previous statement, openFile closes FILE2 first before + // opening FILE1, so when H5File constructs file4 with an + // attempt to truncate FILE2, it should succeed. H5File file4(FILE2, H5F_ACC_TRUNC); PASSED(); @@ -493,6 +496,17 @@ static void test_file_name() // Get and verify file name via a committed datatype. comp_type.getFileName(); verify_val(file_name, FILE4, "CompType::getFileName", __LINE__, __FILE__); + + /* file4.close(); +file4.openFile(FILE4, H5F_ACC_RDWR); + */ + // Get the file's version information. + H5F_info_t finfo; + file4.getFileInfo(finfo); // there's no C test for H5Fget_info + /* cerr << "file4: super_ext_size = " << finfo.super_ext_size << endl; + */ + //verify_val(finfo.sohm.hdr_size, 0, "H5File::getFileInfo", __LINE__, __FILE__); + PASSED(); } // end of try block @@ -503,6 +517,15 @@ static void test_file_name() } // test_file_name() +/*------------------------------------------------------------------------- + * + * Function: test_file_attribute + * + * Purpose Test file attributes + * + * Return None + *------------------------------------------------------------------------- + */ const int RANK1 = 1; const int ATTR1_DIM1 = 3; const H5std_string FILE5("tfattrs.h5"); diff --git a/c++/test/tobject.cpp b/c++/test/tobject.cpp index c053604..54d62f2 100644 --- a/c++/test/tobject.cpp +++ b/c++/test/tobject.cpp @@ -361,7 +361,7 @@ static void test_open_object_header() // There should be one object, the datatype // Close datatype object opened from the file - file1.closeObjId(obj_dtype); + H5Location::closeObjId(obj_dtype); dset.setId(obj_dset); dspace = dset.getSpace(); @@ -377,10 +377,10 @@ static void test_open_object_header() dtype.close(); // Close datatype object - grp2.closeObjId(obj_dtype); + H5Location::closeObjId(obj_dtype); // Close the group object - file1.closeObjId(obj_grp); + H5Location::closeObjId(obj_grp); // Try doing something with group, the ID should still work num_objs = grp2.getNumObjs(); -- cgit v0.12 From ffd98d490f04952e01629c6378c4528459db9f9a Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Tue, 8 May 2018 13:08:38 -0500 Subject: Fixed typo --- c++/src/H5Library.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/c++/src/H5Library.cpp b/c++/src/H5Library.cpp index 372fa14..3813b79 100644 --- a/c++/src/H5Library.cpp +++ b/c++/src/H5Library.cpp @@ -177,51 +177,51 @@ void H5Library::initH5cpp() int ret_value = 0; ret_value = std::atexit(termH5cpp); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating termH5cpp failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering termH5cpp failed"); ret_value = std::atexit(PredType::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating PredType::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering PredType::deleteConstants failed"); ret_value = std::atexit(PropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating PropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering PropList::deleteConstants failed"); ret_value = std::atexit(LinkAccPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating LinkAccPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering LinkAccPropList::deleteConstants failed"); ret_value = std::atexit(LinkCreatPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating LinkCreatPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering LinkCreatPropList::deleteConstants failed"); ret_value = std::atexit(AttrCreatPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating AttrCreatPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering AttrCreatPropList::deleteConstants failed"); ret_value = std::atexit(FileAccPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating FileAccPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering FileAccPropList::deleteConstants failed"); ret_value = std::atexit(FileCreatPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating FileCreatPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering FileCreatPropList::deleteConstants failed"); ret_value = std::atexit(DSetMemXferPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating DSetMemXferPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering DSetMemXferPropList::deleteConstants failed"); ret_value = std::atexit(DSetCreatPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating DSetCreatPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering DSetCreatPropList::deleteConstants failed"); ret_value = std::atexit(ObjCreatPropList::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating ObjCreatPropList::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering ObjCreatPropList::deleteConstants failed"); ret_value = std::atexit(DataSpace::deleteConstants); if (ret_value != 0) - throw LibraryIException("H5Library::initH5cpp", "Registrating DataSpace::deleteConstants failed"); + throw LibraryIException("H5Library::initH5cpp", "Registering DataSpace::deleteConstants failed"); } //-------------------------------------------------------------------------- -- cgit v0.12 From 7e3f95679677db07a5cc606f5edfb723ea56d04e Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Mon, 26 Feb 2018 12:22:32 -0800 Subject: Fix for HDFFV-10354 (CVE-2017-17505). --- release_docs/RELEASE.txt | 23 +++++++++++++++++++++++ src/H5Opline.c | 44 +++++++++++++++++++++++++++++--------------- 2 files changed, 52 insertions(+), 15 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index c8e2bd5..eb9f0d9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -132,6 +132,29 @@ Support for New Platforms, Languages, and Compilers Bug Fixes since HDF5-1.8.20 =========================== + - If an HDF5 file contains a filter pipeline message with a 'number of + filters' field that exceeds the maximum number of allowed filters, + the error handling code will attempt to dereference a NULL pointer. + + This issue was reported to The HDF Group as issue #CVE-2017-17505. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + This problem arose because the error handling code assumed that + the 'number of filters' field implied that a dynamic array of that + size had already been created and that the cleanup code should + iterate over that array and clean up each element's resources. If + an error occurred before the array has been allocated, this will + not be true. + + This has been changed so that the number of filters is set to + zero on errors. Additionally, the filter array traversal in the + error handling code now requires that the filter array not be NULL. + + (DER - 2018/02/06, HDFFV-10354) + Configuration ------------- - CMake diff --git a/src/H5Opline.c b/src/H5Opline.c index 42fb72c..fb08431 100644 --- a/src/H5Opline.c +++ b/src/H5Opline.c @@ -132,8 +132,15 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 /* Number of filters */ pline->nused = *p++; - if(pline->nused > H5Z_MAX_NFILTERS) - HGOTO_ERROR(H5E_PLINE, H5E_CANTLOAD, NULL, "filter pipeline message has too many filters") + if(pline->nused > H5Z_MAX_NFILTERS) { + + /* Reset the number of filters used to avoid array traversal in error + * handling code. + */ + pline->nused = 0; + + HGOTO_ERROR(H5E_PLINE, H5E_CANTLOAD, NULL, "filter pipeline message has too many filters") + } /* Reserved */ if(pline->version == H5O_PLINE_VERSION_1) @@ -495,23 +502,30 @@ H5O_pline_reset(void *mesg) FUNC_ENTER_NOAPI_NOINIT_NOERR + /* NOTE: This function can be called during error processing from + * other API calls so DO NOT ASSUME THAT ANY VALUES ARE SANE. + */ + HDassert(pline); - /* Free information for each filter */ - for(i = 0; i < pline->nused; i++) { - if(pline->filter[i].name && pline->filter[i].name != pline->filter[i]._name) - HDassert((HDstrlen(pline->filter[i].name) + 1) > H5Z_COMMON_NAME_LEN); - if(pline->filter[i].name != pline->filter[i]._name) - pline->filter[i].name = (char *)H5MM_xfree(pline->filter[i].name); - if(pline->filter[i].cd_values && pline->filter[i].cd_values != pline->filter[i]._cd_values) - HDassert(pline->filter[i].cd_nelmts > H5Z_COMMON_CD_VALUES); - if(pline->filter[i].cd_values != pline->filter[i]._cd_values) - pline->filter[i].cd_values = (unsigned *)H5MM_xfree(pline->filter[i].cd_values); - } /* end for */ + /* Free the filter information and array */ + if (pline->filter) { + + /* Free information for each filter */ + for(i = 0; i < pline->nused; i++) { + if(pline->filter[i].name && pline->filter[i].name != pline->filter[i]._name) + HDassert((HDstrlen(pline->filter[i].name) + 1) > H5Z_COMMON_NAME_LEN); + if(pline->filter[i].name != pline->filter[i]._name) + pline->filter[i].name = (char *)H5MM_xfree(pline->filter[i].name); + if(pline->filter[i].cd_values && pline->filter[i].cd_values != pline->filter[i]._cd_values) + HDassert(pline->filter[i].cd_nelmts > H5Z_COMMON_CD_VALUES); + if(pline->filter[i].cd_values != pline->filter[i]._cd_values) + pline->filter[i].cd_values = (unsigned *)H5MM_xfree(pline->filter[i].cd_values); + } /* end for */ - /* Free filter array */ - if(pline->filter) + /* Free filter array */ pline->filter = (H5Z_filter_info_t *)H5MM_xfree(pline->filter); + } /* Reset # of filters */ pline->nused = pline->nalloc = 0; -- cgit v0.12 From 11a188a4b6f1da0bd81c54976e6ceb8530d71aa1 Mon Sep 17 00:00:00 2001 From: lrknox Date: Tue, 8 May 2018 15:39:40 -0500 Subject: Correct typo in h5jam/unjam usage messages. --- tools/h5jam/h5jam.c | 4 ++-- tools/h5jam/h5unjam.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index 519d6df..a7c1cc7 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -241,7 +241,7 @@ main (int argc, const char *argv[]) if (ub_file == NULL) { /* no user block */ - error_msg("missing arguemnt for -u .\n"); + error_msg("missing argument for -u .\n"); help_ref_msg(stderr); leave (EXIT_FAILURE); } @@ -255,7 +255,7 @@ main (int argc, const char *argv[]) } if (input_file == NULL) { - error_msg("missing arguemnt for -i .\n"); + error_msg("missing argument for -i .\n"); help_ref_msg(stderr); leave (EXIT_FAILURE); } diff --git a/tools/h5jam/h5unjam.c b/tools/h5jam/h5unjam.c index 9c83740..a269cfe 100644 --- a/tools/h5jam/h5unjam.c +++ b/tools/h5jam/h5unjam.c @@ -237,7 +237,7 @@ main(int argc, const char *argv[]) if (input_file == NULL) { /* no user block */ - error_msg("missing arguemnt for HDF5 file input.\n"); + error_msg("missing argument for HDF5 file input.\n"); help_ref_msg(stderr); h5tools_setstatus(EXIT_FAILURE); goto done; -- cgit v0.12 From c32b7387083d574bfa5fc31fffc45cbf21b6a1f0 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Thu, 10 May 2018 13:04:28 -0500 Subject: C++ API improvement Description: - Reorganized some exception classes to reflect the HDF5 object hierarchy and provide extendibility. DataSetIException -> LocationException -> Exception DataTypeIException -> LocationException -> Exception GroupIException -> LocationException -> Exception AttributeIException -> LocationException -> Exception FileIException -> GroupIException -> LocationException -> Exception - Added throwException() to these subclasses and use it in H5Location and H5Object member functions to throw an exception that is specific to the object that invokes the member function. Applications that catch the base exception can continue to do the same. - Many cleanup for inconsistencies in comments/headers. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test) --- c++/src/H5AcreatProp.cpp | 12 +-- c++/src/H5Attribute.cpp | 31 ++++---- c++/src/H5Attribute.h | 6 +- c++/src/H5CompType.cpp | 10 +-- c++/src/H5DataSet.cpp | 13 +++ c++/src/H5DataSet.h | 3 + c++/src/H5DataType.cpp | 13 +++ c++/src/H5DataType.h | 3 + c++/src/H5DxferProp.cpp | 2 +- c++/src/H5Exception.cpp | 88 ++++++++++---------- c++/src/H5Exception.h | 30 +++---- c++/src/H5File.cpp | 14 +--- c++/src/H5Group.cpp | 14 +--- c++/src/H5IdComponent.cpp | 8 +- c++/src/H5IdComponent.h | 4 + c++/src/H5LaccProp.cpp | 4 +- c++/src/H5LaccProp.h | 3 - c++/src/H5LcreatProp.cpp | 12 +-- c++/src/H5Location.cpp | 194 ++++++++++++++++++++++++++++++--------------- c++/src/H5Object.cpp | 24 ++++-- c++/src/H5Object.h | 6 +- c++/src/H5StrcreatProp.cpp | 8 +- c++/test/dsets.cpp | 19 ++--- c++/test/tattr.cpp | 12 ++- c++/test/tfile.cpp | 14 ++-- c++/test/tlinks.cpp | 20 ++--- c++/test/tobject.cpp | 45 +++++++++-- 27 files changed, 365 insertions(+), 247 deletions(-) diff --git a/c++/src/H5AcreatProp.cpp b/c++/src/H5AcreatProp.cpp index 29886d8..825d230 100644 --- a/c++/src/H5AcreatProp.cpp +++ b/c++/src/H5AcreatProp.cpp @@ -39,7 +39,7 @@ AttrCreatPropList* AttrCreatPropList::DEFAULT_ = 0; // If AttrCreatPropList::DEFAULT_ already points to an allocated // object, throw a PropListIException. This scenario should not // happen. -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- AttrCreatPropList* AttrCreatPropList::getConstant() { @@ -65,7 +65,7 @@ AttrCreatPropList* AttrCreatPropList::getConstant() // Purpose: Deletes the constant object that AttrCreatPropList::DEFAULT_ // points to. // exception H5::PropListIException -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- void AttrCreatPropList::deleteConstants() { @@ -83,7 +83,7 @@ const AttrCreatPropList& AttrCreatPropList::DEFAULT = *getConstant(); //-------------------------------------------------------------------------- // Function: Default Constructor ///\brief Creates a file access property list -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- AttrCreatPropList::AttrCreatPropList() : StrCreatPropList(H5P_ATTRIBUTE_CREATE) {} @@ -91,7 +91,7 @@ AttrCreatPropList::AttrCreatPropList() : StrCreatPropList(H5P_ATTRIBUTE_CREATE) // Function: AttrCreatPropList copy constructor ///\brief Copy constructor: same HDF5 object as \a original ///\param original - IN: AttrCreatPropList instance to copy -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- AttrCreatPropList::AttrCreatPropList(const AttrCreatPropList& original) : StrCreatPropList(original) {} @@ -99,14 +99,14 @@ AttrCreatPropList::AttrCreatPropList(const AttrCreatPropList& original) : StrCre // Function: AttrCreatPropList overloaded constructor ///\brief Creates a file access property list using the id of an /// existing one. -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- AttrCreatPropList::AttrCreatPropList(const hid_t plist_id) : StrCreatPropList(plist_id) {} //-------------------------------------------------------------------------- // Function: AttrCreatPropList destructor ///\brief Noop destructor -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- AttrCreatPropList::~AttrCreatPropList() {} diff --git a/c++/src/H5Attribute.cpp b/c++/src/H5Attribute.cpp index 3733736..739cda7 100644 --- a/c++/src/H5Attribute.cpp +++ b/c++/src/H5Attribute.cpp @@ -278,23 +278,6 @@ DataSpace Attribute::getSpace() const } //-------------------------------------------------------------------------- -// Function: Attribute::getFileName -///\brief Gets the name of the file, in which this attribute belongs. -///\return File name -///\exception H5::IdComponentException -// Programmer Binh-Minh Ribler - Jul, 2004 -//-------------------------------------------------------------------------- -H5std_string Attribute::getFileName() const -{ - try { - return(p_get_file_name()); - } - catch (IdComponentException& E) { - throw FileIException("Attribute::getFileName", E.getDetailMsg()); - } -} - -//-------------------------------------------------------------------------- // Function: Attribute::getName ///\brief Gets the name of this attribute, returning its length. ///\param attr_name - OUT: Buffer for the name string as char* @@ -633,6 +616,20 @@ void Attribute::p_setId(const hid_t new_id) // reset object's id to the given id id = new_id; } + +//-------------------------------------------------------------------------- +// Function: Attribute::throwException +///\brief Throws H5::AttributeIException. +///\param func_name - Name of the function where failure occurs +///\param msg - Message describing the failure +///\exception H5::AttributeIException +// May 2018 +//-------------------------------------------------------------------------- +void Attribute::throwException(const H5std_string& func_name, const H5std_string& msg) const +{ + throw AttributeIException(inMemFunc(func_name.c_str()), msg); +} + #endif // DOXYGEN_SHOULD_SKIP_THIS //-------------------------------------------------------------------------- diff --git a/c++/src/H5Attribute.h b/c++/src/H5Attribute.h index 98883e2..9ac21b5 100644 --- a/c++/src/H5Attribute.h +++ b/c++/src/H5Attribute.h @@ -41,9 +41,6 @@ class H5_DLLCPP Attribute : public AbstractDs, public H5Location { // Closes this attribute. virtual void close(); - // Gets the name of the file, in which this attribute belongs. - H5std_string getFileName() const; - // Gets the name of this attribute. ssize_t getName(char* attr_name, size_t buf_size = 0) const; H5std_string getName(size_t len) const; @@ -80,6 +77,9 @@ class H5_DLLCPP Attribute : public AbstractDs, public H5Location { // Gets the attribute id. virtual hid_t getId() const; + // Throw group exception. + virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const; + // Destructor: properly terminates access to this attribute. virtual ~Attribute(); diff --git a/c++/src/H5CompType.cpp b/c++/src/H5CompType.cpp index 9527037..903a7c4 100644 --- a/c++/src/H5CompType.cpp +++ b/c++/src/H5CompType.cpp @@ -191,7 +191,7 @@ H5std_string CompType::getMemberName(unsigned member_num) const /// Members are stored in no particular order with numbers 0 /// through N-1, where N is the value returned by the member /// function \c CompType::getNmembers. -// May 16, 2002 +// May 2002 //-------------------------------------------------------------------------- int CompType::getMemberIndex(const char* name) const { @@ -216,7 +216,7 @@ int CompType::getMemberIndex(const char* name) const /// Members are stored in no particular order with numbers 0 /// through N-1, where N is the value returned by the member /// function \c CompType::getNmembers. -// Apr 18, 2018 +// Apr 2018 //-------------------------------------------------------------------------- int CompType::getMemberIndex(const H5std_string& name) const { @@ -311,7 +311,7 @@ DataType CompType::getMemberDataType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return ArrayType instance ///\exception H5::DataTypeIException -// Jul, 2005 +// Jul 2005 //-------------------------------------------------------------------------- ArrayType CompType::getMemberArrayType(unsigned member_num) const { @@ -437,7 +437,7 @@ StrType CompType::getMemberStrType(unsigned member_num) const ///\param member_num - IN: Zero-based index of the member ///\return VarLenType instance ///\exception H5::DataTypeIException -// Jul, 2005 +// Jul 2005 //-------------------------------------------------------------------------- VarLenType CompType::getMemberVarLenType(unsigned member_num) const { @@ -533,7 +533,7 @@ void CompType::pack() const ///\exception H5::DataTypeIException // Note // H5Tset_size works on atom datatypes and compound datatypes only -// 2014 +// March 2014 //-------------------------------------------------------------------------- void CompType::setSize(size_t size) const { diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp index 14dd607..1dce28e 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -826,6 +826,19 @@ void DataSet::close() } //-------------------------------------------------------------------------- +// Function: DataSet::throwException +///\brief Throws H5::DataSetIException. +///\param func_name - Name of the function where failure occurs +///\param msg - Message describing the failure +///\exception H5::DataSetIException +// May 2018 +//-------------------------------------------------------------------------- +void DataSet::throwException(const H5std_string& func_name, const H5std_string& msg) const +{ + throw DataSetIException(inMemFunc(func_name.c_str()), msg); +} + +//-------------------------------------------------------------------------- // Function: DataSet destructor ///\brief Properly terminates access to this dataset. // Programmer Binh-Minh Ribler - 2000 diff --git a/c++/src/H5DataSet.h b/c++/src/H5DataSet.h index 09aab08..f0178f4 100644 --- a/c++/src/H5DataSet.h +++ b/c++/src/H5DataSet.h @@ -85,6 +85,9 @@ class H5_DLLCPP DataSet : public H5Object, public AbstractDs { ///\brief Returns this class name. virtual H5std_string fromClass () const { return("DataSet"); } + // Throw DataSetIException. + virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const; + // Creates a dataset by way of dereference. DataSet(const H5Location& loc, const void* ref, H5R_type_t ref_type = H5R_OBJECT); DataSet(const Attribute& attr, const void* ref, H5R_type_t ref_type = H5R_OBJECT); diff --git a/c++/src/H5DataType.cpp b/c++/src/H5DataType.cpp index 7b385d2..dc9b422 100644 --- a/c++/src/H5DataType.cpp +++ b/c++/src/H5DataType.cpp @@ -924,6 +924,19 @@ void DataType::close() } //-------------------------------------------------------------------------- +// Function: DataType::throwException +///\brief Throws H5::DataTypeIException. +///\param func_name - Name of the function where failure occurs +///\param msg - Message describing the failure +///\exception H5::DataTypeIException +// May 2018 +//-------------------------------------------------------------------------- +void DataType::throwException(const H5std_string& func_name, const H5std_string& msg) const +{ + throw DataTypeIException(inMemFunc(func_name.c_str()), msg); +} + +//-------------------------------------------------------------------------- // Function: DataType destructor ///\brief Properly terminates access to this datatype. // Programmer Binh-Minh Ribler - 2000 diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h index 29cc990..efb0c14 100644 --- a/c++/src/H5DataType.h +++ b/c++/src/H5DataType.h @@ -122,6 +122,9 @@ class H5_DLLCPP DataType : public H5Object { ///\brief Returns this class name. virtual H5std_string fromClass () const { return("DataType"); } + // Throw DataTypeIException. + virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const; + // Creates a copy of an existing DataType using its id DataType(const hid_t type_id); diff --git a/c++/src/H5DxferProp.cpp b/c++/src/H5DxferProp.cpp index da66ec6..f303e95 100644 --- a/c++/src/H5DxferProp.cpp +++ b/c++/src/H5DxferProp.cpp @@ -92,7 +92,7 @@ DSetMemXferPropList::DSetMemXferPropList() : PropList(H5P_DATASET_XFER) {} // Function DSetMemXferPropList constructor ///\brief Creates a dataset transfer property list with transform /// expression. -// Programmer: Binh-Minh Ribler - 2000 +// March 2014 //-------------------------------------------------------------------------- DSetMemXferPropList::DSetMemXferPropList(const char* exp) : PropList(H5P_DATASET_XFER) { diff --git a/c++/src/H5Exception.cpp b/c++/src/H5Exception.cpp index 0bb15bc..e5cc7b2 100644 --- a/c++/src/H5Exception.cpp +++ b/c++/src/H5Exception.cpp @@ -331,27 +331,27 @@ void Exception::printError(FILE* stream) const Exception::~Exception() throw() {} //-------------------------------------------------------------------------- -// Subclass: FileIException -// Programmer Binh-Minh Ribler - 2000 +// Subclass: LocationException +// Programmer Binh-Minh Ribler - 2014 //-------------------------------------------------------------------------- //-------------------------------------------------------------------------- -// Function: FileIException default constructor +// Function: LocationException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -FileIException::FileIException():Exception(){} +LocationException::LocationException() : Exception(){} //-------------------------------------------------------------------------- -// Function: FileIException overloaded constructor -///\brief Creates a FileIException with the name of the function, +// Function: LocationException overloaded constructor +///\brief Creates a LocationException with the name of the function, /// in which the failure occurs, and an optional detailed message. ///\param func - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -FileIException::FileIException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} +LocationException::LocationException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} //-------------------------------------------------------------------------- -// Function: FileIException destructor +// Function: LocationException destructor ///\brief Noop destructor. //-------------------------------------------------------------------------- -FileIException::~FileIException() throw() {} +LocationException::~LocationException() throw() {} //-------------------------------------------------------------------------- // Subclass: GroupIException @@ -361,7 +361,7 @@ FileIException::~FileIException() throw() {} // Function: GroupIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -GroupIException::GroupIException():Exception(){} +GroupIException::GroupIException() : LocationException(){} //-------------------------------------------------------------------------- // Function: GroupIException overloaded constructor ///\brief Creates a GroupIException with the name of the function, @@ -369,7 +369,7 @@ GroupIException::GroupIException():Exception(){} ///\param func - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -GroupIException::GroupIException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} +GroupIException::GroupIException(const H5std_string& func, const H5std_string& message) : LocationException(func, message) {} //-------------------------------------------------------------------------- // Function: GroupIException destructor ///\brief Noop destructor. @@ -377,6 +377,29 @@ GroupIException::GroupIException(const H5std_string& func, const H5std_string& m GroupIException::~GroupIException() throw() {} //-------------------------------------------------------------------------- +// Subclass: FileIException +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- +// Function: FileIException default constructor +///\brief Default constructor. +//-------------------------------------------------------------------------- +FileIException::FileIException():GroupIException(){} +//-------------------------------------------------------------------------- +// Function: FileIException overloaded constructor +///\brief Creates a FileIException with the name of the function, +/// in which the failure occurs, and an optional detailed message. +///\param func - IN: Name of the function where failure occurs +///\param message - IN: Message on the failure +//-------------------------------------------------------------------------- +FileIException::FileIException(const H5std_string& func, const H5std_string& message) : GroupIException(func, message) {} +//-------------------------------------------------------------------------- +// Function: FileIException destructor +///\brief Noop destructor. +//-------------------------------------------------------------------------- +FileIException::~FileIException() throw() {} + +//-------------------------------------------------------------------------- // Subclass: DataSpaceIException // Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- @@ -384,7 +407,7 @@ GroupIException::~GroupIException() throw() {} // Function: DataSpaceIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -DataSpaceIException::DataSpaceIException():Exception(){} +DataSpaceIException::DataSpaceIException() : Exception(){} //-------------------------------------------------------------------------- // Function: DataSpaceIException overloaded constructor ///\brief Creates a DataSpaceIException with the name of the function, @@ -407,7 +430,7 @@ DataSpaceIException::~DataSpaceIException() throw() {} // Function: DataTypeIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -DataTypeIException::DataTypeIException():Exception(){} +DataTypeIException::DataTypeIException() : LocationException(){} //-------------------------------------------------------------------------- // Function: DataTypeIException overloaded constructor ///\brief Creates a DataTypeIException with the name of the function, @@ -415,7 +438,7 @@ DataTypeIException::DataTypeIException():Exception(){} ///\param func - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -DataTypeIException::DataTypeIException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} +DataTypeIException::DataTypeIException(const H5std_string& func, const H5std_string& message) : LocationException(func, message) {} //-------------------------------------------------------------------------- // Function: DataTypeIException destructor ///\brief Noop destructor. @@ -430,7 +453,7 @@ DataTypeIException::~DataTypeIException() throw() {} // Function: PropListIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -PropListIException::PropListIException():Exception(){} +PropListIException::PropListIException() : Exception(){} //-------------------------------------------------------------------------- // Function: PropListIException overloaded constructor ///\brief Creates a PropListIException with the name of the function, @@ -453,7 +476,7 @@ PropListIException::~PropListIException() throw() {} // Function: DataSetIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -DataSetIException::DataSetIException():Exception(){} +DataSetIException::DataSetIException() : LocationException(){} //-------------------------------------------------------------------------- // Function: DataSetIException overloaded constructor ///\brief Creates a DataSetIException with the name of the function, @@ -461,7 +484,7 @@ DataSetIException::DataSetIException():Exception(){} ///\param func - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -DataSetIException::DataSetIException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} +DataSetIException::DataSetIException(const H5std_string& func, const H5std_string& message) : LocationException(func, message) {} //-------------------------------------------------------------------------- // Function: DataSetIException destructor ///\brief Noop destructor. @@ -476,7 +499,7 @@ DataSetIException::~DataSetIException() throw() {} // Function: AttributeIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -AttributeIException::AttributeIException():Exception(){} +AttributeIException::AttributeIException() : LocationException(){} //-------------------------------------------------------------------------- // Function: AttributeIException overloaded constructor ///\brief Creates an AttributeIException with the name of the function, @@ -484,7 +507,7 @@ AttributeIException::AttributeIException():Exception(){} ///\param func - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -AttributeIException::AttributeIException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} +AttributeIException::AttributeIException(const H5std_string& func, const H5std_string& message) : LocationException(func, message) {} //-------------------------------------------------------------------------- // Function: AttributeIException destructor ///\brief Noop destructor. @@ -499,7 +522,7 @@ AttributeIException::~AttributeIException() throw() {} // Function: ReferenceException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -ReferenceException::ReferenceException():Exception(){} +ReferenceException::ReferenceException() : Exception(){} //-------------------------------------------------------------------------- // Function: ReferenceException overloaded constructor ///\brief Creates a ReferenceException with the name of the function, @@ -522,7 +545,7 @@ ReferenceException::~ReferenceException() throw() {} // Function: LibraryIException default constructor ///\brief Default constructor. //-------------------------------------------------------------------------- -LibraryIException::LibraryIException():Exception(){} +LibraryIException::LibraryIException() : Exception(){} //-------------------------------------------------------------------------- // Function: LibraryIException overloaded constructor ///\brief Creates a LibraryIException with the name of the function, @@ -538,29 +561,6 @@ LibraryIException::LibraryIException(const H5std_string& func, const H5std_strin LibraryIException::~LibraryIException() throw() {} //-------------------------------------------------------------------------- -// Subclass: LocationException -// Programmer Binh-Minh Ribler - 2014 -//-------------------------------------------------------------------------- -//-------------------------------------------------------------------------- -// Function: LocationException default constructor -///\brief Default constructor. -//-------------------------------------------------------------------------- -LocationException::LocationException():Exception(){} -//-------------------------------------------------------------------------- -// Function: LocationException overloaded constructor -///\brief Creates a LocationException with the name of the function, -/// in which the failure occurs, and an optional detailed message. -///\param func - IN: Name of the function where failure occurs -///\param message - IN: Message on the failure -//-------------------------------------------------------------------------- -LocationException::LocationException(const H5std_string& func, const H5std_string& message) : Exception(func, message) {} -//-------------------------------------------------------------------------- -// Function: LocationException destructor -///\brief Noop destructor. -//-------------------------------------------------------------------------- -LocationException::~LocationException() throw() {} - -//-------------------------------------------------------------------------- // Subclass: IdComponentException // Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h index 7315e11..e15d81c 100644 --- a/c++/src/H5Exception.h +++ b/c++/src/H5Exception.h @@ -91,20 +91,27 @@ class H5_DLLCPP Exception { H5std_string func_name; }; -class H5_DLLCPP FileIException : public Exception { +class H5_DLLCPP LocationException : public Exception { public: - FileIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); - FileIException(); - virtual ~FileIException() throw(); + LocationException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); + LocationException(); + virtual ~LocationException() throw(); }; -class H5_DLLCPP GroupIException : public Exception { +class H5_DLLCPP GroupIException : public LocationException { public: GroupIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); GroupIException(); virtual ~GroupIException() throw(); }; +class H5_DLLCPP FileIException : public GroupIException { + public: + FileIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); + FileIException(); + virtual ~FileIException() throw(); +}; + class H5_DLLCPP DataSpaceIException : public Exception { public: DataSpaceIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); @@ -112,7 +119,7 @@ class H5_DLLCPP DataSpaceIException : public Exception { virtual ~DataSpaceIException() throw(); }; -class H5_DLLCPP DataTypeIException : public Exception { +class H5_DLLCPP DataTypeIException : public LocationException { public: DataTypeIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); DataTypeIException(); @@ -126,14 +133,14 @@ class H5_DLLCPP PropListIException : public Exception { virtual ~PropListIException() throw(); }; -class H5_DLLCPP DataSetIException : public Exception { +class H5_DLLCPP DataSetIException : public LocationException { public: DataSetIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); DataSetIException(); virtual ~DataSetIException() throw(); }; -class H5_DLLCPP AttributeIException : public Exception { +class H5_DLLCPP AttributeIException : public LocationException { public: AttributeIException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); AttributeIException(); @@ -154,13 +161,6 @@ class H5_DLLCPP LibraryIException : public Exception { virtual ~LibraryIException() throw(); }; -class H5_DLLCPP LocationException : public Exception { - public: - LocationException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); - LocationException(); - virtual ~LocationException() throw(); -}; - class H5_DLLCPP IdComponentException : public Exception { public: IdComponentException(const H5std_string& func_name, const H5std_string& message = DEFAULT_MSG); diff --git a/c++/src/H5File.cpp b/c++/src/H5File.cpp index 782831b..7b19c7e 100644 --- a/c++/src/H5File.cpp +++ b/c++/src/H5File.cpp @@ -634,23 +634,15 @@ void H5File::close() //-------------------------------------------------------------------------- // Function: H5File::throwException -///\brief Throws file exception - initially implemented for CommonFG +///\brief Throws H5::FileIException. ///\param func_name - Name of the function where failure occurs ///\param msg - Message describing the failure ///\exception H5::FileIException -// Description -// This function is used in CommonFG implementation so that -// proper exception can be thrown for file or group. The -// argument func_name is a member of CommonFG and "H5File::" -// will be inserted to indicate the function called is an -// implementation of H5File. -// Programmer Binh-Minh Ribler - 2000 +// December 2000 //-------------------------------------------------------------------------- void H5File::throwException(const H5std_string& func_name, const H5std_string& msg) const { - H5std_string full_name = func_name; - full_name.insert(0, "H5File::"); - throw FileIException(full_name, msg); + throw FileIException(inMemFunc(func_name.c_str()), msg); } //-------------------------------------------------------------------------- diff --git a/c++/src/H5Group.cpp b/c++/src/H5Group.cpp index c3f390c..dd2dd48 100644 --- a/c++/src/H5Group.cpp +++ b/c++/src/H5Group.cpp @@ -165,7 +165,7 @@ void Group::p_setId(const hid_t new_id) ///\brief Closes this group. /// ///\exception H5::GroupIException -// Programmer Binh-Minh Ribler - Mar 9, 2005 +// March 2005 //-------------------------------------------------------------------------- void Group::close() { @@ -187,19 +187,11 @@ void Group::close() ///\param func_name - Name of the function where failure occurs ///\param msg - Message describing the failure ///\exception H5::GroupIException -// Description -// This function is used in CommonFG implementation so that -// proper exception can be thrown for file or group. The -// argument func_name is a member of CommonFG and "Group::" -// will be inserted to indicate the function called is an -// implementation of Group. -// Programmer Binh-Minh Ribler - 2000 +// December 2000 //-------------------------------------------------------------------------- void Group::throwException(const H5std_string& func_name, const H5std_string& msg) const { - H5std_string full_name = func_name; - full_name.insert(0, "Group::"); - throw GroupIException(full_name, msg); + throw GroupIException(inMemFunc(func_name.c_str()), msg); } //-------------------------------------------------------------------------- diff --git a/c++/src/H5IdComponent.cpp b/c++/src/H5IdComponent.cpp index ef17b38..c54e901 100644 --- a/c++/src/H5IdComponent.cpp +++ b/c++/src/H5IdComponent.cpp @@ -299,11 +299,7 @@ IdComponent::IdComponent() // Function: IdComponent::p_get_file_name (protected) // Purpose: Gets the name of the file, in which this object belongs. // Exception: H5::IdComponentException -// Description: -// This function is protected so that the user applications can -// only have access to its code via allowable classes, namely, -// Attribute and H5Location subclasses. -// Programmer Binh-Minh Ribler - Jul, 2004 +// July 2004 //-------------------------------------------------------------------------- H5std_string IdComponent::p_get_file_name() const { @@ -312,7 +308,7 @@ H5std_string IdComponent::p_get_file_name() const // Preliminary call to H5Fget_name to get the length of the file name ssize_t name_size = H5Fget_name(temp_id, NULL, 0); - // If H5Aget_name returns a negative value, raise an exception, + // If H5Fget_name returns a negative value, raise an exception, if(name_size < 0) { throw IdComponentException("", "H5Fget_name failed"); diff --git a/c++/src/H5IdComponent.h b/c++/src/H5IdComponent.h index 9a45634..744a780 100644 --- a/c++/src/H5IdComponent.h +++ b/c++/src/H5IdComponent.h @@ -72,6 +72,10 @@ class H5_DLLCPP IdComponent { // Gets the identifier of this object. virtual hid_t getId () const = 0; + // For subclasses to throw appropriate exception, used in H5Location, + // H5CommonFG, and H5Object. + virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const {}; + // Pure virtual function for there are various H5*close for the // subclasses. virtual void close() = 0; diff --git a/c++/src/H5LaccProp.cpp b/c++/src/H5LaccProp.cpp index 1267286..d5e7a1c 100644 --- a/c++/src/H5LaccProp.cpp +++ b/c++/src/H5LaccProp.cpp @@ -116,7 +116,7 @@ void LinkAccPropList::setNumLinks(size_t nlinks) const // Throw exception if H5Pset_nlinks returns failure if (ret_value < 0) { - throw PropListIException("setNumLinks", "H5Pset_nlinks failed"); + throw PropListIException("LinkAccPropList::setNumLinks", "H5Pset_nlinks failed"); } } @@ -134,7 +134,7 @@ size_t LinkAccPropList::getNumLinks() const // Throw exception if H5Pget_nlinks returns failure if (ret_value < 0) { - throw PropListIException("getNumLinks", "H5Pget_nlinks failed"); + throw PropListIException("LinkAccPropList::getNumLinks", "H5Pget_nlinks failed"); } return(nlinks); } diff --git a/c++/src/H5LaccProp.h b/c++/src/H5LaccProp.h index 39fe7b8..9e7802f 100644 --- a/c++/src/H5LaccProp.h +++ b/c++/src/H5LaccProp.h @@ -12,9 +12,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -// Class LinkAccPropList represents the HDF5 file access property list and -// inherits from DataType. - #ifndef __H5LinkAccPropList_H #define __H5LinkAccPropList_H diff --git a/c++/src/H5LcreatProp.cpp b/c++/src/H5LcreatProp.cpp index b6d6bd6..1f17f88 100644 --- a/c++/src/H5LcreatProp.cpp +++ b/c++/src/H5LcreatProp.cpp @@ -39,7 +39,7 @@ LinkCreatPropList* LinkCreatPropList::DEFAULT_ = 0; // If LinkCreatPropList::DEFAULT_ already points to an allocated // object, throw a PropListIException. This scenario should not // happen. -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- LinkCreatPropList* LinkCreatPropList::getConstant() { @@ -65,7 +65,7 @@ LinkCreatPropList* LinkCreatPropList::getConstant() // Purpose: Deletes the constant object that LinkCreatPropList::DEFAULT_ // points to. // exception H5::PropListIException -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- void LinkCreatPropList::deleteConstants() { @@ -83,7 +83,7 @@ const LinkCreatPropList& LinkCreatPropList::DEFAULT = *getConstant(); //-------------------------------------------------------------------------- // Function: Default Constructor ///\brief Creates a file access property list -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- LinkCreatPropList::LinkCreatPropList() : StrCreatPropList(H5P_LINK_CREATE) {} @@ -91,7 +91,7 @@ LinkCreatPropList::LinkCreatPropList() : StrCreatPropList(H5P_LINK_CREATE) {} // Function: LinkCreatPropList copy constructor ///\brief Copy constructor: same HDF5 object as \a original ///\param original - IN: LinkCreatPropList instance to copy -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- LinkCreatPropList::LinkCreatPropList(const LinkCreatPropList& original) : StrCreatPropList(original) {} @@ -99,14 +99,14 @@ LinkCreatPropList::LinkCreatPropList(const LinkCreatPropList& original) : StrCre // Function: LinkCreatPropList overloaded constructor ///\brief Creates a file access property list using the id of an /// existing one. -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- LinkCreatPropList::LinkCreatPropList(const hid_t plist_id) : StrCreatPropList(plist_id) {} //-------------------------------------------------------------------------- // Function: LinkCreatPropList destructor ///\brief Noop destructor -// May, 2018 +// May 2018 //-------------------------------------------------------------------------- LinkCreatPropList::~LinkCreatPropList() {} diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 319fa9e..43ba34c 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -388,7 +388,7 @@ int H5Location::getNumAttrs() const H5O_info_t objinfo; /* Object info */ if(H5Oget_info(getId(), &objinfo) < 0) - throw AttributeIException(inMemFunc("getNumAttrs"), "H5Oget_info failed"); + throwException("getNumAttrs", "H5Oget_info failed"); else return(static_cast(objinfo.num_attrs)); } @@ -398,8 +398,13 @@ int H5Location::getNumAttrs() const ///\brief Checks if a link of a given name exists in a location. ///\param name - IN: Searched name - \c char* ///\param lapl - IN: Link access property list -///\exception H5::LocationException -// Nov, 2016 +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// Nov 2016 //-------------------------------------------------------------------------- bool H5Location::nameExists(const char* name, const LinkAccPropList& lapl) const { @@ -410,7 +415,7 @@ bool H5Location::nameExists(const char* name, const LinkAccPropList& lapl) const return false; else // Raise exception when H5Lexists returns a negative value { - throw LocationException(inMemFunc("nameExists"), "H5Lexists failed"); + throwException("nameExists", "H5Lexists failed"); } } @@ -435,10 +440,15 @@ bool H5Location::nameExists(const H5std_string& name, const LinkAccPropList& lap /// which can be either of these values: /// \li \c H5F_SCOPE_GLOBAL - Flushes the entire virtual file /// \li \c H5F_SCOPE_LOCAL - Flushes only the specified file -///\exception H5::LocationException +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException ///\par Description /// This location is used to identify the file to be flushed. -// Programmer Binh-Minh Ribler - 2012 +// December 2005 // Modification // Sep 2012 - BMR // Moved from H5File/H5Object @@ -448,7 +458,7 @@ void H5Location::flush(H5F_scope_t scope) const herr_t ret_value = H5Fflush(getId(), scope); if(ret_value < 0) { - throw LocationException(inMemFunc("flush"), "H5Fflush failed"); + throwException("flush", "H5Fflush failed"); } } @@ -456,16 +466,21 @@ void H5Location::flush(H5F_scope_t scope) const // Function: H5Location::getFileName ///\brief Gets the name of the file, in which this HDF5 object belongs. ///\return File name -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Jul, 2004 +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// July 2004 //-------------------------------------------------------------------------- H5std_string H5Location::getFileName() const { try { return(p_get_file_name()); } - catch (LocationException& E) { - throw FileIException(inMemFunc("getFileName"), E.getDetailMsg()); + catch (IdComponentException& E) { + throwException("getFileName", E.getDetailMsg()); } } @@ -473,15 +488,20 @@ H5std_string H5Location::getFileName() const // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by location. /// -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Aug, 2017 +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// August 2017 //-------------------------------------------------------------------------- void H5Location::getObjectInfo(H5O_info_t *objinfo) const { herr_t ret_value = H5Oget_info(getId(), objinfo); if (ret_value < 0) { - throw LocationException(inMemFunc("getObjectInfo"), "H5Oget_info failed"); + throwException("getObjectInfo", "H5Oget_info failed"); } } @@ -489,8 +509,13 @@ void H5Location::getObjectInfo(H5O_info_t *objinfo) const // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by name. /// -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Aug, 2017 +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// August 2017 //-------------------------------------------------------------------------- void H5Location::getObjectInfo(const char *name, H5O_info_t *objinfo, const LinkAccPropList& lapl) const @@ -498,7 +523,7 @@ void H5Location::getObjectInfo(const char *name, H5O_info_t *objinfo, herr_t ret_value = H5Oget_info_by_name(getId(), name, objinfo, lapl.getId()); if (ret_value < 0) { - throw LocationException(inMemFunc("getObjectInfo"), "H5Oget_info_by_name failed"); + throwException("getObjectInfo", "H5Oget_info_by_name failed"); } } @@ -506,8 +531,13 @@ void H5Location::getObjectInfo(const char *name, H5O_info_t *objinfo, // Function: H5Location::getObjectInfo ///\brief Retrieve information about an object, specified by name. /// -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Aug, 2017 +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// August 2017 //-------------------------------------------------------------------------- void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, const LinkAccPropList& lapl) const @@ -515,7 +545,7 @@ void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, herr_t ret_value = H5Oget_info_by_name(getId(), name.c_str(), objinfo, lapl.getId()); if (ret_value < 0) { - throw LocationException(inMemFunc("getObjectInfo"), "H5Oget_info_by_name failed"); + throwException("getObjectInfo", "H5Oget_info_by_name failed"); } } @@ -525,14 +555,16 @@ void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, ///\return Object version, which can have the following values: /// \li \c H5O_VERSION_1 /// \li \c H5O_VERSION_2 -///\exception H5::LocationException +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException /// Exception will be thrown when: /// - an error returned by the C API /// - version number is not one of the valid values above -// Programmer Binh-Minh Ribler - May, 2017 -// Developer's Note -// Maybe, this should be moved to H5Object because H5Oget_info is -// supposed to take an object ID, so it shouldn't be a location. +// August 2017 //-------------------------------------------------------------------------- unsigned H5Location::objVersion() const { @@ -544,13 +576,13 @@ unsigned H5Location::objVersion() const // Throw exception if C API returns failure if (ret_value < 0) - throw LocationException(inMemFunc("objVersion"), "H5Oget_info failed"); + throwException("objVersion", "H5Oget_info failed"); // Return a valid version or throw an exception for invalid value else { version = objinfo.hdr.version; if (version != H5O_VERSION_1 && version != H5O_VERSION_2) - throw LocationException(inMemFunc("objVersion"), "Invalid version for object"); + throwException("objVersion", "Invalid version for object"); } return(version); } @@ -560,7 +592,12 @@ unsigned H5Location::objVersion() const ///\brief Sets or resets the comment for an object specified by its name. ///\param name - IN: Name of the object ///\param comment - IN: New comment -///\exception H5::LocationException +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException ///\par Description /// If \a comment is an empty string or a null pointer, the comment /// message is removed from the object. @@ -568,18 +605,15 @@ unsigned H5Location::objVersion() const /// strings. They can be attached to any object that has an /// object header, e.g., data sets, groups, named data types, /// and data spaces, but not symbolic links. -// Programmer Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013) +// July 2004 // Modification -// 2007: QAK modified to use H5O APIs; however the first parameter is -// no longer just file or group, this function should be moved -// to another class to accommodate attribute, dataset, and named -// datatype. - BMR +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- void H5Location::setComment(const char* name, const char* comment) const { herr_t ret_value = H5Oset_comment_by_name(getId(), name, comment, H5P_DEFAULT); if(ret_value < 0) - throw LocationException(inMemFunc("setComment"), "H5Oset_comment_by_name failed"); + throwException("setComment", "H5Oset_comment_by_name failed"); } //-------------------------------------------------------------------------- @@ -587,7 +621,9 @@ void H5Location::setComment(const char* name, const char* comment) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a name and \a comment. -// Programmer Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013) +// July 2004 +// Modification +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- void H5Location::setComment(const H5std_string& name, const H5std_string& comment) const { @@ -599,14 +635,19 @@ void H5Location::setComment(const H5std_string& name, const H5std_string& commen ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it doesn't take /// an object name. -// Programmer Binh-Minh Ribler - Sep 2013 -// Modification +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// Sep 2013 //-------------------------------------------------------------------------- void H5Location::setComment(const char* comment) const { herr_t ret_value = H5Oset_comment_by_name(getId(), ".", comment, H5P_DEFAULT); if(ret_value < 0) - throw LocationException(inMemFunc("setComment"), "H5Oset_comment_by_name failed"); + throwException("setComment", "H5Oset_comment_by_name failed"); } //-------------------------------------------------------------------------- @@ -614,7 +655,7 @@ void H5Location::setComment(const char* comment) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a comment. -// Programmer Binh-Minh Ribler - Sep 2013 +// Sep 2013 //-------------------------------------------------------------------------- void H5Location::setComment(const H5std_string& comment) const { @@ -625,18 +666,21 @@ void H5Location::setComment(const H5std_string& comment) const // Function: H5Location::removeComment ///\brief Removes the comment from an object specified by its name. ///\param name - IN: Name of the object -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - May 2005 (moved from CommonFG, Sep 2013) -// 2007: QAK modified to use H5O APIs; however the first parameter is -// no longer just file or group, this function should be moved -// to another class to accommodate attribute, dataset, and named -// datatype. - BMR +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// July 2004 +// Modification +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- void H5Location::removeComment(const char* name) const { herr_t ret_value = H5Oset_comment_by_name(getId(), name, NULL, H5P_DEFAULT); if(ret_value < 0) - throw LocationException(inMemFunc("removeComment"), "H5Oset_comment_by_name failed"); + throwException("removeComment", "H5Oset_comment_by_name failed"); } //-------------------------------------------------------------------------- @@ -644,11 +688,13 @@ void H5Location::removeComment(const char* name) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a name. -// Programmer Binh-Minh Ribler - May 2005 (moved from CommonFG, Sep 2013) +// July 2004 +// Modification +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- void H5Location::removeComment(const H5std_string& name) const { - removeComment (name.c_str()); + removeComment(name.c_str()); } //-------------------------------------------------------------------------- @@ -658,13 +704,18 @@ void H5Location::removeComment(const H5std_string& name) const ///\param buf_size - IN: Length of the comment to retrieve ///\param comment - OUT: Retrieved comment ///\return Actual length of the comment -///\exception H5::LocationException +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException ///\par Description /// This function retrieves \a buf_size characters of the comment /// including the null terminator. Thus, if the actual length /// of the comment is more than buf_size-1, the retrieved comment /// will be truncated to accommodate the null terminator. -// Programmer Binh-Minh Ribler - Mar 2014 +// March 2014 //-------------------------------------------------------------------------- ssize_t H5Location::getComment(const char* name, size_t buf_size, char* comment) const { @@ -676,7 +727,7 @@ ssize_t H5Location::getComment(const char* name, size_t buf_size, char* comment) // If H5Oget_comment_by_name returns a negative value, raise an exception if (comment_len < 0) { - throw LocationException(inMemFunc("getComment"), "H5Oget_comment_by_name failed"); + throwException("getComment", "H5Oget_comment_by_name failed"); } // If the comment is longer than the provided buffer size, the C library // will not null terminate it @@ -694,8 +745,15 @@ ssize_t H5Location::getComment(const char* name, size_t buf_size, char* comment) ///\param name - IN: Name of the object ///\param buf_size - IN: Length of the comment to retrieve, default to 0 ///\return Comment string -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013) +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// July 2004 +// Modification +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- H5std_string H5Location::getComment(const char* name, size_t buf_size) const { @@ -709,7 +767,7 @@ H5std_string H5Location::getComment(const char* name, size_t buf_size) const // If H5Oget_comment_by_name returns a negative value, raise an exception if (comment_len < 0) { - throw LocationException(inMemFunc("getComment"), "H5Oget_comment_by_name failed"); + throwException("getComment", "H5Oget_comment_by_name failed"); } // If comment exists, calls C routine again to get it @@ -730,7 +788,7 @@ H5std_string H5Location::getComment(const char* name, size_t buf_size) const if (temp_len < 0) { delete []comment_C; - throw LocationException(inMemFunc("getComment"), "H5Oget_comment_by_name failed"); + throwException("getComment", "H5Oget_comment_by_name failed"); } // Convert the C comment to return @@ -749,7 +807,9 @@ H5std_string H5Location::getComment(const char* name, size_t buf_size) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a name. -// Programmer Binh-Minh Ribler - 2000 (moved from CommonFG, Sep 2013) +// July 2004 +// Modification +// Moved from CommonFG, Sep 2013 //-------------------------------------------------------------------------- H5std_string H5Location::getComment(const H5std_string& name, size_t buf_size) const { @@ -760,21 +820,25 @@ H5std_string H5Location::getComment(const H5std_string& name, size_t buf_size) c // Function: H5Location::openObjId ///\brief Opens an object without knowing the object type. ///\param obj_name - IN: Path to the object -///\param lapl - IN: Access property list for the link pointing -/// to the object -///\exception H5::LocationException +///\param lapl - IN: Access plist for the link pointing to the object +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException ///\par Description /// This function opens an object at this location, using /// H5Oopen. Thus, an object can be opened without knowing -/// the object's type. -// Programmer Binh-Minh Ribler - May, 2017 +/// its type. +// May 2017 //-------------------------------------------------------------------------- hid_t H5Location::openObjId(const char* obj_name, const LinkAccPropList& lapl) const { hid_t ret_value = H5Oopen(getId(), obj_name, lapl.getId()); if (ret_value < 0) { - throw LocationException(inMemFunc("openObjId"), "H5Oopen failed"); + throwException("openObjId", "H5Oopen failed"); } return(ret_value); } @@ -787,7 +851,7 @@ hid_t H5Location::openObjId(const char* obj_name, const LinkAccPropList& lapl) c ///\param lapl - IN: Access property list for the link pointing to /// the object ///\exception H5::LocationException -// Programmer Binh-Minh Ribler - May, 2017 +// May 2017 //-------------------------------------------------------------------------- hid_t H5Location::openObjId(const H5std_string& obj_name, const LinkAccPropList& lapl) const { @@ -799,14 +863,14 @@ hid_t H5Location::openObjId(const H5std_string& obj_name, const LinkAccPropList& ///\brief Closes an object, which was opened with H5Location::openObjId /// ///\exception H5::LocationException -// May, 2017 +// May 2017 //-------------------------------------------------------------------------- void H5Location::closeObjId(hid_t obj_id) { herr_t ret_value = H5Oclose(obj_id); if (ret_value < 0) { - throw Exception("closeObjId", "H5Oclose failed"); + throw LocationException("closeObjId", "H5Oclose failed"); } } diff --git a/c++/src/H5Object.cpp b/c++/src/H5Object.cpp index 8fe8e56..4697d9c 100644 --- a/c++/src/H5Object.cpp +++ b/c++/src/H5Object.cpp @@ -11,6 +11,12 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +#ifdef OLD_HEADER_FILENAME +#include +#else +#include +#endif + #include #include "H5private.h" // for HDmemset @@ -28,6 +34,11 @@ namespace H5 { +#ifndef H5_NO_STD + using std::cerr; + using std::endl; +#endif // H5_NO_STD + #ifndef DOXYGEN_SHOULD_SKIP_THIS // userAttrOpWrpr simply interfaces between the user's function and the // C library function H5Aiterate2; used to resolve the different prototype @@ -299,10 +310,10 @@ void H5Object::renameAttr(const H5std_string& oldname, const H5std_string& newna //-------------------------------------------------------------------------- int H5Object::getNumAttrs() const { - H5O_info_t oinfo; /* Object info */ + H5O_info_t oinfo; /* Object info */ if(H5Oget_info(getId(), &oinfo) < 0) - throw AttributeIException(inMemFunc("getNumAttrs"), "H5Oget_info failed"); + throwException("getNumAttrs", "H5Oget_info failed"); else return(static_cast(oinfo.num_attrs)); } @@ -321,11 +332,11 @@ ssize_t H5Object::getObjName(char *obj_name, size_t buf_size) const // If H5Iget_name returns a negative value, raise an exception if (name_size < 0) { - throw Exception(inMemFunc("getObjName"), "H5Iget_name failed"); + throwException("getObjName", "H5Iget_name failed"); } else if (name_size == 0) { - throw Exception(inMemFunc("getObjName"), "Object must have a name, but name length is 0"); + throwException("getObjName", "Object must have a name, but name length is 0"); } // Return length of the name return(name_size); @@ -337,7 +348,6 @@ ssize_t H5Object::getObjName(char *obj_name, size_t buf_size) const ///\return Name of the object ///\exception H5::Exception // Programmer Binh-Minh Ribler - Mar, 2014 -// Modification //-------------------------------------------------------------------------- H5std_string H5Object::getObjName() const { @@ -349,11 +359,11 @@ H5std_string H5Object::getObjName() const // If H5Iget_name failed, throw exception if (name_size < 0) { - throw Exception(inMemFunc("getObjName"), "H5Iget_name failed"); + throwException("getObjName", "H5Iget_name failed"); } else if (name_size == 0) { - throw Exception(inMemFunc("getObjName"), "Object must have a name, but name length is 0"); + throwException("getObjName", "Object must have a name, but name length is 0"); } // Object's name exists, retrieve it else if (name_size > 0) diff --git a/c++/src/H5Object.h b/c++/src/H5Object.h index afeea7d..4d40415 100644 --- a/c++/src/H5Object.h +++ b/c++/src/H5Object.h @@ -48,6 +48,9 @@ class H5_DLLCPP H5Object : public H5Location { // Given its index, opens the attribute that belongs to this object. Attribute openAttribute(const unsigned int idx) const; + // Determines the number of attributes belong to this object. + int getNumAttrs() const; + // Checks whether the named attribute exists for this object. bool attrExists(const char* name) const; bool attrExists(const H5std_string& name) const; @@ -60,9 +63,6 @@ class H5_DLLCPP H5Object : public H5Location { void removeAttr(const char* name) const; void removeAttr(const H5std_string& name) const; - // Determines the number of attributes belong to this object. - int getNumAttrs() const; - // Gets the name of this HDF5 object, i.e., Group, DataSet, or // DataType. ssize_t getObjName(char *obj_name, size_t buf_size = 0) const; diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index 6237e2b..79749d8 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -25,7 +25,7 @@ namespace H5 { // Function: StrCreatPropList::setCharEncoding ///\brief Sets the character encoding of the string. ///\exception H5::PropListIException -// March, 2018 +// March 2018 //-------------------------------------------------------------------------- void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const { @@ -33,7 +33,7 @@ void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const // Throw exception if H5Pset_char_encoding returns failure if (ret_value < 0) { - throw PropListIException("setCharEncoding", "H5Pset_char_encoding failed"); + throw PropListIException("StrCreatPropList::setCharEncoding", "H5Pset_char_encoding failed"); } } @@ -41,7 +41,7 @@ void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const // Function: StrCreatPropList::getCharEncoding ///\brief Gets the character encoding of the string. ///\exception H5::PropListIException -// March, 2018 +// March 2018 //-------------------------------------------------------------------------- H5T_cset_t StrCreatPropList::getCharEncoding() const { @@ -50,7 +50,7 @@ H5T_cset_t StrCreatPropList::getCharEncoding() const // Throw exception if H5Pget_char_encoding returns failure if (ret_value < 0) { - throw PropListIException("getCharEncoding", "H5Pget_char_encoding failed"); + throw PropListIException("StrCreatPropList::getCharEncoding", "H5Pget_char_encoding failed"); } return(encoding); } diff --git a/c++/test/dsets.cpp b/c++/test/dsets.cpp index 8d2618b..0a187ef 100644 --- a/c++/test/dsets.cpp +++ b/c++/test/dsets.cpp @@ -68,6 +68,8 @@ static size_t filter_bogus(unsigned int flags, size_t cd_nelmts, * *------------------------------------------------------------------------- */ +const H5std_string DSET_COMMENT ("This is a dataset"); +const H5std_string NON_EXISTING_DSET ("does_not_exist"); static herr_t test_create( H5File& file) { @@ -83,13 +85,12 @@ test_create( H5File& file) DataSpace space (2, dims, NULL); // Create a dataset using the default dataset creation properties. - // We're not sure what they are, so we won't check. dataset = new DataSet (file.createDataSet (DSET_DEFAULT_NAME, PredType::NATIVE_DOUBLE, space)); // Add a comment to the dataset - file.setComment (DSET_DEFAULT_NAME, "This is a dataset"); + file.setComment (DSET_DEFAULT_NAME, DSET_COMMENT); // Close the dataset delete dataset; @@ -120,7 +121,7 @@ test_create( H5File& file) // Get and verify the comment from this dataset, using // H5std_string getComment(const H5std_string& name, ) H5std_string comment = file.getComment(DSET_DEFAULT_NAME); - verify_val(comment, "This is a dataset", "DataSet::getComment", __LINE__, __FILE__); + verify_val(comment, DSET_COMMENT, "DataSet::getComment", __LINE__, __FILE__); // Close the dataset when accessing is completed delete dataset; @@ -132,24 +133,24 @@ test_create( H5File& file) // exception is not thrown for this action by openDataSet, then // display failure information and throw an exception. try { - dataset = new DataSet (file.openDataSet( "does_not_exist" )); + dataset = new DataSet (file.openDataSet(NON_EXISTING_DSET)); // continuation here, that means no exception has been thrown throw InvalidActionException("H5File::openDataSet", "Attempted to open a non-existent dataset"); } - catch (FileIException& E ) // catching creating non-existent dataset + catch (FileIException& E ) // catching opening non-existent dataset {} // do nothing, exception expected - // Create a new dataset that uses chunked storage instead of the default - // layout. + // Create a new dataset that uses chunked storage instead of the + // default layout. DSetCreatPropList create_parms; - hsize_t csize[2]; + hsize_t csize[2]; csize[0] = 5; csize[1] = 100; create_parms.setChunk( 2, csize ); dataset = new DataSet (file.createDataSet - (DSET_CHUNKED_NAME, PredType::NATIVE_DOUBLE, space, create_parms)); + (DSET_CHUNKED_NAME, PredType::NATIVE_DOUBLE, space, create_parms)); // Note: this one has no error message in C when failure occurs? // clean up and return with success diff --git a/c++/test/tattr.cpp b/c++/test/tattr.cpp index d97d478..25b5ff8 100644 --- a/c++/test/tattr.cpp +++ b/c++/test/tattr.cpp @@ -653,7 +653,8 @@ static void test_attr_compound_read() verify_val((long)dims[1], (long)ATTR4_DIM2, "DataSpace::getSimpleExtentDims",__LINE__, __FILE__); // Get the class of the datatype that is used by attr - H5T_class_t type_class = attr.getTypeClass(); + H5T_class_t type_class; + type_class = attr.getTypeClass(); // Verify that the type is of compound datatype verify_val(type_class, H5T_COMPOUND, "Attribute::getTypeClass", __LINE__, __FILE__); @@ -1289,6 +1290,7 @@ static void test_attr_dtype_shared() // Retrieve and verify information about the type H5O_info_t oinfo; + dtype.getObjectInfo(TYPE1_NAME, &oinfo); fid1.getObjectInfo(TYPE1_NAME, &oinfo); if (oinfo.type != H5O_TYPE_NAMED_DATATYPE) TestErrPrintf("Line %d: object type wrong!\n", __LINE__); @@ -1402,6 +1404,14 @@ static void test_attr_dtype_shared() PASSED(); } // end try block + catch (DataTypeIException& E) + { + issue_fail_msg("test_attr_dtype_shared()", __LINE__, __FILE__, E.getCDetailMsg()); + } + catch (FileIException& E) + { + issue_fail_msg("test_attr_dtype_shared()", __LINE__, __FILE__, E.getCDetailMsg()); + } catch (Exception& E) { issue_fail_msg("test_attr_dtype_shared()", __LINE__, __FILE__, E.getCDetailMsg()); diff --git a/c++/test/tfile.cpp b/c++/test/tfile.cpp index 23cf280..d5278d5 100644 --- a/c++/test/tfile.cpp +++ b/c++/test/tfile.cpp @@ -497,15 +497,10 @@ static void test_file_name() comp_type.getFileName(); verify_val(file_name, FILE4, "CompType::getFileName", __LINE__, __FILE__); - /* file4.close(); -file4.openFile(FILE4, H5F_ACC_RDWR); - */ // Get the file's version information. H5F_info_t finfo; - file4.getFileInfo(finfo); // there's no C test for H5Fget_info - /* cerr << "file4: super_ext_size = " << finfo.super_ext_size << endl; - */ - //verify_val(finfo.sohm.hdr_size, 0, "H5File::getFileInfo", __LINE__, __FILE__); + file4.getFileInfo(finfo); + verify_val(finfo.sohm.hdr_size, 0, "H5File::getFileInfo", __LINE__, __FILE__); PASSED(); } // end of try block @@ -642,6 +637,11 @@ static void test_file_attribute() PASSED(); } // end of try block + // Catch creating existing attribute + catch (AttributeIException& E) + {} // do nothing, exception expected + + // Catch all other exceptions catch (Exception& E) { issue_fail_msg("test_file_attribute()", __LINE__, __FILE__, E.getCDetailMsg()); diff --git a/c++/test/tlinks.cpp b/c++/test/tlinks.cpp index b38ed39..356bc1b 100644 --- a/c++/test/tlinks.cpp +++ b/c++/test/tlinks.cpp @@ -326,11 +326,9 @@ static const char *FILENAME[] = { * Purpose: Test building a file with assorted links. * * Return: Success: 0 - * * Failure: -1 * - * Programmer: Binh-Minh Ribler - * October 16, 2009 + * October, 2009 * *------------------------------------------------------------------------- */ @@ -369,7 +367,6 @@ static void test_basic_links(hid_t fapl_id, hbool_t new_format) // Because these are not implemented in the C++ API yet, they are // used so CommonFG::getLinkval can be tested. - // Create a hard link if(H5Lcreate_hard( file_id, "dset1", H5L_SAME_LOC, "grp1/hard1", H5P_DEFAULT, H5P_DEFAULT) < 0) @@ -433,7 +430,7 @@ static void test_basic_links(hid_t fapl_id, hbool_t new_format) { issue_fail_msg("test_basic_links()", __LINE__, __FILE__, E.getCDetailMsg()); } -} +} // test_basic_links /*------------------------------------------------------------------------- * Function: test_num_links @@ -441,12 +438,9 @@ static void test_basic_links(hid_t fapl_id, hbool_t new_format) * Purpose: Test setting and getting limit of number of links * * Return: Success: 0 - * * Failure: -1 * - * Programmer: Binh-Minh Ribler - * Mar, 2017 - * + * March, 2017 *------------------------------------------------------------------------- */ static void test_num_links(hid_t fapl_id, hbool_t new_format) @@ -535,9 +529,12 @@ void test_links() test_basic_links(my_fapl_id, new_format); test_num_links(my_fapl_id, new_format); #if 0 + // these tests are from the C test links.c and left here for future // implementation of H5L API - nerrors += test_basic_links(fapl_id, new_format) < 0 ? 1 : 0; + test_move(my_fapl_id, new_format); + test_copy(my_fapl_id, new_format); + test_lcpl(my_fapl_id, new_format); nerrors += cklinks(my_fapl, new_format) < 0 ? 1 : 0; nerrors += new_links(my_fapl, new_format) < 0 ? 1 : 0; nerrors += ck_new_links(my_fapl, new_format) < 0 ? 1 : 0; @@ -545,9 +542,6 @@ void test_links() nerrors += toomany(my_fapl, new_format) < 0 ? 1 : 0; /* Test new H5L link creation routine */ - nerrors += test_lcpl(my_fapl, new_format); - nerrors += test_move(my_fapl, new_format); - nerrors += test_copy(my_fapl, new_format); nerrors += test_move_preserves(my_fapl, new_format); #ifndef H5_NO_DEPRECATED_SYMBOLS nerrors += test_deprec(my_fapl, new_format); diff --git a/c++/test/tobject.cpp b/c++/test/tobject.cpp index 54d62f2..b5e9ff0 100644 --- a/c++/test/tobject.cpp +++ b/c++/test/tobject.cpp @@ -73,6 +73,19 @@ static void test_get_objname() Group grp1_1 = grp1.createGroup(GROUP1_1, 0); Group grp1_2 = grp1.createGroup(GROUP1_2, 0); + // Attempted to create a same group to generate a failure, which should + // be caught with sub-class exception clause, if available. + try { + Group grp1_2 = grp1.createGroup(GROUP1_2, 0); + } + catch (GroupIException& E) + {} // do nothing, exception expected + catch (Exception& E) + { + cerr << "Exception should have been caught by the previous catch" << endl; + issue_fail_msg("test_get_objname", __LINE__, __FILE__); + } + // Get part of the group's name, random length using // ssize_t getObjName(char* comment, size_t buf_size) @@ -302,6 +315,7 @@ static void test_get_objtype() *------------------------------------------------------------------------- */ const H5std_string GROUPNAME("group"); +const H5std_string NOGROUPNAME("non-existent-group"); const H5std_string DTYPENAME("group/datatype"); const H5std_string DTYPENAME_INGRP("datatype"); const H5std_string DSETNAME("dataset"); @@ -323,22 +337,25 @@ static void test_open_object_header() // Create a group in the root group Group grp(file1.createGroup(GROUPNAME)); - grp.close(); // Commit the type inside the file IntType dtype(PredType::NATIVE_INT); dtype.commit(file1, DTYPENAME); dtype.close(); - // Create a new dataset + // Create a new dataset in the file dims[0] = DIM0; dims[1] = DIM1; DataSpace dspace(RANK, dims); DataSet dset(file1.createDataSet(DSETNAME, PredType::NATIVE_INT, dspace)); - // Close dataset and dataspace + // Create a dataset in the group + DataSet dsingrp(grp.createDataSet(DSET_IN_GRP1, PredType::NATIVE_INT, dspace)); + + // Close dataset, dataspace, and group dset.close(); dspace.close(); + grp.close(); // Now make sure that openObjId can open all three types of objects hid_t obj_grp = file1.openObjId(GROUPNAME); @@ -357,12 +374,12 @@ static void test_open_object_header() Group grp2(obj_grp); hsize_t num_objs = grp2.getNumObjs(); - verify_val(num_objs, 1, "H5Gget_info", __LINE__, __FILE__); - // There should be one object, the datatype + verify_val(num_objs, 2, "H5Gget_info", __LINE__, __FILE__); // Close datatype object opened from the file H5Location::closeObjId(obj_dtype); + // Do a few things using the dset object identifier dset.setId(obj_dset); dspace = dset.getSpace(); bool is_simple = dspace.isSimple(); @@ -371,6 +388,7 @@ static void test_open_object_header() // Open datatype object from the group obj_dtype = grp2.openObjId(DTYPENAME_INGRP); + // Do a few things using the datatype object identifier dtype.setId(obj_dtype); H5T_class_t type_class = dtype.getClass(); verify_val(type_class, H5T_INTEGER, "H5Tget_class", __LINE__, __FILE__); @@ -384,11 +402,24 @@ static void test_open_object_header() // Try doing something with group, the ID should still work num_objs = grp2.getNumObjs(); - verify_val(num_objs, 1, "H5Gget_info", __LINE__, __FILE__); + verify_val(num_objs, 2, "H5Gget_info", __LINE__, __FILE__); // Close the cloned group grp2.close(); + // Attempted to open a non-existing group, which should + // be caught with sub-class exception clause, if available. + try { + Group grp3 = dsingrp.openObjId(NOGROUPNAME); + } + catch (DataSetIException& E) + {} // do nothing, exception expected and caught correctly + catch (Exception& E) + { + cerr << "Exception should have been caught by the previous catch" << endl; + issue_fail_msg("test_get_objname", __LINE__, __FILE__); + } + PASSED(); } // end of try block // catch invalid action exception @@ -401,7 +432,6 @@ static void test_open_object_header() // catch all other exceptions catch (Exception& E) { - cerr << " in Exception" << endl; issue_fail_msg("test_file_name()", __LINE__, __FILE__, E.getCDetailMsg()); } } /* test_open_object_header() */ @@ -454,7 +484,6 @@ static void test_is_valid() // catch all other exceptions catch (Exception& E) { - cerr << " in catch " << endl; issue_fail_msg("test_get_objtype", __LINE__, __FILE__, E.getCDetailMsg()); } } // test_is_valid -- cgit v0.12 From b1a6873b1021c967b661727edae9de87d194f744 Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Mon, 26 Feb 2018 18:31:40 -0800 Subject: Fix for HDFFV-10355 (CVE-2017-17506). (cherry picked from commit 302053f978e38a8d4306a7c1233cdf8fd2ec28dd) --- release_docs/RELEASE.txt | 19 +++ src/H5Abtree2.c | 4 +- src/H5Adense.c | 4 +- src/H5Gbtree2.c | 4 +- src/H5Gdense.c | 20 +-- src/H5HFcache.c | 2 +- src/H5Oainfo.c | 5 +- src/H5Oattr.c | 8 +- src/H5Obogus.c | 5 +- src/H5Obtreek.c | 5 +- src/H5Ocache_image.c | 377 +++++++++++++++++++++++++++++++++++++++++++ src/H5Ocont.c | 5 +- src/H5Odrvinfo.c | 5 +- src/H5Odtype.c | 4 +- src/H5Oefl.c | 5 +- src/H5Ofill.c | 10 +- src/H5Ofsinfo.c | 408 +++++++++++++++++++++++++++++++++++++++++++++++ src/H5Oginfo.c | 5 +- src/H5Olayout.c | 5 +- src/H5Olinfo.c | 5 +- src/H5Olink.c | 5 +- src/H5Omessage.c | 4 +- src/H5Omtime.c | 10 +- src/H5Oname.c | 5 +- src/H5Opkg.h | 4 +- src/H5Opline.c | 51 +++--- src/H5Oprivate.h | 2 +- src/H5Orefcount.c | 5 +- src/H5Osdspace.c | 5 +- src/H5Oshared.c | 2 +- src/H5Oshared.h | 8 +- src/H5Oshmesg.c | 5 +- src/H5Ostab.c | 5 +- src/H5S.c | 2 +- src/H5SM.c | 16 +- src/H5T.c | 13 +- src/H5Tprivate.h | 5 + 37 files changed, 948 insertions(+), 104 deletions(-) create mode 100644 src/H5Ocache_image.c create mode 100644 src/H5Ofsinfo.c diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index eb9f0d9..ebdb5f8 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -155,6 +155,25 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/02/06, HDFFV-10354) + - If an HDF5 file contains a filter pipeline message which contains + a 'number of filters' field that exceeds the actual number of + filters in the message, the HDF5 C library will read off the end of + the read buffer. + + This issue was reported to The HDF Group as issue #CVE-2017-17506. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + The problem was fixed by passing the buffer size with the buffer + and ensuring that the pointer cannot be incremented off the end + of the buffer. A mismatch between the number of filters declared + and the actual number of filters will now invoke normal HDF5 + error handling. + + (DER - 2018/02/26, HDFFV-10355) + Configuration ------------- - CMake diff --git a/src/H5Abtree2.c b/src/H5Abtree2.c index 33a031e..02fffce 100644 --- a/src/H5Abtree2.c +++ b/src/H5Abtree2.c @@ -162,7 +162,7 @@ const H5B2_class_t H5A_BT2_CORDER[1]={{ /* B-tree class information */ *------------------------------------------------------------------------- */ static herr_t -H5A_dense_fh_name_cmp(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5A__dense_fh_name_cmp(const void *obj, size_t obj_len, void *_udata) { H5A_fh_ud_cmp_t *udata = (H5A_fh_ud_cmp_t *)_udata; /* User data for 'op' callback */ H5A_t *attr = NULL; /* Pointer to attribute created from heap object */ @@ -172,7 +172,7 @@ H5A_dense_fh_name_cmp(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_uda FUNC_ENTER_NOAPI_NOINIT /* Decode attribute information */ - if(NULL == (attr = (H5A_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_ATTR_ID, (const unsigned char *)obj))) + if(NULL == (attr = (H5A_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_ATTR_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, FAIL, "can't decode attribute") /* Compare the string values */ diff --git a/src/H5Adense.c b/src/H5Adense.c index 291f422..ab159ff 100644 --- a/src/H5Adense.c +++ b/src/H5Adense.c @@ -843,7 +843,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5A__dense_copy_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5A__dense_copy_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5A_fh_ud_cp_t *udata = (H5A_fh_ud_cp_t *)_udata; /* User data for fractal heap 'op' callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -857,7 +857,7 @@ H5A__dense_copy_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_uda * HDF5 routine, it could attempt to re-protect that direct block for the * heap, causing the HDF5 routine called to fail) */ - if(NULL == (udata->attr = (H5A_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_ATTR_ID, (const unsigned char *)obj))) + if(NULL == (udata->attr = (H5A_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_ATTR_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_ATTR, H5E_CANTDECODE, FAIL, "can't decode attribute") /* Set the creation order index for the attribute */ diff --git a/src/H5Gbtree2.c b/src/H5Gbtree2.c index 888c611..d520484 100644 --- a/src/H5Gbtree2.c +++ b/src/H5Gbtree2.c @@ -159,7 +159,7 @@ const H5B2_class_t H5G_BT2_CORDER[1]={{ /* B-tree class information */ *------------------------------------------------------------------------- */ static herr_t -H5G_dense_fh_name_cmp(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_fh_name_cmp(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_cmp_t *udata = (H5G_fh_ud_cmp_t *)_udata; /* User data for 'op' callback */ H5O_link_t *lnk; /* Pointer to link created from heap object */ @@ -168,7 +168,7 @@ H5G_dense_fh_name_cmp(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_uda FUNC_ENTER_NOAPI_NOINIT /* Decode link information */ - if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode link") /* Compare the string values */ diff --git a/src/H5Gdense.c b/src/H5Gdense.c index 9ec8951..a43939e 100644 --- a/src/H5Gdense.c +++ b/src/H5Gdense.c @@ -597,7 +597,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5G_dense_lookup_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_lookup_by_idx_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_lbi_t *udata = (H5G_fh_ud_lbi_t *)_udata; /* User data for fractal heap 'op' callback */ H5O_link_t *tmp_lnk = NULL; /* Temporary pointer to link */ @@ -606,7 +606,7 @@ H5G_dense_lookup_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, vo FUNC_ENTER_NOAPI_NOINIT /* Decode link information & keep a copy */ - if(NULL == (tmp_lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (tmp_lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode link") /* Copy link information */ @@ -887,7 +887,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5G_dense_iterate_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_iterate_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_it_t *udata = (H5G_fh_ud_it_t *)_udata; /* User data for fractal heap 'op' callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -901,7 +901,7 @@ H5G_dense_iterate_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_u * HDF5 routine, it could attempt to re-protect that direct block for the * heap, causing the HDF5 routine called to fail - QAK) */ - if(NULL == (udata->lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (udata->lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode link") done: @@ -1099,7 +1099,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5G_dense_get_name_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_get_name_by_idx_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_gnbi_t *udata = (H5G_fh_ud_gnbi_t *)_udata; /* User data for fractal heap 'op' callback */ H5O_link_t *lnk; /* Pointer to link created from heap object */ @@ -1108,7 +1108,7 @@ H5G_dense_get_name_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, FUNC_ENTER_NOAPI_NOINIT /* Decode link information */ - if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode link") /* Get the length of the name */ @@ -1306,7 +1306,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5G_dense_remove_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_remove_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_rm_t *udata = (H5G_fh_ud_rm_t *)_udata; /* User data for fractal heap 'op' callback */ H5O_link_t *lnk = NULL; /* Pointer to link created from heap object */ @@ -1316,7 +1316,7 @@ H5G_dense_remove_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_ud FUNC_ENTER_NOAPI_NOINIT /* Decode link information */ - if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode link") /* Check for removing the link from the creation order index */ @@ -1483,7 +1483,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5G_dense_remove_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, void *_udata) +H5G_dense_remove_by_idx_fh_cb(const void *obj, size_t obj_len, void *_udata) { H5G_fh_ud_rmbi_t *udata = (H5G_fh_ud_rmbi_t *)_udata; /* User data for fractal heap 'op' callback */ herr_t ret_value = SUCCEED; /* Return value */ @@ -1491,7 +1491,7 @@ H5G_dense_remove_by_idx_fh_cb(const void *obj, size_t H5_ATTR_UNUSED obj_len, vo FUNC_ENTER_NOAPI_NOINIT /* Decode link information */ - if(NULL == (udata->lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, (const unsigned char *)obj))) + if(NULL == (udata->lnk = (H5O_link_t *)H5O_msg_decode(udata->f, udata->dxpl_id, NULL, H5O_LINK_ID, obj_len, (const unsigned char *)obj))) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, H5_ITER_ERROR, "can't decode link") /* Can't operate on link here because the fractal heap block is locked */ diff --git a/src/H5HFcache.c b/src/H5HFcache.c index f0d251c..319a865 100644 --- a/src/H5HFcache.c +++ b/src/H5HFcache.c @@ -384,7 +384,7 @@ H5HF_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata) UINT32DECODE(p, hdr->pline_root_direct_filter_mask); /* Decode I/O filter information */ - if(NULL == (pline = (H5O_pline_t *)H5O_msg_decode(hdr->f, udata->dxpl_id, NULL, H5O_PLINE_ID, p))) + if(NULL == (pline = (H5O_pline_t *)H5O_msg_decode(hdr->f, udata->dxpl_id, NULL, H5O_PLINE_ID, len, image))) HGOTO_ERROR(H5E_HEAP, H5E_CANTDECODE, NULL, "can't decode I/O pipeline filters") p += hdr->filter_len; diff --git a/src/H5Oainfo.c b/src/H5Oainfo.c index e85df44..5aab4c6 100644 --- a/src/H5Oainfo.c +++ b/src/H5Oainfo.c @@ -34,7 +34,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_ainfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_ainfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_ainfo_copy(const void *_mesg, void *_dest); static size_t H5O_ainfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -104,7 +104,8 @@ H5FL_DEFINE_STATIC(H5O_ainfo_t); */ static void * H5O_ainfo_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_ainfo_t *ainfo = NULL; /* Attribute info */ unsigned char flags; /* Flags for encoding attribute info */ diff --git a/src/H5Oattr.c b/src/H5Oattr.c index 149f04a..c2c0fe3 100644 --- a/src/H5Oattr.c +++ b/src/H5Oattr.c @@ -26,7 +26,7 @@ /* PRIVATE PROTOTYPES */ static herr_t H5O_attr_encode(H5F_t *f, uint8_t *p, const void *mesg); static void *H5O_attr_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static void *H5O_attr_copy(const void *_mesg, void *_dest); static size_t H5O_attr_size(const H5F_t *f, const void *_mesg); static herr_t H5O_attr_free(void *mesg); @@ -121,7 +121,7 @@ H5FL_EXTERN(H5S_extent_t); --------------------------------------------------------------------------*/ static void * H5O_attr_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned H5_ATTR_UNUSED mesg_flags, - unsigned *ioflags, const uint8_t *p) + unsigned *ioflags, size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5A_t *attr = NULL; H5S_extent_t *extent; /*extent dimensionality information */ @@ -182,7 +182,7 @@ H5O_attr_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned H5_ATTR_UNUSED /* Decode the attribute's datatype */ if(NULL == (attr->shared->dt = (H5T_t *)(H5O_MSG_DTYPE->decode)(f, dxpl_id, open_oh, - ((flags & H5O_ATTR_FLAG_TYPE_SHARED) ? H5O_MSG_FLAG_SHARED : 0), ioflags, p))) + ((flags & H5O_ATTR_FLAG_TYPE_SHARED) ? H5O_MSG_FLAG_SHARED : 0), ioflags, attr->shared->dt_size, p))) HGOTO_ERROR(H5E_ATTR, H5E_CANTDECODE, NULL, "can't decode attribute datatype") if(attr->shared->version < H5O_ATTR_VERSION_2) p += H5O_ALIGN_OLD(attr->shared->dt_size); @@ -197,7 +197,7 @@ H5O_attr_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned H5_ATTR_UNUSED /* Decode attribute's dataspace extent */ if((extent = (H5S_extent_t *)(H5O_MSG_SDSPACE->decode)(f, dxpl_id, open_oh, - ((flags & H5O_ATTR_FLAG_SPACE_SHARED) ? H5O_MSG_FLAG_SHARED : 0), ioflags, p)) == NULL) + ((flags & H5O_ATTR_FLAG_SPACE_SHARED) ? H5O_MSG_FLAG_SHARED : 0), ioflags, attr->shared->ds_size, p)) == NULL) HGOTO_ERROR(H5E_ATTR, H5E_CANTDECODE, NULL, "can't decode attribute dataspace") /* Copy the extent information to the dataspace */ diff --git a/src/H5Obogus.c b/src/H5Obogus.c index 7a058b2..ba9a8ad 100644 --- a/src/H5Obogus.c +++ b/src/H5Obogus.c @@ -37,7 +37,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_bogus_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_bogus_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static size_t H5O_bogus_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); static herr_t H5O_bogus_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, FILE * stream, @@ -110,7 +110,8 @@ const H5O_msg_class_t H5O_MSG_BOGUS_INVALID[1] = {{ */ static void * H5O_bogus_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_bogus_t *mesg = NULL; void *ret_value; /* Return value */ diff --git a/src/H5Obtreek.c b/src/H5Obtreek.c index 70aacc7..6bcdcc3 100644 --- a/src/H5Obtreek.c +++ b/src/H5Obtreek.c @@ -27,7 +27,7 @@ #include "H5MMprivate.h" /* Memory management */ static void *H5O_btreek_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_btreek_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_btreek_copy(const void *_mesg, void *_dest); static size_t H5O_btreek_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -78,7 +78,8 @@ const H5O_msg_class_t H5O_MSG_BTREEK[1] = {{ */ static void * H5O_btreek_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_btreek_t *mesg; /* Native message */ void *ret_value; /* Return value */ diff --git a/src/H5Ocache_image.c b/src/H5Ocache_image.c new file mode 100644 index 0000000..d2b65bb --- /dev/null +++ b/src/H5Ocache_image.c @@ -0,0 +1,377 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/*------------------------------------------------------------------------- + * + * Created: H5Ocache_image.c + * June 21, 2015 + * John Mainzer + * + * Purpose: A message indicating that a metadata cache image block + * of the indicated length exists at the specified offset + * in the HDF5 file. + * + * The mdci_msg only appears in the superblock extension. + * + *------------------------------------------------------------------------- + */ + +#include "H5Omodule.h" /* This source code file is part of the H5O module */ + + +#include "H5private.h" /* Generic Functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Fprivate.h" /* Files */ +#include "H5FLprivate.h" /* Free Lists */ +#include "H5Opkg.h" /* Object headers */ +#include "H5MFprivate.h" /* File space management */ + +/* Callbacks for message class */ +static void *H5O__mdci_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); +static herr_t H5O__mdci_encode(H5F_t *f, hbool_t disable_shared, + uint8_t *p, const void *_mesg); +static void *H5O__mdci_copy(const void *_mesg, void *_dest); +static size_t H5O__mdci_size(const H5F_t *f, hbool_t disable_shared, + const void *_mesg); +static herr_t H5O__mdci_free(void *mesg); +static herr_t H5O__mdci_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, + void *_mesg); +static herr_t H5O__mdci_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, + FILE *stream, int indent, int fwidth); + +/* This message derives from H5O message class */ +const H5O_msg_class_t H5O_MSG_MDCI[1] = {{ + H5O_MDCI_MSG_ID, /* message id number */ + "mdci", /* message name for debugging */ + sizeof(H5O_mdci_t), /* native message size */ + 0, /* messages are sharable? */ + H5O__mdci_decode, /* decode message */ + H5O__mdci_encode, /* encode message */ + H5O__mdci_copy, /* copy method */ + H5O__mdci_size, /* size of mdc image message */ + NULL, /* reset method */ + H5O__mdci_free, /* free method */ + H5O__mdci_delete, /* file delete method */ + NULL, /* link method */ + NULL, /* set share method */ + NULL, /* can share method */ + NULL, /* pre copy native value to file */ + NULL, /* copy native value to file */ + NULL, /* post copy native value to file */ + NULL, /* get creation index */ + NULL, /* set creation index */ + H5O__mdci_debug /* debugging */ +}}; + +/* Only one version of the metadata cache image message at present */ +#define H5O_MDCI_VERSION_0 0 + +/* Declare the free list for H5O_mdci_t's */ +H5FL_DEFINE(H5O_mdci_t); + + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_decode + * + * Purpose: Decode a metadata cache image message and return a + * pointer to a newly allocated H5O_mdci_t struct. + * + * Return: Success: Ptr to new message in native struct. + * Failure: NULL + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static void * +H5O__mdci_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, + H5O_t H5_ATTR_UNUSED *open_oh, unsigned H5_ATTR_UNUSED mesg_flags, + unsigned H5_ATTR_UNUSED *ioflags, size_t H5_ATTR_UNUSED p_size, const uint8_t *p) +{ + H5O_mdci_t *mesg; /* Native message */ + void *ret_value = NULL; /* Return value */ + + FUNC_ENTER_STATIC + + /* Sanity check */ + HDassert(f); + HDassert(p); + + /* Version of message */ + if(*p++ != H5O_MDCI_VERSION_0) + HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "bad version number for message") + + /* Allocate space for message */ + if(NULL == (mesg = (H5O_mdci_t *)H5FL_MALLOC(H5O_mdci_t))) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed for metadata cache image message") + + /* Decode */ + H5F_addr_decode(f, &p, &(mesg->addr)); + H5F_DECODE_LENGTH(f, p, mesg->size); + + /* Set return value */ + ret_value = (void *)mesg; + +done: + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O__mdci_decode() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_encode + * + * Purpose: Encode metadata cache image message + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O__mdci_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, + uint8_t *p, const void *_mesg) +{ + const H5O_mdci_t *mesg = (const H5O_mdci_t *)_mesg; + + FUNC_ENTER_STATIC_NOERR + + /* Sanity check */ + HDassert(f); + HDassert(p); + HDassert(mesg); + + /* encode */ + *p++ = H5O_MDCI_VERSION_0; + H5F_addr_encode(f, &p, mesg->addr); + H5F_ENCODE_LENGTH(f, p, mesg->size); + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O__mdci_encode() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_copy + * + * Purpose: Copies a message from _MESG to _DEST, allocating _DEST if + * necessary. + * + * Return: Success: Ptr to _DEST + * Failure: NULL + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static void * +H5O__mdci_copy(const void *_mesg, void *_dest) +{ + const H5O_mdci_t *mesg = (const H5O_mdci_t *)_mesg; + H5O_mdci_t *dest = (H5O_mdci_t *) _dest; + void *ret_value = NULL; /* Return value */ + + FUNC_ENTER_STATIC + + /* check args */ + HDassert(mesg); + if(!dest && NULL == (dest = H5FL_MALLOC(H5O_mdci_t))) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + + /* copy */ + *dest = *mesg; + + /* Set return value */ + ret_value = dest; + +done: + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O_mdci__copy() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_size + * + * Purpose: Returns the size of the raw message in bytes not counting + * the message type or size fields, but only the data fields. + * This function doesn't take into account alignment. + * + * Return: Success: Message data size in bytes without alignment. + * + * Failure: zero + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static size_t +H5O__mdci_size(const H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, + const void H5_ATTR_UNUSED *_mesg) +{ + size_t ret_value = 0; /* Return value */ + + FUNC_ENTER_STATIC_NOERR + + /* Set return value */ + ret_value = (size_t)( 1 + /* Version number */ + H5F_SIZEOF_ADDR(f) + /* addr of metadata cache */ + /* image block */ + H5F_SIZEOF_SIZE(f) ); /* length of metadata cache */ + /* image block */ + + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O__mdci_size() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_free + * + * Purpose: Free the message + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O__mdci_free(void *mesg) +{ + FUNC_ENTER_STATIC_NOERR + + HDassert(mesg); + + mesg = H5FL_FREE(H5O_mdci_t, mesg); + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O__mdci_free() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_delete + * + * Purpose: Free file space referenced by message + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Wednesday, March 19, 2003 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O__mdci_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, void *_mesg) +{ + H5O_mdci_t *mesg = (H5O_mdci_t *)_mesg; + herr_t ret_value = SUCCEED; /* Return value */ + + FUNC_ENTER_STATIC + + /* check args */ + HDassert(f); + HDassert(open_oh); + HDassert(mesg); + + /* Free file space for cache image */ + if(H5F_addr_defined(mesg->addr)) { + /* The space for the cache image block was allocated directly + * from the VFD layer at the end of file. As this was the + * last file space allocation before shutdown, the cache image + * should still be the last item in the file. + * + * If the hack to work around the self referential free space + * manager issue is in use, file space for the non-empty self + * referential free space managers was also allocated from VFD + * layer at the end of file. Since these allocations directly + * preceeded the cache image allocation they should be directly + * adjacent to the cache image block at the end of file. + * + * In this case, just call H5MF_tidy_self_referential_fsm_hack(). + * + * That routine will float the self referential free space + * managers, and reduce the eoa to its value just prior to + * allocation of space for same. Since the cache image appears + * just after the self referential free space managers, this + * will release the file space for the cache image as well. + * + * Note that in this case, there must not have been any file + * space allocations / deallocations prior to the free of the + * cache image. Verify this to the extent possible. + * + * If the hack to work around the persistant self referential + * free space manager issue is NOT in use, just call H5MF_xfree() + * to release the cache iamge. In principle, we should be able + * to just reduce the EOA to the base address of the cache + * image block, as there shouldn't be any file space allocation + * before the first metadata cache access. However, given + * time constraints, I don't want to go there now. + */ + if(H5F_FIRST_ALLOC_DEALLOC(f)) { + HDassert(HADDR_UNDEF != H5F_EOA_PRE_FSM_FSALLOC(f)); + HDassert(H5F_addr_ge(mesg->addr, H5F_EOA_PRE_FSM_FSALLOC(f))); + if(H5MF_tidy_self_referential_fsm_hack(f, dxpl_id) < 0) + HGOTO_ERROR(H5E_OHDR, H5E_CANTFREE, FAIL, "tidy of self referential fsm hack failed") + } /* end if */ + else { + if(H5MF_xfree(f, H5FD_MEM_SUPER, dxpl_id, mesg->addr, mesg->size) < 0) + HGOTO_ERROR(H5E_OHDR, H5E_CANTFREE, FAIL, "unable to free file space for cache image block") + } /* end else */ + } /* end if */ + +done: + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O__mdci_delete() */ + + +/*------------------------------------------------------------------------- + * Function: H5O__mdci_debug + * + * Purpose: Prints debugging info. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: John Mainzer + * 6/22/15 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O__mdci_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, + const void *_mesg, FILE * stream, int indent, int fwidth) +{ + const H5O_mdci_t *mdci = (const H5O_mdci_t *) _mesg; + + FUNC_ENTER_STATIC_NOERR + + /* check args */ + HDassert(f); + HDassert(mdci); + HDassert(stream); + HDassert(indent >= 0); + HDassert(fwidth >= 0); + + HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, + "Metadata Cache Image Block address:", mdci->addr); + + HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, + "Metadata Cache Image Block size in bytes:", mdci->size); + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O__mdci_debug() */ + diff --git a/src/H5Ocont.c b/src/H5Ocont.c index 681f54a..b91b181 100644 --- a/src/H5Ocont.c +++ b/src/H5Ocont.c @@ -36,7 +36,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_cont_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_cont_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static size_t H5O_cont_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); static herr_t H5O_cont_free(void *mesg); @@ -89,7 +89,8 @@ H5FL_DEFINE(H5O_cont_t); */ static void * H5O_cont_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_cont_t *cont = NULL; void *ret_value; diff --git a/src/H5Odrvinfo.c b/src/H5Odrvinfo.c index 6f715f8..fd8ad6b 100644 --- a/src/H5Odrvinfo.c +++ b/src/H5Odrvinfo.c @@ -27,7 +27,7 @@ #include "H5MMprivate.h" /* Memory management */ static void *H5O_drvinfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_drvinfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_drvinfo_copy(const void *_mesg, void *_dest); static size_t H5O_drvinfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -79,7 +79,8 @@ const H5O_msg_class_t H5O_MSG_DRVINFO[1] = {{ */ static void * H5O_drvinfo_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_drvinfo_t *mesg; /* Native message */ void *ret_value; /* Return value */ diff --git a/src/H5Odtype.c b/src/H5Odtype.c index 774b071..85fbef4 100644 --- a/src/H5Odtype.c +++ b/src/H5Odtype.c @@ -29,7 +29,7 @@ /* PRIVATE PROTOTYPES */ static herr_t H5O_dtype_encode(H5F_t *f, uint8_t *p, const void *mesg); static void *H5O_dtype_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static void *H5O_dtype_copy(const void *_mesg, void *_dest); static size_t H5O_dtype_size(const H5F_t *f, const void *_mesg); static herr_t H5O_dtype_reset(void *_mesg); @@ -1093,7 +1093,7 @@ done: --------------------------------------------------------------------------*/ static void * H5O_dtype_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, unsigned H5_ATTR_UNUSED mesg_flags, - unsigned *ioflags/*in,out*/, const uint8_t *p) + unsigned *ioflags/*in,out*/, size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5T_t *dt = NULL; void *ret_value; /* Return value */ diff --git a/src/H5Oefl.c b/src/H5Oefl.c index 218d250..546eb4f 100644 --- a/src/H5Oefl.c +++ b/src/H5Oefl.c @@ -28,7 +28,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_efl_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_efl_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_efl_copy(const void *_mesg, void *_dest); static size_t H5O_efl_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -88,7 +88,8 @@ const H5O_msg_class_t H5O_MSG_EFL[1] = {{ */ static void * H5O_efl_decode(H5F_t *f, hid_t dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_efl_t *mesg = NULL; int version; diff --git a/src/H5Ofill.c b/src/H5Ofill.c index 721c648..70704c5 100644 --- a/src/H5Ofill.c +++ b/src/H5Ofill.c @@ -32,11 +32,11 @@ static void *H5O_fill_old_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_fill_old_encode(H5F_t *f, uint8_t *p, const void *_mesg); static size_t H5O_fill_old_size(const H5F_t *f, const void *_mesg); static void *H5O_fill_new_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_fill_new_encode(H5F_t *f, uint8_t *p, const void *_mesg); static size_t H5O_fill_new_size(const H5F_t *f, const void *_mesg); static void *H5O_fill_copy(const void *_mesg, void *_dest); @@ -183,7 +183,8 @@ H5FL_BLK_EXTERN(type_conv); */ static void * H5O_fill_new_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_fill_t *fill = NULL; void *ret_value; @@ -297,7 +298,8 @@ done: */ static void * H5O_fill_old_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_fill_t *fill = NULL; /* Decoded fill value message */ void *ret_value; /* Return value */ diff --git a/src/H5Ofsinfo.c b/src/H5Ofsinfo.c new file mode 100644 index 0000000..8369ae1 --- /dev/null +++ b/src/H5Ofsinfo.c @@ -0,0 +1,408 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/*------------------------------------------------------------------------- + * + * Created: H5Ofsinfo.c + * Feb 2009 + * Vailin Choi + * + * Purpose: File space info message. + * + *------------------------------------------------------------------------- + */ +#define H5F_FRIEND /*suppress error about including H5Fpkg */ +#include "H5Omodule.h" /* This source code file is part of the H5O module */ + + +#include "H5private.h" /* Generic Functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Fpkg.h" /* File access */ +#include "H5FLprivate.h" /* Free lists */ +#include "H5Opkg.h" /* Object headers */ + +/* PRIVATE PROTOTYPES */ +static void *H5O_fsinfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned mesg_flags, + unsigned *ioflags, size_t p_size, const uint8_t *p); +static herr_t H5O_fsinfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); +static void *H5O_fsinfo_copy(const void *_mesg, void *_dest); +static size_t H5O_fsinfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); +static herr_t H5O_fsinfo_free(void *mesg); +static herr_t H5O_fsinfo_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, + FILE * stream, int indent, int fwidth); + +/* This message derives from H5O message class */ +const H5O_msg_class_t H5O_MSG_FSINFO[1] = {{ + H5O_FSINFO_ID, /* message id number */ + "fsinfo", /* message name for debugging */ + sizeof(H5O_fsinfo_t), /* native message size */ + 0, /* messages are sharable? */ + H5O_fsinfo_decode, /* decode message */ + H5O_fsinfo_encode, /* encode message */ + H5O_fsinfo_copy, /* copy the native value */ + H5O_fsinfo_size, /* size of free-space manager info message */ + NULL, /* default reset method */ + H5O_fsinfo_free, /* free method */ + NULL, /* file delete method */ + NULL, /* link method */ + NULL, /* set share method */ + NULL, /* can share method */ + NULL, /* pre copy native value to file */ + NULL, /* copy native value to file */ + NULL, /* post copy native value to file */ + NULL, /* get creation index */ + NULL, /* set creation index */ + H5O_fsinfo_debug /* debug the message */ +}}; + +/* Current version of free-space manager info information */ +#define H5O_FSINFO_VERSION_0 0 +#define H5O_FSINFO_VERSION_1 1 + +/* Declare a free list to manage the H5O_fsinfo_t struct */ +H5FL_DEFINE_STATIC(H5O_fsinfo_t); + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_decode + * + * Purpose: Decode a message and return a pointer to a newly allocated one. + * + * Return: Success: Ptr to new message in native form. + * Failure: NULL + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static void * +H5O_fsinfo_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) +{ + H5O_fsinfo_t *fsinfo = NULL; /* File space info message */ + H5F_mem_page_t ptype; /* Memory type for iteration */ + unsigned vers; /* message version */ + void *ret_value = NULL; /* Return value */ + + FUNC_ENTER_NOAPI_NOINIT + + /* check args */ + HDassert(f); + HDassert(p); + + /* Allocate space for message */ + if(NULL == (fsinfo = H5FL_CALLOC(H5O_fsinfo_t))) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + + for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) + fsinfo->fs_addr[ptype - 1] = HADDR_UNDEF; + + /* Version of message */ + vers = *p++; + + if(vers == H5O_FSINFO_VERSION_0) { + H5F_file_space_type_t strategy; /* Strategy */ + hsize_t threshold; /* Threshold */ + H5FD_mem_t type; /* Memory type for iteration */ + + fsinfo->persist = H5F_FREE_SPACE_PERSIST_DEF; + fsinfo->threshold = H5F_FREE_SPACE_THRESHOLD_DEF; + fsinfo->page_size = H5F_FILE_SPACE_PAGE_SIZE_DEF; + fsinfo->pgend_meta_thres = H5F_FILE_SPACE_PGEND_META_THRES; + fsinfo->eoa_pre_fsm_fsalloc = HADDR_UNDEF; + + strategy = (H5F_file_space_type_t)*p++; /* File space strategy */ + H5F_DECODE_LENGTH(f, p, threshold); /* Free-space section threshold */ + + /* Map version 0 (deprecated) to version 1 message */ + switch(strategy) { + + case H5F_FILE_SPACE_ALL_PERSIST: + fsinfo->strategy = H5F_FSPACE_STRATEGY_FSM_AGGR; + fsinfo->persist = TRUE; + fsinfo->threshold = threshold; + if(HADDR_UNDEF == (fsinfo->eoa_pre_fsm_fsalloc = H5F_get_eoa(f, H5FD_MEM_DEFAULT)) ) + HGOTO_ERROR(H5E_FILE, H5E_CANTGET, NULL, "unable to get file size") + for(type = H5FD_MEM_SUPER; type < H5FD_MEM_NTYPES; H5_INC_ENUM(H5FD_mem_t, type)) + H5F_addr_decode(f, &p, &(fsinfo->fs_addr[type-1])); + break; + + case H5F_FILE_SPACE_ALL: + fsinfo->strategy = H5F_FSPACE_STRATEGY_FSM_AGGR; + fsinfo->threshold = threshold; + break; + + case H5F_FILE_SPACE_AGGR_VFD: + fsinfo->strategy = H5F_FSPACE_STRATEGY_AGGR; + break; + + case H5F_FILE_SPACE_VFD: + fsinfo->strategy = H5F_FSPACE_STRATEGY_NONE; + break; + + case H5F_FILE_SPACE_NTYPES: + case H5F_FILE_SPACE_DEFAULT: + default: + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, NULL, "invalid file space strategy") + } /* end switch */ + + fsinfo->mapped = TRUE; + + } else { + HDassert(vers == H5O_FSINFO_VERSION_1); + + fsinfo->strategy = (H5F_fspace_strategy_t)*p++; /* File space strategy */ + fsinfo->persist = *p++; /* Free-space persist or not */ + H5F_DECODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section threshold */ + + H5F_DECODE_LENGTH(f, p, fsinfo->page_size); /* File space page size */ + UINT16DECODE(p, fsinfo->pgend_meta_thres); /* Page end metdata threshold */ + H5F_addr_decode(f, &p, &(fsinfo->eoa_pre_fsm_fsalloc)); /* EOA before free-space header and section info */ + + /* Decode addresses of free space managers, if persisting */ + if(fsinfo->persist) { + for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) + H5F_addr_decode(f, &p, &(fsinfo->fs_addr[ptype - 1])); + } /* end if */ + + fsinfo->mapped = FALSE; + } + + /* Set return value */ + ret_value = fsinfo; + +done: + if(ret_value == NULL && fsinfo != NULL) + fsinfo = H5FL_FREE(H5O_fsinfo_t, fsinfo); + + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O_fsinfo_decode() */ + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_encode + * + * Purpose: Encodes a message. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O_fsinfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, const void *_mesg) +{ + const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; + H5F_mem_page_t ptype; /* Memory type for iteration */ + + FUNC_ENTER_NOAPI_NOINIT_NOERR + + /* check args */ + HDassert(f); + HDassert(p); + HDassert(fsinfo); + + *p++ = H5O_FSINFO_VERSION_1; /* message version */ + *p++ = fsinfo->strategy; /* File space strategy */ + *p++ = (unsigned char)fsinfo->persist; /* Free-space persist or not */ + H5F_ENCODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section size threshold */ + + H5F_ENCODE_LENGTH(f, p, fsinfo->page_size); /* File space page size */ + UINT16ENCODE(p, fsinfo->pgend_meta_thres); /* Page end metadata threshold */ + H5F_addr_encode(f, &p, fsinfo->eoa_pre_fsm_fsalloc); /* EOA before free-space header and section info */ + + /* Store addresses of free-space managers, if persisting */ + if(fsinfo->persist) { + /* Addresses of free-space managers */ + for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) + H5F_addr_encode(f, &p, fsinfo->fs_addr[ptype - 1]); + } /* end if */ + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O_fsinfo_encode() */ + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_copy + * + * Purpose: Copies a message from _MESG to _DEST, allocating _DEST if + * necessary. + * + * Return: Success: Ptr to _DEST + * Failure: NULL + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static void * +H5O_fsinfo_copy(const void *_mesg, void *_dest) +{ + const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; + H5O_fsinfo_t *dest = (H5O_fsinfo_t *) _dest; + void *ret_value = NULL; /* Return value */ + + FUNC_ENTER_NOAPI_NOINIT + + /* check args */ + HDassert(fsinfo); + if(!dest && NULL == (dest = H5FL_CALLOC(H5O_fsinfo_t))) + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + + /* copy */ + *dest = *fsinfo; + + /* Set return value */ + ret_value = dest; + +done: + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O_fsinfo_copy() */ + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_size + * + * Purpose: Returns the size of the raw message in bytes not counting + * the message type or size fields, but only the data fields. + * This function doesn't take into account alignment. + * + * Return: Success: Message data size in bytes without alignment. + * Failure: zero + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static size_t +H5O_fsinfo_size(const H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, const void *_mesg) +{ + const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; + size_t ret_value = 0; /* Return value */ + + FUNC_ENTER_NOAPI_NOINIT_NOERR + + ret_value = 3 /* Version, strategy & persist */ + + (size_t)H5F_SIZEOF_SIZE(f) /* Free-space section threshold */ + + (size_t)H5F_SIZEOF_SIZE(f) /* File space page size */ + + 2 /* Page end meta threshold */ + + (size_t)H5F_SIZEOF_ADDR(f); + + /* Free-space manager addresses */ + if(fsinfo->persist) + ret_value += (H5F_MEM_PAGE_NTYPES - 1) * (size_t)H5F_SIZEOF_ADDR(f); + + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5O_fsinfo_size() */ + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_free + * + * Purpose: Free's the message + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O_fsinfo_free(void *mesg) +{ + FUNC_ENTER_NOAPI_NOINIT_NOERR + + HDassert(mesg); + + mesg = H5FL_FREE(H5O_fsinfo_t, mesg); + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O_fsinfo_free() */ + + +/*------------------------------------------------------------------------- + * Function: H5O_fsinfo_debug + * + * Purpose: Prints debugging info for a message. + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Vailin Choi; Feb 2009 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5O_fsinfo_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, const void *_mesg, FILE * stream, + int indent, int fwidth) +{ + const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *) _mesg; + H5F_mem_page_t ptype; /* Free-space types for iteration */ + + FUNC_ENTER_NOAPI_NOINIT_NOERR + + /* check args */ + HDassert(f); + HDassert(fsinfo); + HDassert(stream); + HDassert(indent >= 0); + HDassert(fwidth >= 0); + + HDfprintf(stream, "%*s%-*s ", indent, "", fwidth, "File space strategy:"); + switch(fsinfo->strategy) { + case H5F_FSPACE_STRATEGY_FSM_AGGR: + HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_FSM_AGGR"); + break; + + case H5F_FSPACE_STRATEGY_PAGE: + HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_PAGE"); + break; + + case H5F_FSPACE_STRATEGY_AGGR: + HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_AGGR"); + break; + + case H5F_FSPACE_STRATEGY_NONE: + HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_NONE"); + break; + + case H5F_FSPACE_STRATEGY_NTYPES: + default: + HDfprintf(stream, "%s\n", "unknown"); + } /* end switch */ + + HDfprintf(stream, "%*s%-*s %t\n", indent, "", fwidth, + "Free-space persist:", fsinfo->persist); + + HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, + "Free-space section threshold:", fsinfo->threshold); + + HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, + "File space page size:", fsinfo->page_size); + + HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, + "Page end metadata threshold:", fsinfo->pgend_meta_thres); + + HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, + "eoa_pre_fsm_fsalloc:", fsinfo->eoa_pre_fsm_fsalloc); + + if(fsinfo->persist) { + for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) + HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, + "Free space manager address:", fsinfo->fs_addr[ptype-1]); + } /* end if */ + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* end H5O_fsinfo_debug() */ + diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c index d8be51f..8ba1f71 100644 --- a/src/H5Oginfo.c +++ b/src/H5Oginfo.c @@ -32,7 +32,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_ginfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_ginfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_ginfo_copy(const void *_mesg, void *_dest); static size_t H5O_ginfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -94,7 +94,8 @@ H5FL_DEFINE_STATIC(H5O_ginfo_t); */ static void * H5O_ginfo_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_ginfo_t *ginfo = NULL; /* Pointer to group information message */ unsigned char flags; /* Flags for encoding group info */ diff --git a/src/H5Olayout.c b/src/H5Olayout.c index 17385c2..3f5076c 100644 --- a/src/H5Olayout.c +++ b/src/H5Olayout.c @@ -35,7 +35,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_layout_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_layout_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_layout_copy(const void *_mesg, void *_dest); static size_t H5O_layout_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -95,7 +95,8 @@ H5FL_DEFINE(H5O_layout_t); */ static void * H5O_layout_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_layout_t *mesg = NULL; unsigned u; diff --git a/src/H5Olinfo.c b/src/H5Olinfo.c index 03e545f..a612ae5 100644 --- a/src/H5Olinfo.c +++ b/src/H5Olinfo.c @@ -36,7 +36,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_linfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_linfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_linfo_copy(const void *_mesg, void *_dest); static size_t H5O_linfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -113,7 +113,8 @@ H5FL_DEFINE_STATIC(H5O_linfo_t); */ static void * H5O_linfo_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_linfo_t *linfo = NULL; /* Link info */ unsigned char index_flags; /* Flags for encoding link index info */ diff --git a/src/H5Olink.c b/src/H5Olink.c index 1b57f22..c0dd1d8 100644 --- a/src/H5Olink.c +++ b/src/H5Olink.c @@ -38,7 +38,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_link_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_link_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_link_copy(const void *_mesg, void *_dest); static size_t H5O_link_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -117,7 +117,8 @@ H5FL_DEFINE_STATIC(H5O_link_t); */ static void * H5O_link_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_link_t *lnk = NULL; /* Pointer to link message */ size_t len = 0; /* Length of a string in the message */ diff --git a/src/H5Omessage.c b/src/H5Omessage.c index b6d2876..a2e4e88 100644 --- a/src/H5Omessage.c +++ b/src/H5Omessage.c @@ -1821,7 +1821,7 @@ done: */ void * H5O_msg_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned type_id, - const unsigned char *buf) + size_t buf_size, const unsigned char *buf) { const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ void *ret_value; /* Return value */ @@ -1836,7 +1836,7 @@ H5O_msg_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned type_id, HDassert(type); /* decode */ - if((ret_value = (type->decode)(f, dxpl_id, open_oh, 0, &ioflags, buf)) == NULL) + if((ret_value = (type->decode)(f, dxpl_id, open_oh, 0, &ioflags, buf_size, buf)) == NULL) HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "unable to decode message") done: diff --git a/src/H5Omtime.c b/src/H5Omtime.c index 46dd499..e4db09b 100644 --- a/src/H5Omtime.c +++ b/src/H5Omtime.c @@ -27,12 +27,12 @@ static void *H5O_mtime_new_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_mtime_new_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static size_t H5O_mtime_new_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); static void *H5O_mtime_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_mtime_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_mtime_copy(const void *_mesg, void *_dest); static size_t H5O_mtime_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -118,7 +118,8 @@ H5FL_DEFINE(time_t); */ static void * H5O_mtime_new_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { time_t *mesg; uint32_t tmp_time; /* Temporary copy of the time */ @@ -171,7 +172,8 @@ done: */ static void * H5O_mtime_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { time_t *mesg, the_time; int i; diff --git a/src/H5Oname.c b/src/H5Oname.c index 007e20f..5248168 100644 --- a/src/H5Oname.c +++ b/src/H5Oname.c @@ -32,7 +32,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_name_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_name_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_name_copy(const void *_mesg, void *_dest); static size_t H5O_name_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -83,7 +83,8 @@ const H5O_msg_class_t H5O_MSG_NAME[1] = {{ */ static void * H5O_name_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_name_t *mesg; void *ret_value; /* Return value */ diff --git a/src/H5Opkg.h b/src/H5Opkg.h index cd585be..f4b8014 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -186,7 +186,7 @@ \ /* Decode the message */ \ HDassert(msg_type->decode); \ - if(NULL == ((MSG)->native = (msg_type->decode)((F), (DXPL), (OH), (MSG)->flags, &ioflags, (MSG)->raw))) \ + if(NULL == ((MSG)->native = (msg_type->decode)((F), (DXPL), (OH), (MSG)->flags, &ioflags, (MSG)->raw_size, (MSG)->raw))) \ HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, ERR, "unable to decode message") \ \ /* Mark the message dirty if it was changed by decoding */ \ @@ -222,7 +222,7 @@ struct H5O_msg_class_t { const char *name; /*for debugging */ size_t native_size; /*size of native message */ unsigned share_flags; /* Message sharing settings */ - void *(*decode)(H5F_t *, hid_t, H5O_t *, unsigned, unsigned *, const uint8_t *); + void *(*decode)(H5F_t *, hid_t, H5O_t *, unsigned, unsigned *, size_t, const uint8_t *); herr_t (*encode)(H5F_t *, hbool_t, uint8_t *, const void *); void *(*copy)(const void *, void *); /*copy native value */ size_t (*raw_size)(const H5F_t *, hbool_t, const void *);/*sizeof encoded message */ diff --git a/src/H5Opline.c b/src/H5Opline.c index fb08431..adaee33 100644 --- a/src/H5Opline.c +++ b/src/H5Opline.c @@ -33,7 +33,7 @@ /* PRIVATE PROTOTYPES */ static herr_t H5O_pline_encode(H5F_t *f, uint8_t *p, const void *mesg); static void *H5O_pline_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static void *H5O_pline_copy(const void *_mesg, void *_dest); static size_t H5O_pline_size(const H5F_t *f, const void *_mesg); static herr_t H5O_pline_reset(void *_mesg); @@ -108,13 +108,15 @@ H5FL_DEFINE(H5O_pline_t); */ static void * H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t p_size, const uint8_t *p) { H5O_pline_t *pline = NULL; /* Pipeline message */ H5Z_filter_info_t *filter; /* Filter to decode */ size_t name_length; /* Length of filter name */ size_t i; /* Local index variable */ - void *ret_value; /* Return value */ + const uint8_t *p_end = p + p_size - 1; /* End of the p buffer */ + void *ret_value = NULL; /* Return value */ FUNC_ENTER_NOAPI_NOINIT @@ -123,12 +125,12 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 /* Allocate space for I/O pipeline message */ if(NULL == (pline = H5FL_CALLOC(H5O_pline_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") /* Version */ pline->version = *p++; if(pline->version < H5O_PLINE_VERSION_1 || pline->version > H5O_PLINE_VERSION_LATEST) - HGOTO_ERROR(H5E_PLINE, H5E_CANTLOAD, NULL, "bad version number for filter pipeline message") + HGOTO_ERROR(H5E_PLINE, H5E_CANTLOAD, NULL, "bad version number for filter pipeline message") /* Number of filters */ pline->nused = *p++; @@ -149,12 +151,12 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 /* Allocate array for filters */ pline->nalloc = pline->nused; if(NULL == (pline->filter = (H5Z_filter_info_t *)H5MM_calloc(pline->nalloc * sizeof(pline->filter[0])))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") /* Decode filters */ for(i = 0, filter = &pline->filter[0]; i < pline->nused; i++, filter++) { /* Filter ID */ - UINT16DECODE(p, filter->id); + UINT16DECODE(p, filter->id); /* Length of filter name */ if(pline->version > H5O_PLINE_VERSION_1 && filter->id < H5Z_FILTER_RESERVED) @@ -166,18 +168,18 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 } /* end if */ /* Filter flags */ - UINT16DECODE(p, filter->flags); + UINT16DECODE(p, filter->flags); /* Number of filter parameters ("client data elements") */ - UINT16DECODE(p, filter->cd_nelmts); + UINT16DECODE(p, filter->cd_nelmts); /* Filter name, if there is one */ - if(name_length) { + if(name_length) { size_t actual_name_length; /* Actual length of name */ /* Determine actual name length (without padding, but with null terminator) */ - actual_name_length = HDstrlen((const char *)p) + 1; - HDassert(actual_name_length <= name_length); + actual_name_length = HDstrlen((const char *)p) + 1; + HDassert(actual_name_length <= name_length); /* Allocate space for the filter name, or use the internal buffer */ if(actual_name_length > H5Z_COMMON_NAME_LEN) { @@ -188,12 +190,12 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 else filter->name = filter->_name; - HDstrncpy(filter->name, (const char *)p, actual_name_length); - p += name_length; - } /* end if */ + HDstrncpy(filter->name, (const char *)p, actual_name_length); + p += name_length; + } /* end if */ /* Filter parameters */ - if(filter->cd_nelmts) { + if(filter->cd_nelmts) { size_t j; /* Local index variable */ /* Allocate space for the client data elements, or use the internal buffer */ @@ -205,15 +207,20 @@ H5O_pline_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5 else filter->cd_values = filter->_cd_values; - /* - * Read the client data values and the padding - */ - for(j = 0; j < filter->cd_nelmts; j++) - UINT32DECODE(p, filter->cd_values[j]); + /* + * Read the client data values and the padding + */ + for (j = 0; j < filter->cd_nelmts; j++) { + if (p + 4 - 1 <= p_end) + UINT32DECODE(p, filter->cd_values[j]) + else + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "ran off the end of the buffer: current p = %p, p_size = %zu, p_end = %p", p, p_size, p_end) + } + if(pline->version == H5O_PLINE_VERSION_1) if(filter->cd_nelmts % 2) p += 4; /*padding*/ - } /* end if */ + } /* end if */ } /* end for */ /* Set return value */ diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index ca0fc8e..1f51705 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -710,7 +710,7 @@ H5_DLL herr_t H5O_msg_get_crt_index(unsigned type_id, const void *mesg, H5_DLL herr_t H5O_msg_encode(H5F_t *f, unsigned type_id, hbool_t disable_shared, unsigned char *buf, const void *obj); H5_DLL void* H5O_msg_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned type_id, const unsigned char *buf); + unsigned type_id, size_t buf_size, const unsigned char *buf); H5_DLL herr_t H5O_msg_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned type_id, void *mesg); H5_DLL int H5O_msg_get_chunkno(const H5O_loc_t *loc, unsigned type_id, hid_t dxpl_id); diff --git a/src/H5Orefcount.c b/src/H5Orefcount.c index 22b1a02..78ff791 100644 --- a/src/H5Orefcount.c +++ b/src/H5Orefcount.c @@ -32,7 +32,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_refcount_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_refcount_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_refcount_copy(const void *_mesg, void *_dest); static size_t H5O_refcount_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -89,7 +89,8 @@ H5FL_DEFINE_STATIC(H5O_refcount_t); */ static void * H5O_refcount_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_refcount_t *refcount = NULL; /* Reference count */ void *ret_value; /* Return value */ diff --git a/src/H5Osdspace.c b/src/H5Osdspace.c index 557a44b..627ea19 100644 --- a/src/H5Osdspace.c +++ b/src/H5Osdspace.c @@ -26,7 +26,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_sdspace_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_sdspace_encode(H5F_t *f, uint8_t *p, const void *_mesg); static void *H5O_sdspace_copy(const void *_mesg, void *_dest); static size_t H5O_sdspace_size(const H5F_t *f, const void *_mesg); @@ -110,7 +110,8 @@ H5FL_ARR_EXTERN(hsize_t); --------------------------------------------------------------------------*/ static void * H5O_sdspace_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5S_extent_t *sdim = NULL;/* New extent dimensionality structure */ void *ret_value; diff --git a/src/H5Oshared.c b/src/H5Oshared.c index 0d692f9..2475dd5 100644 --- a/src/H5Oshared.c +++ b/src/H5Oshared.c @@ -156,7 +156,7 @@ H5O_shared_read(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned *ioflags, HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "can't read message from fractal heap.") /* Decode the message */ - if(NULL == (ret_value = (type->decode)(f, dxpl_id, open_oh, 0, ioflags, mesg_ptr))) + if(NULL == (ret_value = (type->decode)(f, dxpl_id, open_oh, 0, ioflags, mesg_size, mesg_ptr))) HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "can't decode shared message.") } /* end if */ else { diff --git a/src/H5Oshared.h b/src/H5Oshared.h index f71f5f6..e60d7ba 100644 --- a/src/H5Oshared.h +++ b/src/H5Oshared.h @@ -47,7 +47,7 @@ */ static H5_INLINE void * H5O_SHARED_DECODE(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned mesg_flags, - unsigned *ioflags, const uint8_t *p) + unsigned *ioflags, size_t p_size, const uint8_t *p) { void *ret_value; /* Return value */ @@ -67,7 +67,7 @@ H5O_SHARED_DECODE(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned mesg_flags, if(mesg_flags & H5O_MSG_FLAG_SHARED) { /* Retrieve native message info indirectly through shared message */ if(NULL == (ret_value = H5O_shared_decode(f, dxpl_id, open_oh, ioflags, p, H5O_SHARED_TYPE))) - HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "unable to decode shared message") + HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "unable to decode shared message") /* We currently do not support automatically fixing shared messages */ #ifdef H5_STRICT_FORMAT_CHECKS @@ -79,8 +79,8 @@ H5O_SHARED_DECODE(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned mesg_flags, } /* end if */ else { /* Decode native message directly */ - if(NULL == (ret_value = H5O_SHARED_DECODE_REAL(f, dxpl_id, open_oh, mesg_flags, ioflags, p))) - HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "unable to decode native message") + if(NULL == (ret_value = H5O_SHARED_DECODE_REAL(f, dxpl_id, open_oh, mesg_flags, ioflags, p_size, p))) + HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, NULL, "unable to decode native message") } /* end else */ done: diff --git a/src/H5Oshmesg.c b/src/H5Oshmesg.c index 536f67e..489114a 100644 --- a/src/H5Oshmesg.c +++ b/src/H5Oshmesg.c @@ -27,7 +27,7 @@ #include "H5MMprivate.h" /* Memory management */ static void *H5O_shmesg_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_shmesg_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_shmesg_copy(const void *_mesg, void *_dest); static size_t H5O_shmesg_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -75,7 +75,8 @@ const H5O_msg_class_t H5O_MSG_SHMESG[1] = {{ */ static void * H5O_shmesg_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_shmesg_table_t *mesg; /* Native message */ void *ret_value; /* Return value */ diff --git a/src/H5Ostab.c b/src/H5Ostab.c index 928307e..cf8c96a 100644 --- a/src/H5Ostab.c +++ b/src/H5Ostab.c @@ -35,7 +35,7 @@ /* PRIVATE PROTOTYPES */ static void *H5O_stab_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, const uint8_t *p); + unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); static herr_t H5O_stab_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); static void *H5O_stab_copy(const void *_mesg, void *_dest); static size_t H5O_stab_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); @@ -96,7 +96,8 @@ H5FL_DEFINE_STATIC(H5O_stab_t); */ static void * H5O_stab_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p) + unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, + size_t H5_ATTR_UNUSED p_size, const uint8_t *p) { H5O_stab_t *stab = NULL; void *ret_value; /* Return value */ diff --git a/src/H5S.c b/src/H5S.c index d03d523..50bee52 100644 --- a/src/H5S.c +++ b/src/H5S.c @@ -1644,7 +1644,7 @@ H5S_decode(const unsigned char *buf) /* Decode the extent part of dataspace */ /* (pass mostly bogus file pointer and bogus DXPL) */ - if((extent = (H5S_extent_t *)H5O_msg_decode(f, H5P_DEFAULT, NULL, H5O_SDSPACE_ID, buf))==NULL) + if((extent = (H5S_extent_t *)H5O_msg_decode(f, H5P_DEFAULT, NULL, H5O_SDSPACE_ID, extent_size, buf))==NULL) HGOTO_ERROR(H5E_DATASPACE, H5E_CANTDECODE, NULL, "can't decode object") buf += extent_size; diff --git a/src/H5SM.c b/src/H5SM.c index 080eb7c..b549b59 100644 --- a/src/H5SM.c +++ b/src/H5SM.c @@ -69,7 +69,7 @@ static herr_t H5SM_write_mesg(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, static herr_t H5SM_decr_ref(void *record, void *op_data, hbool_t *changed); static herr_t H5SM_delete_from_index(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, H5SM_index_header_t *header, const H5O_shared_t * mesg, - unsigned *cache_flags, void ** /*out*/ encoded_mesg); + unsigned *cache_flags, size_t * /*out*/ mesg_size, void ** /*out*/ encoded_mesg); static herr_t H5SM_type_to_flag(unsigned type_id, unsigned *type_flag); static herr_t H5SM_read_iter_op(H5O_t *oh, H5O_mesg_t *mesg, unsigned sequence, unsigned *oh_modified, void *_udata); @@ -1518,6 +1518,7 @@ H5SM_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, H5O_shared_t *sh_mesg) unsigned cache_flags = H5AC__NO_FLAGS_SET; H5SM_table_cache_ud_t cache_udata; /* User-data for callback */ ssize_t index_num; + size_t mesg_size = 0; void *mesg_buf = NULL; void *native_mesg = NULL; unsigned type_id; /* Message type ID to operate on */ @@ -1547,8 +1548,8 @@ H5SM_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, H5O_shared_t *sh_mesg) * zero and any file space it uses needs to be freed. mesg_buf holds the * serialized form of the message. */ - if(H5SM_delete_from_index(f, dxpl_id, open_oh, &(table->indexes[index_num]), sh_mesg, &cache_flags, &mesg_buf) < 0) - HGOTO_ERROR(H5E_SOHM, H5E_CANTDELETE, FAIL, "unable to delete mesage from SOHM index") + if(H5SM_delete_from_index(f, dxpl_id, open_oh, &(table->indexes[index_num]), sh_mesg, &cache_flags, &mesg_size, &mesg_buf) < 0) + HGOTO_ERROR(H5E_SOHM, H5E_CANTDELETE, FAIL, "unable to delete mesage from SOHM index") /* Release the master SOHM table */ if(H5AC_unprotect(f, dxpl_id, H5AC_SOHM_TABLE, H5F_SOHM_ADDR(f), table, cache_flags) < 0) @@ -1560,7 +1561,7 @@ H5SM_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, H5O_shared_t *sh_mesg) * master table needs to be unprotected when we do this. */ if(mesg_buf) { - if(NULL == (native_mesg = H5O_msg_decode(f, dxpl_id, open_oh, type_id, (const unsigned char *)mesg_buf))) + if(NULL == (native_mesg = H5O_msg_decode(f, dxpl_id, open_oh, type_id, mesg_size, (const unsigned char *)mesg_buf))) HGOTO_ERROR(H5E_SOHM, H5E_CANTDECODE, FAIL, "can't decode shared message.") if(H5O_msg_delete(f, dxpl_id, open_oh, type_id, native_mesg) < 0) @@ -1747,7 +1748,7 @@ H5SM_decr_ref(void *record, void *op_data, hbool_t *changed) static herr_t H5SM_delete_from_index(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, H5SM_index_header_t *header, const H5O_shared_t *mesg, - unsigned *cache_flags, void ** /*out*/ encoded_mesg) + unsigned *cache_flags, size_t * /*out*/ mesg_size, void ** /*out*/ encoded_mesg) { H5SM_list_t *list = NULL; H5SM_mesg_key_t key; @@ -1879,6 +1880,7 @@ H5SM_delete_from_index(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, /* Return the message's encoding so anything it references can be freed */ *encoded_mesg = encoding_buf; + *mesg_size = buf_size; /* If there are no messages left in the index, delete it */ if(header->num_messages == 0) { @@ -1920,8 +1922,10 @@ done: /* Free the message encoding, if we're not returning it in encoded_mesg * or if there's been an error. */ - if(encoding_buf && (NULL == *encoded_mesg || ret_value < 0)) + if(encoding_buf && (NULL == *encoded_mesg || ret_value < 0)) { encoding_buf = H5MM_xfree(encoding_buf); + *mesg_size = 0; + } FUNC_LEAVE_NOAPI(ret_value) } /* end H5SM_delete_from_index() */ diff --git a/src/H5T.c b/src/H5T.c index d705b99..9eeb7db 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -2801,8 +2801,13 @@ H5Tdecode(const void *buf) if(buf == NULL) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "empty buffer") - /* Create datatype by decoding buffer */ - if(NULL == (dt = H5T_decode((const unsigned char *)buf))) + /* Create datatype by decoding buffer + * There is no way to get the size of the buffer, so we pass in + * SIZE_MAX and assume the caller knows what they are doing. + * Really fixing this will require an H5Tdecode2() call that + * takes a size parameter. + */ + if(NULL == (dt = H5T_decode(SIZE_MAX, (const unsigned char *)buf))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTDECODE, FAIL, "can't decode object") /* Register the type and return the ID */ @@ -2891,7 +2896,7 @@ done: *------------------------------------------------------------------------- */ static H5T_t * -H5T_decode(const unsigned char *buf) +H5T_decode(size_t buf_size, const unsigned char *buf) { H5F_t *f = NULL; /* Fake file structure*/ H5T_t *ret_value = NULL; /* Return value */ @@ -2911,7 +2916,7 @@ H5T_decode(const unsigned char *buf) HGOTO_ERROR(H5E_DATATYPE, H5E_VERSION, NULL, "unknown version of encoded datatype") /* Decode the serialized datatype message */ - if(NULL == (ret_value = (H5T_t *)H5O_msg_decode(f, H5AC_ind_dxpl_id, NULL, H5O_DTYPE_ID, buf))) + if(NULL == (ret_value = (H5T_t *)H5O_msg_decode(f, H5AC_noio_dxpl_id, NULL, H5O_DTYPE_ID, buf_size, buf))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTDECODE, NULL, "can't decode object") /* Mark datatype as being in memory now */ diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h index 81af056..47266d3 100644 --- a/src/H5Tprivate.h +++ b/src/H5Tprivate.h @@ -112,6 +112,11 @@ H5_DLL H5T_class_t H5T_get_class(const H5T_t *dt, htri_t internal); H5_DLL htri_t H5T_detect_class(const H5T_t *dt, H5T_class_t cls, hbool_t from_api); H5_DLL size_t H5T_get_size(const H5T_t *dt); H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2, hbool_t superset); +<<<<<<< HEAD +======= +H5_DLL herr_t H5T_encode(H5T_t *obj, unsigned char *buf, size_t *nalloc); +H5_DLL H5T_t *H5T_decode(size_t buf_size, const unsigned char *buf); +>>>>>>> 302053f... Fix for HDFFV-10355 (CVE-2017-17506). H5_DLL herr_t H5T_debug(const H5T_t *dt, FILE * stream); H5_DLL struct H5O_loc_t *H5T_oloc(H5T_t *dt); H5_DLL H5G_name_t *H5T_nameof(H5T_t *dt); -- cgit v0.12 From 0cd35505fce196095b8ba4254cb76a976c026a1c Mon Sep 17 00:00:00 2001 From: lrknox Date: Thu, 10 May 2018 16:46:41 -0500 Subject: Remove added files. --- src/H5Ocache_image.c | 377 ----------------------------------------------- src/H5Ofsinfo.c | 408 --------------------------------------------------- 2 files changed, 785 deletions(-) delete mode 100644 src/H5Ocache_image.c delete mode 100644 src/H5Ofsinfo.c diff --git a/src/H5Ocache_image.c b/src/H5Ocache_image.c deleted file mode 100644 index d2b65bb..0000000 --- a/src/H5Ocache_image.c +++ /dev/null @@ -1,377 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by The HDF Group. * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the COPYING file, which can be found at the root of the source code * - * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * - * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -/*------------------------------------------------------------------------- - * - * Created: H5Ocache_image.c - * June 21, 2015 - * John Mainzer - * - * Purpose: A message indicating that a metadata cache image block - * of the indicated length exists at the specified offset - * in the HDF5 file. - * - * The mdci_msg only appears in the superblock extension. - * - *------------------------------------------------------------------------- - */ - -#include "H5Omodule.h" /* This source code file is part of the H5O module */ - - -#include "H5private.h" /* Generic Functions */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5Fprivate.h" /* Files */ -#include "H5FLprivate.h" /* Free Lists */ -#include "H5Opkg.h" /* Object headers */ -#include "H5MFprivate.h" /* File space management */ - -/* Callbacks for message class */ -static void *H5O__mdci_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - unsigned mesg_flags, unsigned *ioflags, size_t p_size, const uint8_t *p); -static herr_t H5O__mdci_encode(H5F_t *f, hbool_t disable_shared, - uint8_t *p, const void *_mesg); -static void *H5O__mdci_copy(const void *_mesg, void *_dest); -static size_t H5O__mdci_size(const H5F_t *f, hbool_t disable_shared, - const void *_mesg); -static herr_t H5O__mdci_free(void *mesg); -static herr_t H5O__mdci_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, - void *_mesg); -static herr_t H5O__mdci_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, - FILE *stream, int indent, int fwidth); - -/* This message derives from H5O message class */ -const H5O_msg_class_t H5O_MSG_MDCI[1] = {{ - H5O_MDCI_MSG_ID, /* message id number */ - "mdci", /* message name for debugging */ - sizeof(H5O_mdci_t), /* native message size */ - 0, /* messages are sharable? */ - H5O__mdci_decode, /* decode message */ - H5O__mdci_encode, /* encode message */ - H5O__mdci_copy, /* copy method */ - H5O__mdci_size, /* size of mdc image message */ - NULL, /* reset method */ - H5O__mdci_free, /* free method */ - H5O__mdci_delete, /* file delete method */ - NULL, /* link method */ - NULL, /* set share method */ - NULL, /* can share method */ - NULL, /* pre copy native value to file */ - NULL, /* copy native value to file */ - NULL, /* post copy native value to file */ - NULL, /* get creation index */ - NULL, /* set creation index */ - H5O__mdci_debug /* debugging */ -}}; - -/* Only one version of the metadata cache image message at present */ -#define H5O_MDCI_VERSION_0 0 - -/* Declare the free list for H5O_mdci_t's */ -H5FL_DEFINE(H5O_mdci_t); - - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_decode - * - * Purpose: Decode a metadata cache image message and return a - * pointer to a newly allocated H5O_mdci_t struct. - * - * Return: Success: Ptr to new message in native struct. - * Failure: NULL - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static void * -H5O__mdci_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, - H5O_t H5_ATTR_UNUSED *open_oh, unsigned H5_ATTR_UNUSED mesg_flags, - unsigned H5_ATTR_UNUSED *ioflags, size_t H5_ATTR_UNUSED p_size, const uint8_t *p) -{ - H5O_mdci_t *mesg; /* Native message */ - void *ret_value = NULL; /* Return value */ - - FUNC_ENTER_STATIC - - /* Sanity check */ - HDassert(f); - HDassert(p); - - /* Version of message */ - if(*p++ != H5O_MDCI_VERSION_0) - HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "bad version number for message") - - /* Allocate space for message */ - if(NULL == (mesg = (H5O_mdci_t *)H5FL_MALLOC(H5O_mdci_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed for metadata cache image message") - - /* Decode */ - H5F_addr_decode(f, &p, &(mesg->addr)); - H5F_DECODE_LENGTH(f, p, mesg->size); - - /* Set return value */ - ret_value = (void *)mesg; - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O__mdci_decode() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_encode - * - * Purpose: Encode metadata cache image message - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O__mdci_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, - uint8_t *p, const void *_mesg) -{ - const H5O_mdci_t *mesg = (const H5O_mdci_t *)_mesg; - - FUNC_ENTER_STATIC_NOERR - - /* Sanity check */ - HDassert(f); - HDassert(p); - HDassert(mesg); - - /* encode */ - *p++ = H5O_MDCI_VERSION_0; - H5F_addr_encode(f, &p, mesg->addr); - H5F_ENCODE_LENGTH(f, p, mesg->size); - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O__mdci_encode() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_copy - * - * Purpose: Copies a message from _MESG to _DEST, allocating _DEST if - * necessary. - * - * Return: Success: Ptr to _DEST - * Failure: NULL - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static void * -H5O__mdci_copy(const void *_mesg, void *_dest) -{ - const H5O_mdci_t *mesg = (const H5O_mdci_t *)_mesg; - H5O_mdci_t *dest = (H5O_mdci_t *) _dest; - void *ret_value = NULL; /* Return value */ - - FUNC_ENTER_STATIC - - /* check args */ - HDassert(mesg); - if(!dest && NULL == (dest = H5FL_MALLOC(H5O_mdci_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") - - /* copy */ - *dest = *mesg; - - /* Set return value */ - ret_value = dest; - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O_mdci__copy() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_size - * - * Purpose: Returns the size of the raw message in bytes not counting - * the message type or size fields, but only the data fields. - * This function doesn't take into account alignment. - * - * Return: Success: Message data size in bytes without alignment. - * - * Failure: zero - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static size_t -H5O__mdci_size(const H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, - const void H5_ATTR_UNUSED *_mesg) -{ - size_t ret_value = 0; /* Return value */ - - FUNC_ENTER_STATIC_NOERR - - /* Set return value */ - ret_value = (size_t)( 1 + /* Version number */ - H5F_SIZEOF_ADDR(f) + /* addr of metadata cache */ - /* image block */ - H5F_SIZEOF_SIZE(f) ); /* length of metadata cache */ - /* image block */ - - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O__mdci_size() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_free - * - * Purpose: Free the message - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O__mdci_free(void *mesg) -{ - FUNC_ENTER_STATIC_NOERR - - HDassert(mesg); - - mesg = H5FL_FREE(H5O_mdci_t, mesg); - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O__mdci_free() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_delete - * - * Purpose: Free file space referenced by message - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Quincey Koziol - * Wednesday, March 19, 2003 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O__mdci_delete(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, void *_mesg) -{ - H5O_mdci_t *mesg = (H5O_mdci_t *)_mesg; - herr_t ret_value = SUCCEED; /* Return value */ - - FUNC_ENTER_STATIC - - /* check args */ - HDassert(f); - HDassert(open_oh); - HDassert(mesg); - - /* Free file space for cache image */ - if(H5F_addr_defined(mesg->addr)) { - /* The space for the cache image block was allocated directly - * from the VFD layer at the end of file. As this was the - * last file space allocation before shutdown, the cache image - * should still be the last item in the file. - * - * If the hack to work around the self referential free space - * manager issue is in use, file space for the non-empty self - * referential free space managers was also allocated from VFD - * layer at the end of file. Since these allocations directly - * preceeded the cache image allocation they should be directly - * adjacent to the cache image block at the end of file. - * - * In this case, just call H5MF_tidy_self_referential_fsm_hack(). - * - * That routine will float the self referential free space - * managers, and reduce the eoa to its value just prior to - * allocation of space for same. Since the cache image appears - * just after the self referential free space managers, this - * will release the file space for the cache image as well. - * - * Note that in this case, there must not have been any file - * space allocations / deallocations prior to the free of the - * cache image. Verify this to the extent possible. - * - * If the hack to work around the persistant self referential - * free space manager issue is NOT in use, just call H5MF_xfree() - * to release the cache iamge. In principle, we should be able - * to just reduce the EOA to the base address of the cache - * image block, as there shouldn't be any file space allocation - * before the first metadata cache access. However, given - * time constraints, I don't want to go there now. - */ - if(H5F_FIRST_ALLOC_DEALLOC(f)) { - HDassert(HADDR_UNDEF != H5F_EOA_PRE_FSM_FSALLOC(f)); - HDassert(H5F_addr_ge(mesg->addr, H5F_EOA_PRE_FSM_FSALLOC(f))); - if(H5MF_tidy_self_referential_fsm_hack(f, dxpl_id) < 0) - HGOTO_ERROR(H5E_OHDR, H5E_CANTFREE, FAIL, "tidy of self referential fsm hack failed") - } /* end if */ - else { - if(H5MF_xfree(f, H5FD_MEM_SUPER, dxpl_id, mesg->addr, mesg->size) < 0) - HGOTO_ERROR(H5E_OHDR, H5E_CANTFREE, FAIL, "unable to free file space for cache image block") - } /* end else */ - } /* end if */ - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O__mdci_delete() */ - - -/*------------------------------------------------------------------------- - * Function: H5O__mdci_debug - * - * Purpose: Prints debugging info. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: John Mainzer - * 6/22/15 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O__mdci_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, - const void *_mesg, FILE * stream, int indent, int fwidth) -{ - const H5O_mdci_t *mdci = (const H5O_mdci_t *) _mesg; - - FUNC_ENTER_STATIC_NOERR - - /* check args */ - HDassert(f); - HDassert(mdci); - HDassert(stream); - HDassert(indent >= 0); - HDassert(fwidth >= 0); - - HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, - "Metadata Cache Image Block address:", mdci->addr); - - HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, - "Metadata Cache Image Block size in bytes:", mdci->size); - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O__mdci_debug() */ - diff --git a/src/H5Ofsinfo.c b/src/H5Ofsinfo.c deleted file mode 100644 index 8369ae1..0000000 --- a/src/H5Ofsinfo.c +++ /dev/null @@ -1,408 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by The HDF Group. * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the COPYING file, which can be found at the root of the source code * - * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * - * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -/*------------------------------------------------------------------------- - * - * Created: H5Ofsinfo.c - * Feb 2009 - * Vailin Choi - * - * Purpose: File space info message. - * - *------------------------------------------------------------------------- - */ -#define H5F_FRIEND /*suppress error about including H5Fpkg */ -#include "H5Omodule.h" /* This source code file is part of the H5O module */ - - -#include "H5private.h" /* Generic Functions */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5Fpkg.h" /* File access */ -#include "H5FLprivate.h" /* Free lists */ -#include "H5Opkg.h" /* Object headers */ - -/* PRIVATE PROTOTYPES */ -static void *H5O_fsinfo_decode(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, unsigned mesg_flags, - unsigned *ioflags, size_t p_size, const uint8_t *p); -static herr_t H5O_fsinfo_encode(H5F_t *f, hbool_t disable_shared, uint8_t *p, const void *_mesg); -static void *H5O_fsinfo_copy(const void *_mesg, void *_dest); -static size_t H5O_fsinfo_size(const H5F_t *f, hbool_t disable_shared, const void *_mesg); -static herr_t H5O_fsinfo_free(void *mesg); -static herr_t H5O_fsinfo_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, - FILE * stream, int indent, int fwidth); - -/* This message derives from H5O message class */ -const H5O_msg_class_t H5O_MSG_FSINFO[1] = {{ - H5O_FSINFO_ID, /* message id number */ - "fsinfo", /* message name for debugging */ - sizeof(H5O_fsinfo_t), /* native message size */ - 0, /* messages are sharable? */ - H5O_fsinfo_decode, /* decode message */ - H5O_fsinfo_encode, /* encode message */ - H5O_fsinfo_copy, /* copy the native value */ - H5O_fsinfo_size, /* size of free-space manager info message */ - NULL, /* default reset method */ - H5O_fsinfo_free, /* free method */ - NULL, /* file delete method */ - NULL, /* link method */ - NULL, /* set share method */ - NULL, /* can share method */ - NULL, /* pre copy native value to file */ - NULL, /* copy native value to file */ - NULL, /* post copy native value to file */ - NULL, /* get creation index */ - NULL, /* set creation index */ - H5O_fsinfo_debug /* debug the message */ -}}; - -/* Current version of free-space manager info information */ -#define H5O_FSINFO_VERSION_0 0 -#define H5O_FSINFO_VERSION_1 1 - -/* Declare a free list to manage the H5O_fsinfo_t struct */ -H5FL_DEFINE_STATIC(H5O_fsinfo_t); - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_decode - * - * Purpose: Decode a message and return a pointer to a newly allocated one. - * - * Return: Success: Ptr to new message in native form. - * Failure: NULL - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static void * -H5O_fsinfo_decode(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, - unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, - size_t H5_ATTR_UNUSED p_size, const uint8_t *p) -{ - H5O_fsinfo_t *fsinfo = NULL; /* File space info message */ - H5F_mem_page_t ptype; /* Memory type for iteration */ - unsigned vers; /* message version */ - void *ret_value = NULL; /* Return value */ - - FUNC_ENTER_NOAPI_NOINIT - - /* check args */ - HDassert(f); - HDassert(p); - - /* Allocate space for message */ - if(NULL == (fsinfo = H5FL_CALLOC(H5O_fsinfo_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") - - for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) - fsinfo->fs_addr[ptype - 1] = HADDR_UNDEF; - - /* Version of message */ - vers = *p++; - - if(vers == H5O_FSINFO_VERSION_0) { - H5F_file_space_type_t strategy; /* Strategy */ - hsize_t threshold; /* Threshold */ - H5FD_mem_t type; /* Memory type for iteration */ - - fsinfo->persist = H5F_FREE_SPACE_PERSIST_DEF; - fsinfo->threshold = H5F_FREE_SPACE_THRESHOLD_DEF; - fsinfo->page_size = H5F_FILE_SPACE_PAGE_SIZE_DEF; - fsinfo->pgend_meta_thres = H5F_FILE_SPACE_PGEND_META_THRES; - fsinfo->eoa_pre_fsm_fsalloc = HADDR_UNDEF; - - strategy = (H5F_file_space_type_t)*p++; /* File space strategy */ - H5F_DECODE_LENGTH(f, p, threshold); /* Free-space section threshold */ - - /* Map version 0 (deprecated) to version 1 message */ - switch(strategy) { - - case H5F_FILE_SPACE_ALL_PERSIST: - fsinfo->strategy = H5F_FSPACE_STRATEGY_FSM_AGGR; - fsinfo->persist = TRUE; - fsinfo->threshold = threshold; - if(HADDR_UNDEF == (fsinfo->eoa_pre_fsm_fsalloc = H5F_get_eoa(f, H5FD_MEM_DEFAULT)) ) - HGOTO_ERROR(H5E_FILE, H5E_CANTGET, NULL, "unable to get file size") - for(type = H5FD_MEM_SUPER; type < H5FD_MEM_NTYPES; H5_INC_ENUM(H5FD_mem_t, type)) - H5F_addr_decode(f, &p, &(fsinfo->fs_addr[type-1])); - break; - - case H5F_FILE_SPACE_ALL: - fsinfo->strategy = H5F_FSPACE_STRATEGY_FSM_AGGR; - fsinfo->threshold = threshold; - break; - - case H5F_FILE_SPACE_AGGR_VFD: - fsinfo->strategy = H5F_FSPACE_STRATEGY_AGGR; - break; - - case H5F_FILE_SPACE_VFD: - fsinfo->strategy = H5F_FSPACE_STRATEGY_NONE; - break; - - case H5F_FILE_SPACE_NTYPES: - case H5F_FILE_SPACE_DEFAULT: - default: - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, NULL, "invalid file space strategy") - } /* end switch */ - - fsinfo->mapped = TRUE; - - } else { - HDassert(vers == H5O_FSINFO_VERSION_1); - - fsinfo->strategy = (H5F_fspace_strategy_t)*p++; /* File space strategy */ - fsinfo->persist = *p++; /* Free-space persist or not */ - H5F_DECODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section threshold */ - - H5F_DECODE_LENGTH(f, p, fsinfo->page_size); /* File space page size */ - UINT16DECODE(p, fsinfo->pgend_meta_thres); /* Page end metdata threshold */ - H5F_addr_decode(f, &p, &(fsinfo->eoa_pre_fsm_fsalloc)); /* EOA before free-space header and section info */ - - /* Decode addresses of free space managers, if persisting */ - if(fsinfo->persist) { - for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) - H5F_addr_decode(f, &p, &(fsinfo->fs_addr[ptype - 1])); - } /* end if */ - - fsinfo->mapped = FALSE; - } - - /* Set return value */ - ret_value = fsinfo; - -done: - if(ret_value == NULL && fsinfo != NULL) - fsinfo = H5FL_FREE(H5O_fsinfo_t, fsinfo); - - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O_fsinfo_decode() */ - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_encode - * - * Purpose: Encodes a message. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O_fsinfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, const void *_mesg) -{ - const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; - H5F_mem_page_t ptype; /* Memory type for iteration */ - - FUNC_ENTER_NOAPI_NOINIT_NOERR - - /* check args */ - HDassert(f); - HDassert(p); - HDassert(fsinfo); - - *p++ = H5O_FSINFO_VERSION_1; /* message version */ - *p++ = fsinfo->strategy; /* File space strategy */ - *p++ = (unsigned char)fsinfo->persist; /* Free-space persist or not */ - H5F_ENCODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section size threshold */ - - H5F_ENCODE_LENGTH(f, p, fsinfo->page_size); /* File space page size */ - UINT16ENCODE(p, fsinfo->pgend_meta_thres); /* Page end metadata threshold */ - H5F_addr_encode(f, &p, fsinfo->eoa_pre_fsm_fsalloc); /* EOA before free-space header and section info */ - - /* Store addresses of free-space managers, if persisting */ - if(fsinfo->persist) { - /* Addresses of free-space managers */ - for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) - H5F_addr_encode(f, &p, fsinfo->fs_addr[ptype - 1]); - } /* end if */ - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O_fsinfo_encode() */ - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_copy - * - * Purpose: Copies a message from _MESG to _DEST, allocating _DEST if - * necessary. - * - * Return: Success: Ptr to _DEST - * Failure: NULL - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static void * -H5O_fsinfo_copy(const void *_mesg, void *_dest) -{ - const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; - H5O_fsinfo_t *dest = (H5O_fsinfo_t *) _dest; - void *ret_value = NULL; /* Return value */ - - FUNC_ENTER_NOAPI_NOINIT - - /* check args */ - HDassert(fsinfo); - if(!dest && NULL == (dest = H5FL_CALLOC(H5O_fsinfo_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") - - /* copy */ - *dest = *fsinfo; - - /* Set return value */ - ret_value = dest; - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O_fsinfo_copy() */ - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_size - * - * Purpose: Returns the size of the raw message in bytes not counting - * the message type or size fields, but only the data fields. - * This function doesn't take into account alignment. - * - * Return: Success: Message data size in bytes without alignment. - * Failure: zero - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static size_t -H5O_fsinfo_size(const H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, const void *_mesg) -{ - const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *)_mesg; - size_t ret_value = 0; /* Return value */ - - FUNC_ENTER_NOAPI_NOINIT_NOERR - - ret_value = 3 /* Version, strategy & persist */ - + (size_t)H5F_SIZEOF_SIZE(f) /* Free-space section threshold */ - + (size_t)H5F_SIZEOF_SIZE(f) /* File space page size */ - + 2 /* Page end meta threshold */ - + (size_t)H5F_SIZEOF_ADDR(f); - - /* Free-space manager addresses */ - if(fsinfo->persist) - ret_value += (H5F_MEM_PAGE_NTYPES - 1) * (size_t)H5F_SIZEOF_ADDR(f); - - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5O_fsinfo_size() */ - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_free - * - * Purpose: Free's the message - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O_fsinfo_free(void *mesg) -{ - FUNC_ENTER_NOAPI_NOINIT_NOERR - - HDassert(mesg); - - mesg = H5FL_FREE(H5O_fsinfo_t, mesg); - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O_fsinfo_free() */ - - -/*------------------------------------------------------------------------- - * Function: H5O_fsinfo_debug - * - * Purpose: Prints debugging info for a message. - * - * Return: Non-negative on success/Negative on failure - * - * Programmer: Vailin Choi; Feb 2009 - * - *------------------------------------------------------------------------- - */ -static herr_t -H5O_fsinfo_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, const void *_mesg, FILE * stream, - int indent, int fwidth) -{ - const H5O_fsinfo_t *fsinfo = (const H5O_fsinfo_t *) _mesg; - H5F_mem_page_t ptype; /* Free-space types for iteration */ - - FUNC_ENTER_NOAPI_NOINIT_NOERR - - /* check args */ - HDassert(f); - HDassert(fsinfo); - HDassert(stream); - HDassert(indent >= 0); - HDassert(fwidth >= 0); - - HDfprintf(stream, "%*s%-*s ", indent, "", fwidth, "File space strategy:"); - switch(fsinfo->strategy) { - case H5F_FSPACE_STRATEGY_FSM_AGGR: - HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_FSM_AGGR"); - break; - - case H5F_FSPACE_STRATEGY_PAGE: - HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_PAGE"); - break; - - case H5F_FSPACE_STRATEGY_AGGR: - HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_AGGR"); - break; - - case H5F_FSPACE_STRATEGY_NONE: - HDfprintf(stream, "%s\n", "H5F_FSPACE_STRATEGY_NONE"); - break; - - case H5F_FSPACE_STRATEGY_NTYPES: - default: - HDfprintf(stream, "%s\n", "unknown"); - } /* end switch */ - - HDfprintf(stream, "%*s%-*s %t\n", indent, "", fwidth, - "Free-space persist:", fsinfo->persist); - - HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, - "Free-space section threshold:", fsinfo->threshold); - - HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, - "File space page size:", fsinfo->page_size); - - HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, - "Page end metadata threshold:", fsinfo->pgend_meta_thres); - - HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, - "eoa_pre_fsm_fsalloc:", fsinfo->eoa_pre_fsm_fsalloc); - - if(fsinfo->persist) { - for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; H5_INC_ENUM(H5F_mem_page_t, ptype)) - HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, - "Free space manager address:", fsinfo->fs_addr[ptype-1]); - } /* end if */ - - FUNC_LEAVE_NOAPI(SUCCEED) -} /* end H5O_fsinfo_debug() */ - -- cgit v0.12 From aa52644d1f9e5a1103e4f670b56074c4e46a04f2 Mon Sep 17 00:00:00 2001 From: lrknox Date: Fri, 11 May 2018 11:02:43 -0500 Subject: Address compile errors and merge conflicts. --- src/H5Abtree2.c | 2 +- src/H5HFcache.c | 2 +- src/H5Ocache.c | 4 ++-- src/H5T.c | 8 +++----- src/H5Tprivate.h | 3 --- 5 files changed, 7 insertions(+), 12 deletions(-) diff --git a/src/H5Abtree2.c b/src/H5Abtree2.c index 02fffce..318c60d 100644 --- a/src/H5Abtree2.c +++ b/src/H5Abtree2.c @@ -162,7 +162,7 @@ const H5B2_class_t H5A_BT2_CORDER[1]={{ /* B-tree class information */ *------------------------------------------------------------------------- */ static herr_t -H5A__dense_fh_name_cmp(const void *obj, size_t obj_len, void *_udata) +H5A_dense_fh_name_cmp(const void *obj, size_t obj_len, void *_udata) { H5A_fh_ud_cmp_t *udata = (H5A_fh_ud_cmp_t *)_udata; /* User data for 'op' callback */ H5A_t *attr = NULL; /* Pointer to attribute created from heap object */ diff --git a/src/H5HFcache.c b/src/H5HFcache.c index 319a865..0d25dbf 100644 --- a/src/H5HFcache.c +++ b/src/H5HFcache.c @@ -384,7 +384,7 @@ H5HF_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata) UINT32DECODE(p, hdr->pline_root_direct_filter_mask); /* Decode I/O filter information */ - if(NULL == (pline = (H5O_pline_t *)H5O_msg_decode(hdr->f, udata->dxpl_id, NULL, H5O_PLINE_ID, len, image))) + if(NULL == (pline = (H5O_pline_t *)H5O_msg_decode(hdr->f, udata->dxpl_id, NULL, H5O_PLINE_ID, hdr->filter_len, p))) HGOTO_ERROR(H5E_HEAP, H5E_CANTDECODE, NULL, "can't decode I/O pipeline filters") p += hdr->filter_len; diff --git a/src/H5Ocache.c b/src/H5Ocache.c index ebae3f5..39f3ca3 100644 --- a/src/H5Ocache.c +++ b/src/H5Ocache.c @@ -1288,7 +1288,7 @@ H5O_chunk_deserialize(H5O_t *oh, haddr_t addr, size_t len, const uint8_t *image, unsigned ioflags = 0; /* Flags for decode routine */ /* Decode continuation message */ - cont = (H5O_cont_t *)(H5O_MSG_CONT->decode)(udata->f, udata->dxpl_id, NULL, 0, &ioflags, oh->mesg[curmesg].raw); + cont = (H5O_cont_t *)(H5O_MSG_CONT->decode)(udata->f, udata->dxpl_id, NULL, 0, &ioflags, oh->mesg[curmesg].raw_size, oh->mesg[curmesg].raw); cont->chunkno = udata->cont_msg_info->nmsgs + 1; /*the next continuation message/chunk */ /* Save 'native' form of continuation message */ @@ -1312,7 +1312,7 @@ H5O_chunk_deserialize(H5O_t *oh, haddr_t addr, size_t len, const uint8_t *image, /* Decode ref. count message */ HDassert(oh->version > H5O_VERSION_1); - refcount = (H5O_refcount_t *)(H5O_MSG_REFCOUNT->decode)(udata->f, udata->dxpl_id, NULL, 0, &ioflags, oh->mesg[curmesg].raw); + refcount = (H5O_refcount_t *)(H5O_MSG_REFCOUNT->decode)(udata->f, udata->dxpl_id, NULL, 0, &ioflags, oh->mesg[curmesg].raw_size, oh->mesg[curmesg].raw); /* Save 'native' form of ref. count message */ oh->mesg[curmesg].native = refcount; diff --git a/src/H5T.c b/src/H5T.c index 9eeb7db..36b4c63 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -298,8 +298,6 @@ static herr_t H5T_unregister(H5T_pers_t pers, const char *name, H5T_t *src, static herr_t H5T_register(H5T_pers_t pers, const char *name, H5T_t *src, H5T_t *dst, H5T_conv_t func, hid_t dxpl_id, hbool_t api_call); static htri_t H5T_compiler_conv(H5T_t *src, H5T_t *dst); -static herr_t H5T_encode(H5T_t *obj, unsigned char *buf, size_t *nalloc); -static H5T_t *H5T_decode(const unsigned char *buf); static herr_t H5T_set_size(H5T_t *dt, size_t size); @@ -2839,7 +2837,7 @@ done: * *------------------------------------------------------------------------- */ -static herr_t +herr_t H5T_encode(H5T_t *obj, unsigned char *buf, size_t *nalloc) { size_t buf_size; /* Encoded size of datatype */ @@ -2895,7 +2893,7 @@ done: * *------------------------------------------------------------------------- */ -static H5T_t * +H5T_t * H5T_decode(size_t buf_size, const unsigned char *buf) { H5F_t *f = NULL; /* Fake file structure*/ @@ -2916,7 +2914,7 @@ H5T_decode(size_t buf_size, const unsigned char *buf) HGOTO_ERROR(H5E_DATATYPE, H5E_VERSION, NULL, "unknown version of encoded datatype") /* Decode the serialized datatype message */ - if(NULL == (ret_value = (H5T_t *)H5O_msg_decode(f, H5AC_noio_dxpl_id, NULL, H5O_DTYPE_ID, buf_size, buf))) + if(NULL == (ret_value = (H5T_t *)H5O_msg_decode(f, H5AC_ind_dxpl_id, NULL, H5O_DTYPE_ID, buf_size, buf))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTDECODE, NULL, "can't decode object") /* Mark datatype as being in memory now */ diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h index 47266d3..f519141 100644 --- a/src/H5Tprivate.h +++ b/src/H5Tprivate.h @@ -112,11 +112,8 @@ H5_DLL H5T_class_t H5T_get_class(const H5T_t *dt, htri_t internal); H5_DLL htri_t H5T_detect_class(const H5T_t *dt, H5T_class_t cls, hbool_t from_api); H5_DLL size_t H5T_get_size(const H5T_t *dt); H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2, hbool_t superset); -<<<<<<< HEAD -======= H5_DLL herr_t H5T_encode(H5T_t *obj, unsigned char *buf, size_t *nalloc); H5_DLL H5T_t *H5T_decode(size_t buf_size, const unsigned char *buf); ->>>>>>> 302053f... Fix for HDFFV-10355 (CVE-2017-17506). H5_DLL herr_t H5T_debug(const H5T_t *dt, FILE * stream); H5_DLL struct H5O_loc_t *H5T_oloc(H5T_t *dt); H5_DLL H5G_name_t *H5T_nameof(H5T_t *dt); -- cgit v0.12 From 0a7128c0d5bd035288be7b02ca9cf9bba321aadd Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Mon, 26 Feb 2018 20:16:13 -0800 Subject: Fix for HDFFV-10357 (CVE-2017-17508). --- release_docs/RELEASE.txt | 15 +++++++++++++++ src/H5T.c | 5 +++++ 2 files changed, 20 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ebdb5f8..549b8a2 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -174,6 +174,21 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/02/26, HDFFV-10355) + - If an HDF5 file contains a malformed compound type which contains + a member of size zero, a division by zero error will occur while + processing the type. + + This issue was reported to The HDF Group as issue #CVE-2017-17508. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + Checking for zero before dividing fixes the problem. Instead of the + division by zero, the normal HDF5 error handling is invoked. + + (DER - 2018/02/26, HDFFV-10357) + Configuration ------------- - CMake diff --git a/src/H5T.c b/src/H5T.c index 36b4c63..f4c10a5 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -5174,6 +5174,11 @@ H5T_set_loc(H5T_t *dt, H5F_t *f, H5T_loc_t loc) /* Check if the field changed size */ if(old_size != memb_type->shared->size) { + + /* Fail if the old_size is zero */ + if (0 == old_size) + HGOTO_ERROR(H5E_DATATYPE, H5E_BADVALUE, FAIL, "old_size of zero would cause division by zero"); + /* Adjust the size of the member */ dt->shared->u.compnd.memb[i].size = (dt->shared->u.compnd.memb[i].size*memb_type->shared->size)/old_size; -- cgit v0.12 From 878537c9cb639e84ae67c65729620cee541c253b Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Tue, 13 Mar 2018 10:10:14 -0700 Subject: Added a "won't fix" RELEASE.txt entry for HDFFV-10356. --- release_docs/RELEASE.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 549b8a2..30b148a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -174,6 +174,26 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/02/26, HDFFV-10355) + - If an HDF5 file contains a malformed compound datatype with a + suitably large offset, the type conversion code can run off + the end of the type conversion buffer, causing a segmentation + fault. + + This issue was reported to The HDF Group as issue #CVE-2017-17507. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + THE HDF GROUP WILL NOT FIX THIS BUG AT THIS TIME + + Fixing this problem would involve updating the publicly visible + H5T_conv_t function pointer typedef and versioning the API calls + which use it. We normally only modify the public API during + major releases, so this bug will not be fixed at this time. + + (DER - 2018/02/26, HDFFV-10356) + - If an HDF5 file contains a malformed compound type which contains a member of size zero, a division by zero error will occur while processing the type. -- cgit v0.12 From 2636f401ba236e99adda4cc50fb89bebbe0b73fd Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Fri, 11 May 2018 16:51:03 -0700 Subject: Moved a fix for HDFFV-10358 (CVE-2017-17509) from develop to 1.8. This was done manually due to the cache differences between 1.8 and develop. --- release_docs/RELEASE.txt | 17 ++++++++++++++++ src/H5Gcache.c | 53 ++++++++++++++++++++++++------------------------ src/H5Gent.c | 8 ++++++-- src/H5Gpkg.h | 6 +++--- 4 files changed, 52 insertions(+), 32 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 30b148a..ad06d40 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -209,6 +209,23 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/02/26, HDFFV-10357) + - If an HDF5 file contains a malformed symbol table node that declares + it contains more symbols than it actually contains, the library + can run off the end of the metadata cache buffer while processing + the symbol table node. + + This issue was reported to The HDF Group as issue #CVE-2017-17509. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + Performing bounds checks on the buffer while processing fixes the + problem. Instead of the segmentation fault, the normal HDF5 error + handling is invoked. + + (DER - 2018/03/12, HDFFV-10358) + Configuration ------------- - CMake diff --git a/src/H5Gcache.c b/src/H5Gcache.c index 1ca80df..994c5bf 100644 --- a/src/H5Gcache.c +++ b/src/H5Gcache.c @@ -103,49 +103,43 @@ H5FL_SEQ_EXTERN(H5G_entry_t); /*------------------------------------------------------------------------- - * Function: H5G_node_load + * Function: H5G_node_load * - * Purpose: Loads a symbol table node from the file. + * Purpose: Loads a symbol table node from the file. * - * Return: Success: Ptr to the new table. + * Return: Success: Ptr to the new table. + * Failure: NULL * - * Failure: NULL - * - * Programmer: Robb Matzke - * matzke@llnl.gov - * Jun 23 1997 + * Programmer: Robb Matzke + * matzke@llnl.gov + * Jun 23 1997 * *------------------------------------------------------------------------- */ static H5G_node_t * H5G_node_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *udata) { - H5G_node_t *sym = NULL; - H5WB_t *wb = NULL; /* Wrapped buffer for node data */ - uint8_t node_buf[H5G_NODE_BUF_SIZE]; /* Buffer for node */ - uint8_t *node; /* Pointer to node buffer */ + H5G_node_t *sym = NULL; + H5WB_t *wb = NULL; /* Wrapped buffer for node data */ + uint8_t node_buf[H5G_NODE_BUF_SIZE]; /* Buffer for node */ + uint8_t *node; /* Pointer to node buffer */ const uint8_t *p; - H5G_node_t *ret_value; /*for error handling */ + const uint8_t *p_end; + H5G_node_t *ret_value; /* Return value */ FUNC_ENTER_NOAPI_NOINIT - /* - * Check arguments. - */ + /* Sanity checks */ HDassert(f); HDassert(H5F_addr_defined(addr)); HDassert(udata); - /* - * Initialize variables. - */ - /* Allocate symbol table data structures */ if(NULL == (sym = H5FL_CALLOC(H5G_node_t))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") sym->node_size = H5G_NODE_SIZE(f); if(NULL == (sym->entry = H5FL_SEQ_CALLOC(H5G_entry_t, (size_t)(2 * H5F_SYM_LEAF_K(f))))) - HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") + HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed") /* Wrap the local buffer for serialized node info */ if(NULL == (wb = H5WB_wrap(node_buf, sizeof(node_buf)))) @@ -157,19 +151,24 @@ H5G_node_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *udata) /* Read the serialized symbol table node. */ if(H5F_block_read(f, H5FD_MEM_BTREE, addr, sym->node_size, dxpl_id, node) < 0) - HGOTO_ERROR(H5E_SYM, H5E_READERROR, NULL, "unable to read symbol table node") + HGOTO_ERROR(H5E_SYM, H5E_READERROR, NULL, "unable to read symbol table node") /* Get temporary pointer to serialized node */ p = node; + /* Get a pointer to the end of the node. This ensures we don't run off + * the end of the buffer if the file is corrupt. + */ + p_end = p + sym->node_size - 1; + /* magic */ if(HDmemcmp(p, H5G_NODE_MAGIC, (size_t)H5_SIZEOF_MAGIC)) - HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "bad symbol table node signature") + HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "bad symbol table node signature") p += 4; /* version */ if(H5G_NODE_VERS != *p++) - HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "bad symbol table node version") + HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "bad symbol table node version") /* reserved */ p++; @@ -178,8 +177,8 @@ H5G_node_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *udata) UINT16DECODE(p, sym->nsyms); /* entries */ - if(H5G__ent_decode_vec(f, &p, sym->entry, sym->nsyms) < 0) - HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "unable to decode symbol table entries") + if(H5G__ent_decode_vec(f, &p, p_end, sym->entry, sym->nsyms) < 0) + HGOTO_ERROR(H5E_SYM, H5E_CANTLOAD, NULL, "unable to decode symbol table entries") /* Set return value */ ret_value = sym; diff --git a/src/H5Gent.c b/src/H5Gent.c index bb6aa38..1bd8e63 100644 --- a/src/H5Gent.c +++ b/src/H5Gent.c @@ -91,7 +91,8 @@ H5FL_BLK_EXTERN(str_buf); *------------------------------------------------------------------------- */ herr_t -H5G__ent_decode_vec(const H5F_t *f, const uint8_t **pp, H5G_entry_t *ent, unsigned n) +H5G__ent_decode_vec(const H5F_t *f, const uint8_t **pp, const uint8_t *p_end, + H5G_entry_t *ent, unsigned n) { unsigned u; /* Local index variable */ herr_t ret_value = SUCCEED; /* Return value */ @@ -104,9 +105,12 @@ H5G__ent_decode_vec(const H5F_t *f, const uint8_t **pp, H5G_entry_t *ent, unsign HDassert(ent); /* decode entries */ - for(u = 0; u < n; u++) + for(u = 0; u < n; u++) { + if(*pp > p_end) + HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "ran off the end of the buffer") if(H5G_ent_decode(f, pp, ent + u) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTDECODE, FAIL, "can't decode") + } done: FUNC_LEAVE_NOAPI(ret_value) diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index 07aff02..f49ef26 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -1,4 +1,4 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * @@ -400,9 +400,9 @@ H5_DLL void H5G__ent_copy(H5G_entry_t *dst, const H5G_entry_t *src, H5_copy_depth_t depth); H5_DLL void H5G__ent_reset(H5G_entry_t *ent); H5_DLL herr_t H5G__ent_decode_vec(const H5F_t *f, const uint8_t **pp, - H5G_entry_t *ent, unsigned n); + const uint8_t *p_end, H5G_entry_t *ent, unsigned n); H5_DLL herr_t H5G__ent_encode_vec(const H5F_t *f, uint8_t **pp, - const H5G_entry_t *ent, unsigned n); + const H5G_entry_t *ent, unsigned n); H5_DLL herr_t H5G__ent_convert(H5F_t *f, hid_t dxpl_id, H5HL_t *heap, const char *name, const H5O_link_t *lnk, H5O_type_t obj_type, const void *crt_info, H5G_entry_t *ent); -- cgit v0.12 From 572bc474a61b39063add8118eb5d3c6f2cdb6f93 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sat, 12 May 2018 12:39:42 -0500 Subject: Added C++ wrappers Description: - Added the following wrappers to class H5::H5Location: + H5Lcreate_soft: changed name from newLink to link // Creates a soft link from link_name to target_name. void link(const char *target_name, const char *link_name,...) void link(const H5std_string& target_name,...) + H5Lcreate_hard: changed name from newLink to link // Creates a hard link from new_name to curr_name. void link(const char *curr_name, const Group& new_loc,...) void link(const H5std_string& curr_name, const Group& new_loc,...) // Creates a hard link from new_name to curr_name in same location. void link(const char *curr_name, const hid_t same_loc,...) void link(const H5std_string& curr_name, const hid_t same_loc,...) + H5Ldelete: modified existing functions to add 2nd argument // Removes the specified link from this location. void unlink(const char *link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) void unlink(const H5std_string& link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + H5Lcopy: // Copy an object from a group of file to another. void copyLink(const char *src_name, const Group& dst,...) void copyLink(const H5std_string& src_name, const Group& dst,...) // Copy an object from a group of file to the same location. void copyLink(const char *src_name, const char *dst_name,...) void copyLink(const H5std_string& src_name,...) + H5Lmove: // Rename an object in a group or file to a new location. void moveLink(const char* src_name, const Group& dst,...) void moveLink(const H5std_string& src_name, const Group& dst,...) // Rename an object in a group or file to the same location. void moveLink(const char* src_name, const char* dst_name,...) void moveLink(const H5std_string& src_name,...) - Added using statements to H5::Group for functions that need to be be in both classes, H5Location and CommonFG, until they can be removed. - Removed H5A wrappers from H5Location as they've been in H5Object. - Clean up deprecated items and updated comments. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test) --- c++/src/H5AbstractDs.cpp | 2 + c++/src/H5ArrayType.cpp | 2 + c++/src/H5AtomType.cpp | 2 + c++/src/H5Attribute.cpp | 2 + c++/src/H5Attribute.h | 4 +- c++/src/H5CommonFG.cpp | 66 ++-- c++/src/H5CommonFG.h | 16 +- c++/src/H5CompType.cpp | 2 + c++/src/H5Cpp.h | 2 + c++/src/H5DataSet.cpp | 2 + c++/src/H5DataType.cpp | 2 + c++/src/H5DcreatProp.cpp | 2 + c++/src/H5EnumType.cpp | 2 + c++/src/H5FloatType.cpp | 2 + c++/src/H5Group.h | 9 + c++/src/H5IntType.cpp | 2 + c++/src/H5Location.cpp | 838 ++++++++++++++++++++++++++++++--------------- c++/src/H5Location.h | 106 +++++- c++/src/H5Object.cpp | 47 +-- c++/src/H5PredType.cpp | 2 + c++/src/H5StrType.cpp | 2 + c++/src/H5StrcreatProp.cpp | 30 ++ c++/src/H5StrcreatProp.h | 6 +- c++/src/H5VarLenType.cpp | 2 + c++/test/tlinks.cpp | 366 +++++++++++++++++++- 25 files changed, 1137 insertions(+), 381 deletions(-) diff --git a/c++/src/H5AbstractDs.cpp b/c++/src/H5AbstractDs.cpp index 1391b44..92733ab 100644 --- a/c++/src/H5AbstractDs.cpp +++ b/c++/src/H5AbstractDs.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5ArrayType.cpp b/c++/src/H5ArrayType.cpp index b0d65b0..857729c 100644 --- a/c++/src/H5ArrayType.cpp +++ b/c++/src/H5ArrayType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5AtomType.cpp b/c++/src/H5AtomType.cpp index 75180c5..bd46d7b 100644 --- a/c++/src/H5AtomType.cpp +++ b/c++/src/H5AtomType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5Attribute.cpp b/c++/src/H5Attribute.cpp index 739cda7..207d73c 100644 --- a/c++/src/H5Attribute.cpp +++ b/c++/src/H5Attribute.cpp @@ -27,6 +27,8 @@ #include "H5FcreatProp.h" #include "H5OcreatProp.h" #include "H5DcreatProp.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5Attribute.h b/c++/src/H5Attribute.h index 9ac21b5..cb07ab7 100644 --- a/c++/src/H5Attribute.h +++ b/c++/src/H5Attribute.h @@ -47,8 +47,8 @@ class H5_DLLCPP Attribute : public AbstractDs, public H5Location { H5std_string getName() const; ssize_t getName(H5std_string& attr_name, size_t len = 0) const; // The overloaded function below is replaced by the one above and it - // is kept for backward compatibility purpose. - ssize_t getName(size_t buf_size, H5std_string& attr_name) const; + // is kept for backward compatibility purpose. Removed in 1.8.21. + // ssize_t getName(size_t buf_size, H5std_string& attr_name) const; // Gets a copy of the dataspace for this attribute. virtual DataSpace getSpace() const; diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp index 97900f6..118b1b2 100644 --- a/c++/src/H5CommonFG.cpp +++ b/c++/src/H5CommonFG.cpp @@ -299,13 +299,17 @@ void CommonFG::link(H5L_type_t link_type, const H5std_string& curr_name, const H link(link_type, curr_name.c_str(), new_name.c_str()); } +#if 0 //-------------------------------------------------------------------------- // Function: CommonFG::unlink -///\brief Removes the specified name at this location. +///\brief Deprecated - replaced by H5Location::unlink ///\param name - IN: Name of the object to be removed ///\exception H5::FileIException or H5::GroupIException -// Programmer Binh-Minh Ribler - 2000 // Modification +// May 2018: +// This function is deprecated immediately, in 1.8.21, because +// their replacement have two arguments and one of them is a +// default. // 2007: QAK modified to use H5L APIs - BMR //-------------------------------------------------------------------------- void CommonFG::unlink(const char* name) const @@ -317,15 +321,18 @@ void CommonFG::unlink(const char* name) const //-------------------------------------------------------------------------- // Function: CommonFG::unlink -///\brief This is an overloaded member function, provided for convenience. -/// It differs from the above function in that it takes an -/// \c H5std_string for \a name. -// Programmer Binh-Minh Ribler - 2000 +///\brief Deprecated - replaced by H5Location::unlink +// Modification +// May 2018: +// This function is deprecated immediately, in 1.8.21, because +// their replacement have two arguments and one of them is a +// default. //-------------------------------------------------------------------------- void CommonFG::unlink(const H5std_string& name) const { unlink(name.c_str()); } +#endif //-------------------------------------------------------------------------- // Function: CommonFG::move @@ -338,9 +345,10 @@ void CommonFG::unlink(const H5std_string& name) const /// data in a file inaccessible with Group::move. Please refer /// to the Group Interface in the HDF5 User's Guide for details at: /// https://support.hdfgroup.org/HDF5/doc/UG/HDF5_Users_Guide-Responsive%20HTML5/index.html#t=HDF5_Users_Guide%2FGroups%2FHDF5_Groups.htm -// Programmer Binh-Minh Ribler - 2000 +// 2000 // Modification // 2007: QAK modified to use H5L APIs - BMR +// May 2018: Deprecated in favor of H5Location::moveLink (1.8.21) //-------------------------------------------------------------------------- void CommonFG::move(const char* src, const char* dst) const { @@ -354,7 +362,9 @@ void CommonFG::move(const char* src, const char* dst) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a src and \a dst. -// Programmer Binh-Minh Ribler - 2000 +// 2000 +// Modification +// May 2018: Deprecated in favor of H5Location::moveLink (1.8.21) //-------------------------------------------------------------------------- void CommonFG::move(const H5std_string& src, const H5std_string& dst) const { @@ -422,6 +432,8 @@ void CommonFG::getObjinfo(const H5std_string& name, H5G_stat_t& statbuf) const } #endif /* H5_NO_DEPRECATED_SYMBOLS */ +#if 0 +// Moved to H5Location in 1.8.21 //-------------------------------------------------------------------------- // Function: CommonFG::getLinkval ///\brief Returns the name of the object that the symbolic link points to. @@ -480,6 +492,8 @@ H5std_string CommonFG::getLinkval(const H5std_string& name, size_t size) const return(getLinkval(name.c_str(), size)); } +#endif + //-------------------------------------------------------------------------- // Function: CommonFG::mount ///\brief Mounts the file \a child onto this group. @@ -507,26 +521,6 @@ void CommonFG::mount(const char* name, const H5File& child, const PropList& plis //-------------------------------------------------------------------------- // Function: CommonFG::mount -// Purpose This is an overloaded member function, kept for backward -// compatibility. It differs from the above function in that it -// misses const's. This wrapper will be removed in future release. -// Param name - IN: Name of the group -// Param child - IN: File to mount -// Param plist - IN: Property list to use -// Exception H5::FileIException or H5::GroupIException -// Programmer Binh-Minh Ribler - 2000 -// Modification -// Modified to call its replacement. -BMR, 2014/04/16 -// Removed from documentation. -BMR, 2016/03/07 1.8.17 and 1.10.0 -// Removed from code. -BMR, 2016/08/11 1.8.18 and 1.10.1 -//-------------------------------------------------------------------------- -//void CommonFG::mount(const char* name, H5File& child, PropList& plist) const -//{ -// mount(name, child, plist); -//} - -//-------------------------------------------------------------------------- -// Function: CommonFG::mount ///\brief This is an overloaded member function, provided for convenience. /// It takes an \c H5std_string for \a name. // Programmer Binh-Minh Ribler - 2000 @@ -539,22 +533,6 @@ void CommonFG::mount(const H5std_string& name, const H5File& child, const PropLi } //-------------------------------------------------------------------------- -// Function: CommonFG::mount -// Purpose This is an overloaded member function, kept for backward -// compatibility. It differs from the above function in that it -// misses const's. This wrapper will be removed in future release. -// Programmer Binh-Minh Ribler - 2014 -// Modification -// Modified to call its replacement. -BMR, 2014/04/16 -// Removed from documentation. -BMR, 2016/03/07 1.8.17 and 1.10.0 -// Removed from code. -BMR, 2016/08/11 1.8.18 and 1.10.1 -//-------------------------------------------------------------------------- -//void CommonFG::mount(const H5std_string& name, H5File& child, PropList& plist) const -//{ -// mount(name.c_str(), child, plist); -//} - -//-------------------------------------------------------------------------- // Function: CommonFG::unmount ///\brief Unmounts the specified file. ///\param name - IN: Name of the file to unmount diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index 5e43d8c..4afc777 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -47,8 +47,9 @@ class H5_DLLCPP CommonFG { DataSet openDataSet(const H5std_string& name) const; // Returns the value of a symbolic link. - H5std_string getLinkval(const char* link_name, size_t size=0) const; - H5std_string getLinkval(const H5std_string& link_name, size_t size=0) const; + // Moved to H5Location in 1.8.21. + //H5std_string getLinkval(const char* link_name, size_t size=0) const; + //H5std_string getLinkval(const H5std_string& link_name, size_t size=0) const; // Returns the number of objects in this group. hsize_t getNumObjs() const; @@ -92,24 +93,27 @@ class H5_DLLCPP CommonFG { // Creates a link of the specified type from new_name to current_name; // both names are interpreted relative to the specified location id. + // Deprecated in favor of H5Location::link overloaded (1.8.21) void link(H5L_type_t link_type, const char* curr_name, const char* new_name) const; void link(H5L_type_t link_type, const H5std_string& curr_name, const H5std_string& new_name) const; // Removes the specified name at this location. - void unlink(const char* name) const; - void unlink(const H5std_string& name) const; + // Deprecated in favor of H5Location::unlink overloaded (1.8.21) + // These functions can be removed immediately because their replacement + // have a default argument out of two. + //void unlink(const char* name) const; + //void unlink(const H5std_string& name) const; // Mounts the file 'child' onto this location. void mount(const char* name, const H5File& child, const PropList& plist) const; - //void mount(const char* name, H5File& child, PropList& plist) const; // removed from 1.8.18 and 1.10.1 void mount(const H5std_string& name, const H5File& child, const PropList& plist) const; - //void mount(const H5std_string& name, H5File& child, PropList& plist) const; // removed from 1.8.18 and 1.10.1 // Unmounts the file named 'name' from this parent location. void unmount(const char* name) const; void unmount(const H5std_string& name) const; // Renames an object at this location. + // Deprecated in favor of H5Location::moveLink (1.8.21) void move(const char* src, const char* dst) const; void move(const H5std_string& src, const H5std_string& dst) const; diff --git a/c++/src/H5CompType.cpp b/c++/src/H5CompType.cpp index 903a7c4..5ff610e 100644 --- a/c++/src/H5CompType.cpp +++ b/c++/src/H5CompType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5Cpp.h b/c++/src/H5Cpp.h index af7d1e5fa..b04c7a2 100644 --- a/c++/src/H5Cpp.h +++ b/c++/src/H5Cpp.h @@ -20,6 +20,8 @@ #include "H5IdComponent.h" #include "H5DataSpace.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp index 1dce28e..f8277f9 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -23,6 +23,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5DataType.cpp b/c++/src/H5DataType.cpp index dc9b422..3ed8113 100644 --- a/c++/src/H5DataType.cpp +++ b/c++/src/H5DataType.cpp @@ -23,6 +23,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5DcreatProp.cpp b/c++/src/H5DcreatProp.cpp index 8e2468b..2e5b2e4 100644 --- a/c++/src/H5DcreatProp.cpp +++ b/c++/src/H5DcreatProp.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5EnumType.cpp b/c++/src/H5EnumType.cpp index 4b06ca5..9bd359a 100644 --- a/c++/src/H5EnumType.cpp +++ b/c++/src/H5EnumType.cpp @@ -18,6 +18,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5FloatType.cpp b/c++/src/H5FloatType.cpp index 05284f9..fb9fe58 100644 --- a/c++/src/H5FloatType.cpp +++ b/c++/src/H5FloatType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5Group.h b/c++/src/H5Group.h index 20637b7..88c1a3b 100644 --- a/c++/src/H5Group.h +++ b/c++/src/H5Group.h @@ -55,6 +55,15 @@ class H5_DLLCPP Group : public H5Object, public CommonFG { // Creates a copy of an existing group using its id. Group(const hid_t group_id); + // The "using" lines below are to avoid the compilation error + // "error: request for member ‘link’ is ambiguous" when both CommonFG and + // H5Location have overloaded functions of the same name. CommonFG's + // member functions need to be kept for backward compatibility for a while. + // They can be removed after these functions are removed. + // -BMR, May 2018 + using H5Location::link; + using CommonFG::link; + protected: #ifndef DOXYGEN_SHOULD_SKIP_THIS // Sets the group id. diff --git a/c++/src/H5IntType.cpp b/c++/src/H5IntType.cpp index 6af2dc2..8861434 100644 --- a/c++/src/H5IntType.cpp +++ b/c++/src/H5IntType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 43ba34c..692c7c2 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -18,13 +18,21 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5FaccProp.h" +#include "H5FcreatProp.h" +#include "H5OcreatProp.h" +#include "H5DcreatProp.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5DataType.h" #include "H5DataSpace.h" #include "H5AbstractDs.h" -#include "H5Attribute.h" +#include "H5CommonFG.h" +#include "H5Group.h" +#include "H5File.h" namespace H5 { @@ -87,139 +95,15 @@ H5Location::H5Location() : IdComponent() {} Notes for H5A wrappers ====================== May, 2017 (1.8.19) - These H5A wrappers are copied to H5Object to prevent an attribute + The H5A wrappers are copied to H5Object to prevent an attribute id being passed in to H5A APIs. The original H5A wrapper functions here will be deprecated in future releases. +May, 2018 (1.8.21) + They are removed from 1.8.21 ***************************************************************************/ //-------------------------------------------------------------------------- -// Function: H5Location::createAttribute -///\brief Deprecated - replaced by H5Object::createAttribute() -// brief Creates an attribute for a group, dataset, or named datatype. -///\param name - IN: Name of the attribute -///\param data_type - IN: Datatype for the attribute -///\param data_space - IN: Dataspace for the attribute - only simple -/// dataspaces are allowed at this time -///\param create_plist - IN: Creation property list - default to -/// PropList::DEFAULT -///\return Attribute instance -///\exception H5::AttributeIException -///\par Description -/// The attribute name specified in \a name must be unique. -/// Attempting to create an attribute with the same name as an -/// existing attribute will raise an exception, leaving the -/// pre-existing attribute intact. To overwrite an existing -/// attribute with a new attribute of the same name, first -/// delete the existing one with \c H5Location::removeAttr, then -/// recreate it with this function. -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -Attribute H5Location::createAttribute(const char* name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist) const -{ - hid_t type_id = data_type.getId(); - hid_t space_id = data_space.getId(); - hid_t plist_id = create_plist.getId(); - hid_t attr_id = H5Acreate2(getId(), name, type_id, space_id, plist_id, H5P_DEFAULT); - - // If the attribute id is valid, create and return the Attribute object - if(attr_id > 0) - { - Attribute attr; - f_Attribute_setId(&attr, attr_id); - return(attr); - } - else - throw AttributeIException(inMemFunc("createAttribute"), "H5Acreate2 failed"); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::createAttribute -///\brief Deprecated - replaced by H5Object::createAttribute() -// brief This is an overloaded member function, provided for convenience. -/// It differs from the above function in that it takes -/// a reference to an \c H5std_string for \a name. -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -Attribute H5Location::createAttribute(const H5std_string& name, const DataType& data_type, const DataSpace& data_space, const PropList& create_plist) const -{ - return(createAttribute(name.c_str(), data_type, data_space, create_plist)); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute() -// brief Opens an attribute given its name. -///\param name - IN: Name of the attribute -///\return Attribute instance -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -Attribute H5Location::openAttribute(const char* name) const -{ - hid_t attr_id = H5Aopen(getId(), name, H5P_DEFAULT); - if(attr_id > 0) - { - Attribute attr; - f_Attribute_setId(&attr, attr_id); - return(attr); - } - else - { - throw AttributeIException(inMemFunc("openAttribute"), "H5Aopen failed"); - } -} - -//-------------------------------------------------------------------------- -// Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute() -// brief This is an overloaded member function, provided for convenience. -// It differs from the above function in that it takes -// a reference to an \c H5std_string for \a name. -///\param name - IN: Name of the attribute -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -Attribute H5Location::openAttribute(const H5std_string& name) const -{ - return(openAttribute(name.c_str())); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::openAttribute -///\brief Deprecated - replaced by H5Object::openAttribute() -// brief Opens an attribute given its index. -///\param idx - IN: Index of the attribute, a 0-based, non-negative integer -///\return Attribute instance -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -Attribute H5Location::openAttribute(const unsigned int idx) const -{ - hid_t attr_id = H5Aopen_by_idx(getId(), ".", H5_INDEX_CRT_ORDER, - H5_ITER_INC, static_cast(idx), H5P_DEFAULT, H5P_DEFAULT); - if(attr_id > 0) - { - Attribute attr; - f_Attribute_setId(&attr, attr_id); - return(attr); - } - else - { - throw AttributeIException(inMemFunc("openAttribute"), "H5Aopen_by_idx failed"); - } -} - -//-------------------------------------------------------------------------- // Function: H5Location::iterateAttrs ///\brief Iterates a user's function over all the attributes of an H5 /// object, which may be a group, dataset or named datatype. @@ -264,136 +148,6 @@ int H5Location::iterateAttrs(attr_operator_t user_op, unsigned *_idx, void *op_d } //-------------------------------------------------------------------------- -// Function: H5Location::attrExists -///\brief Deprecated - replaced by H5Object::attrExists() -// brief Checks whether the named attribute exists at this location. -///\param name - IN: Name of the attribute to be queried -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2013 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -bool H5Location::attrExists(const char* name) const -{ - // Call C routine H5Aexists to determine whether an attribute exists - // at this location, which could be specified by a file, group, dataset, - // or named datatype. - herr_t ret_value = H5Aexists(getId(), name); - if(ret_value > 0) - return true; - else if(ret_value == 0) - return false; - else // Raise exception when H5Aexists returns a negative value - throw AttributeIException(inMemFunc("attrExists"), "H5Aexists failed"); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::attrExists -///\brief Deprecated - replaced by H5Object::attrExists() -// brief This is an overloaded member function, provided for convenience. -// It differs from the above function in that it takes -// a reference to an \c H5std_string for \a name. -///\param name - IN: Name of the attribute to be queried -// Programmer Binh-Minh Ribler - 2013 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -bool H5Location::attrExists(const H5std_string& name) const -{ - return(attrExists(name.c_str())); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::removeAttr -///\brief Deprecated - replaced by H5Object::removeAttr() -// brief Removes the named attribute from this object. -///\param name - IN: Name of the attribute to be removed -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -void H5Location::removeAttr(const char* name) const -{ - herr_t ret_value = H5Adelete(getId(), name); - if(ret_value < 0) - throw AttributeIException(inMemFunc("removeAttr"), "H5Adelete failed"); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::removeAttr -///\brief Deprecated - replaced by H5Object::removeAttr() -// brief This is an overloaded member function, provided for convenience. -// It differs from the above function in that it takes -// a reference to an \c H5std_string for \a name. -///\param name - IN: Name of the attribute to be removed -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -void H5Location::removeAttr(const H5std_string& name) const -{ - removeAttr(name.c_str()); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::renameAttr -///\brief Deprecated - replaced by H5Object::renameAttr() -// brief Renames the named attribute from this object. -///\param oldname - IN: Name of the attribute to be renamed -///\param newname - IN: New name ame of the attribute -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - Mar, 2005 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -void H5Location::renameAttr(const char* oldname, const char* newname) const -{ - herr_t ret_value = H5Arename(getId(), oldname, newname); - if (ret_value < 0) - throw AttributeIException(inMemFunc("renameAttr"), "H5Arename failed"); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::renameAttr -///\brief Deprecated - replaced by H5Object::renameAttr() -// brief This is an overloaded member function, provided for convenience. -// It differs from the above function in that it takes -// a reference to an \c H5std_string for the names. -// -///\param oldname - IN: Name of the attribute to be renamed -///\param newname - IN: New name ame of the attribute -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - Mar, 2005 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -void H5Location::renameAttr(const H5std_string& oldname, const H5std_string& newname) const -{ - renameAttr (oldname.c_str(), newname.c_str()); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::getNumAttrs -///\brief Deprecated - replaced by H5Object::getNumAttrs() -// brief Returns the number of attributes attached to this HDF5 object. -///\return Number of attributes -///\exception H5::AttributeIException -// 2000 -// Modification -// - Moved to H5Object in 1.8.19. -BMR -//-------------------------------------------------------------------------- -int H5Location::getNumAttrs() const -{ - H5O_info_t objinfo; /* Object info */ - - if(H5Oget_info(getId(), &objinfo) < 0) - throwException("getNumAttrs", "H5Oget_info failed"); - else - return(static_cast(objinfo.num_attrs)); -} - -//-------------------------------------------------------------------------- // Function: H5Location::nameExists ///\brief Checks if a link of a given name exists in a location. ///\param name - IN: Searched name - \c char* @@ -404,7 +158,7 @@ int H5Location::getNumAttrs() const /// H5::DataSetIException /// H5::DataTypeIException /// H5::AttributeIException -// Nov 2016 +// December 2016 //-------------------------------------------------------------------------- bool H5Location::nameExists(const char* name, const LinkAccPropList& lapl) const { @@ -424,9 +178,13 @@ bool H5Location::nameExists(const char* name, const LinkAccPropList& lapl) const ///\brief Checks if a link of a given name exists in a location. ///\param name - IN: Searched name - \c H5std_string ///\param lapl - IN: Link access property list -///\exception H5::LocationException -// Programmer Binh-Minh Ribler - Dec, 2016 -// Modification +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// December 2016 //-------------------------------------------------------------------------- bool H5Location::nameExists(const H5std_string& name, const LinkAccPropList& lapl) const { @@ -550,6 +308,25 @@ void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, } //-------------------------------------------------------------------------- +// Function: H5Location::getNumAttrs +///\brief Replaced by H5Object::getNumAttrs. +///\return Number of attributes +///\exception H5::AttributeIException +// Programmer Binh-Minh Ribler - 2000 +// Modification +// - Moved to H5Object in 1.8.20. -BMR Oct, 2017 +//-------------------------------------------------------------------------- +int H5Location::getNumAttrs() const +{ + H5O_info_t oinfo; /* Object info */ + + if(H5Oget_info(getId(), &oinfo) < 0) + throwException("getNumAttrs", "H5Oget_info failed"); + else + return(static_cast(oinfo.num_attrs)); +} + +//-------------------------------------------------------------------------- // Function: H5Location::objVersion ///\brief Returns the header version of this HDF5 object. ///\return Object version, which can have the following values: @@ -807,6 +584,12 @@ H5std_string H5Location::getComment(const char* name, size_t buf_size) const ///\brief This is an overloaded member function, provided for convenience. /// It differs from the above function in that it takes an /// \c H5std_string for \a name. +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException // July 2004 // Modification // Moved from CommonFG, Sep 2013 @@ -850,7 +633,12 @@ hid_t H5Location::openObjId(const char* obj_name, const LinkAccPropList& lapl) c ///\param obj_name - IN: Path to the object ///\param lapl - IN: Access property list for the link pointing to /// the object -///\exception H5::LocationException +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException // May 2017 //-------------------------------------------------------------------------- hid_t H5Location::openObjId(const H5std_string& obj_name, const LinkAccPropList& lapl) const @@ -1040,15 +828,18 @@ void H5Location::dereference(const H5Location& loc, const void* ref, H5R_type_t ///\param ref - IN: Reference pointer ///\param ref_type - IN: Reference type ///\exception H5::ReferenceException -// Programmer Binh-Minh Ribler - Oct, 2006 +// October 2006 // Modification // May, 2008 // Corrected missing parameters. - BMR +// May, 2018 +// Removed in 1.8.21 because H5Location is Attribute's baseclass +// now. -BMR //-------------------------------------------------------------------------- -void H5Location::dereference(const Attribute& attr, const void* ref, H5R_type_t ref_type) -{ - p_setId(p_dereference(attr.getId(), ref, ref_type, "dereference")); -} +//void H5Location::dereference(const Attribute& attr, const void* ref, H5R_type_t ref_type) +//{ + //p_setId(p_dereference(attr.getId(), ref, ref_type, "dereference")); +//} #ifndef H5_NO_DEPRECATED_SYMBOLS //-------------------------------------------------------------------------- @@ -1203,6 +994,503 @@ DataSpace H5Location::getRegion(void *ref, H5R_type_t ref_type) const } //-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief Creates a soft link from \a link_name to \a target_name. +///\param target_name - IN: Name of object, can be a non-existing object +///\param link_name - IN: Link name for the target name +///\param lcpl - IN: Link creation plist - default to LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default to LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +///\par Description +/// Note that both names are interpreted relative to the current +/// location. +/// For information on creating a soft link, please refer to the +/// H5Lcreate_soft APIs in the HDF5 C Reference Manual. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const char *target_name, const char *link_name, + const LinkCreatPropList& lcpl, const LinkAccPropList& lapl) const +{ + herr_t ret_value = -1; + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lcreate_soft(target_name, getId(), link_name, lcpl_id, lapl_id); + if (ret_value < 0) + throwException("link", "creating soft link failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a target_name and \a link_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const H5std_string& target_name, + const H5std_string& link_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + link(target_name.c_str(), link_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief Creates a hard link from \a new_name to \a curr_name. +///\param curr_name - IN: Name of the existing object +///\param new_loc - IN: New location +///\param new_name - IN: New name for the object +///\param lcpl - IN: Link creation plist - default to LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default to LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +///\par Description +/// Note that both names are interpreted relative to the +/// specified location. +/// For information on creating a hard link, please refer to the +/// H5Lcreate_hard APIs in the HDF5 C Reference Manual. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const char *curr_name, const H5Location& new_loc, + const char *new_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + herr_t ret_value = -1; + hid_t new_loc_id = new_loc.getId(); + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lcreate_hard(getId(), curr_name, new_loc.getId(), new_name, lcpl_id, lapl_id); + if (ret_value < 0) + throwException("link", "creating link failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a curr_name and \a new_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const H5std_string& curr_name, const H5Location& new_loc, + const H5std_string& new_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + link(curr_name.c_str(), new_loc, new_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief Creates a hard link from \a new_name to \a curr_name - can be +/// used to pass in H5L_SAME_LOC. +///\param curr_name - IN: Name of the existing object +///\param loc_id - IN: Location ID, or H5L_SAME_LOC +///\param new_name - IN: New name for the link +///\param lcpl - IN: Link creation plist - default to LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default to LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +///\par Description +/// Note that both names are interpreted relative to the +/// specified location. +/// For information on creating a hard link, please refer to the +/// H5Lcreate_hard APIs in the HDF5 C Reference Manual. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const char *curr_name, const hid_t same_loc, + const char *new_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + herr_t ret_value = -1; + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lcreate_hard(getId(), curr_name, same_loc, new_name, lcpl_id, lapl_id); + + if (ret_value < 0) + throwException("link", "creating link failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a curr_name and \a new_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::link(const H5std_string& curr_name, const hid_t same_loc, + const H5std_string& new_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + link(curr_name.c_str(), same_loc, new_name.c_str(), lcpl, lapl); +} + +#if 0 +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief Creates a link of the specified type from \a new_name to +/// \a curr_name. +///\param link_type - IN: Link type; possible values are +/// \li \c H5G_LINK_HARD +/// \li \c H5G_LINK_SOFT +///\param curr_name - IN: Name of the existing object if link is a hard +/// link; can be anything for the soft link +///\param new_name - IN: New name for the object +///\exception H5::FileIException or H5::GroupIException +///\par Description +/// Note that both names are interpreted relative to the +/// specified location. +/// For information on creating hard link and soft link, please +/// refer to the C layer Reference Manual at: +/// https://support.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-CreateHard and +/// https://support.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-CreateSoft +// Programmer Binh-Minh Ribler - 2000 +// Modification +// 2007: QAK modified to use H5L APIs - BMR +//-------------------------------------------------------------------------- +void H5Location::link(H5L_type_t link_type, const char* curr_name, const char* new_name) const +{ + herr_t ret_value = -1; + + switch(link_type) { + case H5L_TYPE_HARD: + ret_value = H5Lcreate_hard(getId(), curr_name, H5L_SAME_LOC, new_name, H5P_DEFAULT, H5P_DEFAULT); + break; + + case H5L_TYPE_SOFT: + ret_value = H5Lcreate_soft(curr_name, getId(), new_name, H5P_DEFAULT, H5P_DEFAULT); + break; + + case H5L_TYPE_ERROR: + case H5L_TYPE_EXTERNAL: + case H5L_TYPE_MAX: + default: + throwException("link", "unknown link type"); + break; + } /* end switch */ + + if(ret_value < 0) + throwException("link", "creating link failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::link +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a curr_name and \a new_name. +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +void H5Location::link(H5L_type_t link_type, const H5std_string& curr_name, const H5std_string& new_name) const +{ + link(link_type, curr_name.c_str(), new_name.c_str()); +} +#endif + +//-------------------------------------------------------------------------- +// Function: H5Location::copyLink +///\brief Copies a link from one location to another. +///\param src_name - IN: Original name +///\param dst - IN: Destination location +///\param dst_name - IN: New name +///\param lcpl - IN: Link creation plist - default LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::copyLink(const char *src_name, const H5Location& dst, + const char *dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + herr_t ret_value; + hid_t dst_id = dst.getId(); + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lcopy(getId(), src_name, dst_id, dst_name, lcpl_id, lapl_id); + if(ret_value < 0) + throwException("copyLink", "H5Lcopy failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::copyLink +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a src_name and \a dst_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::copyLink(const H5std_string& src_name, const H5Location& dst, + const H5std_string& dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + copyLink(src_name.c_str(), dst, dst_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::copyLink +///\brief Copies a link from a location into the same location. +///\param src_name - IN: Original name +///\param dst_name - IN: New name +///\param lcpl - IN: Link creation plist - default LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::copyLink(const char *src_name, + const char *dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + herr_t ret_value; + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lcopy(getId(), src_name, H5L_SAME_LOC, dst_name, lcpl_id, lapl_id); + if(ret_value < 0) + throwException("copyLink", "H5Lcopy H5L_SAME_LOC failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::copyLink +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a src_name and \a dst_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::copyLink(const H5std_string& src_name, + const H5std_string& dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + copyLink(src_name.c_str(), dst_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::moveLink +///\brief Renames a link in this location and moves it to a new location. +///\param src_name - IN: Original name +///\param dst - IN: Destination location +///\param dst_name - IN: New name +///\param lcpl - IN: Link creation plist - default LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +///\note +/// Exercise care in moving groups as it is possible to render +/// data in a file inaccessible with H5Location::moveLink. Please refer +/// to the Group Interface in the HDF5 User's Guide for details. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::moveLink(const char* src_name, const H5Location& dst, + const char* dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + herr_t ret_value; + hid_t dst_id = dst.getId(); + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lmove(getId(), src_name, dst_id, dst_name, lcpl_id, lapl_id); + if (ret_value < 0) + throwException("moveLink", "H5Lmove failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::moveLink +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a src_name and \a dst_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::moveLink(const H5std_string& src_name, const H5Location& dst, + const H5std_string& dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + moveLink(src_name.c_str(), dst, dst_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::moveLink +///\brief Renames a link in this location. +///\param src_name - IN: Original name +///\param dst_name - IN: New name +///\param lcpl - IN: Link creation plist - default LinkCreatPropList::DEFAULT +///\param lapl - IN: Link access plist - default LinkAccPropList::DEFAULT +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +///\note +/// Exercise care in moving groups as it is possible to render +/// data in a file inaccessible with H5Location::moveLink. Please refer +/// to the Group Interface in the HDF5 User's Guide for details. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::moveLink(const char* src_name, const char* dst_name, + const LinkCreatPropList& lcpl, const LinkAccPropList& lapl) const +{ + herr_t ret_value; + hid_t lcpl_id = lcpl.getId(); + hid_t lapl_id = lapl.getId(); + + ret_value = H5Lmove(getId(), src_name, H5L_SAME_LOC, dst_name, lcpl_id, lapl_id); + if (ret_value < 0) + throwException("moveLink", "H5Lmove H5L_SAME_LOC failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::moveLink +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a src_name and \a dst_name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::moveLink(const H5std_string& src_name, + const H5std_string& dst_name, const LinkCreatPropList& lcpl, + const LinkAccPropList& lapl) const +{ + moveLink(src_name.c_str(), dst_name.c_str(), lcpl, lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::unlink +///\brief Removes the specified link from this location. +///\param name - IN: Name of the object to be removed +///\exception One of the following: +/// H5::GroupIException +/// H5::FileIException +/// H5::DataSetIException +/// H5::DataTypeIException +/// H5::AttributeIException +// May 2018 +// Developer's Note +// Originally, CommonFG::unlink was the wrapper of H5Gunlink, +// which was replaced by H5Ldelete. The name "unlink" was kept +// to help with backward compatibility. +//-------------------------------------------------------------------------- +void H5Location::unlink(const char* name, const LinkAccPropList& lapl) const +{ + herr_t ret_value = H5Ldelete(getId(), name, lapl.getId()); + if (ret_value < 0) + throwException("unlink", "H5Ldelete failed"); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::unlink +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a name. +// May 2018 +//-------------------------------------------------------------------------- +void H5Location::unlink(const H5std_string& name, const LinkAccPropList& lapl) const +{ + unlink(name.c_str(), lapl); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::getLinkInfo +///\brief Returns the information of the named link. +///\param link_name - IN: Symbolic link to the object +///\param size - IN: Maximum number of characters of value to be returned +///\return Name of the object +///\exception H5::FileIException/H5::GroupIException/H5::LocationException +// 2000 +//-------------------------------------------------------------------------- +H5L_info_t H5Location::getLinkInfo(const char* link_name, const LinkAccPropList& lapl) const +{ + H5L_info_t linkinfo; // link info structure + + herr_t ret_value = H5Lget_info(getId(), link_name, &linkinfo, lapl.getId()); + if (ret_value < 0) + throwException("getLinkInfo", "H5Lget_info to find buffer size failed"); + + return(linkinfo); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::getLinkInfo +///\brief This is an overloaded member function, provided for convenience. +/// It differs from the above function in that it takes an +/// \c H5std_string for \a link_name. +//-------------------------------------------------------------------------- +H5L_info_t H5Location::getLinkInfo(const H5std_string& link_name, const LinkAccPropList& lapl) const +{ + return(getLinkInfo(link_name.c_str(), lapl)); +} + +//-------------------------------------------------------------------------- +// Function: H5Location::getLinkval +///\brief Returns the name of the object that the symbolic link points to. +///\param name - IN: Symbolic link to the object +///\param size - IN: Maximum number of characters of value to be returned +///\return Name of the object +///\exception H5::FileIException/H5::GroupIException/H5::LocationException +// 2000 +//-------------------------------------------------------------------------- +H5std_string H5Location::getLinkval(const char* name, size_t size) const +{ + H5L_info_t linkinfo; + char *value_C; // value in C string + size_t val_size = size; + H5std_string value = ""; + herr_t ret_value; + + // if user doesn't provide buffer size, determine it + if (size == 0) + { + ret_value = H5Lget_info(getId(), name, &linkinfo, H5P_DEFAULT); + if (ret_value < 0) + throwException("getLinkval", "H5Lget_info to find buffer size failed"); + + val_size = linkinfo.u.val_size; + } + + // if link has value, retrieve the value, otherwise, return null string + if (val_size > 0) + { + value_C = new char[val_size+1]; // temporary C-string for C API + HDmemset(value_C, 0, val_size+1); // clear buffer + + ret_value = H5Lget_val(getId(), name, value_C, val_size, H5P_DEFAULT); + if (ret_value < 0) + { + delete []value_C; + throwException("getLinkval", "H5Lget_val failed"); + } + + value = H5std_string(value_C); + delete []value_C; + } + return(value); +} + +//-------------------------------------------------------------------------- // Function: H5Location destructor ///\brief Noop destructor. // Programmer Binh-Minh Ribler - 2000 @@ -1211,18 +1499,10 @@ H5Location::~H5Location() {} //-------------------------------------------------------------------------- // Function: f_Attribute_setId - friend -// Purpose: This function is friend to class H5::Attribute so that it -// can set Attribute::id in order to work around a problem -// described in the JIRA issue HDFFV-7947. -// Applications shouldn't need to use it. -// param attr - IN/OUT: Attribute object to be changed -// param new_id - IN: New id to set -// Programmer Binh-Minh Ribler - 2015 +// Modification: +// Moved to H5Object.cpp after the rearrangement of classes +// -BMR, Dec 2016 //-------------------------------------------------------------------------- -void f_Attribute_setId(Attribute* attr, hid_t new_id) -{ - attr->p_setId(new_id); -} //-------------------------------------------------------------------------- // Function: f_DataSpace_setId - friend diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h index 0316a53..d929754 100644 --- a/c++/src/H5Location.h +++ b/c++/src/H5Location.h @@ -118,6 +118,87 @@ class H5_DLLCPP H5Location : public IdComponent { // Closes an object opened by openObjId() static void closeObjId(hid_t obj_id); + // Creates a soft link from link_name to target_name. + void link(const char *target_name, const char *link_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void link(const H5std_string& target_name, + const H5std_string& link_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Creates a hard link from new_name to curr_name. + void link(const char *curr_name, + const H5Location& new_loc, const char *new_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void link(const H5std_string& curr_name, + const H5Location& new_loc, const H5std_string& new_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Creates a hard link from new_name to curr_name in same location. + void link(const char *curr_name, + const hid_t same_loc, const char *new_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void link(const H5std_string& curr_name, + const hid_t same_loc, const H5std_string& new_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Removes the specified link from this location. + void unlink(const char *link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void unlink(const H5std_string& link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Copies a link from this location to another. + void copyLink(const char *src_name, + const H5Location& dst, const char *dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void copyLink(const H5std_string& src_name, + const H5Location& dst, const H5std_string& dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Makes a copy of a link in the same location. + void copyLink(const char *src_name, const char *dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void copyLink(const H5std_string& src_name, + const H5std_string& dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Renames a link in this location and moves to a new location. + void moveLink(const char* src_name, + const H5Location& dst, const char* dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void moveLink(const H5std_string& src_name, + const H5Location& dst, const H5std_string& dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Renames a link in this location. + void moveLink(const char* src_name, const char* dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + void moveLink(const H5std_string& src_name, + const H5std_string& dst_name, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Returns the information of the named link. + H5L_info_t getLinkInfo(const char* link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + H5L_info_t getLinkInfo(const H5std_string& link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; + + // Returns the value of a symbolic link. + H5std_string getLinkval(const char* link_name, size_t size=0) const; + H5std_string getLinkval(const H5std_string& link_name, size_t size=0) const; + ///\brief Returns an identifier. (pure virtual) virtual hid_t getId() const = 0; @@ -127,23 +208,24 @@ class H5_DLLCPP H5Location : public IdComponent { These H5A wrappers are marked "deprecated" in 1.8.19. They are moved to H5Object to prevent the object id from being passed in to H5A APIs. + Updated: they are removed from source code in 1.8.21. ***************************************************************************/ // Creates an attribute for the specified object at this location // PropList is currently not used, so always be default. // Deprecated - virtual Attribute createAttribute(const char* name, const DataType& type, const DataSpace& space, const PropList& create_plist = PropList::DEFAULT) const; - virtual Attribute createAttribute(const H5std_string& name, const DataType& type, const DataSpace& space, const PropList& create_plist = PropList::DEFAULT) const; + //virtual Attribute createAttribute(const char* name, const DataType& type, const DataSpace& space, const PropList& create_plist = PropList::DEFAULT) const; + //virtual Attribute createAttribute(const H5std_string& name, const DataType& type, const DataSpace& space, const PropList& create_plist = PropList::DEFAULT) const; // Given its name, opens the attribute that belongs to an object at // this location. // Deprecated - virtual Attribute openAttribute(const char* name) const; - virtual Attribute openAttribute(const H5std_string& name) const; + //virtual Attribute openAttribute(const char* name) const; + //virtual Attribute openAttribute(const H5std_string& name) const; // Given its index, opens the attribute that belongs to an object at // this location. - virtual Attribute openAttribute(const unsigned int idx) const; // Deprecated + //virtual Attribute openAttribute(const unsigned int idx) const; // Deprecated // Iterate user's function over the attributes at this location. virtual int iterateAttrs(attr_operator_t user_op, unsigned* idx = NULL, @@ -151,24 +233,24 @@ class H5_DLLCPP H5Location : public IdComponent { // Checks whether the named attribute exists at this location. // Deprecated - virtual bool attrExists(const char* name) const; - virtual bool attrExists(const H5std_string& name) const; + //virtual bool attrExists(const char* name) const; + //virtual bool attrExists(const H5std_string& name) const; // Renames the named attribute to a new name. // Deprecated - virtual void renameAttr(const char* oldname, const char* newname) const; - virtual void renameAttr(const H5std_string& oldname, const H5std_string& newname) const; + //virtual void renameAttr(const char* oldname, const char* newname) const; + //virtual void renameAttr(const H5std_string& oldname, const H5std_string& newname) const; // Removes the named attribute from this location. // Deprecated - virtual void removeAttr(const char* name) const; - virtual void removeAttr(const H5std_string& name) const; + //virtual void removeAttr(const char* name) const; + //virtual void removeAttr(const H5std_string& name) const; /**************************** End of H5A note *******************************/ protected: #ifndef DOXYGEN_SHOULD_SKIP_THIS - // Default constructor, + // Default constructor H5Location(); // *** Deprecation warning *** diff --git a/c++/src/H5Object.cpp b/c++/src/H5Object.cpp index 4697d9c..a3b53d4 100644 --- a/c++/src/H5Object.cpp +++ b/c++/src/H5Object.cpp @@ -25,6 +25,8 @@ #include "H5IdComponent.h" #include "H5PropList.h" #include "H5DataSpace.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5AbstractDs.h" #include "H5LaccProp.h" #include "H5Location.h" @@ -34,11 +36,6 @@ namespace H5 { -#ifndef H5_NO_STD - using std::cerr; - using std::endl; -#endif // H5_NO_STD - #ifndef DOXYGEN_SHOULD_SKIP_THIS // userAttrOpWrpr simply interfaces between the user's function and the // C library function H5Aiterate2; used to resolve the different prototype @@ -64,32 +61,19 @@ namespace H5 { H5Object::H5Object() : H5Location() {} //-------------------------------------------------------------------------- -// Function: H5Object overloaded constructor (protected) -// Purpose Creates an H5Object object using the id of an existing HDF5 -// object. -// Parameters object_id - IN: Id of an existing HDF5 object -// Programmer Binh-Minh Ribler - 2000 -// *** Deprecation warning *** -// This constructor is no longer appropriate because the data member "id" had -// been moved to the sub-classes. It will be removed in 1.10 release. If its -// removal does not raise any problems in 1.10, it will be removed from 1.8 in -// subsequent releases. -// Removed in 1.8.18 and 1.10.1 - Aug 2016 +// Function: f_Attribute_setId - friend +// Purpose: This function is friend to class H5::Attribute so that it +// can set Attribute::id in order to work around a problem +// described in the JIRA issue HDFFV-7947. +// Applications shouldn't need to use it. +// param attr - IN/OUT: Attribute object to be changed +// param new_id - IN: New id to set +// Programmer Binh-Minh Ribler - 2015 //-------------------------------------------------------------------------- -//H5Object::H5Object(const hid_t object_id) : H5Location() {} - -//-------------------------------------------------------------------------- -// Function: H5Object copy constructor -///\brief Copy constructor: makes a copy of the original H5Object -/// instance. -///\param original - IN: H5Object instance to copy -// Programmer Binh-Minh Ribler - 2000 -// *** Deprecation warning *** -// This constructor is no longer appropriate because the data member "id" had -// been moved to the sub-classes. It is removed from 1.8.15 because it is -// a noop and it can be generated by the compiler if needed. -//-------------------------------------------------------------------------- -// H5Object::H5Object(const H5Object& original) : H5Location() {} +void f_Attribute_setId(Attribute* attr, hid_t new_id) +{ + attr->p_setId(new_id); +} /*************************************************************************** Notes for H5A wrappers @@ -314,8 +298,7 @@ int H5Object::getNumAttrs() const if(H5Oget_info(getId(), &oinfo) < 0) throwException("getNumAttrs", "H5Oget_info failed"); - else - return(static_cast(oinfo.num_attrs)); + return(static_cast(oinfo.num_attrs)); } //-------------------------------------------------------------------------- diff --git a/c++/src/H5PredType.cpp b/c++/src/H5PredType.cpp index 63061f7..0838f1c 100644 --- a/c++/src/H5PredType.cpp +++ b/c++/src/H5PredType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5StrType.cpp b/c++/src/H5StrType.cpp index 00fbe20..c2c5b92 100644 --- a/c++/src/H5StrType.cpp +++ b/c++/src/H5StrType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index 79749d8..eb8ae6f 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -13,6 +13,11 @@ #include +#include + using std::cerr; + using std::endl; + + #include "H5Include.h" #include "H5Exception.h" #include "H5IdComponent.h" @@ -22,6 +27,31 @@ namespace H5 { //-------------------------------------------------------------------------- +// Function: StrCreatPropList default constructor +///\brief Default constructor: Creates a string create property list +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +StrCreatPropList::StrCreatPropList() : PropList(H5P_STRING_CREATE) {} + +//-------------------------------------------------------------------------- +// Function: StrCreatPropList copy constructor +///\brief Copy constructor: makes a copy of the original +/// StrCreatPropList object. +///\param original - IN: StrCreatPropList instance to copy +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList(original) {} + +//-------------------------------------------------------------------------- +// Function: StrCreatPropList overloaded constructor +///\brief Creates a file creation property list using the id of an +/// existing one. +///\param plist_id - IN: StrCreatPropList id to use +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {} + +//-------------------------------------------------------------------------- // Function: StrCreatPropList::setCharEncoding ///\brief Sets the character encoding of the string. ///\exception H5::PropListIException diff --git a/c++/src/H5StrcreatProp.h b/c++/src/H5StrcreatProp.h index 7b07dd6..9679a55 100644 --- a/c++/src/H5StrcreatProp.h +++ b/c++/src/H5StrcreatProp.h @@ -37,14 +37,14 @@ class H5_DLLCPP StrCreatPropList : public PropList { #ifndef DOXYGEN_SHOULD_SKIP_THIS protected: // Creates a link creation property list. - StrCreatPropList() {}; + StrCreatPropList(); // Copy constructor: same as the original StrCreatPropList. - StrCreatPropList(const StrCreatPropList& original) {}; + StrCreatPropList(const StrCreatPropList& original); // Creates a copy of an existing link creation property list // using the property list id. - StrCreatPropList(const hid_t plist_id) {}; + StrCreatPropList(const hid_t plist_id); // Noop destructor virtual ~StrCreatPropList() {}; diff --git a/c++/src/H5VarLenType.cpp b/c++/src/H5VarLenType.cpp index 8d9e3a1..902de79 100644 --- a/c++/src/H5VarLenType.cpp +++ b/c++/src/H5VarLenType.cpp @@ -17,6 +17,8 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" +#include "H5StrcreatProp.h" +#include "H5LcreatProp.h" #include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" diff --git a/c++/test/tlinks.cpp b/c++/test/tlinks.cpp index 356bc1b..ae0d53a 100644 --- a/c++/test/tlinks.cpp +++ b/c++/test/tlinks.cpp @@ -433,6 +433,366 @@ static void test_basic_links(hid_t fapl_id, hbool_t new_format) } // test_basic_links /*------------------------------------------------------------------------- + * Function: test_lcpl + * + * Purpose: Tests link creation property lists, specifically, the + * character encoding property. + * + * Return: Success: 0 + * Failure: number of errors + * May 2018 + *------------------------------------------------------------------------- + */ +const H5std_string GROUP1NAME("First_group"); +const H5std_string GROUP2NAME("Second_group"); +static void +test_lcpl(hid_t fapl_id, hbool_t new_format) +{ + H5L_info_t linfo; + char filename[1024]; + hsize_t dims[2]; + + if(new_format) + SUBTEST("Link creation property lists (w/new group format)") + else + SUBTEST("Link creation property lists") + + try + { + FileAccPropList fapl(fapl_id); + + // Create a new file. + h5_fixname(FILENAME[0], fapl_id, filename, sizeof filename); + H5File file(filename, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl); + + // Create and link a group with the default LCPL. + Group grp_1(file.createGroup(GROUP1NAME)); + grp_1.close(); + + // Check that its character encoding is the default. + linfo = file.getLinkInfo(GROUP1NAME); + if(linfo.cset != H5T_CSET_ASCII) + throw InvalidActionException("H5Lget_info", "Character encoding is not default"); + + // Create and commit a datatype with the default LCPL. + IntType dtype(PredType::NATIVE_INT); + dtype.commit(file, "/type"); + dtype.close(); + + // Check that its character encoding is the default. + linfo = file.getLinkInfo("/type"); + verify_val(linfo.cset, H5T_CSET_ASCII, "Character encoding is not default", __LINE__, __FILE__); + + // Create a simple dataspace. + dims[0] = H5L_DIM1; + dims[1] = H5L_DIM2; + DataSpace dspace(2 ,dims); + + // Create a dataset using the default LCPL. + DataSet dset(file.createDataSet("/dataset", PredType::NATIVE_INT, dspace)); + dset.close(); + + // Check that its character encoding is the default. + linfo = file.getLinkInfo("/dataset"); + verify_val(linfo.cset, H5T_CSET_ASCII, "Character encoding is not default", __LINE__, __FILE__); + + // Create a link creation property list with the UTF-8 character encoding. + LinkCreatPropList lcpl; + lcpl.setCharEncoding(H5T_CSET_UTF8); + + // Create and link a group with the new LCPL. + Group grp_2(file.createGroup(GROUP2NAME, 0, lcpl)); + grp_2.close(); + + // Check that its character encoding is UTF-8. + linfo = file.getLinkInfo(GROUP2NAME); + verify_val(linfo.cset, H5T_CSET_UTF8, "Character encoding is not UTF-8", __LINE__, __FILE__); + + PASSED(); + } // end of try block + catch (Exception& E) + { + issue_fail_msg("test_lcpl()", __LINE__, __FILE__, E.getCDetailMsg()); + } +} // end test_lcpl() + +/*------------------------------------------------------------------------- + * Function: test_move + * + * Purpose: Tests wrappers of H5Lmove() + * + * Return: Success: 0 + * Failure: number of errors + * May 2018 + *------------------------------------------------------------------------- + */ +static void +test_move(hid_t fapl_id, hbool_t new_format) +{ + char filename[1024]; + + if(new_format) + SUBTEST("Group::moveLink (w/new group format)") + else + SUBTEST("Group::moveLink") + + try + { + FileAccPropList fapl(fapl_id); + + // Create two new files + h5_fixname(FILENAME[0], fapl_id, filename, sizeof filename); + H5File file_a(filename, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl); + h5_fixname(FILENAME[1], fapl_id, filename, sizeof filename); + H5File file_b(filename, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl); + + // Create groups in first file + Group grp_1(file_a.createGroup(GROUP1NAME)); + Group grp_2(file_a.createGroup(GROUP2NAME)); + Group grp_move(grp_1.createGroup("group_move")); + + // Create hard and soft links + grp_1.link(H5L_TYPE_HARD, "group_move", "hard"); + grp_2.link(H5L_TYPE_SOFT, "/First_group/group_copy", "soft"); + + // Move a group across files, should fail + try { + grp_1.moveLink("group_move", file_b, "group_new_name"); + + // Should throw an exception but didn't + H5_FAILED(); + cerr << " Group group_move should not be moved across files" << endl; + } catch (Exception& E) { + // expected + } + + // Move a soft link across files, should succeed + grp_2.moveLink("soft", file_b, "soft_new_name"); + if(file_b.nameExists("soft_new_name") != TRUE) + throw InvalidActionException("H5File::nameExists", "grp1/soft doesn't exist"); + + // Move a group across groups in the same file while renaming it + grp_1.moveLink("group_move", grp_2, "group_new_name"); + + // Open the group just moved to the new location. */ + Group moved_grp = grp_2.openGroup("group_new_name"); + moved_grp.close(); + + // Verify that the group is no longer in the original location + try { + moved_grp = grp_1.openGroup("group_move"); + + // Should throw an exception but didn't + H5_FAILED(); + cerr << " Group group_move should not be in original location" << endl; + } catch (Exception& E) { + // expected + } + + // Use H5Lmove to rename a group without moving it + H5std_string new_name("group_new_name"); + H5std_string newer_name("group_newer_name"); + grp_2.moveLink(new_name, newer_name); + + // Open the group + moved_grp = grp_2.openGroup("group_newer_name"); + moved_grp.close(); + + // Use H5Lmove to move a group without renaming it + grp_2.moveLink(newer_name, grp_1, newer_name); + + // Open the group + moved_grp = grp_1.openGroup("group_newer_name"); + moved_grp.close(); + + // Move the group while giving long paths + file_a.moveLink("/First_group/group_newer_name", grp_2, "/Second_group/group_newest_name"); + + // Open the group just moved to the new location + moved_grp = grp_2.openGroup("group_newest_name"); + moved_grp.close(); + + // Verify that the groups are not in previous locations + try { + moved_grp = grp_1.openGroup("group_newer_name"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_newer_name should not be in GROUP1NAME" << endl; + } catch (Exception& E) { + // expected + } + try { + moved_grp = grp_2.openGroup("group_newer_name"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_newer_name should not be in GROUP2NAME" << endl; + } catch (Exception& E) { + // expected + } + try { + moved_grp = grp_2.openGroup("group_new_name"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_new_name should not be in GROUP2NAME" << endl; + } catch (Exception& E) { + // expected + } + try { + moved_grp = grp_1.openGroup("group_copy"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_copy should not be in GROUP1NAME" << endl; + } catch (Exception& E) { + // expected + } + PASSED(); + } // end of try block + catch (Exception& E) + { + issue_fail_msg("test_move()", __LINE__, __FILE__, E.getCDetailMsg()); + } +} // test_move + +/*------------------------------------------------------------------------- + * Function: test_copy + * + * Purpose: Tests wrappers of H5Lcopy() and H5Ldelete() + * + * Return: Success: 0 + * Failure: number of errors + * May 2018 + *------------------------------------------------------------------------- + */ +static void test_copy(hid_t fapl_id, hbool_t new_format) +{ + char filename[1024]; + + if(new_format) + SUBTEST("Group::copyLink (w/new group format)") + else + SUBTEST("Group::copyLink") + + try + { + // Create two new files + h5_fixname(FILENAME[0], fapl_id, filename, sizeof filename); + H5File file_a(filename, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl_id); + h5_fixname(FILENAME[1], fapl_id, filename, sizeof filename); + H5File file_b(filename, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl_id); + + // Create groups in first file + Group grp_1(file_a.createGroup(GROUP1NAME)); + Group grp_2(file_a.createGroup(GROUP2NAME)); + Group grp_move(grp_1.createGroup("group_copy")); + + // Create hard and soft links + grp_1.link("group_copy", H5L_SAME_LOC, "hard"); + grp_2.link("/First_group/group_copy", "soft"); + + // Copy a group across files, should fail + try { + grp_1.copyLink("group_copy", file_b, "group_new_name"); + } catch (Exception& E) { + // expected + } + + // Copy a soft link across files, should succeed + grp_2.copyLink("soft", file_b, "soft_new_name"); + if (file_b.nameExists("soft_new_name") != TRUE) + throw InvalidActionException("H5File::nameExists", "soft_new_name doesn't exist"); + + // Move a group across groups in the same file while renaming it + H5std_string copy_name("group_copy"); + H5std_string new_name("group_new_name"); + grp_1.copyLink(copy_name, grp_2, new_name); + + // Open the group just moved to the new location. + Group moved_grp(grp_2.openGroup("group_new_name")); + moved_grp.close(); + + // Verify that the group is also in the original location + moved_grp = grp_1.openGroup("group_copy"); + moved_grp.close(); + + // Create a group in the same location with a different name + grp_2.copyLink("group_new_name", "group_newer_name"); + + // Open the group + moved_grp = grp_2.openGroup("group_newer_name"); + moved_grp.close(); + + // Verify that the group is also in the original location + moved_grp = grp_2.openGroup("group_new_name"); + moved_grp.close(); + + // Use H5Lcopy to copy to a different location with the same name + grp_2.copyLink("group_newer_name", grp_1, "group_newer_name"); + + // Open the group + moved_grp = grp_1.openGroup("group_newer_name"); + moved_grp.close(); + + // Verify that the group is still in the previous location + moved_grp = grp_2.openGroup("group_new_name"); + moved_grp.close(); + + // Copy the group while giving long paths + file_a.copyLink("/First_group/group_newer_name", grp_2, "/Second_group/group_newest_name"); + + // Open the newest group just moved to the new location + moved_grp = grp_2.openGroup("group_newest_name"); + moved_grp.close(); + + // Verify that the group is still in all previous original locations + moved_grp = grp_1.openGroup("group_newer_name"); + moved_grp.close(); + + moved_grp = grp_2.openGroup("group_newer_name"); + moved_grp.close(); + + moved_grp = grp_2.openGroup("group_new_name"); + moved_grp.close(); + + moved_grp = grp_1.openGroup("group_copy"); + moved_grp.close(); + + // Delete "group_newer_name" from group 2, then try to open it. + grp_2.unlink("group_newer_name"); + try { + moved_grp = grp_2.openGroup("group_newer_name"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_newer_name should not be in GROUP2NAME" << endl; + } catch (Exception& E) { + // expected + } + + // Delete "group_copy" from group 1, then try to open it. + grp_1.unlink("group_copy"); + try { + moved_grp = grp_1.openGroup("group_copy"); + moved_grp.close(); + + H5_FAILED(); // Should throw an exception but didn't + cerr << " Group group_copy should not be in GROUP1NAME" << endl; + } catch (Exception& E) { + // expected + } + + PASSED(); + } // end of try block + catch (Exception& E) + { + issue_fail_msg("test_copy()", __LINE__, __FILE__, E.getCDetailMsg()); + } +} // test_copy + +/*------------------------------------------------------------------------- * Function: test_num_links * * Purpose: Test setting and getting limit of number of links @@ -528,13 +888,13 @@ void test_links() // FileAccPropList may be passed in instead of fapl id test_basic_links(my_fapl_id, new_format); test_num_links(my_fapl_id, new_format); + test_lcpl(my_fapl_id, new_format); + test_move(my_fapl_id, new_format); + test_copy(my_fapl_id, new_format); #if 0 // these tests are from the C test links.c and left here for future // implementation of H5L API - test_move(my_fapl_id, new_format); - test_copy(my_fapl_id, new_format); - test_lcpl(my_fapl_id, new_format); nerrors += cklinks(my_fapl, new_format) < 0 ? 1 : 0; nerrors += new_links(my_fapl, new_format) < 0 ? 1 : 0; nerrors += ck_new_links(my_fapl, new_format) < 0 ? 1 : 0; -- cgit v0.12 From 276a6110e3be918b01820f35ca57f588eeb3bf5f Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sat, 12 May 2018 14:26:11 -0500 Subject: Updated for 1.8.21 --- release_docs/RELEASE.txt | 94 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 92 insertions(+), 2 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ad06d40..422c9d2 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -117,7 +117,72 @@ New Features C++ API ------- - - None + - The following C++ API wrappers have been added to class H5Location + + H5Lcreate_soft: + // Creates a soft link from link_name to target_name. + void link(const char *target_name, const char *link_name,...) + void link(const H5std_string& target_name,...) + + + H5Lcreate_hard: + // Creates a hard link from new_name to curr_name. + void link(const char *curr_name, const Group& new_loc,...) + void link(const H5std_string& curr_name, const Group& new_loc,...) + + // Creates a hard link from new_name to curr_name in the same location. + void link(const char *curr_name, const hid_t same_loc,...) + void link(const H5std_string& curr_name, const hid_t same_loc,...) + + Note: previous version CommonFG::link will be deprecated. + + + H5Lcopy: + // Copy an object from a group of file to another. + void copyLink(const char *src_name, const Group& dst,...) + void copyLink(const H5std_string& src_name, const Group& dst,...) + + // Copy an object from a group of file to the same location. + void copyLink(const char *src_name, const char *dst_name,...) + void copyLink(const H5std_string& src_name,...) + + + H5Lmove: + // Rename an object in a group or file to a new location. + void moveLink(const char* src_name, const Group& dst,...) + void moveLink(const H5std_string& src_name, const Group& dst,...) + + // Rename an object in a group or file to the same location. + void moveLink(const char* src_name, const char* dst_name,...) + void moveLink(const H5std_string& src_name,...) + + Note: previous version CommonFG::move will be deprecated. + + + H5Ldelete: + // Removes the specified link from this location. + void unlink(const char *link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + void unlink(const H5std_string& link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + + Note: An additional parameter is added to CommonFG::unlink and it + is moved to H5Location. + + (BMR - 2018/05/11 - HDFFV-10445) + + - New property list subclasses + + Property list subclasses StrCreatPropList, LinkCreatPropList, and + AttrCreatPropList are added for the C property list classes + H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. + + (BMR - 2018/05/11 - HDFFV-10445) + + - Another argument, LinkCreatPropList& lcpl, is added to the following + functions for the use of link creation property list. + Group createGroup(const char* name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + Group createGroup(const H5std_string& name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + + (BMR - 2018/05/11 - HDFFV-10445) + High-Level APIs --------------- @@ -367,7 +432,32 @@ Bug Fixes since HDF5-1.8.20 C++ API ------- - - None + - Removal of memory leaks + + A private function was inadvertently called, causing memory leaks. This + is now fixed. + + (BMR - 2018/04/12 - User reported in email) + + - Changes in exception classes + + Some exception classes are reorganized to reflect the HDF5 object + hierarchy and allow customization. + DataSetIException -> LocationException -> Exception + DataTypeIException -> LocationException -> Exception + GroupIException -> LocationException -> Exception + AttributeIException -> LocationException -> Exception + FileIException -> GroupIException -> LocationException -> Exception + Member functions in H5Location and H5Object now throw specific exceptions + associated with the invoking objects. + + (BMR - 2018/05/11) + + - H5Location::closeObjId is made static + (BMR - 2018/05/11) + + - H5A wrappers in H5Location are removed as they have been in H5Object. + (BMR - 2018/05/11) High-Level APIs: -- cgit v0.12 From e5b337dd881b60a5300675f6b30ca3429020acbe Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Sat, 12 May 2018 18:36:37 -0500 Subject: Code cleanup Description: The function getNumAttrs should be in H5Location so that when an attribute is the location, the function will get the number of attributes belong to the object, which the invoking attribute is attached to. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test) --- c++/src/H5CommonFG.cpp | 6 ++-- c++/src/H5CommonFG.h | 2 +- c++/src/H5Cpp.h | 2 -- c++/src/H5Location.cpp | 98 ++++++++++---------------------------------------- c++/src/H5Location.h | 7 ++-- c++/src/H5Object.cpp | 6 ++-- 6 files changed, 29 insertions(+), 92 deletions(-) diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp index 118b1b2..314a9fe 100644 --- a/c++/src/H5CommonFG.cpp +++ b/c++/src/H5CommonFG.cpp @@ -308,8 +308,7 @@ void CommonFG::link(H5L_type_t link_type, const H5std_string& curr_name, const H // Modification // May 2018: // This function is deprecated immediately, in 1.8.21, because -// their replacement have two arguments and one of them is a -// default. +// its replacement has two arguments and one of them is a default. // 2007: QAK modified to use H5L APIs - BMR //-------------------------------------------------------------------------- void CommonFG::unlink(const char* name) const @@ -325,8 +324,7 @@ void CommonFG::unlink(const char* name) const // Modification // May 2018: // This function is deprecated immediately, in 1.8.21, because -// their replacement have two arguments and one of them is a -// default. +// its replacement has two arguments and one of them is a default. //-------------------------------------------------------------------------- void CommonFG::unlink(const H5std_string& name) const { diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index 4afc777..fa08263 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -99,7 +99,7 @@ class H5_DLLCPP CommonFG { // Removes the specified name at this location. // Deprecated in favor of H5Location::unlink overloaded (1.8.21) - // These functions can be removed immediately because their replacement + // These functions can be removed immediately because their replacements // have a default argument out of two. //void unlink(const char* name) const; //void unlink(const H5std_string& name) const; diff --git a/c++/src/H5Cpp.h b/c++/src/H5Cpp.h index b04c7a2..4108831 100644 --- a/c++/src/H5Cpp.h +++ b/c++/src/H5Cpp.h @@ -29,9 +29,7 @@ #include "H5Attribute.h" #include "H5OcreatProp.h" #include "H5DcreatProp.h" -#include "H5StrcreatProp.h" #include "H5AcreatProp.h" -#include "H5LcreatProp.h" #include "H5CommonFG.h" #include "H5DataType.h" #include "H5DxferProp.h" diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 692c7c2..6894fdd 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -148,6 +148,25 @@ int H5Location::iterateAttrs(attr_operator_t user_op, unsigned *_idx, void *op_d } //-------------------------------------------------------------------------- +// Function: H5Location::getNumAttrs +///\brief Returns the number of attributes attached to an HDF5 object. +///\return Number of attributes +///\exception H5::AttributeIException +// Modification +// - Moved from H5Object to allow passing an attribute id to the +// C API, in 1.8.20. +//-------------------------------------------------------------------------- +int H5Location::getNumAttrs() const +{ + H5O_info_t objinfo; /* Object info */ + + if(H5Oget_info(getId(), &objinfo) < 0) + throwException("getNumAttrs", "H5Oget_info failed"); + else + return(static_cast(objinfo.num_attrs)); +} + +//-------------------------------------------------------------------------- // Function: H5Location::nameExists ///\brief Checks if a link of a given name exists in a location. ///\param name - IN: Searched name - \c char* @@ -308,25 +327,6 @@ void H5Location::getObjectInfo(const H5std_string& name, H5O_info_t *objinfo, } //-------------------------------------------------------------------------- -// Function: H5Location::getNumAttrs -///\brief Replaced by H5Object::getNumAttrs. -///\return Number of attributes -///\exception H5::AttributeIException -// Programmer Binh-Minh Ribler - 2000 -// Modification -// - Moved to H5Object in 1.8.20. -BMR Oct, 2017 -//-------------------------------------------------------------------------- -int H5Location::getNumAttrs() const -{ - H5O_info_t oinfo; /* Object info */ - - if(H5Oget_info(getId(), &oinfo) < 0) - throwException("getNumAttrs", "H5Oget_info failed"); - else - return(static_cast(oinfo.num_attrs)); -} - -//-------------------------------------------------------------------------- // Function: H5Location::objVersion ///\brief Returns the header version of this HDF5 object. ///\return Object version, which can have the following values: @@ -1138,66 +1138,6 @@ void H5Location::link(const H5std_string& curr_name, const hid_t same_loc, link(curr_name.c_str(), same_loc, new_name.c_str(), lcpl, lapl); } -#if 0 -//-------------------------------------------------------------------------- -// Function: H5Location::link -///\brief Creates a link of the specified type from \a new_name to -/// \a curr_name. -///\param link_type - IN: Link type; possible values are -/// \li \c H5G_LINK_HARD -/// \li \c H5G_LINK_SOFT -///\param curr_name - IN: Name of the existing object if link is a hard -/// link; can be anything for the soft link -///\param new_name - IN: New name for the object -///\exception H5::FileIException or H5::GroupIException -///\par Description -/// Note that both names are interpreted relative to the -/// specified location. -/// For information on creating hard link and soft link, please -/// refer to the C layer Reference Manual at: -/// https://support.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-CreateHard and -/// https://support.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-CreateSoft -// Programmer Binh-Minh Ribler - 2000 -// Modification -// 2007: QAK modified to use H5L APIs - BMR -//-------------------------------------------------------------------------- -void H5Location::link(H5L_type_t link_type, const char* curr_name, const char* new_name) const -{ - herr_t ret_value = -1; - - switch(link_type) { - case H5L_TYPE_HARD: - ret_value = H5Lcreate_hard(getId(), curr_name, H5L_SAME_LOC, new_name, H5P_DEFAULT, H5P_DEFAULT); - break; - - case H5L_TYPE_SOFT: - ret_value = H5Lcreate_soft(curr_name, getId(), new_name, H5P_DEFAULT, H5P_DEFAULT); - break; - - case H5L_TYPE_ERROR: - case H5L_TYPE_EXTERNAL: - case H5L_TYPE_MAX: - default: - throwException("link", "unknown link type"); - break; - } /* end switch */ - - if(ret_value < 0) - throwException("link", "creating link failed"); -} - -//-------------------------------------------------------------------------- -// Function: H5Location::link -///\brief This is an overloaded member function, provided for convenience. -/// It differs from the above function in that it takes an -/// \c H5std_string for \a curr_name and \a new_name. -// Programmer Binh-Minh Ribler - 2000 -//-------------------------------------------------------------------------- -void H5Location::link(H5L_type_t link_type, const H5std_string& curr_name, const H5std_string& new_name) const -{ - link(link_type, curr_name.c_str(), new_name.c_str()); -} -#endif //-------------------------------------------------------------------------- // Function: H5Location::copyLink diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h index d929754..e76a6fc 100644 --- a/c++/src/H5Location.h +++ b/c++/src/H5Location.h @@ -41,6 +41,9 @@ class UserData4Aiterate { // user data for attribute iteration // Inheritance: IdComponent class H5_DLLCPP H5Location : public IdComponent { public: + // Determines the number of attributes belong to this object. + int getNumAttrs() const; + // Checks if a link of a given name exists in this location bool nameExists(const char* name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; bool nameExists(const H5std_string& name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; @@ -60,10 +63,6 @@ class H5_DLLCPP H5Location : public IdComponent { void getObjectInfo(const H5std_string& name, H5O_info_t *oinfo, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; - // Determines the number of attributes at this location. - // - moved to H5Object (1.8.20) - int getNumAttrs() const; // Deprecated - #ifndef H5_NO_DEPRECATED_SYMBOLS // Retrieves the type of object that an object reference points to. H5G_obj_t getObjType(void *ref, H5R_type_t ref_type = H5R_OBJECT) const; diff --git a/c++/src/H5Object.cpp b/c++/src/H5Object.cpp index a3b53d4..868a5d3 100644 --- a/c++/src/H5Object.cpp +++ b/c++/src/H5Object.cpp @@ -285,12 +285,14 @@ void H5Object::renameAttr(const H5std_string& oldname, const H5std_string& newna //-------------------------------------------------------------------------- // Function: H5Object::getNumAttrs -///\brief Returns the number of attributes attached to this HDF5 object. +///\brief Deprecated - replaced by H5Location::getNumAttrs() +// brief Returns the number of attributes attached to this HDF5 object. ///\return Number of attributes ///\exception H5::AttributeIException // Programmer Binh-Minh Ribler - 2000 // Modification -// - Moved from H5Location in 1.8.20. -BMR Oct, 2017 +// - Moved to H5Location to allow passing an attribute id to the +// C API, in 1.8.20. //-------------------------------------------------------------------------- int H5Object::getNumAttrs() const { -- cgit v0.12 From a5bab8081e2e91b0608287652ab82a2d3d5887e4 Mon Sep 17 00:00:00 2001 From: lrknox Date: Sat, 12 May 2018 20:39:08 -0500 Subject: Updated support branch version number to 1.8.22 --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 4 +- configure | 22 ++-- configure.ac | 2 +- hl/src/H5LTparse.c | 144 ++++++++++----------- hl/src/H5LTparse.h | 4 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 6 +- .../h5repack_layout.h5-plugin_version_test.ddl | 14 +- 10 files changed, 101 insertions(+), 101 deletions(-) diff --git a/README.txt b/README.txt index 7599422..5ea4f4a 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap13 currently under development +HDF5 version 1.8.22 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 9dd545d..d64bd4b 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap13, currently under development" +PROJECT_NUMBER = "1.8.22" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index d06ed0b..1ff10eb 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -34,8 +34,8 @@ cmake_minimum_required (VERSION 3.10) # CTEST_SOURCE_NAME - source folder ############################################################################## -set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap13") +set (CTEST_SOURCE_VERSION "1.8.22") +set (CTEST_SOURCE_VERSEXT "") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 28832d8..e6a23ad 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap13. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.22. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap13' -PACKAGE_STRING='HDF5 1.8.21-snap13' +PACKAGE_VERSION='1.8.22' +PACKAGE_STRING='HDF5 1.8.22' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap13 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.22 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap13:";; + short | recursive ) echo "Configuration of HDF5 1.8.22:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap13 +HDF5 configure 1.8.22 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap13, which was +It was created by HDF5 $as_me 1.8.22, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap13' + VERSION='1.8.22' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap13 +HDF5 config.lt 1.8.22 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap13, which was +This file was extended by HDF5 $as_me 1.8.22, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap13 +HDF5 config.status 1.8.22 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 59494d4..42ce5db 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap13], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.22], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/hl/src/H5LTparse.c b/hl/src/H5LTparse.c index 2a0f267..16a0bcf 100644 --- a/hl/src/H5LTparse.c +++ b/hl/src/H5LTparse.c @@ -1641,229 +1641,229 @@ yyreduce: switch (yyn) { case 2: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 99 "H5LTparse.y" { memset(arr_stack, 0, STACK_SIZE*sizeof(struct arr_info)); /*initialize here?*/ } break; case 3: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 100 "H5LTparse.y" { return (yyval.hid);} break; case 13: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 114 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8BE); } break; case 14: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 115 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8LE); } break; case 15: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 116 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16BE); } break; case 16: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 117 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16LE); } break; case 17: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 118 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32BE); } break; case 18: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 119 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32LE); } break; case 19: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 120 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64BE); } break; case 20: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 121 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64LE); } break; case 21: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 122 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8BE); } break; case 22: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 123 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8LE); } break; case 23: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 124 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16BE); } break; case 24: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 125 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16LE); } break; case 25: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 126 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32BE); } break; case 26: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 127 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32LE); } break; case 27: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 128 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64BE); } break; case 28: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 129 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64LE); } break; case 29: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 130 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_CHAR); } break; case 30: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 131 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SCHAR); } break; case 31: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 132 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UCHAR); } break; case 32: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 133 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SHORT); } break; case 33: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 134 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_USHORT); } break; case 34: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 135 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_INT); } break; case 35: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 136 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UINT); } break; case 36: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 137 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LONG); } break; case 37: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 138 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULONG); } break; case 38: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 139 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LLONG); } break; case 39: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 140 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULLONG); } break; case 40: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 143 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32BE); } break; case 41: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 144 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32LE); } break; case 42: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 145 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64BE); } break; case 43: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 146 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64LE); } break; case 44: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 147 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_FLOAT); } break; case 45: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 148 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_DOUBLE); } break; case 46: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 149 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LDOUBLE); } break; case 47: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 153 "H5LTparse.y" { csindex++; cmpd_stack[csindex].id = H5Tcreate(H5T_COMPOUND, 1); /*temporarily set size to 1*/ } break; case 48: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 155 "H5LTparse.y" { (yyval.hid) = cmpd_stack[csindex].id; cmpd_stack[csindex].id = 0; @@ -1873,13 +1873,13 @@ yyreduce: break; case 51: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 164 "H5LTparse.y" { cmpd_stack[csindex].is_field = 1; /*notify lexer a compound member is parsed*/ } break; case 52: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 166 "H5LTparse.y" { size_t origin_size, new_size; @@ -1915,7 +1915,7 @@ yyreduce: break; case 53: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 199 "H5LTparse.y" { (yyval.sval) = yylval.sval; @@ -1923,25 +1923,25 @@ yyreduce: break; case 54: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 204 "H5LTparse.y" { (yyval.ival) = 0; } break; case 55: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 206 "H5LTparse.y" { (yyval.ival) = yylval.ival; } break; case 57: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 210 "H5LTparse.y" { asindex++; /*pushd onto the stack*/ } break; case 58: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 212 "H5LTparse.y" { (yyval.hid) = H5Tarray_create2((yyvsp[(5) - (6)].hid), arr_stack[asindex].ndims, arr_stack[asindex].dims); @@ -1952,13 +1952,13 @@ yyreduce: break; case 61: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 222 "H5LTparse.y" { arr_stack[asindex].is_dim = 1; /*notice lexer of dimension size*/ } break; case 62: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 223 "H5LTparse.y" { unsigned ndims = arr_stack[asindex].ndims; arr_stack[asindex].dims[ndims] = (hsize_t)yylval.ival; @@ -1968,19 +1968,19 @@ yyreduce: break; case 65: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 234 "H5LTparse.y" { (yyval.hid) = H5Tvlen_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 66: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 239 "H5LTparse.y" { is_opq_size = 1; } break; case 67: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 240 "H5LTparse.y" { size_t size = (size_t)yylval.ival; @@ -1990,13 +1990,13 @@ yyreduce: break; case 68: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 245 "H5LTparse.y" { is_opq_tag = 1; } break; case 69: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 246 "H5LTparse.y" { H5Tset_tag((yyvsp[(7) - (13)].hid), yylval.sval); @@ -2005,19 +2005,19 @@ yyreduce: break; case 70: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 250 "H5LTparse.y" { (yyval.hid) = (yyvsp[(7) - (15)].hid); } break; case 73: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 258 "H5LTparse.y" { is_str_size = 1; } break; case 74: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 259 "H5LTparse.y" { if((yyvsp[(5) - (6)].ival) == H5T_VARIABLE_TOKEN) @@ -2029,7 +2029,7 @@ yyreduce: break; case 75: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 267 "H5LTparse.y" { if((yyvsp[(9) - (10)].ival) == H5T_STR_NULLTERM_TOKEN) @@ -2042,7 +2042,7 @@ yyreduce: break; case 76: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 276 "H5LTparse.y" { if((yyvsp[(13) - (14)].ival) == H5T_CSET_ASCII_TOKEN) @@ -2053,7 +2053,7 @@ yyreduce: break; case 77: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 283 "H5LTparse.y" { if((yyvsp[(17) - (18)].hid) == H5T_C_S1_TOKEN) @@ -2064,7 +2064,7 @@ yyreduce: break; case 78: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 290 "H5LTparse.y" { hid_t str_id = (yyvsp[(19) - (20)].hid); @@ -2085,67 +2085,67 @@ yyreduce: break; case 79: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 307 "H5LTparse.y" {(yyval.ival) = H5T_VARIABLE_TOKEN;} break; case 81: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 310 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLTERM_TOKEN;} break; case 82: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 311 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLPAD_TOKEN;} break; case 83: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 312 "H5LTparse.y" {(yyval.ival) = H5T_STR_SPACEPAD_TOKEN;} break; case 84: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 314 "H5LTparse.y" {(yyval.ival) = H5T_CSET_ASCII_TOKEN;} break; case 85: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 315 "H5LTparse.y" {(yyval.ival) = H5T_CSET_UTF8_TOKEN;} break; case 86: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 317 "H5LTparse.y" {(yyval.hid) = H5T_C_S1_TOKEN;} break; case 87: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 318 "H5LTparse.y" {(yyval.hid) = H5T_FORTRAN_S1_TOKEN;} break; case 88: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 322 "H5LTparse.y" { is_enum = 1; enum_id = H5Tenum_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 89: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 324 "H5LTparse.y" { is_enum = 0; /*reset*/ (yyval.hid) = enum_id; } break; case 92: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 329 "H5LTparse.y" { is_enum_memb = 1; /*indicate member of enum*/ @@ -2158,7 +2158,7 @@ yyreduce: break; case 93: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 338 "H5LTparse.y" { char char_val=(char)yylval.ival; @@ -2205,7 +2205,7 @@ yyreduce: break; -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 2191 "H5LTparse.c" default: break; } diff --git a/hl/src/H5LTparse.h b/hl/src/H5LTparse.h index 2af0172..7481a45 100644 --- a/hl/src/H5LTparse.h +++ b/hl/src/H5LTparse.h @@ -109,7 +109,7 @@ extern int H5LTyydebug; #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { -/* Line 2065 of yacc.c */ +/* Line 2058 of yacc.c */ #line 66 "H5LTparse.y" int ival; /*for integer token*/ @@ -117,7 +117,7 @@ typedef union YYSTYPE hid_t hid; /*for hid_t token*/ -/* Line 2065 of yacc.c */ +/* Line 2058 of yacc.c */ #line 122 "H5LTparse.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ad06d40..792a5ea 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap13 currently under development +HDF5 version 1.8.22 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 6007f16..b2c72c2 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -92,10 +92,10 @@ extern "C" { /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ -#define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap13" /* For pre-releases like snap0 */ +#define H5_VERS_RELEASE 22 /* For tweaks, bug-fixes, or development */ +#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap13" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.22" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) diff --git a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl index e8ac9a4..08fd4aa 100644 --- a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl +++ b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl @@ -11,7 +11,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -33,7 +33,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -55,7 +55,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -77,7 +77,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -99,7 +99,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -121,7 +121,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { @@ -143,7 +143,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 21 } + PARAMS { 9 1 8 22 } } } FILLVALUE { -- cgit v0.12 From c48b1185872329f91e2312d9fc5c06691a02b078 Mon Sep 17 00:00:00 2001 From: lrknox Date: Sat, 12 May 2018 21:18:29 -0500 Subject: Reset RELEASE.txt in preparation for the next release. --- release_docs/RELEASE.txt | 347 ++--------------------------------------------- 1 file changed, 11 insertions(+), 336 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index c95576c..9e6c986 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -4,11 +4,9 @@ HDF5 version 1.8.22 currently under development INTRODUCTION ============ -This document describes the differences between HDF5-1.8.20 and -HDF5-1.8.21, and contains information on the platforms tested and -known problems in HDF5-1.8.21. -For more details, see the files HISTORY-1_0-1_8_0_rc3.txt -and HISTORY-1_8.txt in the release_docs/ directory of the HDF5 source. +This document describes the differences between HDF5-1.8.21 and HDF5 1.10.22, and +contains information on the platforms tested and known problems in HDF5-1.10.21. +For more details check the HISTORY*.txt files in the HDF5 source. Links to the HDF5 1.8.21 source code, documentation, and additional materials can be found on the HDF5 web page at: @@ -19,7 +17,7 @@ The HDF5 1.8.21 release can be obtained from: https://support.hdfgroup.org/HDF5/release/obtain518.html -User documentation for 1.8.21 can be accessed directly at this location: +User documentation for the snapshot can be accessed directly at this location: https://support.hdfgroup.org/HDF5/doc1.8/ @@ -30,8 +28,8 @@ in 1.8.0?" document: https://support.hdfgroup.org/HDF5/doc/ADGuide/WhatsNew180.html All new and modified APIs are listed in detail in the "HDF5 Software Changes -from Release to Release" document, in the section "Release 1.8.21 (current -release) versus Release 1.8.20 +from Release to Release" document, in the section "Release 1.8.22 (current +release) versus Release 1.8.21 https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html @@ -57,36 +55,6 @@ New Features Configuration ------------- - - CMake - - Change minimum version to 3.10. - - This change removes the need to support a copy of the FindMPI.cmake module, - which has been removed, along with its subfolder in the config/cmake_ext_mod - location. - - (ADB - 2018/03/09) - - - CMake - - Add pkg-config file generation - - Added pkg-config file generation for the C, C++, HL, and HL C++ libraries. - In addition, builds on linux will create h5cXXX scripts that use the pkg-config - files. This is a limited implementation of a script like autotools h5cc. - - (ADB - 2018/03/08, HDFFV-4359) - - - CMake - - Refactor use of CMAKE_BUILD_TYPE for new variable, which understands - the type of generator in use. - - Added new configuration macros to use new HDF_BUILD_TYPE variable. This - variable is set correctly for the type of generator being used for the build. - - (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) - - None @@ -117,72 +85,7 @@ New Features C++ API ------- - - The following C++ API wrappers have been added to class H5Location - + H5Lcreate_soft: - // Creates a soft link from link_name to target_name. - void link(const char *target_name, const char *link_name,...) - void link(const H5std_string& target_name,...) - - + H5Lcreate_hard: - // Creates a hard link from new_name to curr_name. - void link(const char *curr_name, const Group& new_loc,...) - void link(const H5std_string& curr_name, const Group& new_loc,...) - - // Creates a hard link from new_name to curr_name in the same location. - void link(const char *curr_name, const hid_t same_loc,...) - void link(const H5std_string& curr_name, const hid_t same_loc,...) - - Note: previous version CommonFG::link will be deprecated. - - + H5Lcopy: - // Copy an object from a group of file to another. - void copyLink(const char *src_name, const Group& dst,...) - void copyLink(const H5std_string& src_name, const Group& dst,...) - - // Copy an object from a group of file to the same location. - void copyLink(const char *src_name, const char *dst_name,...) - void copyLink(const H5std_string& src_name,...) - - + H5Lmove: - // Rename an object in a group or file to a new location. - void moveLink(const char* src_name, const Group& dst,...) - void moveLink(const H5std_string& src_name, const Group& dst,...) - - // Rename an object in a group or file to the same location. - void moveLink(const char* src_name, const char* dst_name,...) - void moveLink(const H5std_string& src_name,...) - - Note: previous version CommonFG::move will be deprecated. - - + H5Ldelete: - // Removes the specified link from this location. - void unlink(const char *link_name, - const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) - void unlink(const H5std_string& link_name, - const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) - - Note: An additional parameter is added to CommonFG::unlink and it - is moved to H5Location. - - (BMR - 2018/05/11 - HDFFV-10445) - - - New property list subclasses - - Property list subclasses StrCreatPropList, LinkCreatPropList, and - AttrCreatPropList are added for the C property list classes - H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. - - (BMR - 2018/05/11 - HDFFV-10445) - - - Another argument, LinkCreatPropList& lcpl, is added to the following - functions for the use of link creation property list. - Group createGroup(const char* name, size_t size_hint = 0, - const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) - Group createGroup(const H5std_string& name, size_t size_hint = 0, - const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) - - (BMR - 2018/05/11 - HDFFV-10445) - + - None High-Level APIs --------------- @@ -197,143 +100,14 @@ Support for New Platforms, Languages, and Compilers Bug Fixes since HDF5-1.8.20 =========================== - - If an HDF5 file contains a filter pipeline message with a 'number of - filters' field that exceeds the maximum number of allowed filters, - the error handling code will attempt to dereference a NULL pointer. - - This issue was reported to The HDF Group as issue #CVE-2017-17505. - - NOTE: The HDF5 C library cannot produce such a file. This condition - should only occur in a corrupt (or deliberately altered) file - or a file created by third-party software. - - This problem arose because the error handling code assumed that - the 'number of filters' field implied that a dynamic array of that - size had already been created and that the cleanup code should - iterate over that array and clean up each element's resources. If - an error occurred before the array has been allocated, this will - not be true. - - This has been changed so that the number of filters is set to - zero on errors. Additionally, the filter array traversal in the - error handling code now requires that the filter array not be NULL. - - (DER - 2018/02/06, HDFFV-10354) - - - If an HDF5 file contains a filter pipeline message which contains - a 'number of filters' field that exceeds the actual number of - filters in the message, the HDF5 C library will read off the end of - the read buffer. - - This issue was reported to The HDF Group as issue #CVE-2017-17506. - - NOTE: The HDF5 C library cannot produce such a file. This condition - should only occur in a corrupt (or deliberately altered) file - or a file created by third-party software. - - The problem was fixed by passing the buffer size with the buffer - and ensuring that the pointer cannot be incremented off the end - of the buffer. A mismatch between the number of filters declared - and the actual number of filters will now invoke normal HDF5 - error handling. - - (DER - 2018/02/26, HDFFV-10355) - - - If an HDF5 file contains a malformed compound datatype with a - suitably large offset, the type conversion code can run off - the end of the type conversion buffer, causing a segmentation - fault. - - This issue was reported to The HDF Group as issue #CVE-2017-17507. - - NOTE: The HDF5 C library cannot produce such a file. This condition - should only occur in a corrupt (or deliberately altered) file - or a file created by third-party software. - - THE HDF GROUP WILL NOT FIX THIS BUG AT THIS TIME - - Fixing this problem would involve updating the publicly visible - H5T_conv_t function pointer typedef and versioning the API calls - which use it. We normally only modify the public API during - major releases, so this bug will not be fixed at this time. - - (DER - 2018/02/26, HDFFV-10356) - - - If an HDF5 file contains a malformed compound type which contains - a member of size zero, a division by zero error will occur while - processing the type. - - This issue was reported to The HDF Group as issue #CVE-2017-17508. - - NOTE: The HDF5 C library cannot produce such a file. This condition - should only occur in a corrupt (or deliberately altered) file - or a file created by third-party software. - - Checking for zero before dividing fixes the problem. Instead of the - division by zero, the normal HDF5 error handling is invoked. - - (DER - 2018/02/26, HDFFV-10357) - - - If an HDF5 file contains a malformed symbol table node that declares - it contains more symbols than it actually contains, the library - can run off the end of the metadata cache buffer while processing - the symbol table node. - - This issue was reported to The HDF Group as issue #CVE-2017-17509. - - NOTE: The HDF5 C library cannot produce such a file. This condition - should only occur in a corrupt (or deliberately altered) file - or a file created by third-party software. - - Performing bounds checks on the buffer while processing fixes the - problem. Instead of the segmentation fault, the normal HDF5 error - handling is invoked. - - (DER - 2018/03/12, HDFFV-10358) - Configuration ------------- - - CMake - - Update CMake commands configuration. - - A number of improvements were made to the CMake commands. Most - changes simplify usage or eliminate unused constructs. Also, - some changes support better cross-platform support. - - (ADB - 2018/02/01, HDFFV-10398) - - - CMake - - Correct usage of CMAKE_BUILD_TYPE variable. - - The use of the CMAKE_BUILD_TYPE is incorrect for multi-config - generators (Visual Studio and XCode) and is optional for single - config generators. Created a new macro to check - GLOBAL PROPERTY -> GENERATOR_IS_MULTI_CONFIG - Created two new HDF variable, HDF_BUILD_TYPE and HDF_CFG_BUILD_TYPE. - Defaults for these variables is "Release". - - (ADB - 2018/01/10, HDFFV-10385) - - - CMake - - Add replacement of fortran flags if using static CRT. - - Added TARGET_STATIC_CRT_FLAGS call to HDFUseFortran.cmake file in - config/cmake_ext_mod folder. - - (ADB - 2018/01/08, HDFFV-10334) + - None Library ------- - - Utility function can not handle lowercase Windows drive letters - - Added call to toupper function for drive letter. - - (ADB - 2017/12/18, HDFFV-10307) - + - None Parallel Library @@ -348,81 +122,7 @@ Bug Fixes since HDF5-1.8.20 Tools ----- - - h5repack - - h5repack changes the chunk parameters when a change of layout is not - specified and a filter is applied. - - HDFFV-10297, HDFFV-10319 reworked code for h5repack and h5diff code - in the tools library. The check for an existing layout was incorrectly - placed into an if block and not executed. The check was moved into - the normal path of the function. - - (ADB - 2018/02/21, HDFFV-10412) - - - h5dump - - the tools library will hide the error stack during file open. - - While this is preferable almost always, there are reasons to enable - display of the error stack when a tool will not open a file. Adding an - optional argument to the --enable-error-stack will provide this use case. - As an optional argument it will not affect the operation of the - --enable-error-stack. h5dump is the only tool to implement this change. - - (ADB - 2018/02/15, HDFFV-10384) - - - h5dump - - h5dump would output an indented blank line in the filters section. - - h5dump overused the h5tools_simple_prefix function, which is a - function intended to account for the data index (x,y,z) option. - Removed the function call for header information. - - (ADB - 2018/01/25, HDFFV-10396) - - - h5repack - - h5repack incorrectly searched internal object table for name. - - h5repack would search the table of objects for a name, if the - name did not match it tried to determine if the name without a - leading slash would match. The logic was flawed! The table - stored names(paths) without a leading slash and did a strstr - of the table path to the name. - The assumption was that if there was a difference of one then - it was a match, however "pressure" would match "/pressure" as - well as "/pressure1", "/pressure2", etc. Changed logic to remove - any leading slash and then do a full compare of the name. - - (ADB - 2018/01/18, HDFFV-10393) - - - h5repack - - h5repack failed to handle more then 9 chars for int conversion. - - User defined filter parameter conversions would fail for integers - larger then 9 characters. Increased local variable array for storing - the current command line parameter to prevent buffer overflows. - - (ADB - 2018/01/17, HDFFV-10392) - - - h5diff - - h5diff seg-faulted if comparing VL strings against fixed strings. - - Reworked solution for HDFFV-8625 and HDFFV-8639. Implemented the check - for string objects of same type in the diff_can_type function by - adding an if(tclass1 == H5T_STRING) block. This if block moves the - same check that was added for attributes to this function, which is - used by all object types. This function also handles complex type - structures. - Also added a new test file in h5diffgenttest for testing this issue - and removed the temporary files used in the test scripts. - - (ADB - 2018/01/04, HDFFV-8745) - + - None Fortran API @@ -432,32 +132,7 @@ Bug Fixes since HDF5-1.8.20 C++ API ------- - - Removal of memory leaks - - A private function was inadvertently called, causing memory leaks. This - is now fixed. - - (BMR - 2018/04/12 - User reported in email) - - - Changes in exception classes - - Some exception classes are reorganized to reflect the HDF5 object - hierarchy and allow customization. - DataSetIException -> LocationException -> Exception - DataTypeIException -> LocationException -> Exception - GroupIException -> LocationException -> Exception - AttributeIException -> LocationException -> Exception - FileIException -> GroupIException -> LocationException -> Exception - Member functions in H5Location and H5Object now throw specific exceptions - associated with the invoking objects. - - (BMR - 2018/05/11) - - - H5Location::closeObjId is made static - (BMR - 2018/05/11) - - - H5A wrappers in H5Location are removed as they have been in H5Object. - (BMR - 2018/05/11) + - None High-Level APIs: -- cgit v0.12 From 4d4cb63fbdb2f3bcb0d067c6f84bad981e43f223 Mon Sep 17 00:00:00 2001 From: lrknox Date: Sun, 13 May 2018 08:01:40 -0500 Subject: Update version to 1.8.21-pre1 --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 22 +++--- configure.ac | 2 +- hl/src/H5LTparse.c | 144 +++++++++++++++++----------------- hl/src/H5LTparse.h | 4 +- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 +- 9 files changed, 92 insertions(+), 92 deletions(-) diff --git a/README.txt b/README.txt index 7599422..1dac361 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap13 currently under development +HDF5 version 1.8.21-pre1 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 9dd545d..1571b43 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -49,7 +49,7 @@ PROJECT_NAME = "HDF5 C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.8.21-snap13, currently under development" +PROJECT_NUMBER = "1.8.21-pre1, currently under development" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index d06ed0b..9d427ec 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.10) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-snap13") +set (CTEST_SOURCE_VERSEXT "-pre1") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index 28832d8..c4d9c63 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-snap13. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-pre1. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-snap13' -PACKAGE_STRING='HDF5 1.8.21-snap13' +PACKAGE_VERSION='1.8.21-pre1' +PACKAGE_STRING='HDF5 1.8.21-pre1' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-snap13 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21-pre1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-snap13:";; + short | recursive ) echo "Configuration of HDF5 1.8.21-pre1:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-snap13 +HDF5 configure 1.8.21-pre1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-snap13, which was +It was created by HDF5 $as_me 1.8.21-pre1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-snap13' + VERSION='1.8.21-pre1' cat >>confdefs.h <<_ACEOF @@ -29313,7 +29313,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-snap13 +HDF5 config.lt 1.8.21-pre1 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31373,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-snap13, which was +This file was extended by HDF5 $as_me 1.8.21-pre1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31439,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-snap13 +HDF5 config.status 1.8.21-pre1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 59494d4..18b215a 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-snap13], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21-pre1], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) diff --git a/hl/src/H5LTparse.c b/hl/src/H5LTparse.c index 2a0f267..16a0bcf 100644 --- a/hl/src/H5LTparse.c +++ b/hl/src/H5LTparse.c @@ -1641,229 +1641,229 @@ yyreduce: switch (yyn) { case 2: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 99 "H5LTparse.y" { memset(arr_stack, 0, STACK_SIZE*sizeof(struct arr_info)); /*initialize here?*/ } break; case 3: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 100 "H5LTparse.y" { return (yyval.hid);} break; case 13: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 114 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8BE); } break; case 14: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 115 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I8LE); } break; case 15: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 116 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16BE); } break; case 16: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 117 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I16LE); } break; case 17: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 118 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32BE); } break; case 18: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 119 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I32LE); } break; case 19: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 120 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64BE); } break; case 20: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 121 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_I64LE); } break; case 21: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 122 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8BE); } break; case 22: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 123 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U8LE); } break; case 23: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 124 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16BE); } break; case 24: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 125 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U16LE); } break; case 25: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 126 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32BE); } break; case 26: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 127 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U32LE); } break; case 27: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 128 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64BE); } break; case 28: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 129 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_STD_U64LE); } break; case 29: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 130 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_CHAR); } break; case 30: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 131 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SCHAR); } break; case 31: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 132 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UCHAR); } break; case 32: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 133 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_SHORT); } break; case 33: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 134 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_USHORT); } break; case 34: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 135 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_INT); } break; case 35: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 136 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_UINT); } break; case 36: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 137 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LONG); } break; case 37: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 138 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULONG); } break; case 38: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 139 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LLONG); } break; case 39: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 140 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_ULLONG); } break; case 40: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 143 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32BE); } break; case 41: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 144 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F32LE); } break; case 42: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 145 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64BE); } break; case 43: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 146 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_IEEE_F64LE); } break; case 44: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 147 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_FLOAT); } break; case 45: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 148 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_DOUBLE); } break; case 46: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 149 "H5LTparse.y" { (yyval.hid) = H5Tcopy(H5T_NATIVE_LDOUBLE); } break; case 47: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 153 "H5LTparse.y" { csindex++; cmpd_stack[csindex].id = H5Tcreate(H5T_COMPOUND, 1); /*temporarily set size to 1*/ } break; case 48: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 155 "H5LTparse.y" { (yyval.hid) = cmpd_stack[csindex].id; cmpd_stack[csindex].id = 0; @@ -1873,13 +1873,13 @@ yyreduce: break; case 51: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 164 "H5LTparse.y" { cmpd_stack[csindex].is_field = 1; /*notify lexer a compound member is parsed*/ } break; case 52: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 166 "H5LTparse.y" { size_t origin_size, new_size; @@ -1915,7 +1915,7 @@ yyreduce: break; case 53: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 199 "H5LTparse.y" { (yyval.sval) = yylval.sval; @@ -1923,25 +1923,25 @@ yyreduce: break; case 54: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 204 "H5LTparse.y" { (yyval.ival) = 0; } break; case 55: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 206 "H5LTparse.y" { (yyval.ival) = yylval.ival; } break; case 57: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 210 "H5LTparse.y" { asindex++; /*pushd onto the stack*/ } break; case 58: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 212 "H5LTparse.y" { (yyval.hid) = H5Tarray_create2((yyvsp[(5) - (6)].hid), arr_stack[asindex].ndims, arr_stack[asindex].dims); @@ -1952,13 +1952,13 @@ yyreduce: break; case 61: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 222 "H5LTparse.y" { arr_stack[asindex].is_dim = 1; /*notice lexer of dimension size*/ } break; case 62: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 223 "H5LTparse.y" { unsigned ndims = arr_stack[asindex].ndims; arr_stack[asindex].dims[ndims] = (hsize_t)yylval.ival; @@ -1968,19 +1968,19 @@ yyreduce: break; case 65: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 234 "H5LTparse.y" { (yyval.hid) = H5Tvlen_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 66: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 239 "H5LTparse.y" { is_opq_size = 1; } break; case 67: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 240 "H5LTparse.y" { size_t size = (size_t)yylval.ival; @@ -1990,13 +1990,13 @@ yyreduce: break; case 68: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 245 "H5LTparse.y" { is_opq_tag = 1; } break; case 69: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 246 "H5LTparse.y" { H5Tset_tag((yyvsp[(7) - (13)].hid), yylval.sval); @@ -2005,19 +2005,19 @@ yyreduce: break; case 70: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 250 "H5LTparse.y" { (yyval.hid) = (yyvsp[(7) - (15)].hid); } break; case 73: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 258 "H5LTparse.y" { is_str_size = 1; } break; case 74: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 259 "H5LTparse.y" { if((yyvsp[(5) - (6)].ival) == H5T_VARIABLE_TOKEN) @@ -2029,7 +2029,7 @@ yyreduce: break; case 75: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 267 "H5LTparse.y" { if((yyvsp[(9) - (10)].ival) == H5T_STR_NULLTERM_TOKEN) @@ -2042,7 +2042,7 @@ yyreduce: break; case 76: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 276 "H5LTparse.y" { if((yyvsp[(13) - (14)].ival) == H5T_CSET_ASCII_TOKEN) @@ -2053,7 +2053,7 @@ yyreduce: break; case 77: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 283 "H5LTparse.y" { if((yyvsp[(17) - (18)].hid) == H5T_C_S1_TOKEN) @@ -2064,7 +2064,7 @@ yyreduce: break; case 78: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 290 "H5LTparse.y" { hid_t str_id = (yyvsp[(19) - (20)].hid); @@ -2085,67 +2085,67 @@ yyreduce: break; case 79: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 307 "H5LTparse.y" {(yyval.ival) = H5T_VARIABLE_TOKEN;} break; case 81: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 310 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLTERM_TOKEN;} break; case 82: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 311 "H5LTparse.y" {(yyval.ival) = H5T_STR_NULLPAD_TOKEN;} break; case 83: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 312 "H5LTparse.y" {(yyval.ival) = H5T_STR_SPACEPAD_TOKEN;} break; case 84: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 314 "H5LTparse.y" {(yyval.ival) = H5T_CSET_ASCII_TOKEN;} break; case 85: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 315 "H5LTparse.y" {(yyval.ival) = H5T_CSET_UTF8_TOKEN;} break; case 86: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 317 "H5LTparse.y" {(yyval.hid) = H5T_C_S1_TOKEN;} break; case 87: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 318 "H5LTparse.y" {(yyval.hid) = H5T_FORTRAN_S1_TOKEN;} break; case 88: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 322 "H5LTparse.y" { is_enum = 1; enum_id = H5Tenum_create((yyvsp[(3) - (4)].hid)); H5Tclose((yyvsp[(3) - (4)].hid)); } break; case 89: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 324 "H5LTparse.y" { is_enum = 0; /*reset*/ (yyval.hid) = enum_id; } break; case 92: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 329 "H5LTparse.y" { is_enum_memb = 1; /*indicate member of enum*/ @@ -2158,7 +2158,7 @@ yyreduce: break; case 93: -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 338 "H5LTparse.y" { char char_val=(char)yylval.ival; @@ -2205,7 +2205,7 @@ yyreduce: break; -/* Line 1807 of yacc.c */ +/* Line 1792 of yacc.c */ #line 2191 "H5LTparse.c" default: break; } diff --git a/hl/src/H5LTparse.h b/hl/src/H5LTparse.h index 2af0172..7481a45 100644 --- a/hl/src/H5LTparse.h +++ b/hl/src/H5LTparse.h @@ -109,7 +109,7 @@ extern int H5LTyydebug; #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { -/* Line 2065 of yacc.c */ +/* Line 2058 of yacc.c */ #line 66 "H5LTparse.y" int ival; /*for integer token*/ @@ -117,7 +117,7 @@ typedef union YYSTYPE hid_t hid; /*for hid_t token*/ -/* Line 2065 of yacc.c */ +/* Line 2058 of yacc.c */ #line 122 "H5LTparse.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index ad06d40..7b3e556 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-snap13 currently under development +HDF5 version 1.8.21-pre1 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 6007f16..8a3a936 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "snap13" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "pre1" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-snap13" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21-pre1" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 1bfaecf413d0eeb7e0167376d7ccf892996156be Mon Sep 17 00:00:00 2001 From: lrknox Date: Sun, 13 May 2018 19:10:34 -0500 Subject: Update .so numbers in config/lt_verse.am. --- c++/src/Makefile.in | 14 +++++++------- config/lt_vers.am | 14 +++++++------- fortran/src/Makefile.in | 14 +++++++------- hl/c++/src/Makefile.in | 14 +++++++------- hl/fortran/src/Makefile.in | 14 +++++++------- hl/src/Makefile.in | 14 +++++++------- src/Makefile.in | 14 +++++++------- 7 files changed, 49 insertions(+), 49 deletions(-) diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index 59ec075..c4b89c6 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -684,25 +684,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 # This is our main target diff --git a/config/lt_vers.am b/config/lt_vers.am index bf5ad87..17c033e 100644 --- a/config/lt_vers.am +++ b/config/lt_vers.am @@ -17,7 +17,7 @@ # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 ## If the API changes *at all*, increment LT_VERS_INTERFACE and @@ -39,27 +39,27 @@ LT_VERS_AGE = 3 ## the effects of the H5_V1_x_COMPAT flag. ## Version numbers for wrapper shared library files. -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index f2d01db..d120957 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -735,25 +735,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 AM_FCLIBS = $(LIBHDF5) diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in index 4126183..ff20853 100644 --- a/hl/c++/src/Makefile.in +++ b/hl/c++/src/Makefile.in @@ -674,25 +674,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 # This is our main target diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 3ff4e5e..1d8d3da 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -692,25 +692,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 # Our main target, the high-level fortran library diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in index 0ec7bfc..c072226 100644 --- a/hl/src/Makefile.in +++ b/hl/src/Makefile.in @@ -673,25 +673,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 # This library is our main target. diff --git a/src/Makefile.in b/src/Makefile.in index ebb4af0..b733fb7 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -731,25 +731,25 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 15 +LT_CXX_VERS_INTERFACE = 16 LT_CXX_VERS_REVISION = 0 LT_CXX_VERS_AGE = 0 LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 5 +LT_F_VERS_REVISION = 6 LT_F_VERS_AGE = 0 LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 1 +LT_HL_VERS_REVISION = 2 LT_HL_VERS_AGE = 2 LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 1 +LT_HL_CXX_VERS_REVISION = 2 LT_HL_CXX_VERS_AGE = 1 LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 4 +LT_HL_F_VERS_REVISION = 5 LT_HL_F_VERS_AGE = 0 LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 6 +LT_TOOLS_VERS_REVISION = 7 LT_TOOLS_VERS_AGE = 0 # Our main target, the HDF5 library -- cgit v0.12 From 9b127e38fbd024b20217d12a91a789649848c412 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 14 May 2018 14:19:23 -0500 Subject: Fixed typos Description: Fixed miscellaneous typos that caused warnings when generating the documents with doxygen. Platforms tested: Linux/64 (jelly) Darwin (osx1010test) --- c++/src/H5Location.cpp | 18 +++++++++--------- c++/src/H5StrcreatProp.cpp | 5 +++++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 6894fdd..c62437c 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -162,8 +162,7 @@ int H5Location::getNumAttrs() const if(H5Oget_info(getId(), &objinfo) < 0) throwException("getNumAttrs", "H5Oget_info failed"); - else - return(static_cast(objinfo.num_attrs)); + return(static_cast(objinfo.num_attrs)); } //-------------------------------------------------------------------------- @@ -823,11 +822,11 @@ void H5Location::dereference(const H5Location& loc, const void* ref, H5R_type_t //-------------------------------------------------------------------------- // Function: H5Location::dereference -///\brief Dereferences a reference into an HDF5 object, given an attribute. -///\param attr - IN: Attribute specifying the location of the referenced object -///\param ref - IN: Reference pointer -///\param ref_type - IN: Reference type -///\exception H5::ReferenceException +// brief Dereferences a reference into an HDF5 object, given an attribute. +// param attr - IN: Attribute specifying the location of the referenced object +// param ref - IN: Reference pointer +// param ref_type - IN: Reference type +// exception H5::ReferenceException // October 2006 // Modification // May, 2008 @@ -1093,7 +1092,7 @@ void H5Location::link(const H5std_string& curr_name, const H5Location& new_loc, ///\brief Creates a hard link from \a new_name to \a curr_name - can be /// used to pass in H5L_SAME_LOC. ///\param curr_name - IN: Name of the existing object -///\param loc_id - IN: Location ID, or H5L_SAME_LOC +///\param same_loc - IN: Location ID, or H5L_SAME_LOC ///\param new_name - IN: New name for the link ///\param lcpl - IN: Link creation plist - default to LinkCreatPropList::DEFAULT ///\param lapl - IN: Link access plist - default to LinkAccPropList::DEFAULT @@ -1322,6 +1321,7 @@ void H5Location::moveLink(const H5std_string& src_name, // Function: H5Location::unlink ///\brief Removes the specified link from this location. ///\param name - IN: Name of the object to be removed +///\param lapl - IN: Link access plist - default to LinkAccPropList::DEFAULT ///\exception One of the following: /// H5::GroupIException /// H5::FileIException @@ -1357,7 +1357,7 @@ void H5Location::unlink(const H5std_string& name, const LinkAccPropList& lapl) c // Function: H5Location::getLinkInfo ///\brief Returns the information of the named link. ///\param link_name - IN: Symbolic link to the object -///\param size - IN: Maximum number of characters of value to be returned +///\param lapl - IN: Link access plist - default LinkAccPropList::DEFAULT ///\return Name of the object ///\exception H5::FileIException/H5::GroupIException/H5::LocationException // 2000 diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index eb8ae6f..b296a65 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -26,6 +26,9 @@ namespace H5 { +#ifndef DOXYGEN_SHOULD_SKIP_THIS +// Currently, StrCreatPropList is an internal base class. + //-------------------------------------------------------------------------- // Function: StrCreatPropList default constructor ///\brief Default constructor: Creates a string create property list @@ -51,6 +54,8 @@ StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList( //-------------------------------------------------------------------------- StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {} +#endif // DOXYGEN_SHOULD_SKIP_THIS + //-------------------------------------------------------------------------- // Function: StrCreatPropList::setCharEncoding ///\brief Sets the character encoding of the string. -- cgit v0.12 From 867933406c66c3dfc37be3b097e4ed3e0e833aa4 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 14 May 2018 18:49:54 -0500 Subject: Fixed typos Platforms tested: Linux/64 (jelly) --- c++/src/H5StrcreatProp.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index b296a65..9c43326 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -32,7 +32,7 @@ namespace H5 { //-------------------------------------------------------------------------- // Function: StrCreatPropList default constructor ///\brief Default constructor: Creates a string create property list -// Programmer Binh-Minh Ribler - 2000 +// May 2018 //-------------------------------------------------------------------------- StrCreatPropList::StrCreatPropList() : PropList(H5P_STRING_CREATE) {} @@ -41,7 +41,7 @@ StrCreatPropList::StrCreatPropList() : PropList(H5P_STRING_CREATE) {} ///\brief Copy constructor: makes a copy of the original /// StrCreatPropList object. ///\param original - IN: StrCreatPropList instance to copy -// Programmer Binh-Minh Ribler - 2000 +// May 2018 //-------------------------------------------------------------------------- StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList(original) {} @@ -50,7 +50,7 @@ StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList( ///\brief Creates a file creation property list using the id of an /// existing one. ///\param plist_id - IN: StrCreatPropList id to use -// Programmer Binh-Minh Ribler - 2000 +// May 2018 //-------------------------------------------------------------------------- StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {} @@ -59,8 +59,9 @@ StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {} //-------------------------------------------------------------------------- // Function: StrCreatPropList::setCharEncoding ///\brief Sets the character encoding of the string. +///\param encoding - IN: String encoding character set ///\exception H5::PropListIException -// March 2018 +// May 2018 //-------------------------------------------------------------------------- void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const { @@ -75,8 +76,9 @@ void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const //-------------------------------------------------------------------------- // Function: StrCreatPropList::getCharEncoding ///\brief Gets the character encoding of the string. +///\return The string encoding character set ///\exception H5::PropListIException -// March 2018 +// May 2018 //-------------------------------------------------------------------------- H5T_cset_t StrCreatPropList::getCharEncoding() const { -- cgit v0.12 From 3759814975e43229892f238e8451fb0ceea16095 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 14 May 2018 20:36:43 -0500 Subject: Fixed typos Platforms tested: Linux/64 (jelly) --- c++/src/H5StrcreatProp.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index 9c43326..a12dc00 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -13,11 +13,6 @@ #include -#include - using std::cerr; - using std::endl; - - #include "H5Include.h" #include "H5Exception.h" #include "H5IdComponent.h" -- cgit v0.12 From b4ec6e06d52650343498acba770f7432efcc4e44 Mon Sep 17 00:00:00 2001 From: lrknox Date: Mon, 14 May 2018 21:44:51 -0500 Subject: Update version in RELEASE.txt. Correct merge errors from hdf5_1_8. --- bin/release | 74 +++--- release_docs/RELEASE.txt | 257 ++++++++++++++++++++- .../h5repack_layout.h5-plugin_version_test.ddl | 14 +- 3 files changed, 296 insertions(+), 49 deletions(-) diff --git a/bin/release b/bin/release index cb7a2fe..3f75a00 100755 --- a/bin/release +++ b/bin/release @@ -188,46 +188,46 @@ tar2zip() # Returns 0 if successful; 1 otherwise # # need function to create another temporary directory, extract the - + # $tmpdir/$HDF5_VERS.tar into it, add (create) build-unix.sh, # CTestScript.cmake, HDF5config.cmake, SZIP.tar.gz and ZLib.tar.gz, # and then tar.gz it. tar2cmakezip() { if [ $# -ne 3 ]; then - echo "usage: tar2cmakezip " + echo "usage: tar2cmakezip " return 1 fi - cmziptmpdir=/tmp/cmziptmpdir - cmziptmpsubdir=$cmziptmpdir/CMake-$HDF5_VERS - mkdir -p $cmziptmpsubdir + cmziptmpdir=/tmp/cmziptmpdir$$ + mkdir -p $cmziptmpdir version=$1 tarfile=$2 zipfile=$3 # step 1: untar tarball in cmgztmpdir - (cd $cmziptmpsubdir; tar xf -) < $tarfile + (cd $cmziptmpdir; tar xf -) < $tarfile # sanity check - if [ ! -d $cmziptmpsubdir/$version ]; then - echo "untar did not create $cmziptmpsubdir/$version source dir" + if [ ! -d $cmziptmpdir/$version ]; then + echo "untar did not create $cmziptmpdir/$version source dir" # cleanup rm -rf $cmziptmpdir return 1 fi - # step 2: add batch file for building CMake on window - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2012 -C Release -V -O hdf5.log" > build-VS2012-32.bat; chmod 755 build-VS2012-32.bat) - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201264 -C Release -V -O hdf5.log" > build-VS2012-64.bat; chmod 755 build-VS2012-64.bat) - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2013 -C Release -V -O hdf5.log" > build-VS2013-32.bat; chmod 755 build-VS2013-32.bat) - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201364 -C Release -V -O hdf5.log" > build-VS2013-64.bat; chmod 755 build-VS2013-64.bat) - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2015 -C Release -V -O hdf5.log" > build-VS2015-32.bat; chmod 755 build-VS2015-32.bat) - (cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201564 -C Release -V -O hdf5.log" > build-VS2015-64.bat; chmod 755 build-VS2015-32.bat) + # step 2: add batch files for building CMake on windows + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2013-32.bat $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2013-64.bat $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2015-32.bat $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2015-64.bat $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2017-32.bat $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5_1_10/build-VS2017-64.bat $cmziptmpdir # step 3: add SZIP.tar.gz, ZLib.tar.gz and cmake files - cp /mnt/scr1/pre-release/hdf5/CMake/SZip.tar.gz $cmziptmpsubdir - cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmziptmpsubdir - cp $cmziptmpsubdir/$version/config/cmake/scripts/CTestScript.cmake $cmziptmpsubdir - cp $cmziptmpsubdir/$version/config/cmake/scripts/HDF5config.cmake $cmziptmpsubdir - cp $cmziptmpsubdir/$version/config/cmake/scripts/HDF5options.cmake $cmziptmpsubdir + cp /mnt/scr1/pre-release/hdf5/CMake/SZip.tar.gz $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmziptmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5Examples-1.10.7-Source.tar.gz $cmziptmpdir + cp $cmziptmpdir/$version/config/cmake/scripts/CTestScript.cmake $cmziptmpdir + cp $cmziptmpdir/$version/config/cmake/scripts/HDF5config.cmake $cmziptmpdir + cp $cmziptmpdir/$version/config/cmake/scripts/HDF5options.cmake $cmziptmpdir # step 4: convert text files # There maybe a simpler way to do this. @@ -235,12 +235,16 @@ tar2cmakezip() # -k Keep the date stamp # -q quiet mode # grep redirect output to /dev/null because -q or -s are not portable. - find $cmziptmpsubdir/$version | \ + find $cmziptmpdir/$version | \ while read inf; do \ if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \ unix2dos -q -k $inf; \ fi\ done + + + mkdir $cmziptmpdir/CMake-$HDF5_VERS + mv $cmziptmpdir/* $cmziptmpdir/CMake-$HDF5_VERS # step 3: make zipball # -9 maximum compression # -y Store symbolic links as such in the zip archive @@ -295,16 +299,15 @@ tar2cmaketgz() return 1 fi cmgztmpdir=/tmp/cmgztmpdir$$ - cmgztmpsubdir=$cmgztmpdir/CMake-$HDF5_VERS - mkdir -p $cmgztmpsubdir + mkdir -p $cmgztmpdir version=$1 tarfile=$2 tgzfile=$3 # step 1: untar tarball in cmgztmpdir - (cd $cmgztmpsubdir; tar xf -) < $tarfile + (cd $cmgztmpdir; tar xf -) < $tarfile # sanity check - if [ ! -d $cmgztmpsubdir/$version ]; then + if [ ! -d $cmgztmpdir/$version ]; then echo "untar did not create $cmgztmpdir/$version source dir" # cleanup rm -rf $cmgztmpdir @@ -313,14 +316,17 @@ tar2cmaketgz() # step 2: add build-unix.sh script - (cd $cmgztmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=Unix -C Release -V -O hdf5.log" > build-unix.sh; chmod 755 build-unix.sh) + (cd $cmgztmpdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=Unix -C Release -V -O hdf5.log" > build-unix.sh; chmod 755 build-unix.sh) # step 3: add SZIP.tar.gz, ZLib.tar.gz and cmake files - cp /mnt/scr1/pre-release/hdf5/CMake/SZip.tar.gz $cmgztmpsubdir - cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmgztmpsubdir - cp $cmgztmpsubdir/$version/config/cmake/scripts/CTestScript.cmake $cmgztmpsubdir - cp $cmgztmpsubdir/$version/config/cmake/scripts/HDF5config.cmake $cmgztmpsubdir - cp $cmgztmpsubdir/$version/config/cmake/scripts/HDF5options.cmake $cmgztmpsubdir + cp /mnt/scr1/pre-release/hdf5/CMake/SZip.tar.gz $cmgztmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmgztmpdir + cp /mnt/scr1/pre-release/hdf5/CMake/HDF5Examples-1.10.7-Source.tar.gz $cmgztmpdir + cp $cmgztmpdir/$version/config/cmake/scripts/CTestScript.cmake $cmgztmpdir + cp $cmgztmpdir/$version/config/cmake/scripts/HDF5config.cmake $cmgztmpdir + cp $cmgztmpdir/$version/config/cmake/scripts/HDF5options.cmake $cmgztmpdir + mkdir $cmgztmpdir/CMake-$HDF5_VERS + mv $cmgztmpdir/* $cmgztmpdir/CMake-$HDF5_VERS tar czf $DEST/CMake-$HDF5_VERS.tar.gz -C $cmgztmpdir . || exit 1 # cleanup @@ -447,6 +453,12 @@ fi bin/chkmanifest || fail=yes if [ "X$fail" = "Xyes" ]; then if [ $check = yes ]; then + echo "" + echo "Note! If you are running bin/release in a development branch" + echo "later than v 1.8 the MANIFEST check is expected to fail when" + echo "autogen.sh has not been run successfully. Either run autogen.sh " + echo "with /usr/hdf/bin/AUTOTOOLS at the beginning of PATH or add the" + echo "--nocheck argument to the bin/release command." exit 1 else echo "Continuing anyway..." diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index fb3fa12..a97e0b1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -4,9 +4,11 @@ HDF5 version 1.8.21-pre1 currently under development INTRODUCTION ============ -This document describes the differences between HDF5-1.8.21 and HDF5 1.10.22, and -contains information on the platforms tested and known problems in HDF5-1.10.21. -For more details check the HISTORY*.txt files in the HDF5 source. +This document describes the differences between HDF5-1.8.20 and +HDF5-1.8.21, and contains information on the platforms tested and +known problems in HDF5-1.8.21. +For more details, see the files HISTORY-1_0-1_8_0_rc3.txt +and HISTORY-1_8.txt in the release_docs/ directory of the HDF5 source. Links to the HDF5 1.8.21 source code, documentation, and additional materials can be found on the HDF5 web page at: @@ -17,7 +19,7 @@ The HDF5 1.8.21 release can be obtained from: https://support.hdfgroup.org/HDF5/release/obtain518.html -User documentation for the snapshot can be accessed directly at this location: +User documentation for 1.8.21 can be accessed directly at this location: https://support.hdfgroup.org/HDF5/doc1.8/ @@ -28,8 +30,8 @@ in 1.8.0?" document: https://support.hdfgroup.org/HDF5/doc/ADGuide/WhatsNew180.html All new and modified APIs are listed in detail in the "HDF5 Software Changes -from Release to Release" document, in the section "Release 1.8.22 (current -release) versus Release 1.8.21 +from Release to Release" document, in the section "Release 1.8.21 (current +release) versus Release 1.8.20 https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html @@ -55,6 +57,36 @@ New Features Configuration ------------- + - CMake + + Change minimum version to 3.10. + + This change removes the need to support a copy of the FindMPI.cmake module, + which has been removed, along with its subfolder in the config/cmake_ext_mod + location. + + (ADB - 2018/03/09) + + - CMake + + Add pkg-config file generation + + Added pkg-config file generation for the C, C++, HL, and HL C++ libraries. + In addition, builds on linux will create h5cXXX scripts that use the pkg-config + files. This is a limited implementation of a script like autotools h5cc. + + (ADB - 2018/03/08, HDFFV-4359) + + - CMake + + Refactor use of CMAKE_BUILD_TYPE for new variable, which understands + the type of generator in use. + + Added new configuration macros to use new HDF_BUILD_TYPE variable. This + variable is set correctly for the type of generator being used for the build. + + (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) + - None @@ -100,14 +132,143 @@ Support for New Platforms, Languages, and Compilers Bug Fixes since HDF5-1.8.20 =========================== + - If an HDF5 file contains a filter pipeline message with a 'number of + filters' field that exceeds the maximum number of allowed filters, + the error handling code will attempt to dereference a NULL pointer. + + This issue was reported to The HDF Group as issue #CVE-2017-17505. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + This problem arose because the error handling code assumed that + the 'number of filters' field implied that a dynamic array of that + size had already been created and that the cleanup code should + iterate over that array and clean up each element's resources. If + an error occurred before the array has been allocated, this will + not be true. + + This has been changed so that the number of filters is set to + zero on errors. Additionally, the filter array traversal in the + error handling code now requires that the filter array not be NULL. + + (DER - 2018/02/06, HDFFV-10354) + + - If an HDF5 file contains a filter pipeline message which contains + a 'number of filters' field that exceeds the actual number of + filters in the message, the HDF5 C library will read off the end of + the read buffer. + + This issue was reported to The HDF Group as issue #CVE-2017-17506. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + The problem was fixed by passing the buffer size with the buffer + and ensuring that the pointer cannot be incremented off the end + of the buffer. A mismatch between the number of filters declared + and the actual number of filters will now invoke normal HDF5 + error handling. + + (DER - 2018/02/26, HDFFV-10355) + + - If an HDF5 file contains a malformed compound datatype with a + suitably large offset, the type conversion code can run off + the end of the type conversion buffer, causing a segmentation + fault. + + This issue was reported to The HDF Group as issue #CVE-2017-17507. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + THE HDF GROUP WILL NOT FIX THIS BUG AT THIS TIME + + Fixing this problem would involve updating the publicly visible + H5T_conv_t function pointer typedef and versioning the API calls + which use it. We normally only modify the public API during + major releases, so this bug will not be fixed at this time. + + (DER - 2018/02/26, HDFFV-10356) + + - If an HDF5 file contains a malformed compound type which contains + a member of size zero, a division by zero error will occur while + processing the type. + + This issue was reported to The HDF Group as issue #CVE-2017-17508. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + Checking for zero before dividing fixes the problem. Instead of the + division by zero, the normal HDF5 error handling is invoked. + + (DER - 2018/02/26, HDFFV-10357) + + - If an HDF5 file contains a malformed symbol table node that declares + it contains more symbols than it actually contains, the library + can run off the end of the metadata cache buffer while processing + the symbol table node. + + This issue was reported to The HDF Group as issue #CVE-2017-17509. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + Performing bounds checks on the buffer while processing fixes the + problem. Instead of the segmentation fault, the normal HDF5 error + handling is invoked. + + (DER - 2018/03/12, HDFFV-10358) + Configuration ------------- - - None + - CMake + + Update CMake commands configuration. + + A number of improvements were made to the CMake commands. Most + changes simplify usage or eliminate unused constructs. Also, + some changes support better cross-platform support. + + (ADB - 2018/02/01, HDFFV-10398) + + - CMake + + Correct usage of CMAKE_BUILD_TYPE variable. + + The use of the CMAKE_BUILD_TYPE is incorrect for multi-config + generators (Visual Studio and XCode) and is optional for single + config generators. Created a new macro to check + GLOBAL PROPERTY -> GENERATOR_IS_MULTI_CONFIG + Created two new HDF variable, HDF_BUILD_TYPE and HDF_CFG_BUILD_TYPE. + Defaults for these variables is "Release". + + (ADB - 2018/01/10, HDFFV-10385) + + - CMake + + Add replacement of fortran flags if using static CRT. + + Added TARGET_STATIC_CRT_FLAGS call to HDFUseFortran.cmake file in + config/cmake_ext_mod folder. + + (ADB - 2018/01/08, HDFFV-10334) Library ------- - - None + - Utility function can not handle lowercase Windows drive letters + + Added call to toupper function for drive letter. + + (ADB - 2017/12/18, HDFFV-10307) + Parallel Library @@ -122,7 +283,81 @@ Bug Fixes since HDF5-1.8.20 Tools ----- - - None + - h5repack + + h5repack changes the chunk parameters when a change of layout is not + specified and a filter is applied. + + HDFFV-10297, HDFFV-10319 reworked code for h5repack and h5diff code + in the tools library. The check for an existing layout was incorrectly + placed into an if block and not executed. The check was moved into + the normal path of the function. + + (ADB - 2018/02/21, HDFFV-10412) + + - h5dump + + the tools library will hide the error stack during file open. + + While this is preferable almost always, there are reasons to enable + display of the error stack when a tool will not open a file. Adding an + optional argument to the --enable-error-stack will provide this use case. + As an optional argument it will not affect the operation of the + --enable-error-stack. h5dump is the only tool to implement this change. + + (ADB - 2018/02/15, HDFFV-10384) + + - h5dump + + h5dump would output an indented blank line in the filters section. + + h5dump overused the h5tools_simple_prefix function, which is a + function intended to account for the data index (x,y,z) option. + Removed the function call for header information. + + (ADB - 2018/01/25, HDFFV-10396) + + - h5repack + + h5repack incorrectly searched internal object table for name. + + h5repack would search the table of objects for a name, if the + name did not match it tried to determine if the name without a + leading slash would match. The logic was flawed! The table + stored names(paths) without a leading slash and did a strstr + of the table path to the name. + The assumption was that if there was a difference of one then + it was a match, however "pressure" would match "/pressure" as + well as "/pressure1", "/pressure2", etc. Changed logic to remove + any leading slash and then do a full compare of the name. + + (ADB - 2018/01/18, HDFFV-10393) + + - h5repack + + h5repack failed to handle more then 9 chars for int conversion. + + User defined filter parameter conversions would fail for integers + larger then 9 characters. Increased local variable array for storing + the current command line parameter to prevent buffer overflows. + + (ADB - 2018/01/17, HDFFV-10392) + + - h5diff + + h5diff seg-faulted if comparing VL strings against fixed strings. + + Reworked solution for HDFFV-8625 and HDFFV-8639. Implemented the check + for string objects of same type in the diff_can_type function by + adding an if(tclass1 == H5T_STRING) block. This if block moves the + same check that was added for attributes to this function, which is + used by all object types. This function also handles complex type + structures. + Also added a new test file in h5diffgenttest for testing this issue + and removed the temporary files used in the test scripts. + + (ADB - 2018/01/04, HDFFV-8745) + Fortran API @@ -156,10 +391,10 @@ They are built with the configure process unless specified otherwise. Versions 4.9.3, 5.3.0, 6.2.0 PGI C, Fortran, C++ for 64-bit target on x86-64; - Version 16.10-0 + Version 17.10-0 Intel(R) C (icc), C++ (icpc), Fortran (icc) compilers: - Version 17.0.0.196 Build 20160721 + Version 17.0.4.196 Build 20160721 MPICH 3.1.4 compiled with GCC 4.9.3 OpenMPI 2.0.1 compiled with GCC 4.9.3 diff --git a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl index 08fd4aa..e8ac9a4 100644 --- a/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl +++ b/tools/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl @@ -11,7 +11,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -33,7 +33,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -55,7 +55,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -77,7 +77,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -99,7 +99,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -121,7 +121,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { @@ -143,7 +143,7 @@ GROUP "/" { USER_DEFINED_FILTER { FILTER_ID 260 COMMENT dynlib4 - PARAMS { 9 1 8 22 } + PARAMS { 9 1 8 21 } } } FILLVALUE { -- cgit v0.12 From b0e84840e1e5bb286bc507d06d550711df498f02 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 16 May 2018 11:29:46 -0500 Subject: Fix soversion naming and update cmake scripts --- config/cmake/HDF5Macros.cmake | 6 +++--- config/cmake/README.txt.cmake.in | 2 +- config/cmake/scripts/HDF5config.cmake | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/cmake/HDF5Macros.cmake b/config/cmake/HDF5Macros.cmake index e472a67..fe38b82 100644 --- a/config/cmake/HDF5Macros.cmake +++ b/config/cmake/HDF5Macros.cmake @@ -20,11 +20,11 @@ macro (H5_SET_LIB_OPTIONS libtarget libname libtype libpackage) else () set (LIBHDF_VERSION ${HDF5_${libpackage}_PACKAGE_SOVERSION_MAJOR}) endif () - set_target_properties (${libtarget} PROPERTIES VERSION ${LIBHDF_VERSION}) + set_target_properties (${libtarget} PROPERTIES VERSION ${PACKAGE_SOVERSION}) if (WIN32) - set (${LIB_OUT_NAME} "${LIB_OUT_NAME}-${PACKAGE_SOVERSION}") + set (${LIB_OUT_NAME} "${LIB_OUT_NAME}-${LIBHDF_VERSION}") else () - set_target_properties (${libtarget} PROPERTIES SOVERSION ${PACKAGE_SOVERSION}) + set_target_properties (${libtarget} PROPERTIES SOVERSION ${LIBHDF_VERSION}) endif () endif () HDF_SET_LIB_OPTIONS (${libtarget} ${LIB_OUT_NAME} ${libtype}) diff --git a/config/cmake/README.txt.cmake.in b/config/cmake/README.txt.cmake.in index de480a4..3e6e249 100644 --- a/config/cmake/README.txt.cmake.in +++ b/config/cmake/README.txt.cmake.in @@ -45,7 +45,7 @@ To test the installation with the examples; be the same as the value used with the -C command line option. The default build configuration is defined to build and use static libraries. Shared libraries can be used with the STATICONLYLIBRARIES script option set to "NO". - Other options can be changed by editing the HDF518_Examples.cmake file. + Other options can be changed by editing the HDF518_Examples_options.cmake file. If the defaults are okay, execute from this directory: ctest -S HDF518_Examples.cmake -C Release -V -O test.log diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 9d427ec..36c4888 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -12,7 +12,7 @@ ############################################################################################# ### ${CTEST_SCRIPT_ARG} is of the form OPTION=VALUE ### ### BUILD_GENERATOR required [Unix, VS2017, VS201764, VS2015, VS201564, VS2013, VS201364] ### -### ctest -S HDF518config.cmake,BUILD_GENERATOR=VS201264 -C Release -VV -O hdf518.log ### +### ctest -S HDF518config.cmake,BUILD_GENERATOR=VS201764 -C Release -VV -O hdf518.log ### ############################################################################################# cmake_minimum_required (VERSION 3.10) @@ -42,7 +42,7 @@ set (CTEST_SOURCE_VERSEXT "-pre1") #BUILD_GENERATOR - which CMake generator to use, required #INSTALLDIR - HDF5-1.8 root folder #CTEST_CONFIGURATION_TYPE - Release, Debug, RelWithDebInfo -#CTEST_SOURCE_NAME - name of source folder; HDF5-1.8.20 +#CTEST_SOURCE_NAME - name of source folder; HDF5-1.8.x if (DEFINED CTEST_SCRIPT_ARG) # transform ctest script arguments of the form # script.ctest,var1=value1,var2=value2 @@ -184,7 +184,7 @@ set (MODEL "Experimental") ##### Following controls source update ##### #set (LOCAL_UPDATE "TRUE") set (REPOSITORY_URL "https://git@bitbucket.hdfgroup.org/scm/hdffv/hdf5.git") -set (REPOSITORY_BRANCH "hdf5_1_8_20") +set (REPOSITORY_BRANCH "hdf5_1_8_21") #uncomment to use a compressed source file: *.tar on linux or mac *.zip on windows #set(CTEST_USE_TAR_SOURCE "${CTEST_SOURCE_VERSION}") -- cgit v0.12 From ed4a205242bcf459877137d1c787464efb08f38a Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 16 May 2018 15:37:38 -0500 Subject: Update Windows test machines --- release_docs/RELEASE.txt | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index a97e0b1..1410cb2 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -418,25 +418,18 @@ They are built with the configure process unless specified otherwise. (emu) Sun Fortran 95 8.6 SunOS_sparc Sun C++ 5.12 SunOS_sparc - Windows 7 Visual Studio 2012 w/ Intel Fortran 15 (cmake) - Visual Studio 2013 w/ Intel Fortran 15 (cmake) - Visual Studio 2015 w/ Intel Fortran 16 (cmake) + Windows 7 Visual Studio 2015 w/ Intel Fortran 16 (cmake) Windows 7 x64 Visual Studio 2012 w/ Intel Fortran 15 (cmake) Visual Studio 2013 w/ Intel Fortran 15 (cmake) Visual Studio 2015 w/ Intel Fortran 16 (cmake) Visual Studio 2015 w/ Intel C, Fortran 2017 (cmake) Visual Studio 2015 w/ MSMPI 8 (cmake) - Cygwin(CYGWIN_NT-6.1 2.8.0(0.309/5/3) - gcc and gfortran compilers (GCC 5.4.0) - (cmake and autotools) Windows 10 Visual Studio 2015 w/ Intel Fortran 16 (cmake) - Cygwin(CYGWIN_NT-6.1 2.8.0(0.309/5/3) - gcc and gfortran compilers (GCC 5.4.0) - (cmake and autotools) Windows 10 x64 Visual Studio 2015 w/ Intel Fortran 16 (cmake) + Visual Studio 2017 w/ Intel Fortran 18 (cmake) Mac OS X Mavericks 10.9.5 Apple LLVM version 6.0 (clang-600.0.57) 64-bit gfortran GNU Fortran (GCC) 4.9.2 -- cgit v0.12 From 74dfddfc0ae96d9e31092890f7df8f82b115f476 Mon Sep 17 00:00:00 2001 From: lrknox Date: Mon, 21 May 2018 19:28:10 -0500 Subject: Add missing RELEASE.txt entries for C++. --- release_docs/RELEASE.txt | 122 ++++++++++++++++++++++++++++++----------------- 1 file changed, 77 insertions(+), 45 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 1410cb2..55949b1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -87,41 +87,74 @@ New Features (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) - - None + C++ API + ------- + - The following C++ API wrappers have been added to class H5Location + + H5Lcreate_soft: + // Creates a soft link from link_name to target_name. + void link(const char *target_name, const char *link_name,...) + void link(const H5std_string& target_name,...) + + H5Lcreate_hard: + // Creates a hard link from new_name to curr_name. + void link(const char *curr_name, const Group& new_loc,...) + void link(const H5std_string& curr_name, const Group& new_loc,...) - Library - ------- - - None + // Creates a hard link from new_name to curr_name in the same location. + void link(const char *curr_name, const hid_t same_loc,...) + void link(const H5std_string& curr_name, const hid_t same_loc,...) + Note: previous version CommonFG::link will be deprecated. - Parallel Library - ---------------- - - None + + H5Lcopy: + // Copy an object from a group of file to another. + void copyLink(const char *src_name, const Group& dst,...) + void copyLink(const H5std_string& src_name, const Group& dst,...) + // Copy an object from a group of file to the same location. + void copyLink(const char *src_name, const char *dst_name,...) + void copyLink(const H5std_string& src_name,...) - Tools - ----- - - None + + H5Lmove: + // Rename an object in a group or file to a new location. + void moveLink(const char* src_name, const Group& dst,...) + void moveLink(const H5std_string& src_name, const Group& dst,...) + // Rename an object in a group or file to the same location. + void moveLink(const char* src_name, const char* dst_name,...) + void moveLink(const H5std_string& src_name,...) - High-Level APIs - --------------- - - None + Note: previous version CommonFG::move will be deprecated. + + H5Ldelete: + // Removes the specified link from this location. + void unlink(const char *link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + void unlink(const H5std_string& link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) - Fortran API - ----------- - - None + Note: An additional parameter is added to CommonFG::unlink and it + is moved to H5Location. + (BMR - 2018/05/11 - HDFFV-10445) - C++ API - ------- - - None + - New property list subclasses + + Property list subclasses StrCreatPropList, LinkCreatPropList, and + AttrCreatPropList are added for the C property list classes + H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. + + (BMR - 2018/05/11 - HDFFV-10445) + + - Another argument, LinkCreatPropList& lcpl, is added to the following + functions for the use of link creation property list. + Group createGroup(const char* name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + Group createGroup(const H5std_string& name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + + (BMR - 2018/05/11 - HDFFV-10445) - High-Level APIs - --------------- - - None Support for New Platforms, Languages, and Compilers @@ -226,6 +259,7 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/03/12, HDFFV-10358) + Configuration ------------- - CMake @@ -270,17 +304,6 @@ Bug Fixes since HDF5-1.8.20 (ADB - 2017/12/18, HDFFV-10307) - - Parallel Library - ---------------- - - None - - - Performance - ------------- - - None - - Tools ----- - h5repack @@ -359,25 +382,34 @@ Bug Fixes since HDF5-1.8.20 (ADB - 2018/01/04, HDFFV-8745) + C++ API + ------- + - Removal of memory leaks - Fortran API - ----------- - - None + A private function was inadvertently called, causing memory leaks. This + is now fixed. + (BMR - 2018/04/12 - User reported in email) - C++ API - ------- - - None + - Changes in exception classes + Some exception classes are reorganized to reflect the HDF5 object + hierarchy and allow customization. + DataSetIException -> LocationException -> Exception + DataTypeIException -> LocationException -> Exception + GroupIException -> LocationException -> Exception + AttributeIException -> LocationException -> Exception + FileIException -> GroupIException -> LocationException -> Exception + Member functions in H5Location and H5Object now throw specific exceptions + associated with the invoking objects. - High-Level APIs: - --------------- - - None + (BMR - 2018/05/11) + - H5Location::closeObjId is made static + (BMR - 2018/05/11) - Packet Table APIs: - ------------------ - - None + - H5A wrappers in H5Location are removed as they have been in H5Object. + (BMR - 2018/05/11) Supported Platforms -- cgit v0.12 From 4809fb0d15012f99511c90a72d0ac8d942ad07fe Mon Sep 17 00:00:00 2001 From: lrknox Date: Mon, 21 May 2018 20:04:36 -0500 Subject: pre1 release. --- README.txt | 2 +- build/Makefile | 1126 + build/c++/Makefile | 1413 + build/c++/examples/Makefile | 1366 + build/c++/examples/run-c++-ex.sh | 122 + build/c++/examples/testh5c++.sh | 279 + build/c++/src/.deps/H5AbstractDs.Plo | 1 + build/c++/src/.deps/H5AcreatProp.Plo | 1 + build/c++/src/.deps/H5ArrayType.Plo | 1 + build/c++/src/.deps/H5AtomType.Plo | 1 + build/c++/src/.deps/H5Attribute.Plo | 1 + build/c++/src/.deps/H5CommonFG.Plo | 1 + build/c++/src/.deps/H5CompType.Plo | 1 + build/c++/src/.deps/H5DataSet.Plo | 1 + build/c++/src/.deps/H5DataSpace.Plo | 1 + build/c++/src/.deps/H5DataType.Plo | 1 + build/c++/src/.deps/H5DcreatProp.Plo | 1 + build/c++/src/.deps/H5DxferProp.Plo | 1 + build/c++/src/.deps/H5EnumType.Plo | 1 + build/c++/src/.deps/H5Exception.Plo | 1 + build/c++/src/.deps/H5FaccProp.Plo | 1 + build/c++/src/.deps/H5FcreatProp.Plo | 1 + build/c++/src/.deps/H5File.Plo | 1 + build/c++/src/.deps/H5FloatType.Plo | 1 + build/c++/src/.deps/H5Group.Plo | 1 + build/c++/src/.deps/H5IdComponent.Plo | 1 + build/c++/src/.deps/H5IntType.Plo | 1 + build/c++/src/.deps/H5LaccProp.Plo | 1 + build/c++/src/.deps/H5LcreatProp.Plo | 1 + build/c++/src/.deps/H5Library.Plo | 1 + build/c++/src/.deps/H5Location.Plo | 1 + build/c++/src/.deps/H5Object.Plo | 1 + build/c++/src/.deps/H5OcreatProp.Plo | 1 + build/c++/src/.deps/H5PredType.Plo | 1 + build/c++/src/.deps/H5PropList.Plo | 1 + build/c++/src/.deps/H5StrType.Plo | 1 + build/c++/src/.deps/H5StrcreatProp.Plo | 1 + build/c++/src/.deps/H5VarLenType.Plo | 1 + build/c++/src/Makefile | 1580 + build/c++/src/h5c++ | 393 + build/c++/test/.deps/dsets.Po | 1 + build/c++/test/.deps/h5cpputil.Po | 1 + build/c++/test/.deps/tarray.Po | 1 + build/c++/test/.deps/tattr.Po | 1 + build/c++/test/.deps/tcompound.Po | 1 + build/c++/test/.deps/tdspl.Po | 1 + build/c++/test/.deps/testhdf5.Po | 1 + build/c++/test/.deps/tfile.Po | 1 + build/c++/test/.deps/tfilter.Po | 1 + build/c++/test/.deps/th5s.Po | 1 + build/c++/test/.deps/tlinks.Po | 1 + build/c++/test/.deps/tobject.Po | 1 + build/c++/test/.deps/trefer.Po | 1 + build/c++/test/.deps/ttypes.Po | 1 + build/c++/test/.deps/tvlstr.Po | 1 + build/c++/test/H5srcdir_str.h | 20 + build/c++/test/Makefile | 1420 + build/config.log | 33663 +++++++++++++++++++ build/config.lt | 1598 + build/config.status | 2716 ++ build/config/stamp1 | 0 build/config/stamp2 | 0 build/examples/Makefile | 1396 + build/examples/run-c-ex.sh | 140 + build/examples/testh5cc.sh | 351 + build/fortran/Makefile | 1422 + build/fortran/examples/Makefile | 1387 + build/fortran/examples/run-fortran-ex.sh | 131 + build/fortran/examples/testh5fc.sh | 224 + build/fortran/src/.deps/H5Af.Plo | 1 + build/fortran/src/.deps/H5Df.Plo | 1 + build/fortran/src/.deps/H5Ef.Plo | 1 + build/fortran/src/.deps/H5FDmpiof.Plo | 1 + build/fortran/src/.deps/H5Ff.Plo | 1 + build/fortran/src/.deps/H5Gf.Plo | 1 + build/fortran/src/.deps/H5If.Plo | 1 + build/fortran/src/.deps/H5Lf.Plo | 1 + build/fortran/src/.deps/H5Of.Plo | 1 + build/fortran/src/.deps/H5Pf.Plo | 1 + build/fortran/src/.deps/H5Rf.Plo | 1 + build/fortran/src/.deps/H5Sf.Plo | 1 + build/fortran/src/.deps/H5Tf.Plo | 1 + build/fortran/src/.deps/H5Zf.Plo | 1 + build/fortran/src/.deps/H5_f.Plo | 1 + build/fortran/src/.deps/H5f90kit.Plo | 1 + build/fortran/src/.deps/H5match_types.Po | 1 + build/fortran/src/Makefile | 1719 + build/fortran/src/h5fc | 370 + build/fortran/test/.deps/t.Plo | 1 + build/fortran/test/Makefile | 1695 + build/fortran/testpar/Makefile | 1367 + build/hl/Makefile | 1423 + build/hl/c++/Makefile | 1413 + build/hl/c++/examples/Makefile | 1331 + build/hl/c++/examples/run-hlc++-ex.sh | 78 + build/hl/c++/src/.deps/H5PacketTable.Plo | 1 + build/hl/c++/src/Makefile | 1464 + build/hl/c++/test/.deps/ptableTest.Po | 1 + build/hl/c++/test/Makefile | 1387 + build/hl/examples/Makefile | 1370 + build/hl/examples/run-hlc-ex.sh | 119 + build/hl/fortran/Makefile | 1417 + build/hl/fortran/examples/Makefile | 1342 + build/hl/fortran/examples/run-hlfortran-ex.sh | 84 + build/hl/fortran/src/.deps/H5DSfc.Plo | 1 + build/hl/fortran/src/.deps/H5IMcc.Plo | 1 + build/hl/fortran/src/.deps/H5IMfc.Plo | 1 + build/hl/fortran/src/.deps/H5LTfc.Plo | 1 + build/hl/fortran/src/.deps/H5TBfc.Plo | 1 + build/hl/fortran/src/Makefile | 1512 + build/hl/fortran/test/Makefile | 1422 + build/hl/src/.deps/H5DO.Plo | 370 + build/hl/src/.deps/H5DS.Plo | 379 + build/hl/src/.deps/H5IM.Plo | 375 + build/hl/src/.deps/H5LT.Plo | 373 + build/hl/src/.deps/H5LTanalyze.Plo | 217 + build/hl/src/.deps/H5LTparse.Plo | 188 + build/hl/src/.deps/H5PT.Plo | 374 + build/hl/src/.deps/H5TB.Plo | 374 + build/hl/src/.libs/H5DO.o | Bin 0 -> 7024 bytes build/hl/src/.libs/H5DS.o | Bin 0 -> 50376 bytes build/hl/src/.libs/H5IM.o | Bin 0 -> 29064 bytes build/hl/src/.libs/H5LT.o | Bin 0 -> 99280 bytes build/hl/src/.libs/H5LTanalyze.o | Bin 0 -> 57480 bytes build/hl/src/.libs/H5LTparse.o | Bin 0 -> 42208 bytes build/hl/src/.libs/H5PT.o | Bin 0 -> 24672 bytes build/hl/src/.libs/H5TB.o | Bin 0 -> 70648 bytes build/hl/src/.libs/libhdf5_hl.a | Bin 0 -> 383408 bytes build/hl/src/.libs/libhdf5_hl.la | 1 + build/hl/src/.libs/libhdf5_hl.lai | 41 + build/hl/src/.libs/libhdf5_hl.so | 1 + build/hl/src/.libs/libhdf5_hl.so.10 | 1 + build/hl/src/.libs/libhdf5_hl.so.10.2.2 | Bin 0 -> 231648 bytes build/hl/src/H5DO.lo | 12 + build/hl/src/H5DO.o | Bin 0 -> 6952 bytes build/hl/src/H5DS.lo | 12 + build/hl/src/H5DS.o | Bin 0 -> 50168 bytes build/hl/src/H5IM.lo | 12 + build/hl/src/H5IM.o | Bin 0 -> 28928 bytes build/hl/src/H5LT.lo | 12 + build/hl/src/H5LT.o | Bin 0 -> 98888 bytes build/hl/src/H5LTanalyze.lo | 12 + build/hl/src/H5LTanalyze.o | Bin 0 -> 57144 bytes build/hl/src/H5LTparse.lo | 12 + build/hl/src/H5LTparse.o | Bin 0 -> 41776 bytes build/hl/src/H5PT.lo | 12 + build/hl/src/H5PT.o | Bin 0 -> 24688 bytes build/hl/src/H5TB.lo | 12 + build/hl/src/H5TB.o | Bin 0 -> 70520 bytes build/hl/src/Makefile | 1469 + build/hl/src/libhdf5_hl.la | 42 + build/hl/test/.deps/gen_test_ds.Po | 1 + build/hl/test/.deps/test_ds.Po | 387 + build/hl/test/.deps/test_dset_opt.Po | 386 + build/hl/test/.deps/test_file_image.Po | 377 + build/hl/test/.deps/test_image.Po | 386 + build/hl/test/.deps/test_lite.Po | 382 + build/hl/test/.deps/test_packet.Po | 380 + build/hl/test/.deps/test_packet_vlen.Po | 375 + build/hl/test/.deps/test_table.Po | 382 + build/hl/test/.libs/lt-test_ds | Bin 0 -> 105672 bytes build/hl/test/.libs/lt-test_dset_opt | Bin 0 -> 62136 bytes build/hl/test/.libs/lt-test_file_image | Bin 0 -> 32056 bytes build/hl/test/.libs/lt-test_image | Bin 0 -> 30112 bytes build/hl/test/.libs/lt-test_lite | Bin 0 -> 58632 bytes build/hl/test/.libs/lt-test_packet | Bin 0 -> 103152 bytes build/hl/test/.libs/lt-test_table | Bin 0 -> 44984 bytes build/hl/test/.libs/test_ds | Bin 0 -> 101576 bytes build/hl/test/.libs/test_dset_opt | Bin 0 -> 62136 bytes build/hl/test/.libs/test_file_image | Bin 0 -> 32056 bytes build/hl/test/.libs/test_image | Bin 0 -> 30112 bytes build/hl/test/.libs/test_lite | Bin 0 -> 58632 bytes build/hl/test/.libs/test_packet | Bin 0 -> 103152 bytes build/hl/test/.libs/test_table | Bin 0 -> 44984 bytes build/hl/test/H5srcdir_str.h | 20 + build/hl/test/Makefile | 1529 + build/hl/test/combine_tables1.h5 | Bin 0 -> 9184 bytes build/hl/test/combine_tables2.h5 | Bin 0 -> 6192 bytes build/hl/test/test_dectris.h5 | Bin 0 -> 36579 bytes build/hl/test/test_detach.h5 | Bin 0 -> 7864 bytes build/hl/test/test_ds | 228 + build/hl/test/test_ds.chkexe | 0 build/hl/test/test_ds.chklog | 65 + build/hl/test/test_ds.o | Bin 0 -> 172744 bytes build/hl/test/test_ds1.h5 | Bin 0 -> 27904 bytes build/hl/test/test_ds10.h5 | Bin 0 -> 6512 bytes build/hl/test/test_ds2.h5 | Bin 0 -> 16432 bytes build/hl/test/test_ds3.h5 | Bin 0 -> 23120 bytes build/hl/test/test_ds4.h5 | Bin 0 -> 7336 bytes build/hl/test/test_ds5.h5 | Bin 0 -> 97152 bytes build/hl/test/test_ds6.h5 | Bin 0 -> 8488 bytes build/hl/test/test_ds7.h5 | Bin 0 -> 8413 bytes build/hl/test/test_ds8.h5 | Bin 0 -> 148044 bytes build/hl/test/test_ds9.h5 | Bin 0 -> 6624 bytes build/hl/test/test_dset_opt | 228 + build/hl/test/test_dset_opt.chkexe | 0 build/hl/test/test_dset_opt.chklog | 20 + build/hl/test/test_dset_opt.o | Bin 0 -> 91840 bytes build/hl/test/test_file_image | 228 + build/hl/test/test_file_image.chkexe | 0 build/hl/test/test_file_image.chklog | 15 + build/hl/test/test_file_image.o | Bin 0 -> 39888 bytes build/hl/test/test_image | 228 + build/hl/test/test_image.chkexe | 0 build/hl/test/test_image.chklog | 22 + build/hl/test/test_image.o | Bin 0 -> 34448 bytes build/hl/test/test_image1.h5 | Bin 0 -> 323064 bytes build/hl/test/test_image2.h5 | Bin 0 -> 330714 bytes build/hl/test/test_image3.h5 | Bin 0 -> 1824043 bytes build/hl/test/test_lite | 228 + build/hl/test/test_lite.chkexe | 0 build/hl/test/test_lite.chklog | 101 + build/hl/test/test_lite.o | Bin 0 -> 77320 bytes build/hl/test/test_lite1.h5 | Bin 0 -> 5552 bytes build/hl/test/test_lite2.h5 | Bin 0 -> 5760 bytes build/hl/test/test_lite3.h5 | Bin 0 -> 8144 bytes build/hl/test/test_lite4.h5 | Bin 0 -> 2437 bytes build/hl/test/test_packet | 228 + build/hl/test/test_packet.chkexe | 0 build/hl/test/test_packet.chklog | 32 + build/hl/test/test_packet.o | Bin 0 -> 44744 bytes build/hl/test/test_packet_compress.h5 | Bin 0 -> 23488 bytes build/hl/test/test_packet_table.h5 | Bin 0 -> 355328 bytes build/hl/test/test_packet_table_vlen.h5 | Bin 0 -> 40680 bytes build/hl/test/test_packet_vlen.o | Bin 0 -> 56664 bytes build/hl/test/test_table | 228 + build/hl/test/test_table.chkexe | 0 build/hl/test/test_table.chklog | 48 + build/hl/test/test_table.h5 | Bin 0 -> 60120 bytes build/hl/test/test_table.o | Bin 0 -> 53776 bytes build/hl/test/testfl_packet_table_vlen.h5 | Bin 0 -> 40124 bytes build/hl/tools/Makefile | 1399 + build/hl/tools/gif2h5/.deps/decompress.Po | 204 + build/hl/tools/gif2h5/.deps/gif2hdf.Po | 218 + build/hl/tools/gif2h5/.deps/gif2mem.Po | 204 + build/hl/tools/gif2h5/.deps/gifread.Po | 204 + build/hl/tools/gif2h5/.deps/h52gifgentst.Po | 202 + build/hl/tools/gif2h5/.deps/hdf2gif.Po | 222 + build/hl/tools/gif2h5/.deps/hdfgifwr.Po | 205 + build/hl/tools/gif2h5/.deps/writehdf.Po | 207 + build/hl/tools/gif2h5/.libs/gif2h5 | Bin 0 -> 262152 bytes build/hl/tools/gif2h5/.libs/h52gif | Bin 0 -> 248696 bytes build/hl/tools/gif2h5/.libs/h52gifgentst | Bin 0 -> 10360 bytes build/hl/tools/gif2h5/.libs/lt-gif2h5 | Bin 0 -> 262152 bytes build/hl/tools/gif2h5/.libs/lt-h52gif | Bin 0 -> 248696 bytes build/hl/tools/gif2h5/Makefile | 1469 + build/hl/tools/gif2h5/decompress.o | Bin 0 -> 18736 bytes build/hl/tools/gif2h5/gif2h5 | 228 + build/hl/tools/gif2h5/gif2hdf.o | Bin 0 -> 11984 bytes build/hl/tools/gif2h5/gif2mem.o | Bin 0 -> 15232 bytes build/hl/tools/gif2h5/gifread.o | Bin 0 -> 12584 bytes build/hl/tools/gif2h5/h52gif | 228 + build/hl/tools/gif2h5/h52gifgentst | 228 + build/hl/tools/gif2h5/h52gifgentst.o | Bin 0 -> 4912 bytes build/hl/tools/gif2h5/h52giftest.sh | 96 + build/hl/tools/gif2h5/h52giftest.sh.chkexe | 0 build/hl/tools/gif2h5/h52giftest.sh.chklog | 19 + build/hl/tools/gif2h5/hdf2gif.o | Bin 0 -> 15376 bytes build/hl/tools/gif2h5/hdfgifwr.o | Bin 0 -> 17000 bytes build/hl/tools/gif2h5/image.gif | 0 build/hl/tools/gif2h5/image1.gif | Bin 0 -> 9736 bytes build/hl/tools/gif2h5/image1.h5 | Bin 0 -> 82144 bytes build/hl/tools/gif2h5/image24.gif | 0 build/hl/tools/gif2h5/writehdf.o | Bin 0 -> 10592 bytes build/libtool | 11957 +++++++ build/makecheck.out | 12131 +++++++ build/src/.deps/H5.Plo | 372 + build/src/.deps/H5A.Plo | 384 + build/src/.deps/H5AC.Plo | 386 + build/src/.deps/H5Abtree2.Plo | 377 + build/src/.deps/H5Adense.Plo | 384 + build/src/.deps/H5Adeprec.Plo | 388 + build/src/.deps/H5Aint.Plo | 393 + build/src/.deps/H5Atest.Plo | 379 + build/src/.deps/H5B.Plo | 374 + build/src/.deps/H5B2.Plo | 332 + build/src/.deps/H5B2cache.Plo | 344 + build/src/.deps/H5B2dbg.Plo | 332 + build/src/.deps/H5B2hdr.Plo | 344 + build/src/.deps/H5B2int.Plo | 344 + build/src/.deps/H5B2stat.Plo | 332 + build/src/.deps/H5B2test.Plo | 332 + build/src/.deps/H5Bcache.Plo | 344 + build/src/.deps/H5Bdbg.Plo | 337 + build/src/.deps/H5C.Plo | 384 + build/src/.deps/H5CS.Plo | 286 + build/src/.deps/H5D.Plo | 372 + build/src/.deps/H5Dbtree.Plo | 377 + build/src/.deps/H5Dchunk.Plo | 377 + build/src/.deps/H5Dcompact.Plo | 377 + build/src/.deps/H5Dcontig.Plo | 377 + build/src/.deps/H5Ddbg.Plo | 370 + build/src/.deps/H5Ddeprec.Plo | 370 + build/src/.deps/H5Defl.Plo | 377 + build/src/.deps/H5Dfill.Plo | 377 + build/src/.deps/H5Dint.Plo | 379 + build/src/.deps/H5Dio.Plo | 374 + build/src/.deps/H5Dlayout.Plo | 372 + build/src/.deps/H5Dmpio.Plo | 374 + build/src/.deps/H5Doh.Plo | 374 + build/src/.deps/H5Dscatgath.Plo | 372 + build/src/.deps/H5Dselect.Plo | 370 + build/src/.deps/H5Dtest.Plo | 370 + build/src/.deps/H5E.Plo | 304 + build/src/.deps/H5Edeprec.Plo | 300 + build/src/.deps/H5Eint.Plo | 300 + build/src/.deps/H5F.Plo | 391 + build/src/.deps/H5FD.Plo | 400 + build/src/.deps/H5FDcore.Plo | 337 + build/src/.deps/H5FDdirect.Plo | 335 + build/src/.deps/H5FDfamily.Plo | 332 + build/src/.deps/H5FDint.Plo | 332 + build/src/.deps/H5FDlog.Plo | 335 + build/src/.deps/H5FDmpi.Plo | 325 + build/src/.deps/H5FDmpio.Plo | 370 + build/src/.deps/H5FDmulti.Plo | 199 + build/src/.deps/H5FDsec2.Plo | 335 + build/src/.deps/H5FDspace.Plo | 332 + build/src/.deps/H5FDstdio.Plo | 215 + build/src/.deps/H5FL.Plo | 295 + build/src/.deps/H5FO.Plo | 365 + build/src/.deps/H5FS.Plo | 344 + build/src/.deps/H5FScache.Plo | 349 + build/src/.deps/H5FSdbg.Plo | 377 + build/src/.deps/H5FSsection.Plo | 346 + build/src/.deps/H5FSstat.Plo | 335 + build/src/.deps/H5FStest.Plo | 335 + build/src/.deps/H5Faccum.Plo | 374 + build/src/.deps/H5Fcwfs.Plo | 381 + build/src/.deps/H5Fdbg.Plo | 384 + build/src/.deps/H5Fefc.Plo | 367 + build/src/.deps/H5Ffake.Plo | 365 + build/src/.deps/H5Fint.Plo | 407 + build/src/.deps/H5Fio.Plo | 374 + build/src/.deps/H5Fmount.Plo | 370 + build/src/.deps/H5Fmpi.Plo | 374 + build/src/.deps/H5Fquery.Plo | 372 + build/src/.deps/H5Fsfile.Plo | 372 + build/src/.deps/H5Fsuper.Plo | 379 + build/src/.deps/H5Fsuper_cache.Plo | 395 + build/src/.deps/H5Ftest.Plo | 388 + build/src/.deps/H5G.Plo | 374 + build/src/.deps/H5Gbtree2.Plo | 372 + build/src/.deps/H5Gcache.Plo | 384 + build/src/.deps/H5Gcompact.Plo | 374 + build/src/.deps/H5Gdense.Plo | 377 + build/src/.deps/H5Gdeprec.Plo | 377 + build/src/.deps/H5Gent.Plo | 372 + build/src/.deps/H5Gint.Plo | 381 + build/src/.deps/H5Glink.Plo | 379 + build/src/.deps/H5Gloc.Plo | 393 + build/src/.deps/H5Gname.Plo | 391 + build/src/.deps/H5Gnode.Plo | 384 + build/src/.deps/H5Gobj.Plo | 379 + build/src/.deps/H5Goh.Plo | 377 + build/src/.deps/H5Groot.Plo | 386 + build/src/.deps/H5Gstab.Plo | 374 + build/src/.deps/H5Gtest.Plo | 386 + build/src/.deps/H5Gtraverse.Plo | 393 + build/src/.deps/H5HF.Plo | 384 + build/src/.deps/H5HFbtree2.Plo | 381 + build/src/.deps/H5HFcache.Plo | 388 + build/src/.deps/H5HFdbg.Plo | 377 + build/src/.deps/H5HFdblock.Plo | 384 + build/src/.deps/H5HFdtable.Plo | 377 + build/src/.deps/H5HFhdr.Plo | 384 + build/src/.deps/H5HFhuge.Plo | 384 + build/src/.deps/H5HFiblock.Plo | 384 + build/src/.deps/H5HFiter.Plo | 374 + build/src/.deps/H5HFman.Plo | 386 + build/src/.deps/H5HFsection.Plo | 377 + build/src/.deps/H5HFspace.Plo | 372 + build/src/.deps/H5HFstat.Plo | 372 + build/src/.deps/H5HFtest.Plo | 372 + build/src/.deps/H5HFtiny.Plo | 372 + build/src/.deps/H5HG.Plo | 344 + build/src/.deps/H5HGcache.Plo | 344 + build/src/.deps/H5HGdbg.Plo | 335 + build/src/.deps/H5HGquery.Plo | 332 + build/src/.deps/H5HL.Plo | 342 + build/src/.deps/H5HLcache.Plo | 344 + build/src/.deps/H5HLdbg.Plo | 337 + build/src/.deps/H5HLint.Plo | 332 + build/src/.deps/H5HP.Plo | 293 + build/src/.deps/H5I.Plo | 363 + build/src/.deps/H5Itest.Plo | 342 + build/src/.deps/H5L.Plo | 374 + build/src/.deps/H5Lexternal.Plo | 381 + build/src/.deps/H5MF.Plo | 381 + build/src/.deps/H5MFaggr.Plo | 377 + build/src/.deps/H5MFdbg.Plo | 377 + build/src/.deps/H5MFsection.Plo | 377 + build/src/.deps/H5MM.Plo | 293 + build/src/.deps/H5MP.Plo | 300 + build/src/.deps/H5MPtest.Plo | 295 + build/src/.deps/H5O.Plo | 377 + build/src/.deps/H5Oainfo.Plo | 377 + build/src/.deps/H5Oalloc.Plo | 367 + build/src/.deps/H5Oattr.Plo | 384 + build/src/.deps/H5Oattribute.Plo | 384 + build/src/.deps/H5Obogus.Plo | 360 + build/src/.deps/H5Obtreek.Plo | 360 + build/src/.deps/H5Ocache.Plo | 370 + build/src/.deps/H5Ochunk.Plo | 358 + build/src/.deps/H5Ocont.Plo | 367 + build/src/.deps/H5Ocopy.Plo | 388 + build/src/.deps/H5Odbg.Plo | 360 + build/src/.deps/H5Odrvinfo.Plo | 360 + build/src/.deps/H5Odtype.Plo | 379 + build/src/.deps/H5Oefl.Plo | 365 + build/src/.deps/H5Ofill.Plo | 377 + build/src/.deps/H5Oginfo.Plo | 358 + build/src/.deps/H5Olayout.Plo | 377 + build/src/.deps/H5Olinfo.Plo | 379 + build/src/.deps/H5Olink.Plo | 384 + build/src/.deps/H5Omessage.Plo | 372 + build/src/.deps/H5Omtime.Plo | 360 + build/src/.deps/H5Oname.Plo | 360 + build/src/.deps/H5Onull.Plo | 351 + build/src/.deps/H5Opline.Plo | 377 + build/src/.deps/H5Orefcount.Plo | 358 + build/src/.deps/H5Osdspace.Plo | 377 + build/src/.deps/H5Oshared.Plo | 367 + build/src/.deps/H5Oshmesg.Plo | 360 + build/src/.deps/H5Ostab.Plo | 374 + build/src/.deps/H5Otest.Plo | 379 + build/src/.deps/H5Ounknown.Plo | 358 + build/src/.deps/H5P.Plo | 323 + build/src/.deps/H5PL.Plo | 344 + build/src/.deps/H5Pacpl.Plo | 321 + build/src/.deps/H5Pdapl.Plo | 372 + build/src/.deps/H5Pdcpl.Plo | 377 + build/src/.deps/H5Pdeprec.Plo | 325 + build/src/.deps/H5Pdxpl.Plo | 370 + build/src/.deps/H5Pfapl.Plo | 377 + build/src/.deps/H5Pfcpl.Plo | 358 + build/src/.deps/H5Pfmpl.Plo | 325 + build/src/.deps/H5Pgcpl.Plo | 358 + build/src/.deps/H5Pint.Plo | 328 + build/src/.deps/H5Plapl.Plo | 363 + build/src/.deps/H5Plcpl.Plo | 360 + build/src/.deps/H5Pocpl.Plo | 367 + build/src/.deps/H5Pocpypl.Plo | 363 + build/src/.deps/H5Pstrcpl.Plo | 325 + build/src/.deps/H5Ptest.Plo | 370 + build/src/.deps/H5R.Plo | 377 + build/src/.deps/H5RC.Plo | 292 + build/src/.deps/H5RS.Plo | 292 + build/src/.deps/H5Rdeprec.Plo | 356 + build/src/.deps/H5S.Plo | 365 + build/src/.deps/H5SL.Plo | 297 + build/src/.deps/H5SM.Plo | 384 + build/src/.deps/H5SMbtree2.Plo | 372 + build/src/.deps/H5SMcache.Plo | 383 + build/src/.deps/H5SMmessage.Plo | 372 + build/src/.deps/H5SMtest.Plo | 370 + build/src/.deps/H5ST.Plo | 292 + build/src/.deps/H5Sall.Plo | 363 + build/src/.deps/H5Sdbg.Plo | 358 + build/src/.deps/H5Shyper.Plo | 365 + build/src/.deps/H5Smpio.Plo | 374 + build/src/.deps/H5Snone.Plo | 372 + build/src/.deps/H5Spoint.Plo | 367 + build/src/.deps/H5Sselect.Plo | 379 + build/src/.deps/H5Stest.Plo | 360 + build/src/.deps/H5T.Plo | 377 + build/src/.deps/H5TS.Plo | 293 + build/src/.deps/H5Tarray.Plo | 360 + build/src/.deps/H5Tbit.Plo | 363 + build/src/.deps/H5Tcommit.Plo | 365 + build/src/.deps/H5Tcompound.Plo | 363 + build/src/.deps/H5Tconv.Plo | 379 + build/src/.deps/H5Tcset.Plo | 360 + build/src/.deps/H5Tdbg.Plo | 358 + build/src/.deps/H5Tdeprec.Plo | 363 + build/src/.deps/H5Tenum.Plo | 363 + build/src/.deps/H5Tfields.Plo | 363 + build/src/.deps/H5Tfixed.Plo | 360 + build/src/.deps/H5Tfloat.Plo | 360 + build/src/.deps/H5Tinit.Plo | 365 + build/src/.deps/H5Tnative.Plo | 363 + build/src/.deps/H5Toffset.Plo | 360 + build/src/.deps/H5Toh.Plo | 363 + build/src/.deps/H5Topaque.Plo | 363 + build/src/.deps/H5Torder.Plo | 360 + build/src/.deps/H5Tpad.Plo | 360 + build/src/.deps/H5Tprecis.Plo | 360 + build/src/.deps/H5Tstrpad.Plo | 360 + build/src/.deps/H5Tvisit.Plo | 358 + build/src/.deps/H5Tvlen.Plo | 379 + build/src/.deps/H5VM.Plo | 356 + build/src/.deps/H5WB.Plo | 293 + build/src/.deps/H5Z.Plo | 377 + build/src/.deps/H5Zdeflate.Plo | 344 + build/src/.deps/H5Zfletcher32.Plo | 339 + build/src/.deps/H5Znbit.Plo | 363 + build/src/.deps/H5Zscaleoffset.Plo | 363 + build/src/.deps/H5Zshuffle.Plo | 349 + build/src/.deps/H5Zszip.Plo | 363 + build/src/.deps/H5Ztrans.Plo | 344 + build/src/.deps/H5checksum.Plo | 279 + build/src/.deps/H5dbg.Plo | 279 + build/src/.deps/H5detect.Po | 293 + build/src/.deps/H5lib_settings.Plo | 3 + build/src/.deps/H5make_libsettings.Po | 278 + build/src/.deps/H5system.Plo | 304 + build/src/.deps/H5timer.Plo | 279 + build/src/.deps/H5trace.Plo | 372 + build/src/.libs/H5.o | Bin 0 -> 55512 bytes build/src/.libs/H5A.o | Bin 0 -> 153624 bytes build/src/.libs/H5AC.o | Bin 0 -> 116352 bytes build/src/.libs/H5Abtree2.o | Bin 0 -> 34936 bytes build/src/.libs/H5Adense.o | Bin 0 -> 130704 bytes build/src/.libs/H5Adeprec.o | Bin 0 -> 42728 bytes build/src/.libs/H5Aint.o | Bin 0 -> 164432 bytes build/src/.libs/H5Atest.o | Bin 0 -> 13864 bytes build/src/.libs/H5B.o | Bin 0 -> 115360 bytes build/src/.libs/H5B2.o | Bin 0 -> 85608 bytes build/src/.libs/H5B2cache.o | Bin 0 -> 86032 bytes build/src/.libs/H5B2dbg.o | Bin 0 -> 39160 bytes build/src/.libs/H5B2hdr.o | Bin 0 -> 51840 bytes build/src/.libs/H5B2int.o | Bin 0 -> 168904 bytes build/src/.libs/H5B2stat.o | Bin 0 -> 17176 bytes build/src/.libs/H5B2test.o | Bin 0 -> 39952 bytes build/src/.libs/H5Bcache.o | Bin 0 -> 39688 bytes build/src/.libs/H5Bdbg.o | Bin 0 -> 20560 bytes build/src/.libs/H5C.o | Bin 0 -> 266864 bytes build/src/.libs/H5CS.o | Bin 0 -> 2560 bytes build/src/.libs/H5D.o | Bin 0 -> 115904 bytes build/src/.libs/H5Dbtree.o | Bin 0 -> 112520 bytes build/src/.libs/H5Dchunk.o | Bin 0 -> 309024 bytes build/src/.libs/H5Dcompact.o | Bin 0 -> 77160 bytes build/src/.libs/H5Dcontig.o | Bin 0 -> 121072 bytes build/src/.libs/H5Ddbg.o | Bin 0 -> 38064 bytes build/src/.libs/H5Ddeprec.o | Bin 0 -> 59960 bytes build/src/.libs/H5Defl.o | Bin 0 -> 73272 bytes build/src/.libs/H5Dfill.o | Bin 0 -> 59480 bytes build/src/.libs/H5Dint.o | Bin 0 -> 210728 bytes build/src/.libs/H5Dio.o | Bin 0 -> 94360 bytes build/src/.libs/H5Dlayout.o | Bin 0 -> 57424 bytes build/src/.libs/H5Dmpio.o | Bin 0 -> 5192 bytes build/src/.libs/H5Doh.o | Bin 0 -> 73296 bytes build/src/.libs/H5Dscatgath.o | Bin 0 -> 97280 bytes build/src/.libs/H5Dselect.o | Bin 0 -> 51528 bytes build/src/.libs/H5Dtest.o | Bin 0 -> 41048 bytes build/src/.libs/H5E.o | Bin 0 -> 278392 bytes build/src/.libs/H5Edeprec.o | Bin 0 -> 43400 bytes build/src/.libs/H5Eint.o | Bin 0 -> 64592 bytes build/src/.libs/H5F.o | Bin 0 -> 125440 bytes build/src/.libs/H5FD.o | Bin 0 -> 143080 bytes build/src/.libs/H5FDcore.o | Bin 0 -> 81864 bytes build/src/.libs/H5FDdirect.o | Bin 0 -> 3536 bytes build/src/.libs/H5FDfamily.o | Bin 0 -> 74896 bytes build/src/.libs/H5FDint.o | Bin 0 -> 29432 bytes build/src/.libs/H5FDlog.o | Bin 0 -> 77504 bytes build/src/.libs/H5FDmpi.o | Bin 0 -> 2568 bytes build/src/.libs/H5FDmpio.o | Bin 0 -> 3528 bytes build/src/.libs/H5FDmulti.o | Bin 0 -> 74832 bytes build/src/.libs/H5FDsec2.o | Bin 0 -> 52600 bytes build/src/.libs/H5FDspace.o | Bin 0 -> 33280 bytes build/src/.libs/H5FDstdio.o | Bin 0 -> 38560 bytes build/src/.libs/H5FL.o | Bin 0 -> 103544 bytes build/src/.libs/H5FO.o | Bin 0 -> 48784 bytes build/src/.libs/H5FS.o | Bin 0 -> 59592 bytes build/src/.libs/H5FScache.o | Bin 0 -> 82672 bytes build/src/.libs/H5FSdbg.o | Bin 0 -> 28320 bytes build/src/.libs/H5FSsection.o | Bin 0 -> 118248 bytes build/src/.libs/H5FSstat.o | Bin 0 -> 15928 bytes build/src/.libs/H5FStest.o | Bin 0 -> 17120 bytes build/src/.libs/H5Faccum.o | Bin 0 -> 61920 bytes build/src/.libs/H5Fcwfs.o | Bin 0 -> 29312 bytes build/src/.libs/H5Fdbg.o | Bin 0 -> 30544 bytes build/src/.libs/H5Fefc.o | Bin 0 -> 55008 bytes build/src/.libs/H5Ffake.o | Bin 0 -> 25112 bytes build/src/.libs/H5Fint.o | Bin 0 -> 131528 bytes build/src/.libs/H5Fio.o | Bin 0 -> 25744 bytes build/src/.libs/H5Fmount.o | Bin 0 -> 64928 bytes build/src/.libs/H5Fmpi.o | Bin 0 -> 2568 bytes build/src/.libs/H5Fquery.o | Bin 0 -> 72032 bytes build/src/.libs/H5Fsfile.o | Bin 0 -> 27960 bytes build/src/.libs/H5Fsuper.o | Bin 0 -> 65712 bytes build/src/.libs/H5Fsuper_cache.o | Bin 0 -> 75184 bytes build/src/.libs/H5Ftest.o | Bin 0 -> 27304 bytes build/src/.libs/H5G.o | Bin 0 -> 69528 bytes build/src/.libs/H5Gbtree2.o | Bin 0 -> 33600 bytes build/src/.libs/H5Gcache.o | Bin 0 -> 32056 bytes build/src/.libs/H5Gcompact.o | Bin 0 -> 51528 bytes build/src/.libs/H5Gdense.o | Bin 0 -> 116456 bytes build/src/.libs/H5Gdeprec.o | Bin 0 -> 107808 bytes build/src/.libs/H5Gent.o | Bin 0 -> 44480 bytes build/src/.libs/H5Gint.o | Bin 0 -> 81080 bytes build/src/.libs/H5Glink.o | Bin 0 -> 38448 bytes build/src/.libs/H5Gloc.o | Bin 0 -> 63952 bytes build/src/.libs/H5Gname.o | Bin 0 -> 64048 bytes build/src/.libs/H5Gnode.o | Bin 0 -> 109160 bytes build/src/.libs/H5Gobj.o | Bin 0 -> 85768 bytes build/src/.libs/H5Goh.o | Bin 0 -> 46560 bytes build/src/.libs/H5Groot.o | Bin 0 -> 37568 bytes build/src/.libs/H5Gstab.o | Bin 0 -> 87832 bytes build/src/.libs/H5Gtest.o | Bin 0 -> 64200 bytes build/src/.libs/H5Gtraverse.o | Bin 0 -> 58672 bytes build/src/.libs/H5HF.o | Bin 0 -> 64872 bytes build/src/.libs/H5HFbtree2.o | Bin 0 -> 77176 bytes build/src/.libs/H5HFcache.o | Bin 0 -> 131152 bytes build/src/.libs/H5HFdbg.o | Bin 0 -> 67992 bytes build/src/.libs/H5HFdblock.o | Bin 0 -> 59760 bytes build/src/.libs/H5HFdtable.o | Bin 0 -> 22744 bytes build/src/.libs/H5HFhdr.o | Bin 0 -> 98056 bytes build/src/.libs/H5HFhuge.o | Bin 0 -> 74456 bytes build/src/.libs/H5HFiblock.o | Bin 0 -> 108984 bytes build/src/.libs/H5HFiter.o | Bin 0 -> 45384 bytes build/src/.libs/H5HFman.o | Bin 0 -> 55000 bytes build/src/.libs/H5HFsection.o | Bin 0 -> 217848 bytes build/src/.libs/H5HFspace.o | Bin 0 -> 50544 bytes build/src/.libs/H5HFstat.o | Bin 0 -> 20760 bytes build/src/.libs/H5HFtest.o | Bin 0 -> 33248 bytes build/src/.libs/H5HFtiny.o | Bin 0 -> 29136 bytes build/src/.libs/H5HG.o | Bin 0 -> 55880 bytes build/src/.libs/H5HGcache.o | Bin 0 -> 34008 bytes build/src/.libs/H5HGdbg.o | Bin 0 -> 17584 bytes build/src/.libs/H5HGquery.o | Bin 0 -> 11200 bytes build/src/.libs/H5HL.o | Bin 0 -> 70040 bytes build/src/.libs/H5HLcache.o | Bin 0 -> 60400 bytes build/src/.libs/H5HLdbg.o | Bin 0 -> 17296 bytes build/src/.libs/H5HLint.o | Bin 0 -> 28256 bytes build/src/.libs/H5HP.o | Bin 0 -> 45776 bytes build/src/.libs/H5I.o | Bin 0 -> 153848 bytes build/src/.libs/H5Itest.o | Bin 0 -> 8016 bytes build/src/.libs/H5L.o | Bin 0 -> 214032 bytes build/src/.libs/H5Lexternal.o | Bin 0 -> 52024 bytes build/src/.libs/H5MF.o | Bin 0 -> 77360 bytes build/src/.libs/H5MFaggr.o | Bin 0 -> 61664 bytes build/src/.libs/H5MFdbg.o | Bin 0 -> 2568 bytes build/src/.libs/H5MFsection.o | Bin 0 -> 47032 bytes build/src/.libs/H5MM.o | Bin 0 -> 13680 bytes build/src/.libs/H5MP.o | Bin 0 -> 22224 bytes build/src/.libs/H5MPtest.o | Bin 0 -> 13432 bytes build/src/.libs/H5O.o | Bin 0 -> 241032 bytes build/src/.libs/H5Oainfo.o | Bin 0 -> 43048 bytes build/src/.libs/H5Oalloc.o | Bin 0 -> 119720 bytes build/src/.libs/H5Oattr.o | Bin 0 -> 89944 bytes build/src/.libs/H5Oattribute.o | Bin 0 -> 130784 bytes build/src/.libs/H5Obogus.o | Bin 0 -> 2568 bytes build/src/.libs/H5Obtreek.o | Bin 0 -> 28432 bytes build/src/.libs/H5Ocache.o | Bin 0 -> 89648 bytes build/src/.libs/H5Ochunk.o | Bin 0 -> 39184 bytes build/src/.libs/H5Ocont.o | Bin 0 -> 32008 bytes build/src/.libs/H5Ocopy.o | Bin 0 -> 121408 bytes build/src/.libs/H5Odbg.o | Bin 0 -> 50776 bytes build/src/.libs/H5Odrvinfo.o | Bin 0 -> 31112 bytes build/src/.libs/H5Odtype.o | Bin 0 -> 129912 bytes build/src/.libs/H5Oefl.o | Bin 0 -> 52296 bytes build/src/.libs/H5Ofill.o | Bin 0 -> 105568 bytes build/src/.libs/H5Oginfo.o | Bin 0 -> 31600 bytes build/src/.libs/H5Olayout.o | Bin 0 -> 73896 bytes build/src/.libs/H5Olinfo.o | Bin 0 -> 50104 bytes build/src/.libs/H5Olink.o | Bin 0 -> 59056 bytes build/src/.libs/H5Omessage.o | Bin 0 -> 152920 bytes build/src/.libs/H5Omtime.o | Bin 0 -> 39440 bytes build/src/.libs/H5Oname.o | Bin 0 -> 29424 bytes build/src/.libs/H5Onull.o | Bin 0 -> 15424 bytes build/src/.libs/H5Opline.o | Bin 0 -> 67288 bytes build/src/.libs/H5Orefcount.o | Bin 0 -> 31536 bytes build/src/.libs/H5Osdspace.o | Bin 0 -> 64736 bytes build/src/.libs/H5Oshared.o | Bin 0 -> 51152 bytes build/src/.libs/H5Oshmesg.o | Bin 0 -> 27824 bytes build/src/.libs/H5Ostab.o | Bin 0 -> 43616 bytes build/src/.libs/H5Otest.o | Bin 0 -> 44544 bytes build/src/.libs/H5Ounknown.o | Bin 0 -> 19248 bytes build/src/.libs/H5P.o | Bin 0 -> 111240 bytes build/src/.libs/H5PL.o | Bin 0 -> 70448 bytes build/src/.libs/H5Pacpl.o | Bin 0 -> 8344 bytes build/src/.libs/H5Pdapl.o | Bin 0 -> 43128 bytes build/src/.libs/H5Pdcpl.o | Bin 0 -> 141192 bytes build/src/.libs/H5Pdeprec.o | Bin 0 -> 25664 bytes build/src/.libs/H5Pdxpl.o | Bin 0 -> 102984 bytes build/src/.libs/H5Pfapl.o | Bin 0 -> 174672 bytes build/src/.libs/H5Pfcpl.o | Bin 0 -> 77424 bytes build/src/.libs/H5Pfmpl.o | Bin 0 -> 12128 bytes build/src/.libs/H5Pgcpl.o | Bin 0 -> 46672 bytes build/src/.libs/H5Pint.o | Bin 0 -> 206320 bytes build/src/.libs/H5Plapl.o | Bin 0 -> 66760 bytes build/src/.libs/H5Plcpl.o | Bin 0 -> 20384 bytes build/src/.libs/H5Pocpl.o | Bin 0 -> 111168 bytes build/src/.libs/H5Pocpypl.o | Bin 0 -> 49328 bytes build/src/.libs/H5Pstrcpl.o | Bin 0 -> 22320 bytes build/src/.libs/H5Ptest.o | Bin 0 -> 17544 bytes build/src/.libs/H5R.o | Bin 0 -> 65112 bytes build/src/.libs/H5RC.o | Bin 0 -> 11624 bytes build/src/.libs/H5RS.o | Bin 0 -> 26392 bytes build/src/.libs/H5Rdeprec.o | Bin 0 -> 16880 bytes build/src/.libs/H5S.o | Bin 0 -> 151552 bytes build/src/.libs/H5SL.o | Bin 0 -> 380616 bytes build/src/.libs/H5SM.o | Bin 0 -> 171976 bytes build/src/.libs/H5SMbtree2.o | Bin 0 -> 27392 bytes build/src/.libs/H5SMcache.o | Bin 0 -> 55232 bytes build/src/.libs/H5SMmessage.o | Bin 0 -> 30552 bytes build/src/.libs/H5SMtest.o | Bin 0 -> 12784 bytes build/src/.libs/H5ST.o | Bin 0 -> 32344 bytes build/src/.libs/H5Sall.o | Bin 0 -> 58056 bytes build/src/.libs/H5Sdbg.o | Bin 0 -> 17080 bytes build/src/.libs/H5Shyper.o | Bin 0 -> 270600 bytes build/src/.libs/H5Smpio.o | Bin 0 -> 5192 bytes build/src/.libs/H5Snone.o | Bin 0 -> 56224 bytes build/src/.libs/H5Spoint.o | Bin 0 -> 90488 bytes build/src/.libs/H5Sselect.o | Bin 0 -> 93536 bytes build/src/.libs/H5Stest.o | Bin 0 -> 18624 bytes build/src/.libs/H5T.o | Bin 0 -> 359824 bytes build/src/.libs/H5TS.o | Bin 0 -> 2560 bytes build/src/.libs/H5Tarray.o | Bin 0 -> 49976 bytes build/src/.libs/H5Tbit.o | Bin 0 -> 31176 bytes build/src/.libs/H5Tcommit.o | Bin 0 -> 82176 bytes build/src/.libs/H5Tcompound.o | Bin 0 -> 59680 bytes build/src/.libs/H5Tconv.o | Bin 0 -> 2182424 bytes build/src/.libs/H5Tcset.o | Bin 0 -> 27632 bytes build/src/.libs/H5Tdbg.o | Bin 0 -> 32624 bytes build/src/.libs/H5Tdeprec.o | Bin 0 -> 34176 bytes build/src/.libs/H5Tenum.o | Bin 0 -> 61056 bytes build/src/.libs/H5Tfields.o | Bin 0 -> 45784 bytes build/src/.libs/H5Tfixed.o | Bin 0 -> 29480 bytes build/src/.libs/H5Tfloat.o | Bin 0 -> 51312 bytes build/src/.libs/H5Tinit.o | Bin 0 -> 62808 bytes build/src/.libs/H5Tnative.o | Bin 0 -> 78432 bytes build/src/.libs/H5Toffset.o | Bin 0 -> 33704 bytes build/src/.libs/H5Toh.o | Bin 0 -> 40112 bytes build/src/.libs/H5Topaque.o | Bin 0 -> 28320 bytes build/src/.libs/H5Torder.o | Bin 0 -> 34352 bytes build/src/.libs/H5Tpad.o | Bin 0 -> 28112 bytes build/src/.libs/H5Tprecis.o | Bin 0 -> 35464 bytes build/src/.libs/H5Tstrpad.o | Bin 0 -> 27680 bytes build/src/.libs/H5Tvisit.o | Bin 0 -> 21096 bytes build/src/.libs/H5Tvlen.o | Bin 0 -> 79064 bytes build/src/.libs/H5VM.o | Bin 0 -> 67080 bytes build/src/.libs/H5WB.o | Bin 0 -> 16816 bytes build/src/.libs/H5Z.o | Bin 0 -> 115936 bytes build/src/.libs/H5Zdeflate.o | Bin 0 -> 17312 bytes build/src/.libs/H5Zfletcher32.o | Bin 0 -> 11480 bytes build/src/.libs/H5Znbit.o | Bin 0 -> 78464 bytes build/src/.libs/H5Zscaleoffset.o | Bin 0 -> 130360 bytes build/src/.libs/H5Zshuffle.o | Bin 0 -> 18032 bytes build/src/.libs/H5Zszip.o | Bin 0 -> 2568 bytes build/src/.libs/H5Ztrans.o | Bin 0 -> 148872 bytes build/src/.libs/H5checksum.o | Bin 0 -> 17336 bytes build/src/.libs/H5dbg.o | Bin 0 -> 9944 bytes build/src/.libs/H5lib_settings.o | Bin 0 -> 5392 bytes build/src/.libs/H5system.o | Bin 0 -> 30256 bytes build/src/.libs/H5timer.o | Bin 0 -> 11048 bytes build/src/.libs/H5trace.o | Bin 0 -> 114520 bytes build/src/.libs/libhdf5.a | Bin 0 -> 17948322 bytes build/src/.libs/libhdf5.la | 1 + build/src/.libs/libhdf5.lai | 41 + build/src/.libs/libhdf5.so | 1 + build/src/.libs/libhdf5.so.10 | 1 + build/src/.libs/libhdf5.so.10.3.2 | Bin 0 -> 8985304 bytes build/src/H5.lo | 12 + build/src/H5.o | Bin 0 -> 54416 bytes build/src/H5A.lo | 12 + build/src/H5A.o | Bin 0 -> 148872 bytes build/src/H5AC.lo | 12 + build/src/H5AC.o | Bin 0 -> 114072 bytes build/src/H5Abtree2.lo | 12 + build/src/H5Abtree2.o | Bin 0 -> 34640 bytes build/src/H5Adense.lo | 12 + build/src/H5Adense.o | Bin 0 -> 128056 bytes build/src/H5Adeprec.lo | 12 + build/src/H5Adeprec.o | Bin 0 -> 41840 bytes build/src/H5Aint.lo | 12 + build/src/H5Aint.o | Bin 0 -> 161120 bytes build/src/H5Atest.lo | 12 + build/src/H5Atest.o | Bin 0 -> 13736 bytes build/src/H5B.lo | 12 + build/src/H5B.o | Bin 0 -> 112656 bytes build/src/H5B2.lo | 12 + build/src/H5B2.o | Bin 0 -> 83536 bytes build/src/H5B2cache.lo | 12 + build/src/H5B2cache.o | Bin 0 -> 84592 bytes build/src/H5B2dbg.lo | 12 + build/src/H5B2dbg.o | Bin 0 -> 38456 bytes build/src/H5B2hdr.lo | 12 + build/src/H5B2hdr.o | Bin 0 -> 51056 bytes build/src/H5B2int.lo | 12 + build/src/H5B2int.o | Bin 0 -> 165472 bytes build/src/H5B2stat.lo | 12 + build/src/H5B2stat.o | Bin 0 -> 17072 bytes build/src/H5B2test.lo | 12 + build/src/H5B2test.o | Bin 0 -> 39376 bytes build/src/H5Bcache.lo | 12 + build/src/H5Bcache.o | Bin 0 -> 39056 bytes build/src/H5Bdbg.lo | 12 + build/src/H5Bdbg.o | Bin 0 -> 20320 bytes build/src/H5C.lo | 12 + build/src/H5C.o | Bin 0 -> 260576 bytes build/src/H5CS.lo | 12 + build/src/H5CS.o | Bin 0 -> 2552 bytes build/src/H5D.lo | 12 + build/src/H5D.o | Bin 0 -> 113456 bytes build/src/H5Dbtree.lo | 12 + build/src/H5Dbtree.o | Bin 0 -> 110768 bytes build/src/H5Dchunk.lo | 12 + build/src/H5Dchunk.o | Bin 0 -> 304456 bytes build/src/H5Dcompact.lo | 12 + build/src/H5Dcompact.o | Bin 0 -> 76200 bytes build/src/H5Dcontig.lo | 12 + build/src/H5Dcontig.o | Bin 0 -> 119368 bytes build/src/H5Ddbg.lo | 12 + build/src/H5Ddbg.o | Bin 0 -> 37912 bytes build/src/H5Ddeprec.lo | 12 + build/src/H5Ddeprec.o | Bin 0 -> 59208 bytes build/src/H5Defl.lo | 12 + build/src/H5Defl.o | Bin 0 -> 72424 bytes build/src/H5Dfill.lo | 12 + build/src/H5Dfill.o | Bin 0 -> 58312 bytes build/src/H5Dint.lo | 12 + build/src/H5Dint.o | Bin 0 -> 206216 bytes build/src/H5Dio.lo | 12 + build/src/H5Dio.o | Bin 0 -> 92584 bytes build/src/H5Dlayout.lo | 12 + build/src/H5Dlayout.o | Bin 0 -> 56800 bytes build/src/H5Dmpio.lo | 12 + build/src/H5Dmpio.o | Bin 0 -> 5184 bytes build/src/H5Doh.lo | 12 + build/src/H5Doh.o | Bin 0 -> 72496 bytes build/src/H5Dscatgath.lo | 12 + build/src/H5Dscatgath.o | Bin 0 -> 95544 bytes build/src/H5Dselect.lo | 12 + build/src/H5Dselect.o | Bin 0 -> 50944 bytes build/src/H5Dtest.lo | 12 + build/src/H5Dtest.o | Bin 0 -> 40888 bytes build/src/H5E.lo | 12 + build/src/H5E.o | Bin 0 -> 267072 bytes build/src/H5Edeprec.lo | 12 + build/src/H5Edeprec.o | Bin 0 -> 42568 bytes build/src/H5Eint.lo | 12 + build/src/H5Eint.o | Bin 0 -> 64064 bytes build/src/H5F.lo | 12 + build/src/H5F.o | Bin 0 -> 122352 bytes build/src/H5FD.lo | 12 + build/src/H5FD.o | Bin 0 -> 139600 bytes build/src/H5FDcore.lo | 12 + build/src/H5FDcore.o | Bin 0 -> 80472 bytes build/src/H5FDdirect.lo | 12 + build/src/H5FDdirect.o | Bin 0 -> 3528 bytes build/src/H5FDfamily.lo | 12 + build/src/H5FDfamily.o | Bin 0 -> 73696 bytes build/src/H5FDint.lo | 12 + build/src/H5FDint.o | Bin 0 -> 28936 bytes build/src/H5FDlog.lo | 12 + build/src/H5FDlog.o | Bin 0 -> 76352 bytes build/src/H5FDmpi.lo | 12 + build/src/H5FDmpi.o | Bin 0 -> 2560 bytes build/src/H5FDmpio.lo | 12 + build/src/H5FDmpio.o | Bin 0 -> 3528 bytes build/src/H5FDmulti.lo | 12 + build/src/H5FDmulti.o | Bin 0 -> 73824 bytes build/src/H5FDsec2.lo | 12 + build/src/H5FDsec2.o | Bin 0 -> 51760 bytes build/src/H5FDspace.lo | 12 + build/src/H5FDspace.o | Bin 0 -> 32600 bytes build/src/H5FDstdio.lo | 12 + build/src/H5FDstdio.o | Bin 0 -> 37920 bytes build/src/H5FL.lo | 12 + build/src/H5FL.o | Bin 0 -> 101776 bytes build/src/H5FO.lo | 12 + build/src/H5FO.o | Bin 0 -> 48080 bytes build/src/H5FS.lo | 12 + build/src/H5FS.o | Bin 0 -> 58624 bytes build/src/H5FScache.lo | 12 + build/src/H5FScache.o | Bin 0 -> 81256 bytes build/src/H5FSdbg.lo | 12 + build/src/H5FSdbg.o | Bin 0 -> 27944 bytes build/src/H5FSsection.lo | 12 + build/src/H5FSsection.o | Bin 0 -> 115856 bytes build/src/H5FSstat.lo | 12 + build/src/H5FSstat.o | Bin 0 -> 15864 bytes build/src/H5FStest.lo | 12 + build/src/H5FStest.o | Bin 0 -> 17032 bytes build/src/H5Faccum.lo | 12 + build/src/H5Faccum.o | Bin 0 -> 61088 bytes build/src/H5Fcwfs.lo | 12 + build/src/H5Fcwfs.o | Bin 0 -> 29112 bytes build/src/H5Fdbg.lo | 12 + build/src/H5Fdbg.o | Bin 0 -> 30304 bytes build/src/H5Fefc.lo | 12 + build/src/H5Fefc.o | Bin 0 -> 54112 bytes build/src/H5Ffake.lo | 12 + build/src/H5Ffake.o | Bin 0 -> 24960 bytes build/src/H5Fint.lo | 12 + build/src/H5Fint.o | Bin 0 -> 128456 bytes build/src/H5Fio.lo | 12 + build/src/H5Fio.o | Bin 0 -> 25512 bytes build/src/H5Fmount.lo | 12 + build/src/H5Fmount.o | Bin 0 -> 63848 bytes build/src/H5Fmpi.lo | 12 + build/src/H5Fmpi.o | Bin 0 -> 2560 bytes build/src/H5Fquery.lo | 12 + build/src/H5Fquery.o | Bin 0 -> 71256 bytes build/src/H5Fsfile.lo | 12 + build/src/H5Fsfile.o | Bin 0 -> 27664 bytes build/src/H5Fsuper.lo | 12 + build/src/H5Fsuper.o | Bin 0 -> 64448 bytes build/src/H5Fsuper_cache.lo | 12 + build/src/H5Fsuper_cache.o | Bin 0 -> 73584 bytes build/src/H5Ftest.lo | 12 + build/src/H5Ftest.o | Bin 0 -> 27136 bytes build/src/H5G.lo | 12 + build/src/H5G.o | Bin 0 -> 67680 bytes build/src/H5Gbtree2.lo | 12 + build/src/H5Gbtree2.o | Bin 0 -> 33336 bytes build/src/H5Gcache.lo | 12 + build/src/H5Gcache.o | Bin 0 -> 31456 bytes build/src/H5Gcompact.lo | 12 + build/src/H5Gcompact.o | Bin 0 -> 50872 bytes build/src/H5Gdense.lo | 12 + build/src/H5Gdense.o | Bin 0 -> 114448 bytes build/src/H5Gdeprec.lo | 12 + build/src/H5Gdeprec.o | Bin 0 -> 105264 bytes build/src/H5Gent.lo | 12 + build/src/H5Gent.o | Bin 0 -> 43896 bytes build/src/H5Gint.lo | 12 + build/src/H5Gint.o | Bin 0 -> 79512 bytes build/src/H5Glink.lo | 12 + build/src/H5Glink.o | Bin 0 -> 38144 bytes build/src/H5Gloc.lo | 12 + build/src/H5Gloc.o | Bin 0 -> 63064 bytes build/src/H5Gname.lo | 12 + build/src/H5Gname.o | Bin 0 -> 63200 bytes build/src/H5Gnode.lo | 12 + build/src/H5Gnode.o | Bin 0 -> 107304 bytes build/src/H5Gobj.lo | 12 + build/src/H5Gobj.o | Bin 0 -> 84016 bytes build/src/H5Goh.lo | 12 + build/src/H5Goh.o | Bin 0 -> 45824 bytes build/src/H5Groot.lo | 12 + build/src/H5Groot.o | Bin 0 -> 37136 bytes build/src/H5Gstab.lo | 12 + build/src/H5Gstab.o | Bin 0 -> 86392 bytes build/src/H5Gtest.lo | 12 + build/src/H5Gtest.o | Bin 0 -> 63016 bytes build/src/H5Gtraverse.lo | 12 + build/src/H5Gtraverse.o | Bin 0 -> 57520 bytes build/src/H5HF.lo | 12 + build/src/H5HF.o | Bin 0 -> 63480 bytes build/src/H5HFbtree2.lo | 12 + build/src/H5HFbtree2.o | Bin 0 -> 76488 bytes build/src/H5HFcache.lo | 12 + build/src/H5HFcache.o | Bin 0 -> 128680 bytes build/src/H5HFdbg.lo | 12 + build/src/H5HFdbg.o | Bin 0 -> 66888 bytes build/src/H5HFdblock.lo | 12 + build/src/H5HFdblock.o | Bin 0 -> 58784 bytes build/src/H5HFdtable.lo | 12 + build/src/H5HFdtable.o | Bin 0 -> 22472 bytes build/src/H5HFhdr.lo | 12 + build/src/H5HFhdr.o | Bin 0 -> 96112 bytes build/src/H5HFhuge.lo | 12 + build/src/H5HFhuge.o | Bin 0 -> 73344 bytes build/src/H5HFiblock.lo | 12 + build/src/H5HFiblock.o | Bin 0 -> 106848 bytes build/src/H5HFiter.lo | 12 + build/src/H5HFiter.o | Bin 0 -> 44728 bytes build/src/H5HFman.lo | 12 + build/src/H5HFman.o | Bin 0 -> 53960 bytes build/src/H5HFsection.lo | 12 + build/src/H5HFsection.o | Bin 0 -> 213600 bytes build/src/H5HFspace.lo | 12 + build/src/H5HFspace.o | Bin 0 -> 50016 bytes build/src/H5HFstat.lo | 12 + build/src/H5HFstat.o | Bin 0 -> 20592 bytes build/src/H5HFtest.lo | 12 + build/src/H5HFtest.o | Bin 0 -> 32992 bytes build/src/H5HFtiny.lo | 12 + build/src/H5HFtiny.o | Bin 0 -> 28840 bytes build/src/H5HG.lo | 12 + build/src/H5HG.o | Bin 0 -> 54808 bytes build/src/H5HGcache.lo | 12 + build/src/H5HGcache.o | Bin 0 -> 33400 bytes build/src/H5HGdbg.lo | 12 + build/src/H5HGdbg.o | Bin 0 -> 17416 bytes build/src/H5HGquery.lo | 12 + build/src/H5HGquery.o | Bin 0 -> 11104 bytes build/src/H5HL.lo | 12 + build/src/H5HL.o | Bin 0 -> 68560 bytes build/src/H5HLcache.lo | 12 + build/src/H5HLcache.o | Bin 0 -> 59248 bytes build/src/H5HLdbg.lo | 12 + build/src/H5HLdbg.o | Bin 0 -> 17120 bytes build/src/H5HLint.lo | 12 + build/src/H5HLint.o | Bin 0 -> 27832 bytes build/src/H5HP.lo | 12 + build/src/H5HP.o | Bin 0 -> 44832 bytes build/src/H5I.lo | 12 + build/src/H5I.o | Bin 0 -> 150552 bytes build/src/H5Itest.lo | 12 + build/src/H5Itest.o | Bin 0 -> 7928 bytes build/src/H5L.lo | 12 + build/src/H5L.o | Bin 0 -> 208928 bytes build/src/H5Lexternal.lo | 12 + build/src/H5Lexternal.o | Bin 0 -> 50792 bytes build/src/H5MF.lo | 12 + build/src/H5MF.o | Bin 0 -> 76120 bytes build/src/H5MFaggr.lo | 12 + build/src/H5MFaggr.o | Bin 0 -> 60648 bytes build/src/H5MFdbg.lo | 12 + build/src/H5MFdbg.o | Bin 0 -> 2560 bytes build/src/H5MFsection.lo | 12 + build/src/H5MFsection.o | Bin 0 -> 46352 bytes build/src/H5MM.lo | 12 + build/src/H5MM.o | Bin 0 -> 13520 bytes build/src/H5MP.lo | 12 + build/src/H5MP.o | Bin 0 -> 21824 bytes build/src/H5MPtest.lo | 12 + build/src/H5MPtest.o | Bin 0 -> 13296 bytes build/src/H5O.lo | 12 + build/src/H5O.o | Bin 0 -> 234968 bytes build/src/H5Oainfo.lo | 12 + build/src/H5Oainfo.o | Bin 0 -> 42440 bytes build/src/H5Oalloc.lo | 12 + build/src/H5Oalloc.o | Bin 0 -> 117736 bytes build/src/H5Oattr.lo | 12 + build/src/H5Oattr.o | Bin 0 -> 88584 bytes build/src/H5Oattribute.lo | 12 + build/src/H5Oattribute.o | Bin 0 -> 127976 bytes build/src/H5Obogus.lo | 12 + build/src/H5Obogus.o | Bin 0 -> 2560 bytes build/src/H5Obtreek.lo | 12 + build/src/H5Obtreek.o | Bin 0 -> 28144 bytes build/src/H5Ocache.lo | 12 + build/src/H5Ocache.o | Bin 0 -> 87984 bytes build/src/H5Ochunk.lo | 12 + build/src/H5Ochunk.o | Bin 0 -> 38560 bytes build/src/H5Ocont.lo | 12 + build/src/H5Ocont.o | Bin 0 -> 31576 bytes build/src/H5Ocopy.lo | 12 + build/src/H5Ocopy.o | Bin 0 -> 118984 bytes build/src/H5Odbg.lo | 12 + build/src/H5Odbg.o | Bin 0 -> 50088 bytes build/src/H5Odrvinfo.lo | 12 + build/src/H5Odrvinfo.o | Bin 0 -> 30736 bytes build/src/H5Odtype.lo | 12 + build/src/H5Odtype.o | Bin 0 -> 127616 bytes build/src/H5Oefl.lo | 12 + build/src/H5Oefl.o | Bin 0 -> 51528 bytes build/src/H5Ofill.lo | 12 + build/src/H5Ofill.o | Bin 0 -> 103840 bytes build/src/H5Oginfo.lo | 12 + build/src/H5Oginfo.o | Bin 0 -> 31200 bytes build/src/H5Olayout.lo | 12 + build/src/H5Olayout.o | Bin 0 -> 73008 bytes build/src/H5Olinfo.lo | 12 + build/src/H5Olinfo.o | Bin 0 -> 49488 bytes build/src/H5Olink.lo | 12 + build/src/H5Olink.o | Bin 0 -> 58120 bytes build/src/H5Omessage.lo | 12 + build/src/H5Omessage.o | Bin 0 -> 149776 bytes build/src/H5Omtime.lo | 12 + build/src/H5Omtime.o | Bin 0 -> 38936 bytes build/src/H5Oname.lo | 12 + build/src/H5Oname.o | Bin 0 -> 29064 bytes build/src/H5Onull.lo | 12 + build/src/H5Onull.o | Bin 0 -> 15312 bytes build/src/H5Opline.lo | 12 + build/src/H5Opline.o | Bin 0 -> 66256 bytes build/src/H5Orefcount.lo | 12 + build/src/H5Orefcount.o | Bin 0 -> 31104 bytes build/src/H5Osdspace.lo | 12 + build/src/H5Osdspace.o | Bin 0 -> 63808 bytes build/src/H5Oshared.lo | 12 + build/src/H5Oshared.o | Bin 0 -> 50360 bytes build/src/H5Oshmesg.lo | 12 + build/src/H5Oshmesg.o | Bin 0 -> 27504 bytes build/src/H5Ostab.lo | 12 + build/src/H5Ostab.o | Bin 0 -> 43064 bytes build/src/H5Otest.lo | 12 + build/src/H5Otest.o | Bin 0 -> 43648 bytes build/src/H5Ounknown.lo | 12 + build/src/H5Ounknown.o | Bin 0 -> 19008 bytes build/src/H5P.lo | 12 + build/src/H5P.o | Bin 0 -> 108328 bytes build/src/H5PL.lo | 12 + build/src/H5PL.o | Bin 0 -> 68848 bytes build/src/H5Pacpl.lo | 12 + build/src/H5Pacpl.o | Bin 0 -> 8240 bytes build/src/H5Pdapl.lo | 12 + build/src/H5Pdapl.o | Bin 0 -> 42512 bytes build/src/H5Pdcpl.lo | 12 + build/src/H5Pdcpl.o | Bin 0 -> 137944 bytes build/src/H5Pdeprec.lo | 12 + build/src/H5Pdeprec.o | Bin 0 -> 25272 bytes build/src/H5Pdxpl.lo | 12 + build/src/H5Pdxpl.o | Bin 0 -> 100624 bytes build/src/H5Pfapl.lo | 12 + build/src/H5Pfapl.o | Bin 0 -> 170256 bytes build/src/H5Pfcpl.lo | 12 + build/src/H5Pfcpl.o | Bin 0 -> 75336 bytes build/src/H5Pfmpl.lo | 12 + build/src/H5Pfmpl.o | Bin 0 -> 11968 bytes build/src/H5Pgcpl.lo | 12 + build/src/H5Pgcpl.o | Bin 0 -> 45680 bytes build/src/H5Pint.lo | 12 + build/src/H5Pint.o | Bin 0 -> 202136 bytes build/src/H5Plapl.lo | 12 + build/src/H5Plapl.o | Bin 0 -> 65576 bytes build/src/H5Plcpl.lo | 12 + build/src/H5Plcpl.o | Bin 0 -> 20064 bytes build/src/H5Pocpl.lo | 12 + build/src/H5Pocpl.o | Bin 0 -> 108560 bytes build/src/H5Pocpypl.lo | 12 + build/src/H5Pocpypl.o | Bin 0 -> 48376 bytes build/src/H5Pstrcpl.lo | 12 + build/src/H5Pstrcpl.o | Bin 0 -> 21952 bytes build/src/H5Ptest.lo | 12 + build/src/H5Ptest.o | Bin 0 -> 17312 bytes build/src/H5R.lo | 12 + build/src/H5R.o | Bin 0 -> 63704 bytes build/src/H5RC.lo | 12 + build/src/H5RC.o | Bin 0 -> 11376 bytes build/src/H5RS.lo | 12 + build/src/H5RS.o | Bin 0 -> 25984 bytes build/src/H5Rdeprec.lo | 12 + build/src/H5Rdeprec.o | Bin 0 -> 16696 bytes build/src/H5S.lo | 12 + build/src/H5S.o | Bin 0 -> 147944 bytes build/src/H5SL.lo | 12 + build/src/H5SL.o | Bin 0 -> 373760 bytes build/src/H5SM.lo | 12 + build/src/H5SM.o | Bin 0 -> 168352 bytes build/src/H5SMbtree2.lo | 12 + build/src/H5SMbtree2.o | Bin 0 -> 27024 bytes build/src/H5SMcache.lo | 12 + build/src/H5SMcache.o | Bin 0 -> 54208 bytes build/src/H5SMmessage.lo | 12 + build/src/H5SMmessage.o | Bin 0 -> 30368 bytes build/src/H5SMtest.lo | 12 + build/src/H5SMtest.o | Bin 0 -> 12664 bytes build/src/H5ST.lo | 12 + build/src/H5ST.o | Bin 0 -> 31904 bytes build/src/H5Sall.lo | 12 + build/src/H5Sall.o | Bin 0 -> 57360 bytes build/src/H5Sdbg.lo | 12 + build/src/H5Sdbg.o | Bin 0 -> 17000 bytes build/src/H5Shyper.lo | 12 + build/src/H5Shyper.o | Bin 0 -> 265488 bytes build/src/H5Smpio.lo | 12 + build/src/H5Smpio.o | Bin 0 -> 5184 bytes build/src/H5Snone.lo | 12 + build/src/H5Snone.o | Bin 0 -> 55512 bytes build/src/H5Spoint.lo | 12 + build/src/H5Spoint.o | Bin 0 -> 89008 bytes build/src/H5Sselect.lo | 12 + build/src/H5Sselect.o | Bin 0 -> 92144 bytes build/src/H5Stest.lo | 12 + build/src/H5Stest.o | Bin 0 -> 18488 bytes build/src/H5T.lo | 12 + build/src/H5T.o | Bin 0 -> 350216 bytes build/src/H5TS.lo | 12 + build/src/H5TS.o | Bin 0 -> 2552 bytes build/src/H5Tarray.lo | 12 + build/src/H5Tarray.o | Bin 0 -> 49136 bytes build/src/H5Tbit.lo | 12 + build/src/H5Tbit.o | Bin 0 -> 30952 bytes build/src/H5Tcommit.lo | 12 + build/src/H5Tcommit.o | Bin 0 -> 80384 bytes build/src/H5Tcompound.lo | 12 + build/src/H5Tcompound.o | Bin 0 -> 58728 bytes build/src/H5Tconv.lo | 12 + build/src/H5Tconv.o | Bin 0 -> 2134448 bytes build/src/H5Tcset.lo | 12 + build/src/H5Tcset.o | Bin 0 -> 27352 bytes build/src/H5Tdbg.lo | 12 + build/src/H5Tdbg.o | Bin 0 -> 32272 bytes build/src/H5Tdeprec.lo | 12 + build/src/H5Tdeprec.o | Bin 0 -> 33800 bytes build/src/H5Tenum.lo | 12 + build/src/H5Tenum.o | Bin 0 -> 59936 bytes build/src/H5Tfields.lo | 12 + build/src/H5Tfields.o | Bin 0 -> 45264 bytes build/src/H5Tfixed.lo | 12 + build/src/H5Tfixed.o | Bin 0 -> 29152 bytes build/src/H5Tfloat.lo | 12 + build/src/H5Tfloat.o | Bin 0 -> 50288 bytes build/src/H5Tinit.c | 991 + build/src/H5Tinit.lo | 12 + build/src/H5Tinit.o | Bin 0 -> 61184 bytes build/src/H5Tnative.lo | 12 + build/src/H5Tnative.o | Bin 0 -> 76640 bytes build/src/H5Toffset.lo | 12 + build/src/H5Toffset.o | Bin 0 -> 33280 bytes build/src/H5Toh.lo | 12 + build/src/H5Toh.o | Bin 0 -> 39752 bytes build/src/H5Topaque.lo | 12 + build/src/H5Topaque.o | Bin 0 -> 28016 bytes build/src/H5Torder.lo | 12 + build/src/H5Torder.o | Bin 0 -> 33912 bytes build/src/H5Tpad.lo | 12 + build/src/H5Tpad.o | Bin 0 -> 27824 bytes build/src/H5Tprecis.lo | 12 + build/src/H5Tprecis.o | Bin 0 -> 34984 bytes build/src/H5Tstrpad.lo | 12 + build/src/H5Tstrpad.o | Bin 0 -> 27400 bytes build/src/H5Tvisit.lo | 12 + build/src/H5Tvisit.o | Bin 0 -> 20936 bytes build/src/H5Tvlen.lo | 12 + build/src/H5Tvlen.o | Bin 0 -> 78360 bytes build/src/H5VM.lo | 12 + build/src/H5VM.o | Bin 0 -> 66224 bytes build/src/H5WB.lo | 12 + build/src/H5WB.o | Bin 0 -> 16520 bytes build/src/H5Z.lo | 12 + build/src/H5Z.o | Bin 0 -> 113848 bytes build/src/H5Zdeflate.lo | 12 + build/src/H5Zdeflate.o | Bin 0 -> 17000 bytes build/src/H5Zfletcher32.lo | 12 + build/src/H5Zfletcher32.o | Bin 0 -> 11280 bytes build/src/H5Znbit.lo | 12 + build/src/H5Znbit.o | Bin 0 -> 77024 bytes build/src/H5Zscaleoffset.lo | 12 + build/src/H5Zscaleoffset.o | Bin 0 -> 128648 bytes build/src/H5Zshuffle.lo | 12 + build/src/H5Zshuffle.o | Bin 0 -> 17672 bytes build/src/H5Zszip.lo | 12 + build/src/H5Zszip.o | Bin 0 -> 2560 bytes build/src/H5Ztrans.lo | 12 + build/src/H5Ztrans.o | Bin 0 -> 146440 bytes build/src/H5checksum.lo | 12 + build/src/H5checksum.o | Bin 0 -> 17144 bytes build/src/H5config.h | 563 + build/src/H5dbg.lo | 12 + build/src/H5dbg.o | Bin 0 -> 9832 bytes build/src/H5detect | Bin 0 -> 135648 bytes build/src/H5detect.o | Bin 0 -> 241152 bytes build/src/H5lib_settings.c | 93 + build/src/H5lib_settings.lo | 12 + build/src/H5lib_settings.o | Bin 0 -> 5384 bytes build/src/H5make_libsettings | Bin 0 -> 17872 bytes build/src/H5make_libsettings.o | Bin 0 -> 14096 bytes build/src/H5pubconf.h | 563 + build/src/H5system.lo | 12 + build/src/H5system.o | Bin 0 -> 30080 bytes build/src/H5timer.lo | 12 + build/src/H5timer.o | Bin 0 -> 10960 bytes build/src/H5trace.lo | 12 + build/src/H5trace.o | Bin 0 -> 113336 bytes build/src/Makefile | 1961 ++ build/src/libhdf5.la | 41 + build/src/libhdf5.settings | 59 + build/src/stamp-h1 | 1 + build/test/.deps/accum.Po | 400 + build/test/.deps/app_ref.Po | 349 + build/test/.deps/big.Po | 349 + build/test/.deps/bittests.Po | 388 + build/test/.deps/btree2.Po | 372 + build/test/.deps/cache.Po | 405 + build/test/.deps/cache_api.Po | 405 + build/test/.deps/cache_common.Plo | 409 + build/test/.deps/cmpd_dset.Po | 391 + build/test/.deps/cross_read.Po | 353 + build/test/.deps/dangle.Po | 349 + build/test/.deps/dsets.Po | 379 + build/test/.deps/dt_arith.Po | 388 + build/test/.deps/dtransform.Po | 349 + build/test/.deps/dtypes.Po | 395 + build/test/.deps/dynlib1.Plo | 197 + build/test/.deps/dynlib2.Plo | 197 + build/test/.deps/dynlib3.Plo | 199 + build/test/.deps/dynlib4.Plo | 197 + build/test/.deps/efc.Po | 398 + build/test/.deps/enum.Po | 349 + build/test/.deps/err_compat.Po | 349 + build/test/.deps/error_test.Po | 353 + build/test/.deps/extend.Po | 349 + build/test/.deps/external.Po | 349 + build/test/.deps/fheap.Po | 412 + build/test/.deps/file_image.Po | 356 + build/test/.deps/fillval.Po | 353 + build/test/.deps/filter_fail.Po | 353 + build/test/.deps/flush1.Po | 349 + build/test/.deps/flush2.Po | 349 + build/test/.deps/freespace.Po | 405 + build/test/.deps/gen_bad_offset.Po | 1 + build/test/.deps/gen_bad_ohdr.Po | 1 + build/test/.deps/gen_bogus.Po | 1 + build/test/.deps/gen_cross.Po | 1 + build/test/.deps/gen_deflate.Po | 1 + build/test/.deps/gen_file_image.Po | 1 + build/test/.deps/gen_filters.Po | 1 + build/test/.deps/gen_idx.Po | 1 + build/test/.deps/gen_new_array.Po | 1 + build/test/.deps/gen_new_fill.Po | 1 + build/test/.deps/gen_new_group.Po | 1 + build/test/.deps/gen_new_mtime.Po | 1 + build/test/.deps/gen_new_super.Po | 1 + build/test/.deps/gen_noencoder.Po | 1 + build/test/.deps/gen_nullspace.Po | 1 + build/test/.deps/gen_sizes_lheap.Po | 1 + build/test/.deps/gen_udlinks.Po | 1 + build/test/.deps/getname.Po | 407 + build/test/.deps/gheap.Po | 379 + build/test/.deps/h5test.Plo | 407 + build/test/.deps/hyperslab.Po | 358 + build/test/.deps/istore.Po | 419 + build/test/.deps/lheap.Po | 374 + build/test/.deps/links.Po | 412 + build/test/.deps/links_env.Po | 407 + build/test/.deps/mf.Po | 414 + build/test/.deps/mount.Po | 356 + build/test/.deps/mtime.Po | 353 + build/test/.deps/ntypes.Po | 349 + build/test/.deps/objcopy.Po | 395 + build/test/.deps/ohdr.Po | 412 + build/test/.deps/plugin.Po | 384 + build/test/.deps/pool.Po | 356 + build/test/.deps/reserved.Po | 349 + build/test/.deps/set_extent.Po | 349 + build/test/.deps/space_overflow.Po | 1 + build/test/.deps/stab.Po | 402 + build/test/.deps/tarray.Po | 360 + build/test/.deps/tattr.Po | 418 + build/test/.deps/tcheck_version.Po | 349 + build/test/.deps/tchecksum.Po | 355 + build/test/.deps/tconfig.Po | 356 + build/test/.deps/tcoords.Po | 355 + build/test/.deps/testframe.Plo | 355 + build/test/.deps/testhdf5.Po | 355 + build/test/.deps/testmeta.Po | 180 + build/test/.deps/tfile.Po | 409 + build/test/.deps/tgenprop.Po | 397 + build/test/.deps/th5o.Po | 355 + build/test/.deps/th5s.Po | 400 + build/test/.deps/theap.Po | 359 + build/test/.deps/tid.Po | 360 + build/test/.deps/titerate.Po | 355 + build/test/.deps/tmeta.Po | 358 + build/test/.deps/tmisc.Po | 402 + build/test/.deps/trefer.Po | 355 + build/test/.deps/trefstr.Po | 360 + build/test/.deps/tselect.Po | 393 + build/test/.deps/tskiplist.Po | 359 + build/test/.deps/tsohm.Po | 400 + build/test/.deps/ttime.Po | 355 + build/test/.deps/ttsafe.Po | 358 + build/test/.deps/ttsafe_acreate.Po | 358 + build/test/.deps/ttsafe_cancel.Po | 358 + build/test/.deps/ttsafe_dcreate.Po | 358 + build/test/.deps/ttsafe_error.Po | 358 + build/test/.deps/ttst.Po | 359 + build/test/.deps/tunicode.Po | 354 + build/test/.deps/tverbounds18.Po | 360 + build/test/.deps/tvlstr.Po | 355 + build/test/.deps/tvltypes.Po | 395 + build/test/.deps/unlink.Po | 402 + build/test/.deps/unregister.Po | 349 + build/test/.deps/vfd.Po | 349 + build/test/.libs/accum | Bin 0 -> 79120 bytes build/test/.libs/app_ref | Bin 0 -> 59248 bytes build/test/.libs/big | Bin 0 -> 71264 bytes build/test/.libs/bittests | Bin 0 -> 27000 bytes build/test/.libs/btree2 | Bin 0 -> 237824 bytes build/test/.libs/cache | Bin 0 -> 455712 bytes build/test/.libs/cache_api | Bin 0 -> 263872 bytes build/test/.libs/cache_common.o | Bin 0 -> 205744 bytes build/test/.libs/cmpd_dset | Bin 0 -> 123024 bytes build/test/.libs/cross_read | Bin 0 -> 63024 bytes build/test/.libs/dangle | Bin 0 -> 69304 bytes build/test/.libs/dsets | Bin 0 -> 285136 bytes build/test/.libs/dt_arith | Bin 0 -> 225008 bytes build/test/.libs/dtransform | Bin 0 -> 139896 bytes build/test/.libs/dtypes | Bin 0 -> 271248 bytes build/test/.libs/dynlib1.o | Bin 0 -> 6856 bytes build/test/.libs/dynlib2.o | Bin 0 -> 6808 bytes build/test/.libs/dynlib3.o | Bin 0 -> 7192 bytes build/test/.libs/dynlib4.o | Bin 0 -> 8256 bytes build/test/.libs/efc | Bin 0 -> 202960 bytes build/test/.libs/enum | Bin 0 -> 81664 bytes build/test/.libs/err_compat | Bin 0 -> 65256 bytes build/test/.libs/error_test | Bin 0 -> 71896 bytes build/test/.libs/extend | Bin 0 -> 64320 bytes build/test/.libs/external | Bin 0 -> 102568 bytes build/test/.libs/fheap | Bin 0 -> 397848 bytes build/test/.libs/file_image | Bin 0 -> 95688 bytes build/test/.libs/fillval | Bin 0 -> 116888 bytes build/test/.libs/filter_fail | Bin 0 -> 65696 bytes build/test/.libs/flush1 | Bin 0 -> 58408 bytes build/test/.libs/flush2 | Bin 0 -> 58064 bytes build/test/.libs/freespace | Bin 0 -> 136480 bytes build/test/.libs/getname | Bin 0 -> 176760 bytes build/test/.libs/gheap | Bin 0 -> 64384 bytes build/test/.libs/h5test.o | Bin 0 -> 40112 bytes build/test/.libs/hyperslab | Bin 0 -> 39984 bytes build/test/.libs/istore | Bin 0 -> 71424 bytes build/test/.libs/lheap | Bin 0 -> 58552 bytes build/test/.libs/libdynlib1.la | 1 + build/test/.libs/libdynlib1.lai | 41 + build/test/.libs/libdynlib1.so | Bin 0 -> 10840 bytes build/test/.libs/libdynlib2.la | 1 + build/test/.libs/libdynlib2.lai | 41 + build/test/.libs/libdynlib2.so | Bin 0 -> 10816 bytes build/test/.libs/libdynlib3.la | 1 + build/test/.libs/libdynlib3.lai | 41 + build/test/.libs/libdynlib3.so | Bin 0 -> 11016 bytes build/test/.libs/libdynlib4.la | 1 + build/test/.libs/libdynlib4.lai | 41 + build/test/.libs/libdynlib4.so | Bin 0 -> 11264 bytes build/test/.libs/libh5test.a | Bin 0 -> 275960 bytes build/test/.libs/libh5test.la | 1 + build/test/.libs/links | Bin 0 -> 535824 bytes build/test/.libs/links_env | Bin 0 -> 58144 bytes build/test/.libs/lt-accum | Bin 0 -> 79120 bytes build/test/.libs/lt-app_ref | Bin 0 -> 59248 bytes build/test/.libs/lt-big | Bin 0 -> 71264 bytes build/test/.libs/lt-bittests | Bin 0 -> 27000 bytes build/test/.libs/lt-btree2 | Bin 0 -> 237824 bytes build/test/.libs/lt-cache | Bin 0 -> 455712 bytes build/test/.libs/lt-cache_api | Bin 0 -> 263872 bytes build/test/.libs/lt-cmpd_dset | Bin 0 -> 123024 bytes build/test/.libs/lt-cross_read | Bin 0 -> 63024 bytes build/test/.libs/lt-dangle | Bin 0 -> 69304 bytes build/test/.libs/lt-dsets | Bin 0 -> 285136 bytes build/test/.libs/lt-dt_arith | Bin 0 -> 225008 bytes build/test/.libs/lt-dtransform | Bin 0 -> 139896 bytes build/test/.libs/lt-dtypes | Bin 0 -> 271248 bytes build/test/.libs/lt-efc | Bin 0 -> 202960 bytes build/test/.libs/lt-enum | Bin 0 -> 81664 bytes build/test/.libs/lt-err_compat | Bin 0 -> 65256 bytes build/test/.libs/lt-error_test | Bin 0 -> 71896 bytes build/test/.libs/lt-extend | Bin 0 -> 64320 bytes build/test/.libs/lt-external | Bin 0 -> 102568 bytes build/test/.libs/lt-fheap | Bin 0 -> 397848 bytes build/test/.libs/lt-file_image | Bin 0 -> 95688 bytes build/test/.libs/lt-fillval | Bin 0 -> 116888 bytes build/test/.libs/lt-filter_fail | Bin 0 -> 65696 bytes build/test/.libs/lt-flush1 | Bin 0 -> 58408 bytes build/test/.libs/lt-flush2 | Bin 0 -> 58064 bytes build/test/.libs/lt-freespace | Bin 0 -> 136480 bytes build/test/.libs/lt-getname | Bin 0 -> 176760 bytes build/test/.libs/lt-gheap | Bin 0 -> 64384 bytes build/test/.libs/lt-hyperslab | Bin 0 -> 39984 bytes build/test/.libs/lt-istore | Bin 0 -> 71424 bytes build/test/.libs/lt-lheap | Bin 0 -> 58552 bytes build/test/.libs/lt-links | Bin 0 -> 535824 bytes build/test/.libs/lt-links_env | Bin 0 -> 58144 bytes build/test/.libs/lt-mf | Bin 0 -> 204312 bytes build/test/.libs/lt-mount | Bin 0 -> 188768 bytes build/test/.libs/lt-mtime | Bin 0 -> 63344 bytes build/test/.libs/lt-ntypes | Bin 0 -> 144328 bytes build/test/.libs/lt-objcopy | Bin 0 -> 462200 bytes build/test/.libs/lt-ohdr | Bin 0 -> 90248 bytes build/test/.libs/lt-plugin | Bin 0 -> 91576 bytes build/test/.libs/lt-pool | Bin 0 -> 69480 bytes build/test/.libs/lt-reserved | Bin 0 -> 10896 bytes build/test/.libs/lt-set_extent | Bin 0 -> 101560 bytes build/test/.libs/lt-stab | Bin 0 -> 91672 bytes build/test/.libs/lt-tcheck_version | Bin 0 -> 16512 bytes build/test/.libs/lt-testhdf5 | Bin 0 -> 2423624 bytes build/test/.libs/lt-ttsafe | Bin 0 -> 53008 bytes build/test/.libs/lt-unlink | Bin 0 -> 155328 bytes build/test/.libs/lt-unregister | Bin 0 -> 59632 bytes build/test/.libs/lt-vfd | Bin 0 -> 90968 bytes build/test/.libs/mf | Bin 0 -> 204312 bytes build/test/.libs/mount | Bin 0 -> 188768 bytes build/test/.libs/mtime | Bin 0 -> 63344 bytes build/test/.libs/ntypes | Bin 0 -> 144328 bytes build/test/.libs/objcopy | Bin 0 -> 462200 bytes build/test/.libs/ohdr | Bin 0 -> 90248 bytes build/test/.libs/plugin | Bin 0 -> 91576 bytes build/test/.libs/pool | Bin 0 -> 69480 bytes build/test/.libs/reserved | Bin 0 -> 10896 bytes build/test/.libs/set_extent | Bin 0 -> 101560 bytes build/test/.libs/stab | Bin 0 -> 91672 bytes build/test/.libs/tcheck_version | Bin 0 -> 16512 bytes build/test/.libs/testframe.o | Bin 0 -> 27896 bytes build/test/.libs/testhdf5 | Bin 0 -> 2423624 bytes build/test/.libs/testmeta | Bin 0 -> 17416 bytes build/test/.libs/ttsafe | Bin 0 -> 53008 bytes build/test/.libs/unlink | Bin 0 -> 155328 bytes build/test/.libs/unregister | Bin 0 -> 59632 bytes build/test/.libs/vfd | Bin 0 -> 90968 bytes build/test/H5srcdir_str.h | 20 + build/test/Makefile | 2650 ++ build/test/accum | 228 + build/test/accum.chkexe | 0 build/test/accum.chklog | 22 + build/test/accum.o | Bin 0 -> 179528 bytes build/test/app_ref | 228 + build/test/app_ref.chkexe | 0 build/test/app_ref.chklog | 9 + build/test/app_ref.o | Bin 0 -> 21840 bytes build/test/big | 228 + build/test/big.chkexe | 0 build/test/big.chklog | 61 + build/test/big.o | Bin 0 -> 37424 bytes build/test/bittests | 228 + build/test/bittests.chkexe | 0 build/test/bittests.chklog | 17 + build/test/bittests.o | Bin 0 -> 35600 bytes build/test/btree2 | 228 + build/test/btree2.chkexe | 0 build/test/btree2.chklog | 163 + build/test/btree2.o | Bin 0 -> 492720 bytes build/test/cache | 228 + build/test/cache.chkexe | 0 build/test/cache.chklog | 52 + build/test/cache.o | Bin 0 -> 543592 bytes build/test/cache_api | 228 + build/test/cache_api.chkexe | 0 build/test/cache_api.chklog | 14 + build/test/cache_api.o | Bin 0 -> 141952 bytes build/test/cache_common.lo | 12 + build/test/cache_common.o | Bin 0 -> 201072 bytes build/test/cmpd_dset | 228 + build/test/cmpd_dset.chkexe | 0 build/test/cmpd_dset.chklog | 47 + build/test/cmpd_dset.o | Bin 0 -> 152968 bytes build/test/core_file.h5 | Bin 0 -> 133920 bytes build/test/cross_read | 228 + build/test/cross_read.chkexe | 0 build/test/cross_read.chklog | 63 + build/test/cross_read.o | Bin 0 -> 25040 bytes build/test/dangle | 228 + build/test/dangle.chkexe | 0 build/test/dangle.chklog | 27 + build/test/dangle.o | Bin 0 -> 46472 bytes build/test/dsets | 228 + build/test/dsets.chkexe | 0 build/test/dsets.chklog | 326 + build/test/dsets.o | Bin 0 -> 508752 bytes build/test/dt_arith | 228 + build/test/dt_arith.chkexe | 0 build/test/dt_arith.chklog | 359 + build/test/dt_arith.o | Bin 0 -> 281760 bytes build/test/dt_arith1.h5 | Bin 0 -> 1224 bytes build/test/dt_arith2.h5 | Bin 0 -> 1208 bytes build/test/dtransform | 228 + build/test/dtransform.chkexe | 0 build/test/dtransform.chklog | 87 + build/test/dtransform.h5 | Bin 0 -> 122000 bytes build/test/dtransform.o | Bin 0 -> 316248 bytes build/test/dtypes | 228 + build/test/dtypes.chkexe | 0 build/test/dtypes.chklog | 55 + build/test/dtypes.o | Bin 0 -> 539984 bytes build/test/dtypes10.h5 | Bin 0 -> 8328 bytes build/test/dtypes3.h5 | Bin 0 -> 1832 bytes build/test/dtypes4.h5 | Bin 0 -> 473 bytes build/test/dynlib1.lo | 12 + build/test/dynlib1.o | Bin 0 -> 6736 bytes build/test/dynlib2.lo | 12 + build/test/dynlib2.o | Bin 0 -> 6688 bytes build/test/dynlib3.lo | 12 + build/test/dynlib3.o | Bin 0 -> 7048 bytes build/test/dynlib4.lo | 12 + build/test/dynlib4.o | Bin 0 -> 8072 bytes build/test/efc | 228 + build/test/efc.chkexe | 0 build/test/efc.chklog | 13 + build/test/efc.o | Bin 0 -> 482232 bytes build/test/enum | 228 + build/test/enum.chkexe | 0 build/test/enum.chklog | 15 + build/test/enum.o | Bin 0 -> 76696 bytes build/test/err_compat | 228 + build/test/err_compat.o | Bin 0 -> 32712 bytes build/test/error_test | 228 + build/test/error_test.o | Bin 0 -> 52448 bytes build/test/extend | 228 + build/test/extend.chkexe | 0 build/test/extend.chklog | 13 + build/test/extend.o | Bin 0 -> 29072 bytes build/test/external | 228 + build/test/external.chkexe | 0 build/test/external.chklog | 40 + build/test/external.o | Bin 0 -> 129640 bytes build/test/extlinks16A00000.h5 | Bin 0 -> 1024 bytes build/test/extlinks16A00001.h5 | Bin 0 -> 832 bytes build/test/extlinks16A00002.h5 | 0 build/test/extlinks16B-b.h5 | Bin 0 -> 1416 bytes build/test/extlinks16B-g.h5 | 0 build/test/extlinks16B-l.h5 | Bin 0 -> 240 bytes build/test/extlinks16B-r.h5 | 0 build/test/extlinks16B-s.h5 | Bin 0 -> 320 bytes build/test/extlinks19B00000.h5 | Bin 0 -> 100 bytes build/test/extlinks19B00001.h5 | Bin 0 -> 100 bytes build/test/extlinks19B00002.h5 | Bin 0 -> 100 bytes build/test/extlinks19B00003.h5 | Bin 0 -> 100 bytes build/test/extlinks19B00004.h5 | Bin 0 -> 8 bytes build/test/extlinks19B00005.h5 | 0 build/test/extlinks19B00006.h5 | 0 build/test/extlinks19B00007.h5 | 0 build/test/extlinks19B00008.h5 | 0 build/test/extlinks19B00009.h5 | 0 build/test/extlinks19B00010.h5 | 0 build/test/extlinks19B00011.h5 | 0 build/test/extlinks19B00012.h5 | 0 build/test/extlinks19B00013.h5 | 0 build/test/extlinks19B00014.h5 | 0 build/test/extlinks19B00015.h5 | 0 build/test/extlinks19B00016.h5 | 0 build/test/extlinks19B00017.h5 | 0 build/test/extlinks19B00018.h5 | 0 build/test/extlinks19B00019.h5 | 0 build/test/extlinks19B00020.h5 | 0 build/test/extlinks19B00021.h5 | 0 build/test/extlinks19B00022.h5 | 0 build/test/extlinks19B00023.h5 | 0 build/test/extlinks19B00024.h5 | 0 build/test/extlinks19B00025.h5 | 0 build/test/extlinks19B00026.h5 | 0 build/test/extlinks19B00027.h5 | 0 build/test/extlinks19B00028.h5 | 0 build/test/fheap | 228 + build/test/fheap.chkexe | 0 build/test/fheap.chklog | 1016 + build/test/fheap.o | Bin 0 -> 836760 bytes build/test/file_image | 228 + build/test/file_image.chkexe | 0 build/test/file_image.chklog | 17 + build/test/file_image.o | Bin 0 -> 107760 bytes build/test/fillval | 228 + build/test/fillval.chkexe | 0 build/test/fillval.chklog | 36 + build/test/fillval.o | Bin 0 -> 129472 bytes build/test/filter_fail | 228 + build/test/filter_fail.chkexe | 0 build/test/filter_fail.chklog | 12 + build/test/filter_fail.o | Bin 0 -> 35040 bytes build/test/flush1 | 228 + build/test/flush1.chkexe | 0 build/test/flush1.chklog | 9 + build/test/flush1.o | Bin 0 -> 16440 bytes build/test/flush2 | 228 + build/test/flush2.chkexe | 0 build/test/flush2.chklog | 11 + build/test/flush2.o | Bin 0 -> 14296 bytes build/test/freespace | 228 + build/test/freespace.chkexe | 0 build/test/freespace.chklog | 31 + build/test/freespace.o | Bin 0 -> 215080 bytes build/test/getname | 228 + build/test/getname.chkexe | 0 build/test/getname.chklog | 68 + build/test/getname.o | Bin 0 -> 389816 bytes build/test/gheap | 228 + build/test/gheap.chkexe | 0 build/test/gheap.chklog | 14 + build/test/gheap.o | Bin 0 -> 28792 bytes build/test/h5test.lo | 12 + build/test/h5test.o | Bin 0 -> 39864 bytes build/test/hyperslab | 228 + build/test/hyperslab.chkexe | 0 build/test/hyperslab.chklog | 53 + build/test/hyperslab.o | Bin 0 -> 47208 bytes build/test/istore | 228 + build/test/istore.chkexe | 0 build/test/istore.chklog | 24 + build/test/istore.o | Bin 0 -> 39144 bytes build/test/lheap | 228 + build/test/lheap.chkexe | 0 build/test/lheap.chklog | 12 + build/test/lheap.o | Bin 0 -> 19392 bytes build/test/libdynlib1.la | 41 + build/test/libdynlib2.la | 41 + build/test/libdynlib3.la | 41 + build/test/libdynlib4.la | 41 + build/test/libh5test.la | 41 + build/test/links | 228 + build/test/links.chkexe | 0 build/test/links.chklog | 284 + build/test/links.o | Bin 0 -> 1296656 bytes build/test/links_env | 228 + build/test/links_env.o | Bin 0 -> 17592 bytes build/test/log_vfd_out.log | 23 + build/test/mf | 228 + build/test/mf.chkexe | 0 build/test/mf.chklog | 66 + build/test/mf.o | Bin 0 -> 390360 bytes build/test/mount | 228 + build/test/mount.chkexe | 0 build/test/mount.chklog | 42 + build/test/mount.o | Bin 0 -> 390616 bytes build/test/mtime | 228 + build/test/mtime.chkexe | 0 build/test/mtime.chklog | 12 + build/test/mtime.o | Bin 0 -> 24072 bytes build/test/ntypes | 228 + build/test/ntypes.chkexe | 0 build/test/ntypes.chklog | 25 + build/test/ntypes.o | Bin 0 -> 239744 bytes build/test/objcopy | 228 + build/test/objcopy.chkexe | 0 build/test/objcopy.chklog | 1913 ++ build/test/objcopy.o | Bin 0 -> 1138664 bytes build/test/objcopy_ext.dat | Bin 0 -> 48 bytes build/test/ohdr | 228 + build/test/ohdr.chkexe | 0 build/test/ohdr.chklog | 59 + build/test/ohdr.o | Bin 0 -> 103048 bytes build/test/plugin | 228 + build/test/plugin.o | Bin 0 -> 91576 bytes build/test/pool | 228 + build/test/pool.chkexe | 0 build/test/pool.chklog | 18 + build/test/pool.o | Bin 0 -> 49112 bytes build/test/reserved | 228 + build/test/reserved.chkexe | 0 build/test/reserved.chklog | 9 + build/test/reserved.o | Bin 0 -> 5680 bytes build/test/set_extent | 228 + build/test/set_extent.chkexe | 0 build/test/set_extent.chklog | 21 + build/test/set_extent.o | Bin 0 -> 127696 bytes build/test/stab | 228 + build/test/stab.chkexe | 0 build/test/stab.chklog | 22 + build/test/stab.o | Bin 0 -> 111112 bytes build/test/tarray.o | Bin 0 -> 192888 bytes build/test/tattr.o | Bin 0 -> 1125712 bytes build/test/tbogus.h5.copy | Bin 0 -> 3792 bytes build/test/tcheck_version | 228 + build/test/tcheck_version.o | Bin 0 -> 10112 bytes build/test/tchecksum.o | Bin 0 -> 27224 bytes build/test/tconfig.o | Bin 0 -> 4336 bytes build/test/tcoords.o | Bin 0 -> 69736 bytes build/test/test_plugin.sh | 100 + build/test/test_plugin.sh.chkexe | 0 build/test/test_plugin.sh.chklog | 104 + build/test/testcheck_version.sh | 261 + build/test/testcheck_version.sh.chkexe | 0 build/test/testcheck_version.sh.chklog | 40 + build/test/testerror.sh | 118 + build/test/testerror.sh.chkexe | 0 build/test/testerror.sh.chklog | 11 + build/test/testframe.lo | 12 + build/test/testframe.o | Bin 0 -> 27552 bytes build/test/testhdf5 | 228 + build/test/testhdf5.chkexe | 0 build/test/testhdf5.chklog | 43 + build/test/testhdf5.o | Bin 0 -> 10424 bytes build/test/testlibinfo.sh | 120 + build/test/testlibinfo.sh.chkexe | 0 build/test/testlibinfo.sh.chklog | 12 + build/test/testlinks_env.sh | 41 + build/test/testlinks_env.sh.chkexe | 0 build/test/testlinks_env.sh.chklog | 13 + build/test/testmeta | 228 + build/test/testmeta.o | Bin 0 -> 13336 bytes build/test/tfile.o | Bin 0 -> 368160 bytes build/test/tfile5.h5 | Bin 0 -> 800 bytes build/test/tfile6.h5 | Bin 0 -> 3624 bytes build/test/tgenprop.o | Bin 0 -> 238280 bytes build/test/th5o.o | Bin 0 -> 208472 bytes build/test/th5s.o | Bin 0 -> 361984 bytes build/test/theap.o | Bin 0 -> 94736 bytes build/test/tid.o | Bin 0 -> 79696 bytes build/test/titerate.o | Bin 0 -> 98208 bytes build/test/tmeta.o | Bin 0 -> 8040 bytes build/test/tmisc.o | Bin 0 -> 582448 bytes build/test/trefer.o | Bin 0 -> 223928 bytes build/test/trefstr.o | Bin 0 -> 34288 bytes build/test/tselect.o | Bin 0 -> 916472 bytes build/test/tskiplist.o | Bin 0 -> 153880 bytes build/test/tsohm.o | Bin 0 -> 450344 bytes build/test/tstint1.h5 | Bin 0 -> 2224 bytes build/test/tstint2.h5 | Bin 0 -> 2224 bytes build/test/ttime.o | Bin 0 -> 19440 bytes build/test/ttsafe | 228 + build/test/ttsafe.chkexe | 0 build/test/ttsafe.chklog | 20 + build/test/ttsafe.o | Bin 0 -> 6384 bytes build/test/ttsafe_acreate.o | Bin 0 -> 2576 bytes build/test/ttsafe_cancel.o | Bin 0 -> 2576 bytes build/test/ttsafe_dcreate.o | Bin 0 -> 2576 bytes build/test/ttsafe_error.o | Bin 0 -> 2568 bytes build/test/ttst.o | Bin 0 -> 30824 bytes build/test/tunicode.o | Bin 0 -> 86584 bytes build/test/tverbounds18.o | Bin 0 -> 23432 bytes build/test/tvlstr.o | Bin 0 -> 84448 bytes build/test/tvltypes.o | Bin 0 -> 273464 bytes build/test/unlink | 228 + build/test/unlink.chkexe | 0 build/test/unlink.chklog | 93 + build/test/unlink.o | Bin 0 -> 284432 bytes build/test/unregister | 228 + build/test/unregister.chkexe | 0 build/test/unregister.chklog | 10 + build/test/unregister.o | Bin 0 -> 17408 bytes build/test/vfd | 228 + build/test/vfd.chkexe | 0 build/test/vfd.chklog | 20 + build/test/vfd.o | Bin 0 -> 101192 bytes build/testpar/.deps/t_cache.Po | 1 + build/testpar/.deps/t_chunk_alloc.Po | 1 + build/testpar/.deps/t_coll_chunk.Po | 1 + build/testpar/.deps/t_dset.Po | 1 + build/testpar/.deps/t_file.Po | 1 + build/testpar/.deps/t_file_image.Po | 1 + build/testpar/.deps/t_filter_read.Po | 1 + build/testpar/.deps/t_init_term.Po | 1 + build/testpar/.deps/t_mdset.Po | 1 + build/testpar/.deps/t_mpi.Po | 1 + build/testpar/.deps/t_pflush1.Po | 1 + build/testpar/.deps/t_pflush2.Po | 1 + build/testpar/.deps/t_ph5basic.Po | 1 + build/testpar/.deps/t_prestart.Po | 1 + build/testpar/.deps/t_pshutdown.Po | 1 + build/testpar/.deps/t_shapesame.Po | 1 + build/testpar/.deps/t_span_tree.Po | 1 + build/testpar/.deps/testphdf5.Po | 1 + build/testpar/Makefile | 1469 + build/tools/Makefile | 1402 + build/tools/h5copy/.deps/h5copy.Po | 362 + build/tools/h5copy/.deps/h5copygentest.Po | 350 + build/tools/h5copy/.libs/h5copy | Bin 0 -> 249968 bytes build/tools/h5copy/.libs/h5copygentest | Bin 0 -> 32016 bytes build/tools/h5copy/.libs/lt-h5copy | Bin 0 -> 249968 bytes build/tools/h5copy/.libs/lt-h5copygentest | Bin 0 -> 32016 bytes build/tools/h5copy/Makefile | 1463 + build/tools/h5copy/h5copy | 228 + build/tools/h5copy/h5copy.o | Bin 0 -> 36176 bytes build/tools/h5copy/h5copy_extlinks_src.h5 | Bin 0 -> 2184 bytes build/tools/h5copy/h5copy_extlinks_trg.h5 | Bin 0 -> 2168 bytes build/tools/h5copy/h5copy_ref.h5 | Bin 0 -> 10336 bytes build/tools/h5copy/h5copygentest | 228 + build/tools/h5copy/h5copygentest.chkexe | 0 build/tools/h5copy/h5copygentest.chklog | 8 + build/tools/h5copy/h5copygentest.o | Bin 0 -> 37312 bytes build/tools/h5copy/h5copytst.h5 | Bin 0 -> 31856 bytes build/tools/h5copy/testh5copy.sh | 620 + build/tools/h5copy/testh5copy.sh.chkexe | 0 build/tools/h5copy/testh5copy.sh.chklog | 87 + build/tools/h5diff/.deps/dynlib_diff.Plo | 201 + build/tools/h5diff/.deps/h5diff_common.Po | 371 + build/tools/h5diff/.deps/h5diff_main.Po | 371 + build/tools/h5diff/.deps/h5diffgentest.Po | 349 + build/tools/h5diff/.deps/ph5diff_main.Po | 1 + build/tools/h5diff/.libs/dynlib_diff.o | Bin 0 -> 7048 bytes build/tools/h5diff/.libs/h5diff | Bin 0 -> 457080 bytes build/tools/h5diff/.libs/h5diffgentest | Bin 0 -> 147208 bytes build/tools/h5diff/.libs/libdynlibdiff.la | 1 + build/tools/h5diff/.libs/libdynlibdiff.lai | 41 + build/tools/h5diff/.libs/libdynlibdiff.so | Bin 0 -> 10960 bytes build/tools/h5diff/.libs/lt-h5diff | Bin 0 -> 457080 bytes build/tools/h5diff/.libs/lt-h5diffgentest | Bin 0 -> 147208 bytes build/tools/h5diff/Makefile | 1530 + build/tools/h5diff/compounds_array_vlen1.h5 | Bin 0 -> 20824 bytes build/tools/h5diff/compounds_array_vlen2.h5 | Bin 0 -> 20824 bytes build/tools/h5diff/diff_strings1.h5 | Bin 0 -> 4736 bytes build/tools/h5diff/diff_strings2.h5 | Bin 0 -> 4736 bytes build/tools/h5diff/dynlib_diff.lo | 12 + build/tools/h5diff/dynlib_diff.o | Bin 0 -> 6928 bytes build/tools/h5diff/h5diff | 228 + build/tools/h5diff/h5diff_attr1.h5 | Bin 0 -> 27480 bytes build/tools/h5diff/h5diff_attr2.h5 | Bin 0 -> 27480 bytes build/tools/h5diff/h5diff_attr3.h5 | Bin 0 -> 27480 bytes build/tools/h5diff/h5diff_attr_v_level1.h5 | Bin 0 -> 7360 bytes build/tools/h5diff/h5diff_attr_v_level2.h5 | Bin 0 -> 7200 bytes build/tools/h5diff/h5diff_basic1.h5 | Bin 0 -> 12248 bytes build/tools/h5diff/h5diff_basic2.h5 | Bin 0 -> 9008 bytes build/tools/h5diff/h5diff_common.o | Bin 0 -> 47664 bytes build/tools/h5diff/h5diff_comp_vl_strs.h5 | Bin 0 -> 40240 bytes build/tools/h5diff/h5diff_danglelinks1.h5 | Bin 0 -> 5482 bytes build/tools/h5diff/h5diff_danglelinks2.h5 | Bin 0 -> 5482 bytes build/tools/h5diff/h5diff_dset1.h5 | Bin 0 -> 23416 bytes build/tools/h5diff/h5diff_dset2.h5 | Bin 0 -> 23416 bytes build/tools/h5diff/h5diff_dset3.h5 | Bin 0 -> 23416 bytes build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 | Bin 0 -> 1672 bytes build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 | Bin 0 -> 1672 bytes build/tools/h5diff/h5diff_dtypes.h5 | Bin 0 -> 11240 bytes build/tools/h5diff/h5diff_empty.h5 | Bin 0 -> 800 bytes build/tools/h5diff/h5diff_enum_invalid_values.h5 | Bin 0 -> 2192 bytes build/tools/h5diff/h5diff_exclude1-1.h5 | Bin 0 -> 5064 bytes build/tools/h5diff/h5diff_exclude1-2.h5 | Bin 0 -> 5064 bytes build/tools/h5diff/h5diff_exclude2-1.h5 | Bin 0 -> 5064 bytes build/tools/h5diff/h5diff_exclude2-2.h5 | Bin 0 -> 6056 bytes build/tools/h5diff/h5diff_exclude3-1.h5 | Bin 0 -> 4792 bytes build/tools/h5diff/h5diff_exclude3-2.h5 | Bin 0 -> 2176 bytes build/tools/h5diff/h5diff_ext2softlink_src.h5 | Bin 0 -> 1072 bytes build/tools/h5diff/h5diff_ext2softlink_trg.h5 | Bin 0 -> 4640 bytes build/tools/h5diff/h5diff_extlink_src.h5 | Bin 0 -> 1256 bytes build/tools/h5diff/h5diff_extlink_trg.h5 | Bin 0 -> 6056 bytes build/tools/h5diff/h5diff_grp_recurse1.h5 | Bin 0 -> 12338 bytes build/tools/h5diff/h5diff_grp_recurse2.h5 | Bin 0 -> 12338 bytes build/tools/h5diff/h5diff_grp_recurse_ext1.h5 | Bin 0 -> 8120 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 | Bin 0 -> 4296 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 | Bin 0 -> 5640 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 | Bin 0 -> 2464 bytes build/tools/h5diff/h5diff_hyper1.h5 | Bin 0 -> 1052072 bytes build/tools/h5diff/h5diff_hyper2.h5 | Bin 0 -> 1052072 bytes build/tools/h5diff/h5diff_linked_softlink.h5 | Bin 0 -> 8144 bytes build/tools/h5diff/h5diff_links.h5 | Bin 0 -> 2536 bytes build/tools/h5diff/h5diff_main.o | Bin 0 -> 7784 bytes build/tools/h5diff/h5diff_plugin.sh | 314 + build/tools/h5diff/h5diff_plugin.sh.chkexe | 0 build/tools/h5diff/h5diff_plugin.sh.chklog | 10 + build/tools/h5diff/h5diff_softlinks.h5 | Bin 0 -> 5744 bytes build/tools/h5diff/h5diff_types.h5 | Bin 0 -> 4714 bytes build/tools/h5diff/h5diffgentest | 228 + build/tools/h5diff/h5diffgentest.chkexe | 0 build/tools/h5diff/h5diffgentest.chklog | 16 + build/tools/h5diff/h5diffgentest.o | Bin 0 -> 245680 bytes build/tools/h5diff/libdynlibdiff.la | 41 + build/tools/h5diff/non_comparables1.h5 | Bin 0 -> 8628 bytes build/tools/h5diff/non_comparables2.h5 | Bin 0 -> 8644 bytes build/tools/h5diff/testh5diff.sh | 1136 + build/tools/h5diff/testh5diff.sh.chkexe | 0 build/tools/h5diff/testh5diff.sh.chklog | 194 + build/tools/h5diff/testph5diff.sh | 62 + build/tools/h5dump/.deps/binread.Po | 88 + build/tools/h5dump/.deps/dynlib_dump.Plo | 201 + build/tools/h5dump/.deps/h5dump.Po | 378 + build/tools/h5dump/.deps/h5dump_ddl.Po | 382 + build/tools/h5dump/.deps/h5dump_xml.Po | 382 + build/tools/h5dump/.deps/h5dumpgentest.Po | 360 + build/tools/h5dump/.libs/binread | Bin 0 -> 11624 bytes build/tools/h5dump/.libs/dynlib_dump.o | Bin 0 -> 7048 bytes build/tools/h5dump/.libs/h5dump | Bin 0 -> 400248 bytes build/tools/h5dump/.libs/h5dumpgentest | Bin 0 -> 227168 bytes build/tools/h5dump/.libs/libdynlibdump.la | 1 + build/tools/h5dump/.libs/libdynlibdump.lai | 41 + build/tools/h5dump/.libs/libdynlibdump.so | Bin 0 -> 10960 bytes build/tools/h5dump/.libs/lt-h5dump | Bin 0 -> 400248 bytes build/tools/h5dump/.libs/lt-h5dumpgentest | Bin 0 -> 227168 bytes build/tools/h5dump/Makefile | 1526 + build/tools/h5dump/binread | 228 + build/tools/h5dump/binread.o | Bin 0 -> 7160 bytes build/tools/h5dump/charsets.h5 | Bin 0 -> 6272 bytes build/tools/h5dump/dynlib_dump.lo | 12 + build/tools/h5dump/dynlib_dump.o | Bin 0 -> 6928 bytes build/tools/h5dump/h5dump | 228 + build/tools/h5dump/h5dump.o | Bin 0 -> 99056 bytes build/tools/h5dump/h5dump_ddl.o | Bin 0 -> 97512 bytes build/tools/h5dump/h5dump_plugin.sh | 226 + build/tools/h5dump/h5dump_plugin.sh.chkexe | 0 build/tools/h5dump/h5dump_plugin.sh.chklog | 10 + build/tools/h5dump/h5dump_xml.o | Bin 0 -> 165416 bytes build/tools/h5dump/h5dumpgentest | 228 + build/tools/h5dump/h5dumpgentest.chkexe | 0 build/tools/h5dump/h5dumpgentest.chklog | 8 + build/tools/h5dump/h5dumpgentest.o | Bin 0 -> 411464 bytes build/tools/h5dump/libdynlibdump.la | 41 + build/tools/h5dump/packedbits.h5 | Bin 0 -> 15968 bytes build/tools/h5dump/taindices.h5 | Bin 0 -> 19016 bytes build/tools/h5dump/tall.h5 | Bin 0 -> 9976 bytes build/tools/h5dump/tarray1.h5 | Bin 0 -> 2208 bytes build/tools/h5dump/tarray1_big.h5 | Bin 0 -> 8006288 bytes build/tools/h5dump/tarray2.h5 | Bin 0 -> 3104 bytes build/tools/h5dump/tarray3.h5 | Bin 0 -> 3296 bytes build/tools/h5dump/tarray4.h5 | Bin 0 -> 2272 bytes build/tools/h5dump/tarray5.h5 | Bin 0 -> 2464 bytes build/tools/h5dump/tarray6.h5 | Bin 0 -> 6496 bytes build/tools/h5dump/tarray7.h5 | Bin 0 -> 6496 bytes build/tools/h5dump/tarray8.h5 | Bin 0 -> 6244 bytes build/tools/h5dump/tattr.h5 | Bin 0 -> 1288 bytes build/tools/h5dump/tattr2.h5 | Bin 0 -> 34376 bytes build/tools/h5dump/tattrintsize.h5 | Bin 0 -> 13016 bytes build/tools/h5dump/tbigdims.h5 | Bin 0 -> 5544 bytes build/tools/h5dump/tbinary.h5 | Bin 0 -> 2240 bytes build/tools/h5dump/tbitfields.h5 | Bin 0 -> 4752 bytes build/tools/h5dump/tbitnopaque.h5 | Bin 0 -> 8240 bytes build/tools/h5dump/tchar.h5 | Bin 0 -> 2452 bytes build/tools/h5dump/tcmpdattrintsize.h5 | Bin 0 -> 47016 bytes build/tools/h5dump/tcmpdintarray.h5 | Bin 0 -> 9888 bytes build/tools/h5dump/tcmpdints.h5 | Bin 0 -> 9312 bytes build/tools/h5dump/tcmpdintsize.h5 | Bin 0 -> 49760 bytes build/tools/h5dump/tcompound.h5 | Bin 0 -> 9832 bytes build/tools/h5dump/tcompound2.h5 | Bin 0 -> 15344 bytes build/tools/h5dump/tcompound_complex.h5 | Bin 0 -> 7632 bytes build/tools/h5dump/tcompound_complex2.h5 | Bin 0 -> 21880 bytes build/tools/h5dump/tdatareg.h5 | Bin 0 -> 6388 bytes build/tools/h5dump/tdset.h5 | Bin 0 -> 7744 bytes build/tools/h5dump/tdset2.h5 | Bin 0 -> 10152 bytes build/tools/h5dump/tempty.h5 | Bin 0 -> 2512 bytes build/tools/h5dump/tenum.h5 | Bin 0 -> 2224 bytes build/tools/h5dump/testh5dump.sh | 1374 + build/tools/h5dump/testh5dump.sh.chkexe | 0 build/tools/h5dump/testh5dump.sh.chklog | 190 + build/tools/h5dump/testh5dumppbits.sh | 606 + build/tools/h5dump/testh5dumppbits.sh.chkexe | 0 build/tools/h5dump/testh5dumppbits.sh.chklog | 62 + build/tools/h5dump/testh5dumpxml.sh | 400 + build/tools/h5dump/testh5dumpxml.sh.chkexe | 0 build/tools/h5dump/testh5dumpxml.sh.chklog | 74 + build/tools/h5dump/textlink.h5 | Bin 0 -> 936 bytes build/tools/h5dump/textlinkfar.h5 | Bin 0 -> 888 bytes build/tools/h5dump/textlinksrc.h5 | Bin 0 -> 1224 bytes build/tools/h5dump/textlinktar.h5 | Bin 0 -> 6752 bytes build/tools/h5dump/tfamily00000.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00001.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00002.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00003.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00004.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00005.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00006.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00007.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00008.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00009.h5 | Bin 0 -> 256 bytes build/tools/h5dump/tfamily00010.h5 | Bin 0 -> 208 bytes build/tools/h5dump/tfamily00011.h5 | 0 build/tools/h5dump/tfamily00012.h5 | 0 build/tools/h5dump/tfamily00013.h5 | 0 build/tools/h5dump/tfamily00014.h5 | 0 build/tools/h5dump/tfamily00015.h5 | 0 build/tools/h5dump/tfamily00016.h5 | 0 build/tools/h5dump/tfcontents1.h5 | Bin 0 -> 7474 bytes build/tools/h5dump/tfcontents2.h5 | Bin 0 -> 800 bytes build/tools/h5dump/tfilters.h5 | Bin 0 -> 43576 bytes build/tools/h5dump/tfpformat.h5 | Bin 0 -> 2216 bytes build/tools/h5dump/tfvalues.h5 | Bin 0 -> 10336 bytes build/tools/h5dump/tgroup.h5 | Bin 0 -> 11592 bytes build/tools/h5dump/tgrp_comments.h5 | Bin 0 -> 13248 bytes build/tools/h5dump/tgrpnullspace.h5 | Bin 0 -> 2504 bytes build/tools/h5dump/thlink.h5 | Bin 0 -> 5512 bytes build/tools/h5dump/thyperslab.h5 | Bin 0 -> 1050976 bytes build/tools/h5dump/tints4dims.h5 | Bin 0 -> 9824 bytes build/tools/h5dump/tintsattrs.h5 | Bin 0 -> 28912 bytes build/tools/h5dump/tlarge_objname.h5 | Bin 0 -> 43440 bytes build/tools/h5dump/tldouble.h5 | Bin 0 -> 2192 bytes build/tools/h5dump/tlonglinks.h5 | Bin 0 -> 202792 bytes build/tools/h5dump/tloop.h5 | Bin 0 -> 3192 bytes build/tools/h5dump/tloop2.h5 | Bin 0 -> 3192 bytes build/tools/h5dump/tmany.h5 | Bin 0 -> 18680 bytes build/tools/h5dump/tmulti-b.h5 | Bin 0 -> 872 bytes build/tools/h5dump/tmulti-g.h5 | 0 build/tools/h5dump/tmulti-l.h5 | Bin 0 -> 120 bytes build/tools/h5dump/tmulti-o.h5 | Bin 0 -> 312 bytes build/tools/h5dump/tmulti-r.h5 | Bin 0 -> 600 bytes build/tools/h5dump/tmulti-s.h5 | Bin 0 -> 264 bytes build/tools/h5dump/tnamed_dtype_attr.h5 | Bin 0 -> 2304 bytes build/tools/h5dump/tnestedcmpddt.h5 | Bin 0 -> 16536 bytes build/tools/h5dump/tnestedcomp.h5 | Bin 0 -> 2464 bytes build/tools/h5dump/tnullspace.h5 | Bin 0 -> 1472 bytes build/tools/h5dump/tobjref.h5 | Bin 0 -> 5272 bytes build/tools/h5dump/topaque.h5 | Bin 0 -> 2544 bytes build/tools/h5dump/torderattr.h5 | Bin 0 -> 4120 bytes build/tools/h5dump/tordergr.h5 | Bin 0 -> 11488 bytes build/tools/h5dump/tscalarattrintsize.h5 | Bin 0 -> 12944 bytes build/tools/h5dump/tscalarintattrsize.h5 | Bin 0 -> 28928 bytes build/tools/h5dump/tscalarintsize.h5 | Bin 0 -> 15968 bytes build/tools/h5dump/tscalarstring.h5 | Bin 0 -> 2208 bytes build/tools/h5dump/tslink.h5 | Bin 0 -> 1128 bytes build/tools/h5dump/tsoftlinks.h5 | Bin 0 -> 6352 bytes build/tools/h5dump/tsplit_file-m.h5 | Bin 0 -> 1600 bytes build/tools/h5dump/tsplit_file-r.h5 | Bin 0 -> 600 bytes build/tools/h5dump/tstr.h5 | Bin 0 -> 19128 bytes build/tools/h5dump/tstr2.h5 | Bin 0 -> 13048 bytes build/tools/h5dump/tstr3.h5 | Bin 0 -> 8778 bytes build/tools/h5dump/tudfilter.h5 | Bin 0 -> 4816 bytes build/tools/h5dump/tudlink.h5 | Bin 0 -> 904 bytes build/tools/h5dump/tvldtypes1.h5 | Bin 0 -> 6384 bytes build/tools/h5dump/tvldtypes2.h5 | Bin 0 -> 6304 bytes build/tools/h5dump/tvldtypes3.h5 | Bin 0 -> 6336 bytes build/tools/h5dump/tvldtypes4.h5 | Bin 0 -> 6304 bytes build/tools/h5dump/tvldtypes5.h5 | Bin 0 -> 6304 bytes build/tools/h5dump/tvlenstr_array.h5 | Bin 0 -> 6720 bytes build/tools/h5dump/tvlstr.h5 | Bin 0 -> 6304 bytes build/tools/h5dump/zerodim.h5 | Bin 0 -> 1528 bytes build/tools/h5import/.deps/h5import.Po | 365 + build/tools/h5import/.deps/h5importtest.Po | 280 + build/tools/h5import/.libs/h5import | Bin 0 -> 333872 bytes build/tools/h5import/.libs/h5importtest | Bin 0 -> 22064 bytes build/tools/h5import/.libs/lt-h5import | Bin 0 -> 333872 bytes build/tools/h5import/.libs/lt-h5importtest | Bin 0 -> 22064 bytes build/tools/h5import/Makefile | 1460 + build/tools/h5import/h5import | 228 + build/tools/h5import/h5import.o | Bin 0 -> 188176 bytes build/tools/h5import/h5importtest | 228 + build/tools/h5import/h5importtest.chkexe | 0 build/tools/h5import/h5importtest.chklog | 8 + build/tools/h5import/h5importtest.o | Bin 0 -> 21832 bytes build/tools/h5import/h5importtestutil.sh | 408 + build/tools/h5import/h5importtestutil.sh.chkexe | 0 build/tools/h5import/h5importtestutil.sh.chklog | 40 + build/tools/h5jam/.deps/getub.Po | 362 + build/tools/h5jam/.deps/h5jam.Po | 362 + build/tools/h5jam/.deps/h5jamgentest.Po | 350 + build/tools/h5jam/.deps/h5unjam.Po | 362 + build/tools/h5jam/.deps/tellub.Po | 362 + build/tools/h5jam/.libs/getub | Bin 0 -> 238896 bytes build/tools/h5jam/.libs/h5jam | Bin 0 -> 245984 bytes build/tools/h5jam/.libs/h5jamgentest | Bin 0 -> 23448 bytes build/tools/h5jam/.libs/h5unjam | Bin 0 -> 245384 bytes build/tools/h5jam/.libs/lt-getub | Bin 0 -> 238896 bytes build/tools/h5jam/.libs/lt-h5jam | Bin 0 -> 245984 bytes build/tools/h5jam/.libs/lt-h5unjam | Bin 0 -> 245384 bytes build/tools/h5jam/.libs/lt-tellub | Bin 0 -> 239016 bytes build/tools/h5jam/.libs/tellub | Bin 0 -> 239016 bytes build/tools/h5jam/Makefile | 1481 + build/tools/h5jam/getub | 228 + build/tools/h5jam/getub.o | Bin 0 -> 11832 bytes build/tools/h5jam/h5jam | 228 + build/tools/h5jam/h5jam.o | Bin 0 -> 26944 bytes build/tools/h5jam/h5jamgentest | 228 + build/tools/h5jam/h5jamgentest.o | Bin 0 -> 19120 bytes build/tools/h5jam/h5unjam | 228 + build/tools/h5jam/h5unjam.o | Bin 0 -> 25216 bytes build/tools/h5jam/tellub | 228 + build/tools/h5jam/tellub.o | Bin 0 -> 12328 bytes build/tools/h5jam/testh5jam.sh | 699 + build/tools/h5jam/testh5jam.sh.chkexe | 0 build/tools/h5jam/testh5jam.sh.chklog | 88 + build/tools/h5ls/.deps/dynlib_ls.Plo | 201 + build/tools/h5ls/.deps/h5ls.Po | 370 + build/tools/h5ls/.libs/dynlib_ls.o | Bin 0 -> 7040 bytes build/tools/h5ls/.libs/h5ls | Bin 0 -> 295976 bytes build/tools/h5ls/.libs/libdynlibls.la | 1 + build/tools/h5ls/.libs/libdynlibls.lai | 41 + build/tools/h5ls/.libs/libdynlibls.so | Bin 0 -> 10944 bytes build/tools/h5ls/.libs/lt-h5ls | Bin 0 -> 300072 bytes build/tools/h5ls/Makefile | 1470 + build/tools/h5ls/dynlib_ls.lo | 12 + build/tools/h5ls/dynlib_ls.o | Bin 0 -> 6912 bytes build/tools/h5ls/h5ls | 228 + build/tools/h5ls/h5ls.o | Bin 0 -> 125096 bytes build/tools/h5ls/h5ls_plugin.sh | 252 + build/tools/h5ls/h5ls_plugin.sh.chkexe | 0 build/tools/h5ls/h5ls_plugin.sh.chklog | 10 + build/tools/h5ls/libdynlibls.la | 41 + build/tools/h5ls/testh5ls.sh | 438 + build/tools/h5ls/testh5ls.sh.chkexe | 0 build/tools/h5ls/testh5ls.sh.chklog | 63 + build/tools/h5repack/.deps/dynlib_rpk.Plo | 201 + build/tools/h5repack/.deps/dynlib_vrpk.Plo | 201 + build/tools/h5repack/.deps/h5repack.Po | 367 + build/tools/h5repack/.deps/h5repack_copy.Po | 368 + build/tools/h5repack/.deps/h5repack_filters.Po | 368 + build/tools/h5repack/.deps/h5repack_main.Po | 368 + build/tools/h5repack/.deps/h5repack_opttable.Po | 368 + build/tools/h5repack/.deps/h5repack_parse.Po | 368 + build/tools/h5repack/.deps/h5repack_refs.Po | 370 + build/tools/h5repack/.deps/h5repack_verify.Po | 368 + build/tools/h5repack/.deps/h5repacktst.Po | 375 + .../h5repack/.deps/testh5repack_detect_szip.Po | 371 + build/tools/h5repack/.libs/dynlib_rpk.o | Bin 0 -> 6912 bytes build/tools/h5repack/.libs/dynlib_vrpk.o | Bin 0 -> 8304 bytes build/tools/h5repack/.libs/h5repack | Bin 0 -> 387656 bytes build/tools/h5repack/.libs/h5repacktst | Bin 0 -> 695136 bytes build/tools/h5repack/.libs/libdynlibadd.la | 1 + build/tools/h5repack/.libs/libdynlibadd.lai | 41 + build/tools/h5repack/.libs/libdynlibadd.so | Bin 0 -> 10880 bytes build/tools/h5repack/.libs/libdynlibvers.la | 1 + build/tools/h5repack/.libs/libdynlibvers.lai | 41 + build/tools/h5repack/.libs/libdynlibvers.so | Bin 0 -> 11320 bytes build/tools/h5repack/.libs/lt-h5repack | Bin 0 -> 387656 bytes build/tools/h5repack/.libs/lt-h5repacktst | Bin 0 -> 695136 bytes .../tools/h5repack/.libs/testh5repack_detect_szip | Bin 0 -> 236696 bytes build/tools/h5repack/Makefile | 1575 + build/tools/h5repack/dynlib_rpk.lo | 12 + build/tools/h5repack/dynlib_rpk.o | Bin 0 -> 6784 bytes build/tools/h5repack/dynlib_vrpk.lo | 12 + build/tools/h5repack/dynlib_vrpk.o | Bin 0 -> 8144 bytes build/tools/h5repack/h5repack | 228 + build/tools/h5repack/h5repack.o | Bin 0 -> 49656 bytes build/tools/h5repack/h5repack.sh | 1085 + build/tools/h5repack/h5repack.sh.chkexe | 0 build/tools/h5repack/h5repack.sh.chklog | 239 + build/tools/h5repack/h5repack_attr.h5 | Bin 0 -> 21856 bytes build/tools/h5repack/h5repack_attr_out.h5 | Bin 0 -> 21920 bytes build/tools/h5repack/h5repack_attr_refs.h5 | Bin 0 -> 10336 bytes build/tools/h5repack/h5repack_big.h5 | Bin 0 -> 4520 bytes build/tools/h5repack/h5repack_copy.o | Bin 0 -> 73528 bytes build/tools/h5repack/h5repack_deflate.h5 | Bin 0 -> 6336 bytes build/tools/h5repack/h5repack_deflate_out.h5 | Bin 0 -> 6256 bytes build/tools/h5repack/h5repack_early.h5 | Bin 0 -> 3074224 bytes build/tools/h5repack/h5repack_early2.h5 | Bin 0 -> 14264 bytes build/tools/h5repack/h5repack_early_out.h5 | Bin 0 -> 14920 bytes build/tools/h5repack/h5repack_ext.bin | Bin 0 -> 8 bytes build/tools/h5repack/h5repack_ext.h5 | Bin 0 -> 1464 bytes build/tools/h5repack/h5repack_ext_out.h5 | Bin 0 -> 1376 bytes build/tools/h5repack/h5repack_fill.h5 | Bin 0 -> 2168 bytes build/tools/h5repack/h5repack_fill_out.h5 | Bin 0 -> 2168 bytes build/tools/h5repack/h5repack_filters.h5 | Bin 0 -> 27604 bytes build/tools/h5repack/h5repack_filters.o | Bin 0 -> 26144 bytes build/tools/h5repack/h5repack_filters_out.h5 | Bin 0 -> 22358 bytes build/tools/h5repack/h5repack_fletcher.h5 | Bin 0 -> 7232 bytes build/tools/h5repack/h5repack_fletcher_out.h5 | Bin 0 -> 7216 bytes build/tools/h5repack/h5repack_hlink.h5 | Bin 0 -> 6544 bytes build/tools/h5repack/h5repack_hlink_out.h5 | Bin 0 -> 6424 bytes build/tools/h5repack/h5repack_layout.h5 | Bin 0 -> 29480 bytes build/tools/h5repack/h5repack_layout2.h5 | Bin 0 -> 6808 bytes build/tools/h5repack/h5repack_layout3.h5 | Bin 0 -> 491840 bytes build/tools/h5repack/h5repack_layout_out.h5 | Bin 0 -> 27488 bytes build/tools/h5repack/h5repack_main.o | Bin 0 -> 49528 bytes build/tools/h5repack/h5repack_named_dtypes.h5 | Bin 0 -> 4320 bytes build/tools/h5repack/h5repack_named_dtypes_out.h5 | Bin 0 -> 4320 bytes build/tools/h5repack/h5repack_nbit.h5 | Bin 0 -> 13208 bytes build/tools/h5repack/h5repack_nbit_out.h5 | Bin 0 -> 13112 bytes build/tools/h5repack/h5repack_objs.h5 | Bin 0 -> 19738 bytes build/tools/h5repack/h5repack_objs_out.h5 | Bin 0 -> 19271 bytes build/tools/h5repack/h5repack_opttable.o | Bin 0 -> 15256 bytes build/tools/h5repack/h5repack_parse.o | Bin 0 -> 20240 bytes build/tools/h5repack/h5repack_plugin.sh | 274 + build/tools/h5repack/h5repack_plugin.sh.chkexe | 0 build/tools/h5repack/h5repack_plugin.sh.chklog | 17 + build/tools/h5repack/h5repack_refs.h5 | Bin 0 -> 10336 bytes build/tools/h5repack/h5repack_refs.o | Bin 0 -> 59224 bytes build/tools/h5repack/h5repack_shuffle.h5 | Bin 0 -> 7216 bytes build/tools/h5repack/h5repack_shuffle_out.h5 | Bin 0 -> 7216 bytes build/tools/h5repack/h5repack_soffset.h5 | Bin 0 -> 12452 bytes build/tools/h5repack/h5repack_soffset_out.h5 | Bin 0 -> 13214 bytes build/tools/h5repack/h5repack_ub.h5 | Bin 0 -> 2848 bytes build/tools/h5repack/h5repack_ub_out.h5 | Bin 0 -> 2848 bytes build/tools/h5repack/h5repack_verify.o | Bin 0 -> 33000 bytes build/tools/h5repack/h5repacktst | 228 + build/tools/h5repack/h5repacktst.chkexe | 0 build/tools/h5repack/h5repacktst.chklog | 66 + build/tools/h5repack/h5repacktst.o | Bin 0 -> 223768 bytes build/tools/h5repack/libdynlibadd.la | 41 + build/tools/h5repack/libdynlibvers.la | 41 + build/tools/h5repack/testh5repack_detect_szip | 228 + build/tools/h5repack/testh5repack_detect_szip.o | Bin 0 -> 3792 bytes build/tools/h5repack/ublock.bin | 1 + build/tools/h5stat/.deps/h5stat.Po | 367 + build/tools/h5stat/.deps/h5stat_gentest.Po | 183 + build/tools/h5stat/.libs/h5stat | Bin 0 -> 270600 bytes build/tools/h5stat/.libs/h5stat_gentest | Bin 0 -> 17000 bytes build/tools/h5stat/.libs/lt-h5stat | Bin 0 -> 270600 bytes build/tools/h5stat/.libs/lt-h5stat_gentest | Bin 0 -> 17000 bytes build/tools/h5stat/Makefile | 1509 + build/tools/h5stat/h5stat | 228 + build/tools/h5stat/h5stat.o | Bin 0 -> 66512 bytes build/tools/h5stat/h5stat_gentest | 228 + build/tools/h5stat/h5stat_gentest.chkexe | 0 build/tools/h5stat/h5stat_gentest.chklog | 8 + build/tools/h5stat/h5stat_gentest.o | Bin 0 -> 14192 bytes build/tools/h5stat/h5stat_newgrat.h5 | Bin 0 -> 6367891 bytes build/tools/h5stat/h5stat_threshold.h5 | Bin 0 -> 16312 bytes build/tools/h5stat/testh5stat.sh | 314 + build/tools/h5stat/testh5stat.sh.chkexe | 0 build/tools/h5stat/testh5stat.sh.chklog | 40 + build/tools/lib/.deps/h5diff.Plo | 370 + build/tools/lib/.deps/h5diff_array.Plo | 371 + build/tools/lib/.deps/h5diff_attr.Plo | 368 + build/tools/lib/.deps/h5diff_dset.Plo | 371 + build/tools/lib/.deps/h5diff_util.Plo | 371 + build/tools/lib/.deps/h5tools.Plo | 367 + build/tools/lib/.deps/h5tools_dump.Plo | 368 + build/tools/lib/.deps/h5tools_filters.Plo | 361 + build/tools/lib/.deps/h5tools_ref.Plo | 373 + build/tools/lib/.deps/h5tools_str.Plo | 363 + build/tools/lib/.deps/h5tools_type.Plo | 361 + build/tools/lib/.deps/h5tools_utils.Plo | 365 + build/tools/lib/.deps/h5trav.Plo | 362 + build/tools/lib/.deps/io_timer.Plo | 352 + build/tools/lib/.libs/h5diff.o | Bin 0 -> 56688 bytes build/tools/lib/.libs/h5diff_array.o | Bin 0 -> 186088 bytes build/tools/lib/.libs/h5diff_attr.o | Bin 0 -> 38096 bytes build/tools/lib/.libs/h5diff_dset.o | Bin 0 -> 39112 bytes build/tools/lib/.libs/h5diff_util.o | Bin 0 -> 27120 bytes build/tools/lib/.libs/h5tools.o | Bin 0 -> 81568 bytes build/tools/lib/.libs/h5tools_dump.o | Bin 0 -> 184672 bytes build/tools/lib/.libs/h5tools_filters.o | Bin 0 -> 9944 bytes build/tools/lib/.libs/h5tools_ref.o | Bin 0 -> 15352 bytes build/tools/lib/.libs/h5tools_str.o | Bin 0 -> 55080 bytes build/tools/lib/.libs/h5tools_type.o | Bin 0 -> 11584 bytes build/tools/lib/.libs/h5tools_utils.o | Bin 0 -> 36712 bytes build/tools/lib/.libs/h5trav.o | Bin 0 -> 42560 bytes build/tools/lib/.libs/io_timer.o | Bin 0 -> 11568 bytes build/tools/lib/.libs/libh5tools.a | Bin 0 -> 800716 bytes build/tools/lib/.libs/libh5tools.la | 1 + build/tools/lib/Makefile | 1405 + build/tools/lib/h5diff.lo | 12 + build/tools/lib/h5diff.o | Bin 0 -> 55792 bytes build/tools/lib/h5diff_array.lo | 12 + build/tools/lib/h5diff_array.o | Bin 0 -> 184296 bytes build/tools/lib/h5diff_attr.lo | 12 + build/tools/lib/h5diff_attr.o | Bin 0 -> 37176 bytes build/tools/lib/h5diff_dset.lo | 12 + build/tools/lib/h5diff_dset.o | Bin 0 -> 38352 bytes build/tools/lib/h5diff_util.lo | 12 + build/tools/lib/h5diff_util.o | Bin 0 -> 26672 bytes build/tools/lib/h5tools.lo | 12 + build/tools/lib/h5tools.o | Bin 0 -> 79968 bytes build/tools/lib/h5tools_dump.lo | 12 + build/tools/lib/h5tools_dump.o | Bin 0 -> 180880 bytes build/tools/lib/h5tools_filters.lo | 12 + build/tools/lib/h5tools_filters.o | Bin 0 -> 9792 bytes build/tools/lib/h5tools_ref.lo | 12 + build/tools/lib/h5tools_ref.o | Bin 0 -> 15328 bytes build/tools/lib/h5tools_str.lo | 12 + build/tools/lib/h5tools_str.o | Bin 0 -> 54896 bytes build/tools/lib/h5tools_type.lo | 12 + build/tools/lib/h5tools_type.o | Bin 0 -> 11432 bytes build/tools/lib/h5tools_utils.lo | 12 + build/tools/lib/h5tools_utils.o | Bin 0 -> 36192 bytes build/tools/lib/h5trav.lo | 12 + build/tools/lib/h5trav.o | Bin 0 -> 42400 bytes build/tools/lib/io_timer.lo | 12 + build/tools/lib/io_timer.o | Bin 0 -> 11496 bytes build/tools/lib/libh5tools.la | 41 + build/tools/misc/.deps/h5debug.Po | 437 + build/tools/misc/.deps/h5mkgrp.Po | 362 + build/tools/misc/.deps/h5repart.Po | 350 + build/tools/misc/.deps/h5repart_gentest.Po | 350 + build/tools/misc/.deps/repart_test.Po | 350 + build/tools/misc/.deps/talign.Po | 360 + build/tools/misc/.libs/h5debug | Bin 0 -> 36176 bytes build/tools/misc/.libs/h5mkgrp | Bin 0 -> 243832 bytes build/tools/misc/.libs/h5repart | Bin 0 -> 23840 bytes build/tools/misc/.libs/h5repart_gentest | Bin 0 -> 16864 bytes build/tools/misc/.libs/lt-h5mkgrp | Bin 0 -> 243832 bytes build/tools/misc/.libs/lt-h5repart | Bin 0 -> 23840 bytes build/tools/misc/.libs/lt-h5repart_gentest | Bin 0 -> 16864 bytes build/tools/misc/.libs/lt-repart_test | Bin 0 -> 17432 bytes build/tools/misc/.libs/lt-talign | Bin 0 -> 24016 bytes build/tools/misc/.libs/repart_test | Bin 0 -> 17432 bytes build/tools/misc/.libs/talign | Bin 0 -> 24016 bytes build/tools/misc/Makefile | 1583 + build/tools/misc/family_file00000.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00001.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00002.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00003.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00004.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00005.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00006.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00007.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00008.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00009.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00010.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00011.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00012.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00013.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00014.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00015.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00016.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00017.h5 | Bin 0 -> 1024 bytes build/tools/misc/family_file00018.h5 | Bin 0 -> 120 bytes build/tools/misc/h5cc | 399 + build/tools/misc/h5debug | 228 + build/tools/misc/h5debug.o | Bin 0 -> 40936 bytes build/tools/misc/h5mkgrp | 228 + build/tools/misc/h5mkgrp.o | Bin 0 -> 17528 bytes build/tools/misc/h5redeploy | 216 + build/tools/misc/h5repart | 228 + build/tools/misc/h5repart.o | Bin 0 -> 22976 bytes build/tools/misc/h5repart_gentest | 228 + build/tools/misc/h5repart_gentest.chkexe | 0 build/tools/misc/h5repart_gentest.chklog | 9 + build/tools/misc/h5repart_gentest.o | Bin 0 -> 10352 bytes build/tools/misc/repart_test | 228 + build/tools/misc/repart_test.o | Bin 0 -> 11608 bytes build/tools/misc/talign | 228 + build/tools/misc/talign.chkexe | 0 build/tools/misc/talign.chklog | 9 + build/tools/misc/talign.o | Bin 0 -> 18616 bytes build/tools/misc/testh5mkgrp.sh | 327 + build/tools/misc/testh5mkgrp.sh.chkexe | 0 build/tools/misc/testh5mkgrp.sh.chklog | 34 + build/tools/misc/testh5repart.sh | 195 + build/tools/misc/testh5repart.sh.chkexe | 0 build/tools/misc/testh5repart.sh.chklog | 14 + build/tools/perform/.deps/chunk.Po | 203 + build/tools/perform/.deps/iopipe.Po | 350 + build/tools/perform/.deps/overhead.Po | 350 + build/tools/perform/.deps/perf.Po | 350 + build/tools/perform/.deps/perf_meta.Po | 353 + build/tools/perform/.deps/pio_engine.Po | 1 + build/tools/perform/.deps/pio_perf.Po | 1 + build/tools/perform/.deps/sio_engine.Po | 370 + build/tools/perform/.deps/sio_perf.Po | 370 + build/tools/perform/.deps/zip_perf.Po | 369 + build/tools/perform/.libs/chunk | Bin 0 -> 24392 bytes build/tools/perform/.libs/h5perf_serial | Bin 0 -> 297232 bytes build/tools/perform/.libs/iopipe | Bin 0 -> 23848 bytes build/tools/perform/.libs/lt-chunk | Bin 0 -> 24392 bytes build/tools/perform/.libs/lt-h5perf_serial | Bin 0 -> 297232 bytes build/tools/perform/.libs/lt-iopipe | Bin 0 -> 23848 bytes build/tools/perform/.libs/lt-overhead | Bin 0 -> 24632 bytes build/tools/perform/.libs/lt-perf_meta | Bin 0 -> 69472 bytes build/tools/perform/.libs/lt-zip_perf | Bin 0 -> 252080 bytes build/tools/perform/.libs/overhead | Bin 0 -> 24632 bytes build/tools/perform/.libs/perf | Bin 0 -> 9736 bytes build/tools/perform/.libs/perf_meta | Bin 0 -> 69472 bytes build/tools/perform/.libs/zip_perf | Bin 0 -> 252080 bytes build/tools/perform/Makefile | 1576 + build/tools/perform/chunk | 228 + build/tools/perform/chunk.chkexe | 0 build/tools/perform/chunk.chklog | 50 + build/tools/perform/chunk.h5 | Bin 0 -> 4022328 bytes build/tools/perform/chunk.o | Bin 0 -> 25800 bytes build/tools/perform/h5perf_serial | 228 + build/tools/perform/h5perf_serial.chkexe | 0 build/tools/perform/h5perf_serial.chklog | 56 + build/tools/perform/iopipe | 228 + build/tools/perform/iopipe.chkexe | 0 build/tools/perform/iopipe.chklog | 23 + build/tools/perform/iopipe.h5 | Bin 0 -> 1002144 bytes build/tools/perform/iopipe.o | Bin 0 -> 22936 bytes build/tools/perform/iopipe.raw | Bin 0 -> 1000000 bytes build/tools/perform/overhead | 228 + build/tools/perform/overhead.chkexe | 0 build/tools/perform/overhead.chklog | 15 + build/tools/perform/overhead.o | Bin 0 -> 21680 bytes build/tools/perform/perf | 228 + build/tools/perform/perf.o | Bin 0 -> 3664 bytes build/tools/perform/perf_meta | 228 + build/tools/perform/perf_meta.chkexe | 0 build/tools/perform/perf_meta.chklog | 23 + build/tools/perform/perf_meta.o | Bin 0 -> 32224 bytes build/tools/perform/sio_engine.o | Bin 0 -> 54368 bytes build/tools/perform/sio_perf.o | Bin 0 -> 60040 bytes build/tools/perform/x-diag-rd.dat | 11 + build/tools/perform/x-diag-wr.dat | 11 + build/tools/perform/x-gnuplot | 44 + build/tools/perform/x-rowmaj-rd.dat | 11 + build/tools/perform/x-rowmaj-wr.dat | 11 + build/tools/perform/zip_perf | 228 + build/tools/perform/zip_perf.chkexe | 0 build/tools/perform/zip_perf.chklog | 38 + build/tools/perform/zip_perf.o | Bin 0 -> 35544 bytes release_docs/RELEASE.txt | 2 +- 2408 files changed, 317272 insertions(+), 2 deletions(-) create mode 100644 build/Makefile create mode 100644 build/c++/Makefile create mode 100644 build/c++/examples/Makefile create mode 100644 build/c++/examples/run-c++-ex.sh create mode 100644 build/c++/examples/testh5c++.sh create mode 100644 build/c++/src/.deps/H5AbstractDs.Plo create mode 100644 build/c++/src/.deps/H5AcreatProp.Plo create mode 100644 build/c++/src/.deps/H5ArrayType.Plo create mode 100644 build/c++/src/.deps/H5AtomType.Plo create mode 100644 build/c++/src/.deps/H5Attribute.Plo create mode 100644 build/c++/src/.deps/H5CommonFG.Plo create mode 100644 build/c++/src/.deps/H5CompType.Plo create mode 100644 build/c++/src/.deps/H5DataSet.Plo create mode 100644 build/c++/src/.deps/H5DataSpace.Plo create mode 100644 build/c++/src/.deps/H5DataType.Plo create mode 100644 build/c++/src/.deps/H5DcreatProp.Plo create mode 100644 build/c++/src/.deps/H5DxferProp.Plo create mode 100644 build/c++/src/.deps/H5EnumType.Plo create mode 100644 build/c++/src/.deps/H5Exception.Plo create mode 100644 build/c++/src/.deps/H5FaccProp.Plo create mode 100644 build/c++/src/.deps/H5FcreatProp.Plo create mode 100644 build/c++/src/.deps/H5File.Plo create mode 100644 build/c++/src/.deps/H5FloatType.Plo create mode 100644 build/c++/src/.deps/H5Group.Plo create mode 100644 build/c++/src/.deps/H5IdComponent.Plo create mode 100644 build/c++/src/.deps/H5IntType.Plo create mode 100644 build/c++/src/.deps/H5LaccProp.Plo create mode 100644 build/c++/src/.deps/H5LcreatProp.Plo create mode 100644 build/c++/src/.deps/H5Library.Plo create mode 100644 build/c++/src/.deps/H5Location.Plo create mode 100644 build/c++/src/.deps/H5Object.Plo create mode 100644 build/c++/src/.deps/H5OcreatProp.Plo create mode 100644 build/c++/src/.deps/H5PredType.Plo create mode 100644 build/c++/src/.deps/H5PropList.Plo create mode 100644 build/c++/src/.deps/H5StrType.Plo create mode 100644 build/c++/src/.deps/H5StrcreatProp.Plo create mode 100644 build/c++/src/.deps/H5VarLenType.Plo create mode 100644 build/c++/src/Makefile create mode 100644 build/c++/src/h5c++ create mode 100644 build/c++/test/.deps/dsets.Po create mode 100644 build/c++/test/.deps/h5cpputil.Po create mode 100644 build/c++/test/.deps/tarray.Po create mode 100644 build/c++/test/.deps/tattr.Po create mode 100644 build/c++/test/.deps/tcompound.Po create mode 100644 build/c++/test/.deps/tdspl.Po create mode 100644 build/c++/test/.deps/testhdf5.Po create mode 100644 build/c++/test/.deps/tfile.Po create mode 100644 build/c++/test/.deps/tfilter.Po create mode 100644 build/c++/test/.deps/th5s.Po create mode 100644 build/c++/test/.deps/tlinks.Po create mode 100644 build/c++/test/.deps/tobject.Po create mode 100644 build/c++/test/.deps/trefer.Po create mode 100644 build/c++/test/.deps/ttypes.Po create mode 100644 build/c++/test/.deps/tvlstr.Po create mode 100644 build/c++/test/H5srcdir_str.h create mode 100644 build/c++/test/Makefile create mode 100644 build/config.log create mode 100755 build/config.lt create mode 100755 build/config.status create mode 100644 build/config/stamp1 create mode 100644 build/config/stamp2 create mode 100644 build/examples/Makefile create mode 100644 build/examples/run-c-ex.sh create mode 100644 build/examples/testh5cc.sh create mode 100644 build/fortran/Makefile create mode 100644 build/fortran/examples/Makefile create mode 100644 build/fortran/examples/run-fortran-ex.sh create mode 100644 build/fortran/examples/testh5fc.sh create mode 100644 build/fortran/src/.deps/H5Af.Plo create mode 100644 build/fortran/src/.deps/H5Df.Plo create mode 100644 build/fortran/src/.deps/H5Ef.Plo create mode 100644 build/fortran/src/.deps/H5FDmpiof.Plo create mode 100644 build/fortran/src/.deps/H5Ff.Plo create mode 100644 build/fortran/src/.deps/H5Gf.Plo create mode 100644 build/fortran/src/.deps/H5If.Plo create mode 100644 build/fortran/src/.deps/H5Lf.Plo create mode 100644 build/fortran/src/.deps/H5Of.Plo create mode 100644 build/fortran/src/.deps/H5Pf.Plo create mode 100644 build/fortran/src/.deps/H5Rf.Plo create mode 100644 build/fortran/src/.deps/H5Sf.Plo create mode 100644 build/fortran/src/.deps/H5Tf.Plo create mode 100644 build/fortran/src/.deps/H5Zf.Plo create mode 100644 build/fortran/src/.deps/H5_f.Plo create mode 100644 build/fortran/src/.deps/H5f90kit.Plo create mode 100644 build/fortran/src/.deps/H5match_types.Po create mode 100644 build/fortran/src/Makefile create mode 100644 build/fortran/src/h5fc create mode 100644 build/fortran/test/.deps/t.Plo create mode 100644 build/fortran/test/Makefile create mode 100644 build/fortran/testpar/Makefile create mode 100644 build/hl/Makefile create mode 100644 build/hl/c++/Makefile create mode 100644 build/hl/c++/examples/Makefile create mode 100644 build/hl/c++/examples/run-hlc++-ex.sh create mode 100644 build/hl/c++/src/.deps/H5PacketTable.Plo create mode 100644 build/hl/c++/src/Makefile create mode 100644 build/hl/c++/test/.deps/ptableTest.Po create mode 100644 build/hl/c++/test/Makefile create mode 100644 build/hl/examples/Makefile create mode 100644 build/hl/examples/run-hlc-ex.sh create mode 100644 build/hl/fortran/Makefile create mode 100644 build/hl/fortran/examples/Makefile create mode 100644 build/hl/fortran/examples/run-hlfortran-ex.sh create mode 100644 build/hl/fortran/src/.deps/H5DSfc.Plo create mode 100644 build/hl/fortran/src/.deps/H5IMcc.Plo create mode 100644 build/hl/fortran/src/.deps/H5IMfc.Plo create mode 100644 build/hl/fortran/src/.deps/H5LTfc.Plo create mode 100644 build/hl/fortran/src/.deps/H5TBfc.Plo create mode 100644 build/hl/fortran/src/Makefile create mode 100644 build/hl/fortran/test/Makefile create mode 100644 build/hl/src/.deps/H5DO.Plo create mode 100644 build/hl/src/.deps/H5DS.Plo create mode 100644 build/hl/src/.deps/H5IM.Plo create mode 100644 build/hl/src/.deps/H5LT.Plo create mode 100644 build/hl/src/.deps/H5LTanalyze.Plo create mode 100644 build/hl/src/.deps/H5LTparse.Plo create mode 100644 build/hl/src/.deps/H5PT.Plo create mode 100644 build/hl/src/.deps/H5TB.Plo create mode 100644 build/hl/src/.libs/H5DO.o create mode 100644 build/hl/src/.libs/H5DS.o create mode 100644 build/hl/src/.libs/H5IM.o create mode 100644 build/hl/src/.libs/H5LT.o create mode 100644 build/hl/src/.libs/H5LTanalyze.o create mode 100644 build/hl/src/.libs/H5LTparse.o create mode 100644 build/hl/src/.libs/H5PT.o create mode 100644 build/hl/src/.libs/H5TB.o create mode 100644 build/hl/src/.libs/libhdf5_hl.a create mode 120000 build/hl/src/.libs/libhdf5_hl.la create mode 100644 build/hl/src/.libs/libhdf5_hl.lai create mode 120000 build/hl/src/.libs/libhdf5_hl.so create mode 120000 build/hl/src/.libs/libhdf5_hl.so.10 create mode 100755 build/hl/src/.libs/libhdf5_hl.so.10.2.2 create mode 100644 build/hl/src/H5DO.lo create mode 100644 build/hl/src/H5DO.o create mode 100644 build/hl/src/H5DS.lo create mode 100644 build/hl/src/H5DS.o create mode 100644 build/hl/src/H5IM.lo create mode 100644 build/hl/src/H5IM.o create mode 100644 build/hl/src/H5LT.lo create mode 100644 build/hl/src/H5LT.o create mode 100644 build/hl/src/H5LTanalyze.lo create mode 100644 build/hl/src/H5LTanalyze.o create mode 100644 build/hl/src/H5LTparse.lo create mode 100644 build/hl/src/H5LTparse.o create mode 100644 build/hl/src/H5PT.lo create mode 100644 build/hl/src/H5PT.o create mode 100644 build/hl/src/H5TB.lo create mode 100644 build/hl/src/H5TB.o create mode 100644 build/hl/src/Makefile create mode 100644 build/hl/src/libhdf5_hl.la create mode 100644 build/hl/test/.deps/gen_test_ds.Po create mode 100644 build/hl/test/.deps/test_ds.Po create mode 100644 build/hl/test/.deps/test_dset_opt.Po create mode 100644 build/hl/test/.deps/test_file_image.Po create mode 100644 build/hl/test/.deps/test_image.Po create mode 100644 build/hl/test/.deps/test_lite.Po create mode 100644 build/hl/test/.deps/test_packet.Po create mode 100644 build/hl/test/.deps/test_packet_vlen.Po create mode 100644 build/hl/test/.deps/test_table.Po create mode 100755 build/hl/test/.libs/lt-test_ds create mode 100755 build/hl/test/.libs/lt-test_dset_opt create mode 100755 build/hl/test/.libs/lt-test_file_image create mode 100755 build/hl/test/.libs/lt-test_image create mode 100755 build/hl/test/.libs/lt-test_lite create mode 100755 build/hl/test/.libs/lt-test_packet create mode 100755 build/hl/test/.libs/lt-test_table create mode 100755 build/hl/test/.libs/test_ds create mode 100755 build/hl/test/.libs/test_dset_opt create mode 100755 build/hl/test/.libs/test_file_image create mode 100755 build/hl/test/.libs/test_image create mode 100755 build/hl/test/.libs/test_lite create mode 100755 build/hl/test/.libs/test_packet create mode 100755 build/hl/test/.libs/test_table create mode 100644 build/hl/test/H5srcdir_str.h create mode 100644 build/hl/test/Makefile create mode 100644 build/hl/test/combine_tables1.h5 create mode 100644 build/hl/test/combine_tables2.h5 create mode 100644 build/hl/test/test_dectris.h5 create mode 100644 build/hl/test/test_detach.h5 create mode 100755 build/hl/test/test_ds create mode 100644 build/hl/test/test_ds.chkexe create mode 100644 build/hl/test/test_ds.chklog create mode 100644 build/hl/test/test_ds.o create mode 100644 build/hl/test/test_ds1.h5 create mode 100644 build/hl/test/test_ds10.h5 create mode 100644 build/hl/test/test_ds2.h5 create mode 100644 build/hl/test/test_ds3.h5 create mode 100644 build/hl/test/test_ds4.h5 create mode 100644 build/hl/test/test_ds5.h5 create mode 100644 build/hl/test/test_ds6.h5 create mode 100644 build/hl/test/test_ds7.h5 create mode 100644 build/hl/test/test_ds8.h5 create mode 100644 build/hl/test/test_ds9.h5 create mode 100755 build/hl/test/test_dset_opt create mode 100644 build/hl/test/test_dset_opt.chkexe create mode 100644 build/hl/test/test_dset_opt.chklog create mode 100644 build/hl/test/test_dset_opt.o create mode 100755 build/hl/test/test_file_image create mode 100644 build/hl/test/test_file_image.chkexe create mode 100644 build/hl/test/test_file_image.chklog create mode 100644 build/hl/test/test_file_image.o create mode 100755 build/hl/test/test_image create mode 100644 build/hl/test/test_image.chkexe create mode 100644 build/hl/test/test_image.chklog create mode 100644 build/hl/test/test_image.o create mode 100644 build/hl/test/test_image1.h5 create mode 100644 build/hl/test/test_image2.h5 create mode 100644 build/hl/test/test_image3.h5 create mode 100755 build/hl/test/test_lite create mode 100644 build/hl/test/test_lite.chkexe create mode 100644 build/hl/test/test_lite.chklog create mode 100644 build/hl/test/test_lite.o create mode 100644 build/hl/test/test_lite1.h5 create mode 100644 build/hl/test/test_lite2.h5 create mode 100644 build/hl/test/test_lite3.h5 create mode 100644 build/hl/test/test_lite4.h5 create mode 100755 build/hl/test/test_packet create mode 100644 build/hl/test/test_packet.chkexe create mode 100644 build/hl/test/test_packet.chklog create mode 100644 build/hl/test/test_packet.o create mode 100644 build/hl/test/test_packet_compress.h5 create mode 100644 build/hl/test/test_packet_table.h5 create mode 100644 build/hl/test/test_packet_table_vlen.h5 create mode 100644 build/hl/test/test_packet_vlen.o create mode 100755 build/hl/test/test_table create mode 100644 build/hl/test/test_table.chkexe create mode 100644 build/hl/test/test_table.chklog create mode 100644 build/hl/test/test_table.h5 create mode 100644 build/hl/test/test_table.o create mode 100644 build/hl/test/testfl_packet_table_vlen.h5 create mode 100644 build/hl/tools/Makefile create mode 100644 build/hl/tools/gif2h5/.deps/decompress.Po create mode 100644 build/hl/tools/gif2h5/.deps/gif2hdf.Po create mode 100644 build/hl/tools/gif2h5/.deps/gif2mem.Po create mode 100644 build/hl/tools/gif2h5/.deps/gifread.Po create mode 100644 build/hl/tools/gif2h5/.deps/h52gifgentst.Po create mode 100644 build/hl/tools/gif2h5/.deps/hdf2gif.Po create mode 100644 build/hl/tools/gif2h5/.deps/hdfgifwr.Po create mode 100644 build/hl/tools/gif2h5/.deps/writehdf.Po create mode 100755 build/hl/tools/gif2h5/.libs/gif2h5 create mode 100755 build/hl/tools/gif2h5/.libs/h52gif create mode 100755 build/hl/tools/gif2h5/.libs/h52gifgentst create mode 100755 build/hl/tools/gif2h5/.libs/lt-gif2h5 create mode 100755 build/hl/tools/gif2h5/.libs/lt-h52gif create mode 100644 build/hl/tools/gif2h5/Makefile create mode 100644 build/hl/tools/gif2h5/decompress.o create mode 100755 build/hl/tools/gif2h5/gif2h5 create mode 100644 build/hl/tools/gif2h5/gif2hdf.o create mode 100644 build/hl/tools/gif2h5/gif2mem.o create mode 100644 build/hl/tools/gif2h5/gifread.o create mode 100755 build/hl/tools/gif2h5/h52gif create mode 100755 build/hl/tools/gif2h5/h52gifgentst create mode 100644 build/hl/tools/gif2h5/h52gifgentst.o create mode 100644 build/hl/tools/gif2h5/h52giftest.sh create mode 100644 build/hl/tools/gif2h5/h52giftest.sh.chkexe create mode 100644 build/hl/tools/gif2h5/h52giftest.sh.chklog create mode 100644 build/hl/tools/gif2h5/hdf2gif.o create mode 100644 build/hl/tools/gif2h5/hdfgifwr.o create mode 100644 build/hl/tools/gif2h5/image.gif create mode 100644 build/hl/tools/gif2h5/image1.gif create mode 100644 build/hl/tools/gif2h5/image1.h5 create mode 100644 build/hl/tools/gif2h5/image24.gif create mode 100644 build/hl/tools/gif2h5/writehdf.o create mode 100644 build/libtool create mode 100644 build/makecheck.out create mode 100644 build/src/.deps/H5.Plo create mode 100644 build/src/.deps/H5A.Plo create mode 100644 build/src/.deps/H5AC.Plo create mode 100644 build/src/.deps/H5Abtree2.Plo create mode 100644 build/src/.deps/H5Adense.Plo create mode 100644 build/src/.deps/H5Adeprec.Plo create mode 100644 build/src/.deps/H5Aint.Plo create mode 100644 build/src/.deps/H5Atest.Plo create mode 100644 build/src/.deps/H5B.Plo create mode 100644 build/src/.deps/H5B2.Plo create mode 100644 build/src/.deps/H5B2cache.Plo create mode 100644 build/src/.deps/H5B2dbg.Plo create mode 100644 build/src/.deps/H5B2hdr.Plo create mode 100644 build/src/.deps/H5B2int.Plo create mode 100644 build/src/.deps/H5B2stat.Plo create mode 100644 build/src/.deps/H5B2test.Plo create mode 100644 build/src/.deps/H5Bcache.Plo create mode 100644 build/src/.deps/H5Bdbg.Plo create mode 100644 build/src/.deps/H5C.Plo create mode 100644 build/src/.deps/H5CS.Plo create mode 100644 build/src/.deps/H5D.Plo create mode 100644 build/src/.deps/H5Dbtree.Plo create mode 100644 build/src/.deps/H5Dchunk.Plo create mode 100644 build/src/.deps/H5Dcompact.Plo create mode 100644 build/src/.deps/H5Dcontig.Plo create mode 100644 build/src/.deps/H5Ddbg.Plo create mode 100644 build/src/.deps/H5Ddeprec.Plo create mode 100644 build/src/.deps/H5Defl.Plo create mode 100644 build/src/.deps/H5Dfill.Plo create mode 100644 build/src/.deps/H5Dint.Plo create mode 100644 build/src/.deps/H5Dio.Plo create mode 100644 build/src/.deps/H5Dlayout.Plo create mode 100644 build/src/.deps/H5Dmpio.Plo create mode 100644 build/src/.deps/H5Doh.Plo create mode 100644 build/src/.deps/H5Dscatgath.Plo create mode 100644 build/src/.deps/H5Dselect.Plo create mode 100644 build/src/.deps/H5Dtest.Plo create mode 100644 build/src/.deps/H5E.Plo create mode 100644 build/src/.deps/H5Edeprec.Plo create mode 100644 build/src/.deps/H5Eint.Plo create mode 100644 build/src/.deps/H5F.Plo create mode 100644 build/src/.deps/H5FD.Plo create mode 100644 build/src/.deps/H5FDcore.Plo create mode 100644 build/src/.deps/H5FDdirect.Plo create mode 100644 build/src/.deps/H5FDfamily.Plo create mode 100644 build/src/.deps/H5FDint.Plo create mode 100644 build/src/.deps/H5FDlog.Plo create mode 100644 build/src/.deps/H5FDmpi.Plo create mode 100644 build/src/.deps/H5FDmpio.Plo create mode 100644 build/src/.deps/H5FDmulti.Plo create mode 100644 build/src/.deps/H5FDsec2.Plo create mode 100644 build/src/.deps/H5FDspace.Plo create mode 100644 build/src/.deps/H5FDstdio.Plo create mode 100644 build/src/.deps/H5FL.Plo create mode 100644 build/src/.deps/H5FO.Plo create mode 100644 build/src/.deps/H5FS.Plo create mode 100644 build/src/.deps/H5FScache.Plo create mode 100644 build/src/.deps/H5FSdbg.Plo create mode 100644 build/src/.deps/H5FSsection.Plo create mode 100644 build/src/.deps/H5FSstat.Plo create mode 100644 build/src/.deps/H5FStest.Plo create mode 100644 build/src/.deps/H5Faccum.Plo create mode 100644 build/src/.deps/H5Fcwfs.Plo create mode 100644 build/src/.deps/H5Fdbg.Plo create mode 100644 build/src/.deps/H5Fefc.Plo create mode 100644 build/src/.deps/H5Ffake.Plo create mode 100644 build/src/.deps/H5Fint.Plo create mode 100644 build/src/.deps/H5Fio.Plo create mode 100644 build/src/.deps/H5Fmount.Plo create mode 100644 build/src/.deps/H5Fmpi.Plo create mode 100644 build/src/.deps/H5Fquery.Plo create mode 100644 build/src/.deps/H5Fsfile.Plo create mode 100644 build/src/.deps/H5Fsuper.Plo create mode 100644 build/src/.deps/H5Fsuper_cache.Plo create mode 100644 build/src/.deps/H5Ftest.Plo create mode 100644 build/src/.deps/H5G.Plo create mode 100644 build/src/.deps/H5Gbtree2.Plo create mode 100644 build/src/.deps/H5Gcache.Plo create mode 100644 build/src/.deps/H5Gcompact.Plo create mode 100644 build/src/.deps/H5Gdense.Plo create mode 100644 build/src/.deps/H5Gdeprec.Plo create mode 100644 build/src/.deps/H5Gent.Plo create mode 100644 build/src/.deps/H5Gint.Plo create mode 100644 build/src/.deps/H5Glink.Plo create mode 100644 build/src/.deps/H5Gloc.Plo create mode 100644 build/src/.deps/H5Gname.Plo create mode 100644 build/src/.deps/H5Gnode.Plo create mode 100644 build/src/.deps/H5Gobj.Plo create mode 100644 build/src/.deps/H5Goh.Plo create mode 100644 build/src/.deps/H5Groot.Plo create mode 100644 build/src/.deps/H5Gstab.Plo create mode 100644 build/src/.deps/H5Gtest.Plo create mode 100644 build/src/.deps/H5Gtraverse.Plo create mode 100644 build/src/.deps/H5HF.Plo create mode 100644 build/src/.deps/H5HFbtree2.Plo create mode 100644 build/src/.deps/H5HFcache.Plo create mode 100644 build/src/.deps/H5HFdbg.Plo create mode 100644 build/src/.deps/H5HFdblock.Plo create mode 100644 build/src/.deps/H5HFdtable.Plo create mode 100644 build/src/.deps/H5HFhdr.Plo create mode 100644 build/src/.deps/H5HFhuge.Plo create mode 100644 build/src/.deps/H5HFiblock.Plo create mode 100644 build/src/.deps/H5HFiter.Plo create mode 100644 build/src/.deps/H5HFman.Plo create mode 100644 build/src/.deps/H5HFsection.Plo create mode 100644 build/src/.deps/H5HFspace.Plo create mode 100644 build/src/.deps/H5HFstat.Plo create mode 100644 build/src/.deps/H5HFtest.Plo create mode 100644 build/src/.deps/H5HFtiny.Plo create mode 100644 build/src/.deps/H5HG.Plo create mode 100644 build/src/.deps/H5HGcache.Plo create mode 100644 build/src/.deps/H5HGdbg.Plo create mode 100644 build/src/.deps/H5HGquery.Plo create mode 100644 build/src/.deps/H5HL.Plo create mode 100644 build/src/.deps/H5HLcache.Plo create mode 100644 build/src/.deps/H5HLdbg.Plo create mode 100644 build/src/.deps/H5HLint.Plo create mode 100644 build/src/.deps/H5HP.Plo create mode 100644 build/src/.deps/H5I.Plo create mode 100644 build/src/.deps/H5Itest.Plo create mode 100644 build/src/.deps/H5L.Plo create mode 100644 build/src/.deps/H5Lexternal.Plo create mode 100644 build/src/.deps/H5MF.Plo create mode 100644 build/src/.deps/H5MFaggr.Plo create mode 100644 build/src/.deps/H5MFdbg.Plo create mode 100644 build/src/.deps/H5MFsection.Plo create mode 100644 build/src/.deps/H5MM.Plo create mode 100644 build/src/.deps/H5MP.Plo create mode 100644 build/src/.deps/H5MPtest.Plo create mode 100644 build/src/.deps/H5O.Plo create mode 100644 build/src/.deps/H5Oainfo.Plo create mode 100644 build/src/.deps/H5Oalloc.Plo create mode 100644 build/src/.deps/H5Oattr.Plo create mode 100644 build/src/.deps/H5Oattribute.Plo create mode 100644 build/src/.deps/H5Obogus.Plo create mode 100644 build/src/.deps/H5Obtreek.Plo create mode 100644 build/src/.deps/H5Ocache.Plo create mode 100644 build/src/.deps/H5Ochunk.Plo create mode 100644 build/src/.deps/H5Ocont.Plo create mode 100644 build/src/.deps/H5Ocopy.Plo create mode 100644 build/src/.deps/H5Odbg.Plo create mode 100644 build/src/.deps/H5Odrvinfo.Plo create mode 100644 build/src/.deps/H5Odtype.Plo create mode 100644 build/src/.deps/H5Oefl.Plo create mode 100644 build/src/.deps/H5Ofill.Plo create mode 100644 build/src/.deps/H5Oginfo.Plo create mode 100644 build/src/.deps/H5Olayout.Plo create mode 100644 build/src/.deps/H5Olinfo.Plo create mode 100644 build/src/.deps/H5Olink.Plo create mode 100644 build/src/.deps/H5Omessage.Plo create mode 100644 build/src/.deps/H5Omtime.Plo create mode 100644 build/src/.deps/H5Oname.Plo create mode 100644 build/src/.deps/H5Onull.Plo create mode 100644 build/src/.deps/H5Opline.Plo create mode 100644 build/src/.deps/H5Orefcount.Plo create mode 100644 build/src/.deps/H5Osdspace.Plo create mode 100644 build/src/.deps/H5Oshared.Plo create mode 100644 build/src/.deps/H5Oshmesg.Plo create mode 100644 build/src/.deps/H5Ostab.Plo create mode 100644 build/src/.deps/H5Otest.Plo create mode 100644 build/src/.deps/H5Ounknown.Plo create mode 100644 build/src/.deps/H5P.Plo create mode 100644 build/src/.deps/H5PL.Plo create mode 100644 build/src/.deps/H5Pacpl.Plo create mode 100644 build/src/.deps/H5Pdapl.Plo create mode 100644 build/src/.deps/H5Pdcpl.Plo create mode 100644 build/src/.deps/H5Pdeprec.Plo create mode 100644 build/src/.deps/H5Pdxpl.Plo create mode 100644 build/src/.deps/H5Pfapl.Plo create mode 100644 build/src/.deps/H5Pfcpl.Plo create mode 100644 build/src/.deps/H5Pfmpl.Plo create mode 100644 build/src/.deps/H5Pgcpl.Plo create mode 100644 build/src/.deps/H5Pint.Plo create mode 100644 build/src/.deps/H5Plapl.Plo create mode 100644 build/src/.deps/H5Plcpl.Plo create mode 100644 build/src/.deps/H5Pocpl.Plo create mode 100644 build/src/.deps/H5Pocpypl.Plo create mode 100644 build/src/.deps/H5Pstrcpl.Plo create mode 100644 build/src/.deps/H5Ptest.Plo create mode 100644 build/src/.deps/H5R.Plo create mode 100644 build/src/.deps/H5RC.Plo create mode 100644 build/src/.deps/H5RS.Plo create mode 100644 build/src/.deps/H5Rdeprec.Plo create mode 100644 build/src/.deps/H5S.Plo create mode 100644 build/src/.deps/H5SL.Plo create mode 100644 build/src/.deps/H5SM.Plo create mode 100644 build/src/.deps/H5SMbtree2.Plo create mode 100644 build/src/.deps/H5SMcache.Plo create mode 100644 build/src/.deps/H5SMmessage.Plo create mode 100644 build/src/.deps/H5SMtest.Plo create mode 100644 build/src/.deps/H5ST.Plo create mode 100644 build/src/.deps/H5Sall.Plo create mode 100644 build/src/.deps/H5Sdbg.Plo create mode 100644 build/src/.deps/H5Shyper.Plo create mode 100644 build/src/.deps/H5Smpio.Plo create mode 100644 build/src/.deps/H5Snone.Plo create mode 100644 build/src/.deps/H5Spoint.Plo create mode 100644 build/src/.deps/H5Sselect.Plo create mode 100644 build/src/.deps/H5Stest.Plo create mode 100644 build/src/.deps/H5T.Plo create mode 100644 build/src/.deps/H5TS.Plo create mode 100644 build/src/.deps/H5Tarray.Plo create mode 100644 build/src/.deps/H5Tbit.Plo create mode 100644 build/src/.deps/H5Tcommit.Plo create mode 100644 build/src/.deps/H5Tcompound.Plo create mode 100644 build/src/.deps/H5Tconv.Plo create mode 100644 build/src/.deps/H5Tcset.Plo create mode 100644 build/src/.deps/H5Tdbg.Plo create mode 100644 build/src/.deps/H5Tdeprec.Plo create mode 100644 build/src/.deps/H5Tenum.Plo create mode 100644 build/src/.deps/H5Tfields.Plo create mode 100644 build/src/.deps/H5Tfixed.Plo create mode 100644 build/src/.deps/H5Tfloat.Plo create mode 100644 build/src/.deps/H5Tinit.Plo create mode 100644 build/src/.deps/H5Tnative.Plo create mode 100644 build/src/.deps/H5Toffset.Plo create mode 100644 build/src/.deps/H5Toh.Plo create mode 100644 build/src/.deps/H5Topaque.Plo create mode 100644 build/src/.deps/H5Torder.Plo create mode 100644 build/src/.deps/H5Tpad.Plo create mode 100644 build/src/.deps/H5Tprecis.Plo create mode 100644 build/src/.deps/H5Tstrpad.Plo create mode 100644 build/src/.deps/H5Tvisit.Plo create mode 100644 build/src/.deps/H5Tvlen.Plo create mode 100644 build/src/.deps/H5VM.Plo create mode 100644 build/src/.deps/H5WB.Plo create mode 100644 build/src/.deps/H5Z.Plo create mode 100644 build/src/.deps/H5Zdeflate.Plo create mode 100644 build/src/.deps/H5Zfletcher32.Plo create mode 100644 build/src/.deps/H5Znbit.Plo create mode 100644 build/src/.deps/H5Zscaleoffset.Plo create mode 100644 build/src/.deps/H5Zshuffle.Plo create mode 100644 build/src/.deps/H5Zszip.Plo create mode 100644 build/src/.deps/H5Ztrans.Plo create mode 100644 build/src/.deps/H5checksum.Plo create mode 100644 build/src/.deps/H5dbg.Plo create mode 100644 build/src/.deps/H5detect.Po create mode 100644 build/src/.deps/H5lib_settings.Plo create mode 100644 build/src/.deps/H5make_libsettings.Po create mode 100644 build/src/.deps/H5system.Plo create mode 100644 build/src/.deps/H5timer.Plo create mode 100644 build/src/.deps/H5trace.Plo create mode 100644 build/src/.libs/H5.o create mode 100644 build/src/.libs/H5A.o create mode 100644 build/src/.libs/H5AC.o create mode 100644 build/src/.libs/H5Abtree2.o create mode 100644 build/src/.libs/H5Adense.o create mode 100644 build/src/.libs/H5Adeprec.o create mode 100644 build/src/.libs/H5Aint.o create mode 100644 build/src/.libs/H5Atest.o create mode 100644 build/src/.libs/H5B.o create mode 100644 build/src/.libs/H5B2.o create mode 100644 build/src/.libs/H5B2cache.o create mode 100644 build/src/.libs/H5B2dbg.o create mode 100644 build/src/.libs/H5B2hdr.o create mode 100644 build/src/.libs/H5B2int.o create mode 100644 build/src/.libs/H5B2stat.o create mode 100644 build/src/.libs/H5B2test.o create mode 100644 build/src/.libs/H5Bcache.o create mode 100644 build/src/.libs/H5Bdbg.o create mode 100644 build/src/.libs/H5C.o create mode 100644 build/src/.libs/H5CS.o create mode 100644 build/src/.libs/H5D.o create mode 100644 build/src/.libs/H5Dbtree.o create mode 100644 build/src/.libs/H5Dchunk.o create mode 100644 build/src/.libs/H5Dcompact.o create mode 100644 build/src/.libs/H5Dcontig.o create mode 100644 build/src/.libs/H5Ddbg.o create mode 100644 build/src/.libs/H5Ddeprec.o create mode 100644 build/src/.libs/H5Defl.o create mode 100644 build/src/.libs/H5Dfill.o create mode 100644 build/src/.libs/H5Dint.o create mode 100644 build/src/.libs/H5Dio.o create mode 100644 build/src/.libs/H5Dlayout.o create mode 100644 build/src/.libs/H5Dmpio.o create mode 100644 build/src/.libs/H5Doh.o create mode 100644 build/src/.libs/H5Dscatgath.o create mode 100644 build/src/.libs/H5Dselect.o create mode 100644 build/src/.libs/H5Dtest.o create mode 100644 build/src/.libs/H5E.o create mode 100644 build/src/.libs/H5Edeprec.o create mode 100644 build/src/.libs/H5Eint.o create mode 100644 build/src/.libs/H5F.o create mode 100644 build/src/.libs/H5FD.o create mode 100644 build/src/.libs/H5FDcore.o create mode 100644 build/src/.libs/H5FDdirect.o create mode 100644 build/src/.libs/H5FDfamily.o create mode 100644 build/src/.libs/H5FDint.o create mode 100644 build/src/.libs/H5FDlog.o create mode 100644 build/src/.libs/H5FDmpi.o create mode 100644 build/src/.libs/H5FDmpio.o create mode 100644 build/src/.libs/H5FDmulti.o create mode 100644 build/src/.libs/H5FDsec2.o create mode 100644 build/src/.libs/H5FDspace.o create mode 100644 build/src/.libs/H5FDstdio.o create mode 100644 build/src/.libs/H5FL.o create mode 100644 build/src/.libs/H5FO.o create mode 100644 build/src/.libs/H5FS.o create mode 100644 build/src/.libs/H5FScache.o create mode 100644 build/src/.libs/H5FSdbg.o create mode 100644 build/src/.libs/H5FSsection.o create mode 100644 build/src/.libs/H5FSstat.o create mode 100644 build/src/.libs/H5FStest.o create mode 100644 build/src/.libs/H5Faccum.o create mode 100644 build/src/.libs/H5Fcwfs.o create mode 100644 build/src/.libs/H5Fdbg.o create mode 100644 build/src/.libs/H5Fefc.o create mode 100644 build/src/.libs/H5Ffake.o create mode 100644 build/src/.libs/H5Fint.o create mode 100644 build/src/.libs/H5Fio.o create mode 100644 build/src/.libs/H5Fmount.o create mode 100644 build/src/.libs/H5Fmpi.o create mode 100644 build/src/.libs/H5Fquery.o create mode 100644 build/src/.libs/H5Fsfile.o create mode 100644 build/src/.libs/H5Fsuper.o create mode 100644 build/src/.libs/H5Fsuper_cache.o create mode 100644 build/src/.libs/H5Ftest.o create mode 100644 build/src/.libs/H5G.o create mode 100644 build/src/.libs/H5Gbtree2.o create mode 100644 build/src/.libs/H5Gcache.o create mode 100644 build/src/.libs/H5Gcompact.o create mode 100644 build/src/.libs/H5Gdense.o create mode 100644 build/src/.libs/H5Gdeprec.o create mode 100644 build/src/.libs/H5Gent.o create mode 100644 build/src/.libs/H5Gint.o create mode 100644 build/src/.libs/H5Glink.o create mode 100644 build/src/.libs/H5Gloc.o create mode 100644 build/src/.libs/H5Gname.o create mode 100644 build/src/.libs/H5Gnode.o create mode 100644 build/src/.libs/H5Gobj.o create mode 100644 build/src/.libs/H5Goh.o create mode 100644 build/src/.libs/H5Groot.o create mode 100644 build/src/.libs/H5Gstab.o create mode 100644 build/src/.libs/H5Gtest.o create mode 100644 build/src/.libs/H5Gtraverse.o create mode 100644 build/src/.libs/H5HF.o create mode 100644 build/src/.libs/H5HFbtree2.o create mode 100644 build/src/.libs/H5HFcache.o create mode 100644 build/src/.libs/H5HFdbg.o create mode 100644 build/src/.libs/H5HFdblock.o create mode 100644 build/src/.libs/H5HFdtable.o create mode 100644 build/src/.libs/H5HFhdr.o create mode 100644 build/src/.libs/H5HFhuge.o create mode 100644 build/src/.libs/H5HFiblock.o create mode 100644 build/src/.libs/H5HFiter.o create mode 100644 build/src/.libs/H5HFman.o create mode 100644 build/src/.libs/H5HFsection.o create mode 100644 build/src/.libs/H5HFspace.o create mode 100644 build/src/.libs/H5HFstat.o create mode 100644 build/src/.libs/H5HFtest.o create mode 100644 build/src/.libs/H5HFtiny.o create mode 100644 build/src/.libs/H5HG.o create mode 100644 build/src/.libs/H5HGcache.o create mode 100644 build/src/.libs/H5HGdbg.o create mode 100644 build/src/.libs/H5HGquery.o create mode 100644 build/src/.libs/H5HL.o create mode 100644 build/src/.libs/H5HLcache.o create mode 100644 build/src/.libs/H5HLdbg.o create mode 100644 build/src/.libs/H5HLint.o create mode 100644 build/src/.libs/H5HP.o create mode 100644 build/src/.libs/H5I.o create mode 100644 build/src/.libs/H5Itest.o create mode 100644 build/src/.libs/H5L.o create mode 100644 build/src/.libs/H5Lexternal.o create mode 100644 build/src/.libs/H5MF.o create mode 100644 build/src/.libs/H5MFaggr.o create mode 100644 build/src/.libs/H5MFdbg.o create mode 100644 build/src/.libs/H5MFsection.o create mode 100644 build/src/.libs/H5MM.o create mode 100644 build/src/.libs/H5MP.o create mode 100644 build/src/.libs/H5MPtest.o create mode 100644 build/src/.libs/H5O.o create mode 100644 build/src/.libs/H5Oainfo.o create mode 100644 build/src/.libs/H5Oalloc.o create mode 100644 build/src/.libs/H5Oattr.o create mode 100644 build/src/.libs/H5Oattribute.o create mode 100644 build/src/.libs/H5Obogus.o create mode 100644 build/src/.libs/H5Obtreek.o create mode 100644 build/src/.libs/H5Ocache.o create mode 100644 build/src/.libs/H5Ochunk.o create mode 100644 build/src/.libs/H5Ocont.o create mode 100644 build/src/.libs/H5Ocopy.o create mode 100644 build/src/.libs/H5Odbg.o create mode 100644 build/src/.libs/H5Odrvinfo.o create mode 100644 build/src/.libs/H5Odtype.o create mode 100644 build/src/.libs/H5Oefl.o create mode 100644 build/src/.libs/H5Ofill.o create mode 100644 build/src/.libs/H5Oginfo.o create mode 100644 build/src/.libs/H5Olayout.o create mode 100644 build/src/.libs/H5Olinfo.o create mode 100644 build/src/.libs/H5Olink.o create mode 100644 build/src/.libs/H5Omessage.o create mode 100644 build/src/.libs/H5Omtime.o create mode 100644 build/src/.libs/H5Oname.o create mode 100644 build/src/.libs/H5Onull.o create mode 100644 build/src/.libs/H5Opline.o create mode 100644 build/src/.libs/H5Orefcount.o create mode 100644 build/src/.libs/H5Osdspace.o create mode 100644 build/src/.libs/H5Oshared.o create mode 100644 build/src/.libs/H5Oshmesg.o create mode 100644 build/src/.libs/H5Ostab.o create mode 100644 build/src/.libs/H5Otest.o create mode 100644 build/src/.libs/H5Ounknown.o create mode 100644 build/src/.libs/H5P.o create mode 100644 build/src/.libs/H5PL.o create mode 100644 build/src/.libs/H5Pacpl.o create mode 100644 build/src/.libs/H5Pdapl.o create mode 100644 build/src/.libs/H5Pdcpl.o create mode 100644 build/src/.libs/H5Pdeprec.o create mode 100644 build/src/.libs/H5Pdxpl.o create mode 100644 build/src/.libs/H5Pfapl.o create mode 100644 build/src/.libs/H5Pfcpl.o create mode 100644 build/src/.libs/H5Pfmpl.o create mode 100644 build/src/.libs/H5Pgcpl.o create mode 100644 build/src/.libs/H5Pint.o create mode 100644 build/src/.libs/H5Plapl.o create mode 100644 build/src/.libs/H5Plcpl.o create mode 100644 build/src/.libs/H5Pocpl.o create mode 100644 build/src/.libs/H5Pocpypl.o create mode 100644 build/src/.libs/H5Pstrcpl.o create mode 100644 build/src/.libs/H5Ptest.o create mode 100644 build/src/.libs/H5R.o create mode 100644 build/src/.libs/H5RC.o create mode 100644 build/src/.libs/H5RS.o create mode 100644 build/src/.libs/H5Rdeprec.o create mode 100644 build/src/.libs/H5S.o create mode 100644 build/src/.libs/H5SL.o create mode 100644 build/src/.libs/H5SM.o create mode 100644 build/src/.libs/H5SMbtree2.o create mode 100644 build/src/.libs/H5SMcache.o create mode 100644 build/src/.libs/H5SMmessage.o create mode 100644 build/src/.libs/H5SMtest.o create mode 100644 build/src/.libs/H5ST.o create mode 100644 build/src/.libs/H5Sall.o create mode 100644 build/src/.libs/H5Sdbg.o create mode 100644 build/src/.libs/H5Shyper.o create mode 100644 build/src/.libs/H5Smpio.o create mode 100644 build/src/.libs/H5Snone.o create mode 100644 build/src/.libs/H5Spoint.o create mode 100644 build/src/.libs/H5Sselect.o create mode 100644 build/src/.libs/H5Stest.o create mode 100644 build/src/.libs/H5T.o create mode 100644 build/src/.libs/H5TS.o create mode 100644 build/src/.libs/H5Tarray.o create mode 100644 build/src/.libs/H5Tbit.o create mode 100644 build/src/.libs/H5Tcommit.o create mode 100644 build/src/.libs/H5Tcompound.o create mode 100644 build/src/.libs/H5Tconv.o create mode 100644 build/src/.libs/H5Tcset.o create mode 100644 build/src/.libs/H5Tdbg.o create mode 100644 build/src/.libs/H5Tdeprec.o create mode 100644 build/src/.libs/H5Tenum.o create mode 100644 build/src/.libs/H5Tfields.o create mode 100644 build/src/.libs/H5Tfixed.o create mode 100644 build/src/.libs/H5Tfloat.o create mode 100644 build/src/.libs/H5Tinit.o create mode 100644 build/src/.libs/H5Tnative.o create mode 100644 build/src/.libs/H5Toffset.o create mode 100644 build/src/.libs/H5Toh.o create mode 100644 build/src/.libs/H5Topaque.o create mode 100644 build/src/.libs/H5Torder.o create mode 100644 build/src/.libs/H5Tpad.o create mode 100644 build/src/.libs/H5Tprecis.o create mode 100644 build/src/.libs/H5Tstrpad.o create mode 100644 build/src/.libs/H5Tvisit.o create mode 100644 build/src/.libs/H5Tvlen.o create mode 100644 build/src/.libs/H5VM.o create mode 100644 build/src/.libs/H5WB.o create mode 100644 build/src/.libs/H5Z.o create mode 100644 build/src/.libs/H5Zdeflate.o create mode 100644 build/src/.libs/H5Zfletcher32.o create mode 100644 build/src/.libs/H5Znbit.o create mode 100644 build/src/.libs/H5Zscaleoffset.o create mode 100644 build/src/.libs/H5Zshuffle.o create mode 100644 build/src/.libs/H5Zszip.o create mode 100644 build/src/.libs/H5Ztrans.o create mode 100644 build/src/.libs/H5checksum.o create mode 100644 build/src/.libs/H5dbg.o create mode 100644 build/src/.libs/H5lib_settings.o create mode 100644 build/src/.libs/H5system.o create mode 100644 build/src/.libs/H5timer.o create mode 100644 build/src/.libs/H5trace.o create mode 100644 build/src/.libs/libhdf5.a create mode 120000 build/src/.libs/libhdf5.la create mode 100644 build/src/.libs/libhdf5.lai create mode 120000 build/src/.libs/libhdf5.so create mode 120000 build/src/.libs/libhdf5.so.10 create mode 100755 build/src/.libs/libhdf5.so.10.3.2 create mode 100644 build/src/H5.lo create mode 100644 build/src/H5.o create mode 100644 build/src/H5A.lo create mode 100644 build/src/H5A.o create mode 100644 build/src/H5AC.lo create mode 100644 build/src/H5AC.o create mode 100644 build/src/H5Abtree2.lo create mode 100644 build/src/H5Abtree2.o create mode 100644 build/src/H5Adense.lo create mode 100644 build/src/H5Adense.o create mode 100644 build/src/H5Adeprec.lo create mode 100644 build/src/H5Adeprec.o create mode 100644 build/src/H5Aint.lo create mode 100644 build/src/H5Aint.o create mode 100644 build/src/H5Atest.lo create mode 100644 build/src/H5Atest.o create mode 100644 build/src/H5B.lo create mode 100644 build/src/H5B.o create mode 100644 build/src/H5B2.lo create mode 100644 build/src/H5B2.o create mode 100644 build/src/H5B2cache.lo create mode 100644 build/src/H5B2cache.o create mode 100644 build/src/H5B2dbg.lo create mode 100644 build/src/H5B2dbg.o create mode 100644 build/src/H5B2hdr.lo create mode 100644 build/src/H5B2hdr.o create mode 100644 build/src/H5B2int.lo create mode 100644 build/src/H5B2int.o create mode 100644 build/src/H5B2stat.lo create mode 100644 build/src/H5B2stat.o create mode 100644 build/src/H5B2test.lo create mode 100644 build/src/H5B2test.o create mode 100644 build/src/H5Bcache.lo create mode 100644 build/src/H5Bcache.o create mode 100644 build/src/H5Bdbg.lo create mode 100644 build/src/H5Bdbg.o create mode 100644 build/src/H5C.lo create mode 100644 build/src/H5C.o create mode 100644 build/src/H5CS.lo create mode 100644 build/src/H5CS.o create mode 100644 build/src/H5D.lo create mode 100644 build/src/H5D.o create mode 100644 build/src/H5Dbtree.lo create mode 100644 build/src/H5Dbtree.o create mode 100644 build/src/H5Dchunk.lo create mode 100644 build/src/H5Dchunk.o create mode 100644 build/src/H5Dcompact.lo create mode 100644 build/src/H5Dcompact.o create mode 100644 build/src/H5Dcontig.lo create mode 100644 build/src/H5Dcontig.o create mode 100644 build/src/H5Ddbg.lo create mode 100644 build/src/H5Ddbg.o create mode 100644 build/src/H5Ddeprec.lo create mode 100644 build/src/H5Ddeprec.o create mode 100644 build/src/H5Defl.lo create mode 100644 build/src/H5Defl.o create mode 100644 build/src/H5Dfill.lo create mode 100644 build/src/H5Dfill.o create mode 100644 build/src/H5Dint.lo create mode 100644 build/src/H5Dint.o create mode 100644 build/src/H5Dio.lo create mode 100644 build/src/H5Dio.o create mode 100644 build/src/H5Dlayout.lo create mode 100644 build/src/H5Dlayout.o create mode 100644 build/src/H5Dmpio.lo create mode 100644 build/src/H5Dmpio.o create mode 100644 build/src/H5Doh.lo create mode 100644 build/src/H5Doh.o create mode 100644 build/src/H5Dscatgath.lo create mode 100644 build/src/H5Dscatgath.o create mode 100644 build/src/H5Dselect.lo create mode 100644 build/src/H5Dselect.o create mode 100644 build/src/H5Dtest.lo create mode 100644 build/src/H5Dtest.o create mode 100644 build/src/H5E.lo create mode 100644 build/src/H5E.o create mode 100644 build/src/H5Edeprec.lo create mode 100644 build/src/H5Edeprec.o create mode 100644 build/src/H5Eint.lo create mode 100644 build/src/H5Eint.o create mode 100644 build/src/H5F.lo create mode 100644 build/src/H5F.o create mode 100644 build/src/H5FD.lo create mode 100644 build/src/H5FD.o create mode 100644 build/src/H5FDcore.lo create mode 100644 build/src/H5FDcore.o create mode 100644 build/src/H5FDdirect.lo create mode 100644 build/src/H5FDdirect.o create mode 100644 build/src/H5FDfamily.lo create mode 100644 build/src/H5FDfamily.o create mode 100644 build/src/H5FDint.lo create mode 100644 build/src/H5FDint.o create mode 100644 build/src/H5FDlog.lo create mode 100644 build/src/H5FDlog.o create mode 100644 build/src/H5FDmpi.lo create mode 100644 build/src/H5FDmpi.o create mode 100644 build/src/H5FDmpio.lo create mode 100644 build/src/H5FDmpio.o create mode 100644 build/src/H5FDmulti.lo create mode 100644 build/src/H5FDmulti.o create mode 100644 build/src/H5FDsec2.lo create mode 100644 build/src/H5FDsec2.o create mode 100644 build/src/H5FDspace.lo create mode 100644 build/src/H5FDspace.o create mode 100644 build/src/H5FDstdio.lo create mode 100644 build/src/H5FDstdio.o create mode 100644 build/src/H5FL.lo create mode 100644 build/src/H5FL.o create mode 100644 build/src/H5FO.lo create mode 100644 build/src/H5FO.o create mode 100644 build/src/H5FS.lo create mode 100644 build/src/H5FS.o create mode 100644 build/src/H5FScache.lo create mode 100644 build/src/H5FScache.o create mode 100644 build/src/H5FSdbg.lo create mode 100644 build/src/H5FSdbg.o create mode 100644 build/src/H5FSsection.lo create mode 100644 build/src/H5FSsection.o create mode 100644 build/src/H5FSstat.lo create mode 100644 build/src/H5FSstat.o create mode 100644 build/src/H5FStest.lo create mode 100644 build/src/H5FStest.o create mode 100644 build/src/H5Faccum.lo create mode 100644 build/src/H5Faccum.o create mode 100644 build/src/H5Fcwfs.lo create mode 100644 build/src/H5Fcwfs.o create mode 100644 build/src/H5Fdbg.lo create mode 100644 build/src/H5Fdbg.o create mode 100644 build/src/H5Fefc.lo create mode 100644 build/src/H5Fefc.o create mode 100644 build/src/H5Ffake.lo create mode 100644 build/src/H5Ffake.o create mode 100644 build/src/H5Fint.lo create mode 100644 build/src/H5Fint.o create mode 100644 build/src/H5Fio.lo create mode 100644 build/src/H5Fio.o create mode 100644 build/src/H5Fmount.lo create mode 100644 build/src/H5Fmount.o create mode 100644 build/src/H5Fmpi.lo create mode 100644 build/src/H5Fmpi.o create mode 100644 build/src/H5Fquery.lo create mode 100644 build/src/H5Fquery.o create mode 100644 build/src/H5Fsfile.lo create mode 100644 build/src/H5Fsfile.o create mode 100644 build/src/H5Fsuper.lo create mode 100644 build/src/H5Fsuper.o create mode 100644 build/src/H5Fsuper_cache.lo create mode 100644 build/src/H5Fsuper_cache.o create mode 100644 build/src/H5Ftest.lo create mode 100644 build/src/H5Ftest.o create mode 100644 build/src/H5G.lo create mode 100644 build/src/H5G.o create mode 100644 build/src/H5Gbtree2.lo create mode 100644 build/src/H5Gbtree2.o create mode 100644 build/src/H5Gcache.lo create mode 100644 build/src/H5Gcache.o create mode 100644 build/src/H5Gcompact.lo create mode 100644 build/src/H5Gcompact.o create mode 100644 build/src/H5Gdense.lo create mode 100644 build/src/H5Gdense.o create mode 100644 build/src/H5Gdeprec.lo create mode 100644 build/src/H5Gdeprec.o create mode 100644 build/src/H5Gent.lo create mode 100644 build/src/H5Gent.o create mode 100644 build/src/H5Gint.lo create mode 100644 build/src/H5Gint.o create mode 100644 build/src/H5Glink.lo create mode 100644 build/src/H5Glink.o create mode 100644 build/src/H5Gloc.lo create mode 100644 build/src/H5Gloc.o create mode 100644 build/src/H5Gname.lo create mode 100644 build/src/H5Gname.o create mode 100644 build/src/H5Gnode.lo create mode 100644 build/src/H5Gnode.o create mode 100644 build/src/H5Gobj.lo create mode 100644 build/src/H5Gobj.o create mode 100644 build/src/H5Goh.lo create mode 100644 build/src/H5Goh.o create mode 100644 build/src/H5Groot.lo create mode 100644 build/src/H5Groot.o create mode 100644 build/src/H5Gstab.lo create mode 100644 build/src/H5Gstab.o create mode 100644 build/src/H5Gtest.lo create mode 100644 build/src/H5Gtest.o create mode 100644 build/src/H5Gtraverse.lo create mode 100644 build/src/H5Gtraverse.o create mode 100644 build/src/H5HF.lo create mode 100644 build/src/H5HF.o create mode 100644 build/src/H5HFbtree2.lo create mode 100644 build/src/H5HFbtree2.o create mode 100644 build/src/H5HFcache.lo create mode 100644 build/src/H5HFcache.o create mode 100644 build/src/H5HFdbg.lo create mode 100644 build/src/H5HFdbg.o create mode 100644 build/src/H5HFdblock.lo create mode 100644 build/src/H5HFdblock.o create mode 100644 build/src/H5HFdtable.lo create mode 100644 build/src/H5HFdtable.o create mode 100644 build/src/H5HFhdr.lo create mode 100644 build/src/H5HFhdr.o create mode 100644 build/src/H5HFhuge.lo create mode 100644 build/src/H5HFhuge.o create mode 100644 build/src/H5HFiblock.lo create mode 100644 build/src/H5HFiblock.o create mode 100644 build/src/H5HFiter.lo create mode 100644 build/src/H5HFiter.o create mode 100644 build/src/H5HFman.lo create mode 100644 build/src/H5HFman.o create mode 100644 build/src/H5HFsection.lo create mode 100644 build/src/H5HFsection.o create mode 100644 build/src/H5HFspace.lo create mode 100644 build/src/H5HFspace.o create mode 100644 build/src/H5HFstat.lo create mode 100644 build/src/H5HFstat.o create mode 100644 build/src/H5HFtest.lo create mode 100644 build/src/H5HFtest.o create mode 100644 build/src/H5HFtiny.lo create mode 100644 build/src/H5HFtiny.o create mode 100644 build/src/H5HG.lo create mode 100644 build/src/H5HG.o create mode 100644 build/src/H5HGcache.lo create mode 100644 build/src/H5HGcache.o create mode 100644 build/src/H5HGdbg.lo create mode 100644 build/src/H5HGdbg.o create mode 100644 build/src/H5HGquery.lo create mode 100644 build/src/H5HGquery.o create mode 100644 build/src/H5HL.lo create mode 100644 build/src/H5HL.o create mode 100644 build/src/H5HLcache.lo create mode 100644 build/src/H5HLcache.o create mode 100644 build/src/H5HLdbg.lo create mode 100644 build/src/H5HLdbg.o create mode 100644 build/src/H5HLint.lo create mode 100644 build/src/H5HLint.o create mode 100644 build/src/H5HP.lo create mode 100644 build/src/H5HP.o create mode 100644 build/src/H5I.lo create mode 100644 build/src/H5I.o create mode 100644 build/src/H5Itest.lo create mode 100644 build/src/H5Itest.o create mode 100644 build/src/H5L.lo create mode 100644 build/src/H5L.o create mode 100644 build/src/H5Lexternal.lo create mode 100644 build/src/H5Lexternal.o create mode 100644 build/src/H5MF.lo create mode 100644 build/src/H5MF.o create mode 100644 build/src/H5MFaggr.lo create mode 100644 build/src/H5MFaggr.o create mode 100644 build/src/H5MFdbg.lo create mode 100644 build/src/H5MFdbg.o create mode 100644 build/src/H5MFsection.lo create mode 100644 build/src/H5MFsection.o create mode 100644 build/src/H5MM.lo create mode 100644 build/src/H5MM.o create mode 100644 build/src/H5MP.lo create mode 100644 build/src/H5MP.o create mode 100644 build/src/H5MPtest.lo create mode 100644 build/src/H5MPtest.o create mode 100644 build/src/H5O.lo create mode 100644 build/src/H5O.o create mode 100644 build/src/H5Oainfo.lo create mode 100644 build/src/H5Oainfo.o create mode 100644 build/src/H5Oalloc.lo create mode 100644 build/src/H5Oalloc.o create mode 100644 build/src/H5Oattr.lo create mode 100644 build/src/H5Oattr.o create mode 100644 build/src/H5Oattribute.lo create mode 100644 build/src/H5Oattribute.o create mode 100644 build/src/H5Obogus.lo create mode 100644 build/src/H5Obogus.o create mode 100644 build/src/H5Obtreek.lo create mode 100644 build/src/H5Obtreek.o create mode 100644 build/src/H5Ocache.lo create mode 100644 build/src/H5Ocache.o create mode 100644 build/src/H5Ochunk.lo create mode 100644 build/src/H5Ochunk.o create mode 100644 build/src/H5Ocont.lo create mode 100644 build/src/H5Ocont.o create mode 100644 build/src/H5Ocopy.lo create mode 100644 build/src/H5Ocopy.o create mode 100644 build/src/H5Odbg.lo create mode 100644 build/src/H5Odbg.o create mode 100644 build/src/H5Odrvinfo.lo create mode 100644 build/src/H5Odrvinfo.o create mode 100644 build/src/H5Odtype.lo create mode 100644 build/src/H5Odtype.o create mode 100644 build/src/H5Oefl.lo create mode 100644 build/src/H5Oefl.o create mode 100644 build/src/H5Ofill.lo create mode 100644 build/src/H5Ofill.o create mode 100644 build/src/H5Oginfo.lo create mode 100644 build/src/H5Oginfo.o create mode 100644 build/src/H5Olayout.lo create mode 100644 build/src/H5Olayout.o create mode 100644 build/src/H5Olinfo.lo create mode 100644 build/src/H5Olinfo.o create mode 100644 build/src/H5Olink.lo create mode 100644 build/src/H5Olink.o create mode 100644 build/src/H5Omessage.lo create mode 100644 build/src/H5Omessage.o create mode 100644 build/src/H5Omtime.lo create mode 100644 build/src/H5Omtime.o create mode 100644 build/src/H5Oname.lo create mode 100644 build/src/H5Oname.o create mode 100644 build/src/H5Onull.lo create mode 100644 build/src/H5Onull.o create mode 100644 build/src/H5Opline.lo create mode 100644 build/src/H5Opline.o create mode 100644 build/src/H5Orefcount.lo create mode 100644 build/src/H5Orefcount.o create mode 100644 build/src/H5Osdspace.lo create mode 100644 build/src/H5Osdspace.o create mode 100644 build/src/H5Oshared.lo create mode 100644 build/src/H5Oshared.o create mode 100644 build/src/H5Oshmesg.lo create mode 100644 build/src/H5Oshmesg.o create mode 100644 build/src/H5Ostab.lo create mode 100644 build/src/H5Ostab.o create mode 100644 build/src/H5Otest.lo create mode 100644 build/src/H5Otest.o create mode 100644 build/src/H5Ounknown.lo create mode 100644 build/src/H5Ounknown.o create mode 100644 build/src/H5P.lo create mode 100644 build/src/H5P.o create mode 100644 build/src/H5PL.lo create mode 100644 build/src/H5PL.o create mode 100644 build/src/H5Pacpl.lo create mode 100644 build/src/H5Pacpl.o create mode 100644 build/src/H5Pdapl.lo create mode 100644 build/src/H5Pdapl.o create mode 100644 build/src/H5Pdcpl.lo create mode 100644 build/src/H5Pdcpl.o create mode 100644 build/src/H5Pdeprec.lo create mode 100644 build/src/H5Pdeprec.o create mode 100644 build/src/H5Pdxpl.lo create mode 100644 build/src/H5Pdxpl.o create mode 100644 build/src/H5Pfapl.lo create mode 100644 build/src/H5Pfapl.o create mode 100644 build/src/H5Pfcpl.lo create mode 100644 build/src/H5Pfcpl.o create mode 100644 build/src/H5Pfmpl.lo create mode 100644 build/src/H5Pfmpl.o create mode 100644 build/src/H5Pgcpl.lo create mode 100644 build/src/H5Pgcpl.o create mode 100644 build/src/H5Pint.lo create mode 100644 build/src/H5Pint.o create mode 100644 build/src/H5Plapl.lo create mode 100644 build/src/H5Plapl.o create mode 100644 build/src/H5Plcpl.lo create mode 100644 build/src/H5Plcpl.o create mode 100644 build/src/H5Pocpl.lo create mode 100644 build/src/H5Pocpl.o create mode 100644 build/src/H5Pocpypl.lo create mode 100644 build/src/H5Pocpypl.o create mode 100644 build/src/H5Pstrcpl.lo create mode 100644 build/src/H5Pstrcpl.o create mode 100644 build/src/H5Ptest.lo create mode 100644 build/src/H5Ptest.o create mode 100644 build/src/H5R.lo create mode 100644 build/src/H5R.o create mode 100644 build/src/H5RC.lo create mode 100644 build/src/H5RC.o create mode 100644 build/src/H5RS.lo create mode 100644 build/src/H5RS.o create mode 100644 build/src/H5Rdeprec.lo create mode 100644 build/src/H5Rdeprec.o create mode 100644 build/src/H5S.lo create mode 100644 build/src/H5S.o create mode 100644 build/src/H5SL.lo create mode 100644 build/src/H5SL.o create mode 100644 build/src/H5SM.lo create mode 100644 build/src/H5SM.o create mode 100644 build/src/H5SMbtree2.lo create mode 100644 build/src/H5SMbtree2.o create mode 100644 build/src/H5SMcache.lo create mode 100644 build/src/H5SMcache.o create mode 100644 build/src/H5SMmessage.lo create mode 100644 build/src/H5SMmessage.o create mode 100644 build/src/H5SMtest.lo create mode 100644 build/src/H5SMtest.o create mode 100644 build/src/H5ST.lo create mode 100644 build/src/H5ST.o create mode 100644 build/src/H5Sall.lo create mode 100644 build/src/H5Sall.o create mode 100644 build/src/H5Sdbg.lo create mode 100644 build/src/H5Sdbg.o create mode 100644 build/src/H5Shyper.lo create mode 100644 build/src/H5Shyper.o create mode 100644 build/src/H5Smpio.lo create mode 100644 build/src/H5Smpio.o create mode 100644 build/src/H5Snone.lo create mode 100644 build/src/H5Snone.o create mode 100644 build/src/H5Spoint.lo create mode 100644 build/src/H5Spoint.o create mode 100644 build/src/H5Sselect.lo create mode 100644 build/src/H5Sselect.o create mode 100644 build/src/H5Stest.lo create mode 100644 build/src/H5Stest.o create mode 100644 build/src/H5T.lo create mode 100644 build/src/H5T.o create mode 100644 build/src/H5TS.lo create mode 100644 build/src/H5TS.o create mode 100644 build/src/H5Tarray.lo create mode 100644 build/src/H5Tarray.o create mode 100644 build/src/H5Tbit.lo create mode 100644 build/src/H5Tbit.o create mode 100644 build/src/H5Tcommit.lo create mode 100644 build/src/H5Tcommit.o create mode 100644 build/src/H5Tcompound.lo create mode 100644 build/src/H5Tcompound.o create mode 100644 build/src/H5Tconv.lo create mode 100644 build/src/H5Tconv.o create mode 100644 build/src/H5Tcset.lo create mode 100644 build/src/H5Tcset.o create mode 100644 build/src/H5Tdbg.lo create mode 100644 build/src/H5Tdbg.o create mode 100644 build/src/H5Tdeprec.lo create mode 100644 build/src/H5Tdeprec.o create mode 100644 build/src/H5Tenum.lo create mode 100644 build/src/H5Tenum.o create mode 100644 build/src/H5Tfields.lo create mode 100644 build/src/H5Tfields.o create mode 100644 build/src/H5Tfixed.lo create mode 100644 build/src/H5Tfixed.o create mode 100644 build/src/H5Tfloat.lo create mode 100644 build/src/H5Tfloat.o create mode 100644 build/src/H5Tinit.c create mode 100644 build/src/H5Tinit.lo create mode 100644 build/src/H5Tinit.o create mode 100644 build/src/H5Tnative.lo create mode 100644 build/src/H5Tnative.o create mode 100644 build/src/H5Toffset.lo create mode 100644 build/src/H5Toffset.o create mode 100644 build/src/H5Toh.lo create mode 100644 build/src/H5Toh.o create mode 100644 build/src/H5Topaque.lo create mode 100644 build/src/H5Topaque.o create mode 100644 build/src/H5Torder.lo create mode 100644 build/src/H5Torder.o create mode 100644 build/src/H5Tpad.lo create mode 100644 build/src/H5Tpad.o create mode 100644 build/src/H5Tprecis.lo create mode 100644 build/src/H5Tprecis.o create mode 100644 build/src/H5Tstrpad.lo create mode 100644 build/src/H5Tstrpad.o create mode 100644 build/src/H5Tvisit.lo create mode 100644 build/src/H5Tvisit.o create mode 100644 build/src/H5Tvlen.lo create mode 100644 build/src/H5Tvlen.o create mode 100644 build/src/H5VM.lo create mode 100644 build/src/H5VM.o create mode 100644 build/src/H5WB.lo create mode 100644 build/src/H5WB.o create mode 100644 build/src/H5Z.lo create mode 100644 build/src/H5Z.o create mode 100644 build/src/H5Zdeflate.lo create mode 100644 build/src/H5Zdeflate.o create mode 100644 build/src/H5Zfletcher32.lo create mode 100644 build/src/H5Zfletcher32.o create mode 100644 build/src/H5Znbit.lo create mode 100644 build/src/H5Znbit.o create mode 100644 build/src/H5Zscaleoffset.lo create mode 100644 build/src/H5Zscaleoffset.o create mode 100644 build/src/H5Zshuffle.lo create mode 100644 build/src/H5Zshuffle.o create mode 100644 build/src/H5Zszip.lo create mode 100644 build/src/H5Zszip.o create mode 100644 build/src/H5Ztrans.lo create mode 100644 build/src/H5Ztrans.o create mode 100644 build/src/H5checksum.lo create mode 100644 build/src/H5checksum.o create mode 100644 build/src/H5config.h create mode 100644 build/src/H5dbg.lo create mode 100644 build/src/H5dbg.o create mode 100755 build/src/H5detect create mode 100644 build/src/H5detect.o create mode 100644 build/src/H5lib_settings.c create mode 100644 build/src/H5lib_settings.lo create mode 100644 build/src/H5lib_settings.o create mode 100755 build/src/H5make_libsettings create mode 100644 build/src/H5make_libsettings.o create mode 100644 build/src/H5pubconf.h create mode 100644 build/src/H5system.lo create mode 100644 build/src/H5system.o create mode 100644 build/src/H5timer.lo create mode 100644 build/src/H5timer.o create mode 100644 build/src/H5trace.lo create mode 100644 build/src/H5trace.o create mode 100644 build/src/Makefile create mode 100644 build/src/libhdf5.la create mode 100644 build/src/libhdf5.settings create mode 100644 build/src/stamp-h1 create mode 100644 build/test/.deps/accum.Po create mode 100644 build/test/.deps/app_ref.Po create mode 100644 build/test/.deps/big.Po create mode 100644 build/test/.deps/bittests.Po create mode 100644 build/test/.deps/btree2.Po create mode 100644 build/test/.deps/cache.Po create mode 100644 build/test/.deps/cache_api.Po create mode 100644 build/test/.deps/cache_common.Plo create mode 100644 build/test/.deps/cmpd_dset.Po create mode 100644 build/test/.deps/cross_read.Po create mode 100644 build/test/.deps/dangle.Po create mode 100644 build/test/.deps/dsets.Po create mode 100644 build/test/.deps/dt_arith.Po create mode 100644 build/test/.deps/dtransform.Po create mode 100644 build/test/.deps/dtypes.Po create mode 100644 build/test/.deps/dynlib1.Plo create mode 100644 build/test/.deps/dynlib2.Plo create mode 100644 build/test/.deps/dynlib3.Plo create mode 100644 build/test/.deps/dynlib4.Plo create mode 100644 build/test/.deps/efc.Po create mode 100644 build/test/.deps/enum.Po create mode 100644 build/test/.deps/err_compat.Po create mode 100644 build/test/.deps/error_test.Po create mode 100644 build/test/.deps/extend.Po create mode 100644 build/test/.deps/external.Po create mode 100644 build/test/.deps/fheap.Po create mode 100644 build/test/.deps/file_image.Po create mode 100644 build/test/.deps/fillval.Po create mode 100644 build/test/.deps/filter_fail.Po create mode 100644 build/test/.deps/flush1.Po create mode 100644 build/test/.deps/flush2.Po create mode 100644 build/test/.deps/freespace.Po create mode 100644 build/test/.deps/gen_bad_offset.Po create mode 100644 build/test/.deps/gen_bad_ohdr.Po create mode 100644 build/test/.deps/gen_bogus.Po create mode 100644 build/test/.deps/gen_cross.Po create mode 100644 build/test/.deps/gen_deflate.Po create mode 100644 build/test/.deps/gen_file_image.Po create mode 100644 build/test/.deps/gen_filters.Po create mode 100644 build/test/.deps/gen_idx.Po create mode 100644 build/test/.deps/gen_new_array.Po create mode 100644 build/test/.deps/gen_new_fill.Po create mode 100644 build/test/.deps/gen_new_group.Po create mode 100644 build/test/.deps/gen_new_mtime.Po create mode 100644 build/test/.deps/gen_new_super.Po create mode 100644 build/test/.deps/gen_noencoder.Po create mode 100644 build/test/.deps/gen_nullspace.Po create mode 100644 build/test/.deps/gen_sizes_lheap.Po create mode 100644 build/test/.deps/gen_udlinks.Po create mode 100644 build/test/.deps/getname.Po create mode 100644 build/test/.deps/gheap.Po create mode 100644 build/test/.deps/h5test.Plo create mode 100644 build/test/.deps/hyperslab.Po create mode 100644 build/test/.deps/istore.Po create mode 100644 build/test/.deps/lheap.Po create mode 100644 build/test/.deps/links.Po create mode 100644 build/test/.deps/links_env.Po create mode 100644 build/test/.deps/mf.Po create mode 100644 build/test/.deps/mount.Po create mode 100644 build/test/.deps/mtime.Po create mode 100644 build/test/.deps/ntypes.Po create mode 100644 build/test/.deps/objcopy.Po create mode 100644 build/test/.deps/ohdr.Po create mode 100644 build/test/.deps/plugin.Po create mode 100644 build/test/.deps/pool.Po create mode 100644 build/test/.deps/reserved.Po create mode 100644 build/test/.deps/set_extent.Po create mode 100644 build/test/.deps/space_overflow.Po create mode 100644 build/test/.deps/stab.Po create mode 100644 build/test/.deps/tarray.Po create mode 100644 build/test/.deps/tattr.Po create mode 100644 build/test/.deps/tcheck_version.Po create mode 100644 build/test/.deps/tchecksum.Po create mode 100644 build/test/.deps/tconfig.Po create mode 100644 build/test/.deps/tcoords.Po create mode 100644 build/test/.deps/testframe.Plo create mode 100644 build/test/.deps/testhdf5.Po create mode 100644 build/test/.deps/testmeta.Po create mode 100644 build/test/.deps/tfile.Po create mode 100644 build/test/.deps/tgenprop.Po create mode 100644 build/test/.deps/th5o.Po create mode 100644 build/test/.deps/th5s.Po create mode 100644 build/test/.deps/theap.Po create mode 100644 build/test/.deps/tid.Po create mode 100644 build/test/.deps/titerate.Po create mode 100644 build/test/.deps/tmeta.Po create mode 100644 build/test/.deps/tmisc.Po create mode 100644 build/test/.deps/trefer.Po create mode 100644 build/test/.deps/trefstr.Po create mode 100644 build/test/.deps/tselect.Po create mode 100644 build/test/.deps/tskiplist.Po create mode 100644 build/test/.deps/tsohm.Po create mode 100644 build/test/.deps/ttime.Po create mode 100644 build/test/.deps/ttsafe.Po create mode 100644 build/test/.deps/ttsafe_acreate.Po create mode 100644 build/test/.deps/ttsafe_cancel.Po create mode 100644 build/test/.deps/ttsafe_dcreate.Po create mode 100644 build/test/.deps/ttsafe_error.Po create mode 100644 build/test/.deps/ttst.Po create mode 100644 build/test/.deps/tunicode.Po create mode 100644 build/test/.deps/tverbounds18.Po create mode 100644 build/test/.deps/tvlstr.Po create mode 100644 build/test/.deps/tvltypes.Po create mode 100644 build/test/.deps/unlink.Po create mode 100644 build/test/.deps/unregister.Po create mode 100644 build/test/.deps/vfd.Po create mode 100755 build/test/.libs/accum create mode 100755 build/test/.libs/app_ref create mode 100755 build/test/.libs/big create mode 100755 build/test/.libs/bittests create mode 100755 build/test/.libs/btree2 create mode 100755 build/test/.libs/cache create mode 100755 build/test/.libs/cache_api create mode 100644 build/test/.libs/cache_common.o create mode 100755 build/test/.libs/cmpd_dset create mode 100755 build/test/.libs/cross_read create mode 100755 build/test/.libs/dangle create mode 100755 build/test/.libs/dsets create mode 100755 build/test/.libs/dt_arith create mode 100755 build/test/.libs/dtransform create mode 100755 build/test/.libs/dtypes create mode 100644 build/test/.libs/dynlib1.o create mode 100644 build/test/.libs/dynlib2.o create mode 100644 build/test/.libs/dynlib3.o create mode 100644 build/test/.libs/dynlib4.o create mode 100755 build/test/.libs/efc create mode 100755 build/test/.libs/enum create mode 100755 build/test/.libs/err_compat create mode 100755 build/test/.libs/error_test create mode 100755 build/test/.libs/extend create mode 100755 build/test/.libs/external create mode 100755 build/test/.libs/fheap create mode 100755 build/test/.libs/file_image create mode 100755 build/test/.libs/fillval create mode 100755 build/test/.libs/filter_fail create mode 100755 build/test/.libs/flush1 create mode 100755 build/test/.libs/flush2 create mode 100755 build/test/.libs/freespace create mode 100755 build/test/.libs/getname create mode 100755 build/test/.libs/gheap create mode 100644 build/test/.libs/h5test.o create mode 100755 build/test/.libs/hyperslab create mode 100755 build/test/.libs/istore create mode 100755 build/test/.libs/lheap create mode 120000 build/test/.libs/libdynlib1.la create mode 100644 build/test/.libs/libdynlib1.lai create mode 100755 build/test/.libs/libdynlib1.so create mode 120000 build/test/.libs/libdynlib2.la create mode 100644 build/test/.libs/libdynlib2.lai create mode 100755 build/test/.libs/libdynlib2.so create mode 120000 build/test/.libs/libdynlib3.la create mode 100644 build/test/.libs/libdynlib3.lai create mode 100755 build/test/.libs/libdynlib3.so create mode 120000 build/test/.libs/libdynlib4.la create mode 100644 build/test/.libs/libdynlib4.lai create mode 100755 build/test/.libs/libdynlib4.so create mode 100644 build/test/.libs/libh5test.a create mode 120000 build/test/.libs/libh5test.la create mode 100755 build/test/.libs/links create mode 100755 build/test/.libs/links_env create mode 100755 build/test/.libs/lt-accum create mode 100755 build/test/.libs/lt-app_ref create mode 100755 build/test/.libs/lt-big create mode 100755 build/test/.libs/lt-bittests create mode 100755 build/test/.libs/lt-btree2 create mode 100755 build/test/.libs/lt-cache create mode 100755 build/test/.libs/lt-cache_api create mode 100755 build/test/.libs/lt-cmpd_dset create mode 100755 build/test/.libs/lt-cross_read create mode 100755 build/test/.libs/lt-dangle create mode 100755 build/test/.libs/lt-dsets create mode 100755 build/test/.libs/lt-dt_arith create mode 100755 build/test/.libs/lt-dtransform create mode 100755 build/test/.libs/lt-dtypes create mode 100755 build/test/.libs/lt-efc create mode 100755 build/test/.libs/lt-enum create mode 100755 build/test/.libs/lt-err_compat create mode 100755 build/test/.libs/lt-error_test create mode 100755 build/test/.libs/lt-extend create mode 100755 build/test/.libs/lt-external create mode 100755 build/test/.libs/lt-fheap create mode 100755 build/test/.libs/lt-file_image create mode 100755 build/test/.libs/lt-fillval create mode 100755 build/test/.libs/lt-filter_fail create mode 100755 build/test/.libs/lt-flush1 create mode 100755 build/test/.libs/lt-flush2 create mode 100755 build/test/.libs/lt-freespace create mode 100755 build/test/.libs/lt-getname create mode 100755 build/test/.libs/lt-gheap create mode 100755 build/test/.libs/lt-hyperslab create mode 100755 build/test/.libs/lt-istore create mode 100755 build/test/.libs/lt-lheap create mode 100755 build/test/.libs/lt-links create mode 100755 build/test/.libs/lt-links_env create mode 100755 build/test/.libs/lt-mf create mode 100755 build/test/.libs/lt-mount create mode 100755 build/test/.libs/lt-mtime create mode 100755 build/test/.libs/lt-ntypes create mode 100755 build/test/.libs/lt-objcopy create mode 100755 build/test/.libs/lt-ohdr create mode 100755 build/test/.libs/lt-plugin create mode 100755 build/test/.libs/lt-pool create mode 100755 build/test/.libs/lt-reserved create mode 100755 build/test/.libs/lt-set_extent create mode 100755 build/test/.libs/lt-stab create mode 100755 build/test/.libs/lt-tcheck_version create mode 100755 build/test/.libs/lt-testhdf5 create mode 100755 build/test/.libs/lt-ttsafe create mode 100755 build/test/.libs/lt-unlink create mode 100755 build/test/.libs/lt-unregister create mode 100755 build/test/.libs/lt-vfd create mode 100755 build/test/.libs/mf create mode 100755 build/test/.libs/mount create mode 100755 build/test/.libs/mtime create mode 100755 build/test/.libs/ntypes create mode 100755 build/test/.libs/objcopy create mode 100755 build/test/.libs/ohdr create mode 100755 build/test/.libs/plugin create mode 100755 build/test/.libs/pool create mode 100755 build/test/.libs/reserved create mode 100755 build/test/.libs/set_extent create mode 100755 build/test/.libs/stab create mode 100755 build/test/.libs/tcheck_version create mode 100644 build/test/.libs/testframe.o create mode 100755 build/test/.libs/testhdf5 create mode 100755 build/test/.libs/testmeta create mode 100755 build/test/.libs/ttsafe create mode 100755 build/test/.libs/unlink create mode 100755 build/test/.libs/unregister create mode 100755 build/test/.libs/vfd create mode 100644 build/test/H5srcdir_str.h create mode 100644 build/test/Makefile create mode 100755 build/test/accum create mode 100644 build/test/accum.chkexe create mode 100644 build/test/accum.chklog create mode 100644 build/test/accum.o create mode 100755 build/test/app_ref create mode 100644 build/test/app_ref.chkexe create mode 100644 build/test/app_ref.chklog create mode 100644 build/test/app_ref.o create mode 100755 build/test/big create mode 100644 build/test/big.chkexe create mode 100644 build/test/big.chklog create mode 100644 build/test/big.o create mode 100755 build/test/bittests create mode 100644 build/test/bittests.chkexe create mode 100644 build/test/bittests.chklog create mode 100644 build/test/bittests.o create mode 100755 build/test/btree2 create mode 100644 build/test/btree2.chkexe create mode 100644 build/test/btree2.chklog create mode 100644 build/test/btree2.o create mode 100755 build/test/cache create mode 100644 build/test/cache.chkexe create mode 100644 build/test/cache.chklog create mode 100644 build/test/cache.o create mode 100755 build/test/cache_api create mode 100644 build/test/cache_api.chkexe create mode 100644 build/test/cache_api.chklog create mode 100644 build/test/cache_api.o create mode 100644 build/test/cache_common.lo create mode 100644 build/test/cache_common.o create mode 100755 build/test/cmpd_dset create mode 100644 build/test/cmpd_dset.chkexe create mode 100644 build/test/cmpd_dset.chklog create mode 100644 build/test/cmpd_dset.o create mode 100644 build/test/core_file.h5 create mode 100755 build/test/cross_read create mode 100644 build/test/cross_read.chkexe create mode 100644 build/test/cross_read.chklog create mode 100644 build/test/cross_read.o create mode 100755 build/test/dangle create mode 100644 build/test/dangle.chkexe create mode 100644 build/test/dangle.chklog create mode 100644 build/test/dangle.o create mode 100755 build/test/dsets create mode 100644 build/test/dsets.chkexe create mode 100644 build/test/dsets.chklog create mode 100644 build/test/dsets.o create mode 100755 build/test/dt_arith create mode 100644 build/test/dt_arith.chkexe create mode 100644 build/test/dt_arith.chklog create mode 100644 build/test/dt_arith.o create mode 100644 build/test/dt_arith1.h5 create mode 100644 build/test/dt_arith2.h5 create mode 100755 build/test/dtransform create mode 100644 build/test/dtransform.chkexe create mode 100644 build/test/dtransform.chklog create mode 100644 build/test/dtransform.h5 create mode 100644 build/test/dtransform.o create mode 100755 build/test/dtypes create mode 100644 build/test/dtypes.chkexe create mode 100644 build/test/dtypes.chklog create mode 100644 build/test/dtypes.o create mode 100644 build/test/dtypes10.h5 create mode 100644 build/test/dtypes3.h5 create mode 100644 build/test/dtypes4.h5 create mode 100644 build/test/dynlib1.lo create mode 100644 build/test/dynlib1.o create mode 100644 build/test/dynlib2.lo create mode 100644 build/test/dynlib2.o create mode 100644 build/test/dynlib3.lo create mode 100644 build/test/dynlib3.o create mode 100644 build/test/dynlib4.lo create mode 100644 build/test/dynlib4.o create mode 100755 build/test/efc create mode 100644 build/test/efc.chkexe create mode 100644 build/test/efc.chklog create mode 100644 build/test/efc.o create mode 100755 build/test/enum create mode 100644 build/test/enum.chkexe create mode 100644 build/test/enum.chklog create mode 100644 build/test/enum.o create mode 100755 build/test/err_compat create mode 100644 build/test/err_compat.o create mode 100755 build/test/error_test create mode 100644 build/test/error_test.o create mode 100755 build/test/extend create mode 100644 build/test/extend.chkexe create mode 100644 build/test/extend.chklog create mode 100644 build/test/extend.o create mode 100755 build/test/external create mode 100644 build/test/external.chkexe create mode 100644 build/test/external.chklog create mode 100644 build/test/external.o create mode 100644 build/test/extlinks16A00000.h5 create mode 100644 build/test/extlinks16A00001.h5 create mode 100644 build/test/extlinks16A00002.h5 create mode 100644 build/test/extlinks16B-b.h5 create mode 100644 build/test/extlinks16B-g.h5 create mode 100644 build/test/extlinks16B-l.h5 create mode 100644 build/test/extlinks16B-r.h5 create mode 100644 build/test/extlinks16B-s.h5 create mode 100644 build/test/extlinks19B00000.h5 create mode 100644 build/test/extlinks19B00001.h5 create mode 100644 build/test/extlinks19B00002.h5 create mode 100644 build/test/extlinks19B00003.h5 create mode 100644 build/test/extlinks19B00004.h5 create mode 100644 build/test/extlinks19B00005.h5 create mode 100644 build/test/extlinks19B00006.h5 create mode 100644 build/test/extlinks19B00007.h5 create mode 100644 build/test/extlinks19B00008.h5 create mode 100644 build/test/extlinks19B00009.h5 create mode 100644 build/test/extlinks19B00010.h5 create mode 100644 build/test/extlinks19B00011.h5 create mode 100644 build/test/extlinks19B00012.h5 create mode 100644 build/test/extlinks19B00013.h5 create mode 100644 build/test/extlinks19B00014.h5 create mode 100644 build/test/extlinks19B00015.h5 create mode 100644 build/test/extlinks19B00016.h5 create mode 100644 build/test/extlinks19B00017.h5 create mode 100644 build/test/extlinks19B00018.h5 create mode 100644 build/test/extlinks19B00019.h5 create mode 100644 build/test/extlinks19B00020.h5 create mode 100644 build/test/extlinks19B00021.h5 create mode 100644 build/test/extlinks19B00022.h5 create mode 100644 build/test/extlinks19B00023.h5 create mode 100644 build/test/extlinks19B00024.h5 create mode 100644 build/test/extlinks19B00025.h5 create mode 100644 build/test/extlinks19B00026.h5 create mode 100644 build/test/extlinks19B00027.h5 create mode 100644 build/test/extlinks19B00028.h5 create mode 100755 build/test/fheap create mode 100644 build/test/fheap.chkexe create mode 100644 build/test/fheap.chklog create mode 100644 build/test/fheap.o create mode 100755 build/test/file_image create mode 100644 build/test/file_image.chkexe create mode 100644 build/test/file_image.chklog create mode 100644 build/test/file_image.o create mode 100755 build/test/fillval create mode 100644 build/test/fillval.chkexe create mode 100644 build/test/fillval.chklog create mode 100644 build/test/fillval.o create mode 100755 build/test/filter_fail create mode 100644 build/test/filter_fail.chkexe create mode 100644 build/test/filter_fail.chklog create mode 100644 build/test/filter_fail.o create mode 100755 build/test/flush1 create mode 100644 build/test/flush1.chkexe create mode 100644 build/test/flush1.chklog create mode 100644 build/test/flush1.o create mode 100755 build/test/flush2 create mode 100644 build/test/flush2.chkexe create mode 100644 build/test/flush2.chklog create mode 100644 build/test/flush2.o create mode 100755 build/test/freespace create mode 100644 build/test/freespace.chkexe create mode 100644 build/test/freespace.chklog create mode 100644 build/test/freespace.o create mode 100755 build/test/getname create mode 100644 build/test/getname.chkexe create mode 100644 build/test/getname.chklog create mode 100644 build/test/getname.o create mode 100755 build/test/gheap create mode 100644 build/test/gheap.chkexe create mode 100644 build/test/gheap.chklog create mode 100644 build/test/gheap.o create mode 100644 build/test/h5test.lo create mode 100644 build/test/h5test.o create mode 100755 build/test/hyperslab create mode 100644 build/test/hyperslab.chkexe create mode 100644 build/test/hyperslab.chklog create mode 100644 build/test/hyperslab.o create mode 100755 build/test/istore create mode 100644 build/test/istore.chkexe create mode 100644 build/test/istore.chklog create mode 100644 build/test/istore.o create mode 100755 build/test/lheap create mode 100644 build/test/lheap.chkexe create mode 100644 build/test/lheap.chklog create mode 100644 build/test/lheap.o create mode 100644 build/test/libdynlib1.la create mode 100644 build/test/libdynlib2.la create mode 100644 build/test/libdynlib3.la create mode 100644 build/test/libdynlib4.la create mode 100644 build/test/libh5test.la create mode 100755 build/test/links create mode 100644 build/test/links.chkexe create mode 100644 build/test/links.chklog create mode 100644 build/test/links.o create mode 100755 build/test/links_env create mode 100644 build/test/links_env.o create mode 100644 build/test/log_vfd_out.log create mode 100755 build/test/mf create mode 100644 build/test/mf.chkexe create mode 100644 build/test/mf.chklog create mode 100644 build/test/mf.o create mode 100755 build/test/mount create mode 100644 build/test/mount.chkexe create mode 100644 build/test/mount.chklog create mode 100644 build/test/mount.o create mode 100755 build/test/mtime create mode 100644 build/test/mtime.chkexe create mode 100644 build/test/mtime.chklog create mode 100644 build/test/mtime.o create mode 100755 build/test/ntypes create mode 100644 build/test/ntypes.chkexe create mode 100644 build/test/ntypes.chklog create mode 100644 build/test/ntypes.o create mode 100755 build/test/objcopy create mode 100644 build/test/objcopy.chkexe create mode 100644 build/test/objcopy.chklog create mode 100644 build/test/objcopy.o create mode 100644 build/test/objcopy_ext.dat create mode 100755 build/test/ohdr create mode 100644 build/test/ohdr.chkexe create mode 100644 build/test/ohdr.chklog create mode 100644 build/test/ohdr.o create mode 100755 build/test/plugin create mode 100644 build/test/plugin.o create mode 100755 build/test/pool create mode 100644 build/test/pool.chkexe create mode 100644 build/test/pool.chklog create mode 100644 build/test/pool.o create mode 100755 build/test/reserved create mode 100644 build/test/reserved.chkexe create mode 100644 build/test/reserved.chklog create mode 100644 build/test/reserved.o create mode 100755 build/test/set_extent create mode 100644 build/test/set_extent.chkexe create mode 100644 build/test/set_extent.chklog create mode 100644 build/test/set_extent.o create mode 100755 build/test/stab create mode 100644 build/test/stab.chkexe create mode 100644 build/test/stab.chklog create mode 100644 build/test/stab.o create mode 100644 build/test/tarray.o create mode 100644 build/test/tattr.o create mode 100644 build/test/tbogus.h5.copy create mode 100755 build/test/tcheck_version create mode 100644 build/test/tcheck_version.o create mode 100644 build/test/tchecksum.o create mode 100644 build/test/tconfig.o create mode 100644 build/test/tcoords.o create mode 100644 build/test/test_plugin.sh create mode 100644 build/test/test_plugin.sh.chkexe create mode 100644 build/test/test_plugin.sh.chklog create mode 100644 build/test/testcheck_version.sh create mode 100644 build/test/testcheck_version.sh.chkexe create mode 100644 build/test/testcheck_version.sh.chklog create mode 100644 build/test/testerror.sh create mode 100644 build/test/testerror.sh.chkexe create mode 100644 build/test/testerror.sh.chklog create mode 100644 build/test/testframe.lo create mode 100644 build/test/testframe.o create mode 100755 build/test/testhdf5 create mode 100644 build/test/testhdf5.chkexe create mode 100644 build/test/testhdf5.chklog create mode 100644 build/test/testhdf5.o create mode 100644 build/test/testlibinfo.sh create mode 100644 build/test/testlibinfo.sh.chkexe create mode 100644 build/test/testlibinfo.sh.chklog create mode 100644 build/test/testlinks_env.sh create mode 100644 build/test/testlinks_env.sh.chkexe create mode 100644 build/test/testlinks_env.sh.chklog create mode 100755 build/test/testmeta create mode 100644 build/test/testmeta.o create mode 100644 build/test/tfile.o create mode 100644 build/test/tfile5.h5 create mode 100644 build/test/tfile6.h5 create mode 100644 build/test/tgenprop.o create mode 100644 build/test/th5o.o create mode 100644 build/test/th5s.o create mode 100644 build/test/theap.o create mode 100644 build/test/tid.o create mode 100644 build/test/titerate.o create mode 100644 build/test/tmeta.o create mode 100644 build/test/tmisc.o create mode 100644 build/test/trefer.o create mode 100644 build/test/trefstr.o create mode 100644 build/test/tselect.o create mode 100644 build/test/tskiplist.o create mode 100644 build/test/tsohm.o create mode 100644 build/test/tstint1.h5 create mode 100644 build/test/tstint2.h5 create mode 100644 build/test/ttime.o create mode 100755 build/test/ttsafe create mode 100644 build/test/ttsafe.chkexe create mode 100644 build/test/ttsafe.chklog create mode 100644 build/test/ttsafe.o create mode 100644 build/test/ttsafe_acreate.o create mode 100644 build/test/ttsafe_cancel.o create mode 100644 build/test/ttsafe_dcreate.o create mode 100644 build/test/ttsafe_error.o create mode 100644 build/test/ttst.o create mode 100644 build/test/tunicode.o create mode 100644 build/test/tverbounds18.o create mode 100644 build/test/tvlstr.o create mode 100644 build/test/tvltypes.o create mode 100755 build/test/unlink create mode 100644 build/test/unlink.chkexe create mode 100644 build/test/unlink.chklog create mode 100644 build/test/unlink.o create mode 100755 build/test/unregister create mode 100644 build/test/unregister.chkexe create mode 100644 build/test/unregister.chklog create mode 100644 build/test/unregister.o create mode 100755 build/test/vfd create mode 100644 build/test/vfd.chkexe create mode 100644 build/test/vfd.chklog create mode 100644 build/test/vfd.o create mode 100644 build/testpar/.deps/t_cache.Po create mode 100644 build/testpar/.deps/t_chunk_alloc.Po create mode 100644 build/testpar/.deps/t_coll_chunk.Po create mode 100644 build/testpar/.deps/t_dset.Po create mode 100644 build/testpar/.deps/t_file.Po create mode 100644 build/testpar/.deps/t_file_image.Po create mode 100644 build/testpar/.deps/t_filter_read.Po create mode 100644 build/testpar/.deps/t_init_term.Po create mode 100644 build/testpar/.deps/t_mdset.Po create mode 100644 build/testpar/.deps/t_mpi.Po create mode 100644 build/testpar/.deps/t_pflush1.Po create mode 100644 build/testpar/.deps/t_pflush2.Po create mode 100644 build/testpar/.deps/t_ph5basic.Po create mode 100644 build/testpar/.deps/t_prestart.Po create mode 100644 build/testpar/.deps/t_pshutdown.Po create mode 100644 build/testpar/.deps/t_shapesame.Po create mode 100644 build/testpar/.deps/t_span_tree.Po create mode 100644 build/testpar/.deps/testphdf5.Po create mode 100644 build/testpar/Makefile create mode 100644 build/tools/Makefile create mode 100644 build/tools/h5copy/.deps/h5copy.Po create mode 100644 build/tools/h5copy/.deps/h5copygentest.Po create mode 100755 build/tools/h5copy/.libs/h5copy create mode 100755 build/tools/h5copy/.libs/h5copygentest create mode 100755 build/tools/h5copy/.libs/lt-h5copy create mode 100755 build/tools/h5copy/.libs/lt-h5copygentest create mode 100644 build/tools/h5copy/Makefile create mode 100755 build/tools/h5copy/h5copy create mode 100644 build/tools/h5copy/h5copy.o create mode 100644 build/tools/h5copy/h5copy_extlinks_src.h5 create mode 100644 build/tools/h5copy/h5copy_extlinks_trg.h5 create mode 100644 build/tools/h5copy/h5copy_ref.h5 create mode 100755 build/tools/h5copy/h5copygentest create mode 100644 build/tools/h5copy/h5copygentest.chkexe create mode 100644 build/tools/h5copy/h5copygentest.chklog create mode 100644 build/tools/h5copy/h5copygentest.o create mode 100644 build/tools/h5copy/h5copytst.h5 create mode 100644 build/tools/h5copy/testh5copy.sh create mode 100644 build/tools/h5copy/testh5copy.sh.chkexe create mode 100644 build/tools/h5copy/testh5copy.sh.chklog create mode 100644 build/tools/h5diff/.deps/dynlib_diff.Plo create mode 100644 build/tools/h5diff/.deps/h5diff_common.Po create mode 100644 build/tools/h5diff/.deps/h5diff_main.Po create mode 100644 build/tools/h5diff/.deps/h5diffgentest.Po create mode 100644 build/tools/h5diff/.deps/ph5diff_main.Po create mode 100644 build/tools/h5diff/.libs/dynlib_diff.o create mode 100755 build/tools/h5diff/.libs/h5diff create mode 100755 build/tools/h5diff/.libs/h5diffgentest create mode 120000 build/tools/h5diff/.libs/libdynlibdiff.la create mode 100644 build/tools/h5diff/.libs/libdynlibdiff.lai create mode 100755 build/tools/h5diff/.libs/libdynlibdiff.so create mode 100755 build/tools/h5diff/.libs/lt-h5diff create mode 100755 build/tools/h5diff/.libs/lt-h5diffgentest create mode 100644 build/tools/h5diff/Makefile create mode 100644 build/tools/h5diff/compounds_array_vlen1.h5 create mode 100644 build/tools/h5diff/compounds_array_vlen2.h5 create mode 100644 build/tools/h5diff/diff_strings1.h5 create mode 100644 build/tools/h5diff/diff_strings2.h5 create mode 100644 build/tools/h5diff/dynlib_diff.lo create mode 100644 build/tools/h5diff/dynlib_diff.o create mode 100755 build/tools/h5diff/h5diff create mode 100644 build/tools/h5diff/h5diff_attr1.h5 create mode 100644 build/tools/h5diff/h5diff_attr2.h5 create mode 100644 build/tools/h5diff/h5diff_attr3.h5 create mode 100644 build/tools/h5diff/h5diff_attr_v_level1.h5 create mode 100644 build/tools/h5diff/h5diff_attr_v_level2.h5 create mode 100644 build/tools/h5diff/h5diff_basic1.h5 create mode 100644 build/tools/h5diff/h5diff_basic2.h5 create mode 100644 build/tools/h5diff/h5diff_common.o create mode 100644 build/tools/h5diff/h5diff_comp_vl_strs.h5 create mode 100644 build/tools/h5diff/h5diff_danglelinks1.h5 create mode 100644 build/tools/h5diff/h5diff_danglelinks2.h5 create mode 100644 build/tools/h5diff/h5diff_dset1.h5 create mode 100644 build/tools/h5diff/h5diff_dset2.h5 create mode 100644 build/tools/h5diff/h5diff_dset3.h5 create mode 100644 build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 create mode 100644 build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 create mode 100644 build/tools/h5diff/h5diff_dtypes.h5 create mode 100644 build/tools/h5diff/h5diff_empty.h5 create mode 100644 build/tools/h5diff/h5diff_enum_invalid_values.h5 create mode 100644 build/tools/h5diff/h5diff_exclude1-1.h5 create mode 100644 build/tools/h5diff/h5diff_exclude1-2.h5 create mode 100644 build/tools/h5diff/h5diff_exclude2-1.h5 create mode 100644 build/tools/h5diff/h5diff_exclude2-2.h5 create mode 100644 build/tools/h5diff/h5diff_exclude3-1.h5 create mode 100644 build/tools/h5diff/h5diff_exclude3-2.h5 create mode 100644 build/tools/h5diff/h5diff_ext2softlink_src.h5 create mode 100644 build/tools/h5diff/h5diff_ext2softlink_trg.h5 create mode 100644 build/tools/h5diff/h5diff_extlink_src.h5 create mode 100644 build/tools/h5diff/h5diff_extlink_trg.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse1.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse2.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext1.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 create mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 create mode 100644 build/tools/h5diff/h5diff_hyper1.h5 create mode 100644 build/tools/h5diff/h5diff_hyper2.h5 create mode 100644 build/tools/h5diff/h5diff_linked_softlink.h5 create mode 100644 build/tools/h5diff/h5diff_links.h5 create mode 100644 build/tools/h5diff/h5diff_main.o create mode 100644 build/tools/h5diff/h5diff_plugin.sh create mode 100644 build/tools/h5diff/h5diff_plugin.sh.chkexe create mode 100644 build/tools/h5diff/h5diff_plugin.sh.chklog create mode 100644 build/tools/h5diff/h5diff_softlinks.h5 create mode 100644 build/tools/h5diff/h5diff_types.h5 create mode 100755 build/tools/h5diff/h5diffgentest create mode 100644 build/tools/h5diff/h5diffgentest.chkexe create mode 100644 build/tools/h5diff/h5diffgentest.chklog create mode 100644 build/tools/h5diff/h5diffgentest.o create mode 100644 build/tools/h5diff/libdynlibdiff.la create mode 100644 build/tools/h5diff/non_comparables1.h5 create mode 100644 build/tools/h5diff/non_comparables2.h5 create mode 100644 build/tools/h5diff/testh5diff.sh create mode 100644 build/tools/h5diff/testh5diff.sh.chkexe create mode 100644 build/tools/h5diff/testh5diff.sh.chklog create mode 100644 build/tools/h5diff/testph5diff.sh create mode 100644 build/tools/h5dump/.deps/binread.Po create mode 100644 build/tools/h5dump/.deps/dynlib_dump.Plo create mode 100644 build/tools/h5dump/.deps/h5dump.Po create mode 100644 build/tools/h5dump/.deps/h5dump_ddl.Po create mode 100644 build/tools/h5dump/.deps/h5dump_xml.Po create mode 100644 build/tools/h5dump/.deps/h5dumpgentest.Po create mode 100755 build/tools/h5dump/.libs/binread create mode 100644 build/tools/h5dump/.libs/dynlib_dump.o create mode 100755 build/tools/h5dump/.libs/h5dump create mode 100755 build/tools/h5dump/.libs/h5dumpgentest create mode 120000 build/tools/h5dump/.libs/libdynlibdump.la create mode 100644 build/tools/h5dump/.libs/libdynlibdump.lai create mode 100755 build/tools/h5dump/.libs/libdynlibdump.so create mode 100755 build/tools/h5dump/.libs/lt-h5dump create mode 100755 build/tools/h5dump/.libs/lt-h5dumpgentest create mode 100644 build/tools/h5dump/Makefile create mode 100755 build/tools/h5dump/binread create mode 100644 build/tools/h5dump/binread.o create mode 100644 build/tools/h5dump/charsets.h5 create mode 100644 build/tools/h5dump/dynlib_dump.lo create mode 100644 build/tools/h5dump/dynlib_dump.o create mode 100755 build/tools/h5dump/h5dump create mode 100644 build/tools/h5dump/h5dump.o create mode 100644 build/tools/h5dump/h5dump_ddl.o create mode 100644 build/tools/h5dump/h5dump_plugin.sh create mode 100644 build/tools/h5dump/h5dump_plugin.sh.chkexe create mode 100644 build/tools/h5dump/h5dump_plugin.sh.chklog create mode 100644 build/tools/h5dump/h5dump_xml.o create mode 100755 build/tools/h5dump/h5dumpgentest create mode 100644 build/tools/h5dump/h5dumpgentest.chkexe create mode 100644 build/tools/h5dump/h5dumpgentest.chklog create mode 100644 build/tools/h5dump/h5dumpgentest.o create mode 100644 build/tools/h5dump/libdynlibdump.la create mode 100644 build/tools/h5dump/packedbits.h5 create mode 100644 build/tools/h5dump/taindices.h5 create mode 100644 build/tools/h5dump/tall.h5 create mode 100644 build/tools/h5dump/tarray1.h5 create mode 100644 build/tools/h5dump/tarray1_big.h5 create mode 100644 build/tools/h5dump/tarray2.h5 create mode 100644 build/tools/h5dump/tarray3.h5 create mode 100644 build/tools/h5dump/tarray4.h5 create mode 100644 build/tools/h5dump/tarray5.h5 create mode 100644 build/tools/h5dump/tarray6.h5 create mode 100644 build/tools/h5dump/tarray7.h5 create mode 100644 build/tools/h5dump/tarray8.h5 create mode 100644 build/tools/h5dump/tattr.h5 create mode 100644 build/tools/h5dump/tattr2.h5 create mode 100644 build/tools/h5dump/tattrintsize.h5 create mode 100644 build/tools/h5dump/tbigdims.h5 create mode 100644 build/tools/h5dump/tbinary.h5 create mode 100644 build/tools/h5dump/tbitfields.h5 create mode 100644 build/tools/h5dump/tbitnopaque.h5 create mode 100644 build/tools/h5dump/tchar.h5 create mode 100644 build/tools/h5dump/tcmpdattrintsize.h5 create mode 100644 build/tools/h5dump/tcmpdintarray.h5 create mode 100644 build/tools/h5dump/tcmpdints.h5 create mode 100644 build/tools/h5dump/tcmpdintsize.h5 create mode 100644 build/tools/h5dump/tcompound.h5 create mode 100644 build/tools/h5dump/tcompound2.h5 create mode 100644 build/tools/h5dump/tcompound_complex.h5 create mode 100644 build/tools/h5dump/tcompound_complex2.h5 create mode 100644 build/tools/h5dump/tdatareg.h5 create mode 100644 build/tools/h5dump/tdset.h5 create mode 100644 build/tools/h5dump/tdset2.h5 create mode 100644 build/tools/h5dump/tempty.h5 create mode 100644 build/tools/h5dump/tenum.h5 create mode 100644 build/tools/h5dump/testh5dump.sh create mode 100644 build/tools/h5dump/testh5dump.sh.chkexe create mode 100644 build/tools/h5dump/testh5dump.sh.chklog create mode 100644 build/tools/h5dump/testh5dumppbits.sh create mode 100644 build/tools/h5dump/testh5dumppbits.sh.chkexe create mode 100644 build/tools/h5dump/testh5dumppbits.sh.chklog create mode 100644 build/tools/h5dump/testh5dumpxml.sh create mode 100644 build/tools/h5dump/testh5dumpxml.sh.chkexe create mode 100644 build/tools/h5dump/testh5dumpxml.sh.chklog create mode 100644 build/tools/h5dump/textlink.h5 create mode 100644 build/tools/h5dump/textlinkfar.h5 create mode 100644 build/tools/h5dump/textlinksrc.h5 create mode 100644 build/tools/h5dump/textlinktar.h5 create mode 100644 build/tools/h5dump/tfamily00000.h5 create mode 100644 build/tools/h5dump/tfamily00001.h5 create mode 100644 build/tools/h5dump/tfamily00002.h5 create mode 100644 build/tools/h5dump/tfamily00003.h5 create mode 100644 build/tools/h5dump/tfamily00004.h5 create mode 100644 build/tools/h5dump/tfamily00005.h5 create mode 100644 build/tools/h5dump/tfamily00006.h5 create mode 100644 build/tools/h5dump/tfamily00007.h5 create mode 100644 build/tools/h5dump/tfamily00008.h5 create mode 100644 build/tools/h5dump/tfamily00009.h5 create mode 100644 build/tools/h5dump/tfamily00010.h5 create mode 100644 build/tools/h5dump/tfamily00011.h5 create mode 100644 build/tools/h5dump/tfamily00012.h5 create mode 100644 build/tools/h5dump/tfamily00013.h5 create mode 100644 build/tools/h5dump/tfamily00014.h5 create mode 100644 build/tools/h5dump/tfamily00015.h5 create mode 100644 build/tools/h5dump/tfamily00016.h5 create mode 100644 build/tools/h5dump/tfcontents1.h5 create mode 100644 build/tools/h5dump/tfcontents2.h5 create mode 100644 build/tools/h5dump/tfilters.h5 create mode 100644 build/tools/h5dump/tfpformat.h5 create mode 100644 build/tools/h5dump/tfvalues.h5 create mode 100644 build/tools/h5dump/tgroup.h5 create mode 100644 build/tools/h5dump/tgrp_comments.h5 create mode 100644 build/tools/h5dump/tgrpnullspace.h5 create mode 100644 build/tools/h5dump/thlink.h5 create mode 100644 build/tools/h5dump/thyperslab.h5 create mode 100644 build/tools/h5dump/tints4dims.h5 create mode 100644 build/tools/h5dump/tintsattrs.h5 create mode 100644 build/tools/h5dump/tlarge_objname.h5 create mode 100644 build/tools/h5dump/tldouble.h5 create mode 100644 build/tools/h5dump/tlonglinks.h5 create mode 100644 build/tools/h5dump/tloop.h5 create mode 100644 build/tools/h5dump/tloop2.h5 create mode 100644 build/tools/h5dump/tmany.h5 create mode 100644 build/tools/h5dump/tmulti-b.h5 create mode 100644 build/tools/h5dump/tmulti-g.h5 create mode 100644 build/tools/h5dump/tmulti-l.h5 create mode 100644 build/tools/h5dump/tmulti-o.h5 create mode 100644 build/tools/h5dump/tmulti-r.h5 create mode 100644 build/tools/h5dump/tmulti-s.h5 create mode 100644 build/tools/h5dump/tnamed_dtype_attr.h5 create mode 100644 build/tools/h5dump/tnestedcmpddt.h5 create mode 100644 build/tools/h5dump/tnestedcomp.h5 create mode 100644 build/tools/h5dump/tnullspace.h5 create mode 100644 build/tools/h5dump/tobjref.h5 create mode 100644 build/tools/h5dump/topaque.h5 create mode 100644 build/tools/h5dump/torderattr.h5 create mode 100644 build/tools/h5dump/tordergr.h5 create mode 100644 build/tools/h5dump/tscalarattrintsize.h5 create mode 100644 build/tools/h5dump/tscalarintattrsize.h5 create mode 100644 build/tools/h5dump/tscalarintsize.h5 create mode 100644 build/tools/h5dump/tscalarstring.h5 create mode 100644 build/tools/h5dump/tslink.h5 create mode 100644 build/tools/h5dump/tsoftlinks.h5 create mode 100644 build/tools/h5dump/tsplit_file-m.h5 create mode 100644 build/tools/h5dump/tsplit_file-r.h5 create mode 100644 build/tools/h5dump/tstr.h5 create mode 100644 build/tools/h5dump/tstr2.h5 create mode 100644 build/tools/h5dump/tstr3.h5 create mode 100644 build/tools/h5dump/tudfilter.h5 create mode 100644 build/tools/h5dump/tudlink.h5 create mode 100644 build/tools/h5dump/tvldtypes1.h5 create mode 100644 build/tools/h5dump/tvldtypes2.h5 create mode 100644 build/tools/h5dump/tvldtypes3.h5 create mode 100644 build/tools/h5dump/tvldtypes4.h5 create mode 100644 build/tools/h5dump/tvldtypes5.h5 create mode 100644 build/tools/h5dump/tvlenstr_array.h5 create mode 100644 build/tools/h5dump/tvlstr.h5 create mode 100644 build/tools/h5dump/zerodim.h5 create mode 100644 build/tools/h5import/.deps/h5import.Po create mode 100644 build/tools/h5import/.deps/h5importtest.Po create mode 100755 build/tools/h5import/.libs/h5import create mode 100755 build/tools/h5import/.libs/h5importtest create mode 100755 build/tools/h5import/.libs/lt-h5import create mode 100755 build/tools/h5import/.libs/lt-h5importtest create mode 100644 build/tools/h5import/Makefile create mode 100755 build/tools/h5import/h5import create mode 100644 build/tools/h5import/h5import.o create mode 100755 build/tools/h5import/h5importtest create mode 100644 build/tools/h5import/h5importtest.chkexe create mode 100644 build/tools/h5import/h5importtest.chklog create mode 100644 build/tools/h5import/h5importtest.o create mode 100644 build/tools/h5import/h5importtestutil.sh create mode 100644 build/tools/h5import/h5importtestutil.sh.chkexe create mode 100644 build/tools/h5import/h5importtestutil.sh.chklog create mode 100644 build/tools/h5jam/.deps/getub.Po create mode 100644 build/tools/h5jam/.deps/h5jam.Po create mode 100644 build/tools/h5jam/.deps/h5jamgentest.Po create mode 100644 build/tools/h5jam/.deps/h5unjam.Po create mode 100644 build/tools/h5jam/.deps/tellub.Po create mode 100755 build/tools/h5jam/.libs/getub create mode 100755 build/tools/h5jam/.libs/h5jam create mode 100755 build/tools/h5jam/.libs/h5jamgentest create mode 100755 build/tools/h5jam/.libs/h5unjam create mode 100755 build/tools/h5jam/.libs/lt-getub create mode 100755 build/tools/h5jam/.libs/lt-h5jam create mode 100755 build/tools/h5jam/.libs/lt-h5unjam create mode 100755 build/tools/h5jam/.libs/lt-tellub create mode 100755 build/tools/h5jam/.libs/tellub create mode 100644 build/tools/h5jam/Makefile create mode 100755 build/tools/h5jam/getub create mode 100644 build/tools/h5jam/getub.o create mode 100755 build/tools/h5jam/h5jam create mode 100644 build/tools/h5jam/h5jam.o create mode 100755 build/tools/h5jam/h5jamgentest create mode 100644 build/tools/h5jam/h5jamgentest.o create mode 100755 build/tools/h5jam/h5unjam create mode 100644 build/tools/h5jam/h5unjam.o create mode 100755 build/tools/h5jam/tellub create mode 100644 build/tools/h5jam/tellub.o create mode 100644 build/tools/h5jam/testh5jam.sh create mode 100644 build/tools/h5jam/testh5jam.sh.chkexe create mode 100644 build/tools/h5jam/testh5jam.sh.chklog create mode 100644 build/tools/h5ls/.deps/dynlib_ls.Plo create mode 100644 build/tools/h5ls/.deps/h5ls.Po create mode 100644 build/tools/h5ls/.libs/dynlib_ls.o create mode 100755 build/tools/h5ls/.libs/h5ls create mode 120000 build/tools/h5ls/.libs/libdynlibls.la create mode 100644 build/tools/h5ls/.libs/libdynlibls.lai create mode 100755 build/tools/h5ls/.libs/libdynlibls.so create mode 100755 build/tools/h5ls/.libs/lt-h5ls create mode 100644 build/tools/h5ls/Makefile create mode 100644 build/tools/h5ls/dynlib_ls.lo create mode 100644 build/tools/h5ls/dynlib_ls.o create mode 100755 build/tools/h5ls/h5ls create mode 100644 build/tools/h5ls/h5ls.o create mode 100644 build/tools/h5ls/h5ls_plugin.sh create mode 100644 build/tools/h5ls/h5ls_plugin.sh.chkexe create mode 100644 build/tools/h5ls/h5ls_plugin.sh.chklog create mode 100644 build/tools/h5ls/libdynlibls.la create mode 100644 build/tools/h5ls/testh5ls.sh create mode 100644 build/tools/h5ls/testh5ls.sh.chkexe create mode 100644 build/tools/h5ls/testh5ls.sh.chklog create mode 100644 build/tools/h5repack/.deps/dynlib_rpk.Plo create mode 100644 build/tools/h5repack/.deps/dynlib_vrpk.Plo create mode 100644 build/tools/h5repack/.deps/h5repack.Po create mode 100644 build/tools/h5repack/.deps/h5repack_copy.Po create mode 100644 build/tools/h5repack/.deps/h5repack_filters.Po create mode 100644 build/tools/h5repack/.deps/h5repack_main.Po create mode 100644 build/tools/h5repack/.deps/h5repack_opttable.Po create mode 100644 build/tools/h5repack/.deps/h5repack_parse.Po create mode 100644 build/tools/h5repack/.deps/h5repack_refs.Po create mode 100644 build/tools/h5repack/.deps/h5repack_verify.Po create mode 100644 build/tools/h5repack/.deps/h5repacktst.Po create mode 100644 build/tools/h5repack/.deps/testh5repack_detect_szip.Po create mode 100644 build/tools/h5repack/.libs/dynlib_rpk.o create mode 100644 build/tools/h5repack/.libs/dynlib_vrpk.o create mode 100755 build/tools/h5repack/.libs/h5repack create mode 100755 build/tools/h5repack/.libs/h5repacktst create mode 120000 build/tools/h5repack/.libs/libdynlibadd.la create mode 100644 build/tools/h5repack/.libs/libdynlibadd.lai create mode 100755 build/tools/h5repack/.libs/libdynlibadd.so create mode 120000 build/tools/h5repack/.libs/libdynlibvers.la create mode 100644 build/tools/h5repack/.libs/libdynlibvers.lai create mode 100755 build/tools/h5repack/.libs/libdynlibvers.so create mode 100755 build/tools/h5repack/.libs/lt-h5repack create mode 100755 build/tools/h5repack/.libs/lt-h5repacktst create mode 100755 build/tools/h5repack/.libs/testh5repack_detect_szip create mode 100644 build/tools/h5repack/Makefile create mode 100644 build/tools/h5repack/dynlib_rpk.lo create mode 100644 build/tools/h5repack/dynlib_rpk.o create mode 100644 build/tools/h5repack/dynlib_vrpk.lo create mode 100644 build/tools/h5repack/dynlib_vrpk.o create mode 100755 build/tools/h5repack/h5repack create mode 100644 build/tools/h5repack/h5repack.o create mode 100644 build/tools/h5repack/h5repack.sh create mode 100644 build/tools/h5repack/h5repack.sh.chkexe create mode 100644 build/tools/h5repack/h5repack.sh.chklog create mode 100644 build/tools/h5repack/h5repack_attr.h5 create mode 100644 build/tools/h5repack/h5repack_attr_out.h5 create mode 100644 build/tools/h5repack/h5repack_attr_refs.h5 create mode 100644 build/tools/h5repack/h5repack_big.h5 create mode 100644 build/tools/h5repack/h5repack_copy.o create mode 100644 build/tools/h5repack/h5repack_deflate.h5 create mode 100644 build/tools/h5repack/h5repack_deflate_out.h5 create mode 100644 build/tools/h5repack/h5repack_early.h5 create mode 100644 build/tools/h5repack/h5repack_early2.h5 create mode 100644 build/tools/h5repack/h5repack_early_out.h5 create mode 100644 build/tools/h5repack/h5repack_ext.bin create mode 100644 build/tools/h5repack/h5repack_ext.h5 create mode 100644 build/tools/h5repack/h5repack_ext_out.h5 create mode 100644 build/tools/h5repack/h5repack_fill.h5 create mode 100644 build/tools/h5repack/h5repack_fill_out.h5 create mode 100644 build/tools/h5repack/h5repack_filters.h5 create mode 100644 build/tools/h5repack/h5repack_filters.o create mode 100644 build/tools/h5repack/h5repack_filters_out.h5 create mode 100644 build/tools/h5repack/h5repack_fletcher.h5 create mode 100644 build/tools/h5repack/h5repack_fletcher_out.h5 create mode 100644 build/tools/h5repack/h5repack_hlink.h5 create mode 100644 build/tools/h5repack/h5repack_hlink_out.h5 create mode 100644 build/tools/h5repack/h5repack_layout.h5 create mode 100644 build/tools/h5repack/h5repack_layout2.h5 create mode 100644 build/tools/h5repack/h5repack_layout3.h5 create mode 100644 build/tools/h5repack/h5repack_layout_out.h5 create mode 100644 build/tools/h5repack/h5repack_main.o create mode 100644 build/tools/h5repack/h5repack_named_dtypes.h5 create mode 100644 build/tools/h5repack/h5repack_named_dtypes_out.h5 create mode 100644 build/tools/h5repack/h5repack_nbit.h5 create mode 100644 build/tools/h5repack/h5repack_nbit_out.h5 create mode 100644 build/tools/h5repack/h5repack_objs.h5 create mode 100644 build/tools/h5repack/h5repack_objs_out.h5 create mode 100644 build/tools/h5repack/h5repack_opttable.o create mode 100644 build/tools/h5repack/h5repack_parse.o create mode 100644 build/tools/h5repack/h5repack_plugin.sh create mode 100644 build/tools/h5repack/h5repack_plugin.sh.chkexe create mode 100644 build/tools/h5repack/h5repack_plugin.sh.chklog create mode 100644 build/tools/h5repack/h5repack_refs.h5 create mode 100644 build/tools/h5repack/h5repack_refs.o create mode 100644 build/tools/h5repack/h5repack_shuffle.h5 create mode 100644 build/tools/h5repack/h5repack_shuffle_out.h5 create mode 100644 build/tools/h5repack/h5repack_soffset.h5 create mode 100644 build/tools/h5repack/h5repack_soffset_out.h5 create mode 100644 build/tools/h5repack/h5repack_ub.h5 create mode 100644 build/tools/h5repack/h5repack_ub_out.h5 create mode 100644 build/tools/h5repack/h5repack_verify.o create mode 100755 build/tools/h5repack/h5repacktst create mode 100644 build/tools/h5repack/h5repacktst.chkexe create mode 100644 build/tools/h5repack/h5repacktst.chklog create mode 100644 build/tools/h5repack/h5repacktst.o create mode 100644 build/tools/h5repack/libdynlibadd.la create mode 100644 build/tools/h5repack/libdynlibvers.la create mode 100755 build/tools/h5repack/testh5repack_detect_szip create mode 100644 build/tools/h5repack/testh5repack_detect_szip.o create mode 100644 build/tools/h5repack/ublock.bin create mode 100644 build/tools/h5stat/.deps/h5stat.Po create mode 100644 build/tools/h5stat/.deps/h5stat_gentest.Po create mode 100755 build/tools/h5stat/.libs/h5stat create mode 100755 build/tools/h5stat/.libs/h5stat_gentest create mode 100755 build/tools/h5stat/.libs/lt-h5stat create mode 100755 build/tools/h5stat/.libs/lt-h5stat_gentest create mode 100644 build/tools/h5stat/Makefile create mode 100755 build/tools/h5stat/h5stat create mode 100644 build/tools/h5stat/h5stat.o create mode 100755 build/tools/h5stat/h5stat_gentest create mode 100644 build/tools/h5stat/h5stat_gentest.chkexe create mode 100644 build/tools/h5stat/h5stat_gentest.chklog create mode 100644 build/tools/h5stat/h5stat_gentest.o create mode 100644 build/tools/h5stat/h5stat_newgrat.h5 create mode 100644 build/tools/h5stat/h5stat_threshold.h5 create mode 100644 build/tools/h5stat/testh5stat.sh create mode 100644 build/tools/h5stat/testh5stat.sh.chkexe create mode 100644 build/tools/h5stat/testh5stat.sh.chklog create mode 100644 build/tools/lib/.deps/h5diff.Plo create mode 100644 build/tools/lib/.deps/h5diff_array.Plo create mode 100644 build/tools/lib/.deps/h5diff_attr.Plo create mode 100644 build/tools/lib/.deps/h5diff_dset.Plo create mode 100644 build/tools/lib/.deps/h5diff_util.Plo create mode 100644 build/tools/lib/.deps/h5tools.Plo create mode 100644 build/tools/lib/.deps/h5tools_dump.Plo create mode 100644 build/tools/lib/.deps/h5tools_filters.Plo create mode 100644 build/tools/lib/.deps/h5tools_ref.Plo create mode 100644 build/tools/lib/.deps/h5tools_str.Plo create mode 100644 build/tools/lib/.deps/h5tools_type.Plo create mode 100644 build/tools/lib/.deps/h5tools_utils.Plo create mode 100644 build/tools/lib/.deps/h5trav.Plo create mode 100644 build/tools/lib/.deps/io_timer.Plo create mode 100644 build/tools/lib/.libs/h5diff.o create mode 100644 build/tools/lib/.libs/h5diff_array.o create mode 100644 build/tools/lib/.libs/h5diff_attr.o create mode 100644 build/tools/lib/.libs/h5diff_dset.o create mode 100644 build/tools/lib/.libs/h5diff_util.o create mode 100644 build/tools/lib/.libs/h5tools.o create mode 100644 build/tools/lib/.libs/h5tools_dump.o create mode 100644 build/tools/lib/.libs/h5tools_filters.o create mode 100644 build/tools/lib/.libs/h5tools_ref.o create mode 100644 build/tools/lib/.libs/h5tools_str.o create mode 100644 build/tools/lib/.libs/h5tools_type.o create mode 100644 build/tools/lib/.libs/h5tools_utils.o create mode 100644 build/tools/lib/.libs/h5trav.o create mode 100644 build/tools/lib/.libs/io_timer.o create mode 100644 build/tools/lib/.libs/libh5tools.a create mode 120000 build/tools/lib/.libs/libh5tools.la create mode 100644 build/tools/lib/Makefile create mode 100644 build/tools/lib/h5diff.lo create mode 100644 build/tools/lib/h5diff.o create mode 100644 build/tools/lib/h5diff_array.lo create mode 100644 build/tools/lib/h5diff_array.o create mode 100644 build/tools/lib/h5diff_attr.lo create mode 100644 build/tools/lib/h5diff_attr.o create mode 100644 build/tools/lib/h5diff_dset.lo create mode 100644 build/tools/lib/h5diff_dset.o create mode 100644 build/tools/lib/h5diff_util.lo create mode 100644 build/tools/lib/h5diff_util.o create mode 100644 build/tools/lib/h5tools.lo create mode 100644 build/tools/lib/h5tools.o create mode 100644 build/tools/lib/h5tools_dump.lo create mode 100644 build/tools/lib/h5tools_dump.o create mode 100644 build/tools/lib/h5tools_filters.lo create mode 100644 build/tools/lib/h5tools_filters.o create mode 100644 build/tools/lib/h5tools_ref.lo create mode 100644 build/tools/lib/h5tools_ref.o create mode 100644 build/tools/lib/h5tools_str.lo create mode 100644 build/tools/lib/h5tools_str.o create mode 100644 build/tools/lib/h5tools_type.lo create mode 100644 build/tools/lib/h5tools_type.o create mode 100644 build/tools/lib/h5tools_utils.lo create mode 100644 build/tools/lib/h5tools_utils.o create mode 100644 build/tools/lib/h5trav.lo create mode 100644 build/tools/lib/h5trav.o create mode 100644 build/tools/lib/io_timer.lo create mode 100644 build/tools/lib/io_timer.o create mode 100644 build/tools/lib/libh5tools.la create mode 100644 build/tools/misc/.deps/h5debug.Po create mode 100644 build/tools/misc/.deps/h5mkgrp.Po create mode 100644 build/tools/misc/.deps/h5repart.Po create mode 100644 build/tools/misc/.deps/h5repart_gentest.Po create mode 100644 build/tools/misc/.deps/repart_test.Po create mode 100644 build/tools/misc/.deps/talign.Po create mode 100755 build/tools/misc/.libs/h5debug create mode 100755 build/tools/misc/.libs/h5mkgrp create mode 100755 build/tools/misc/.libs/h5repart create mode 100755 build/tools/misc/.libs/h5repart_gentest create mode 100755 build/tools/misc/.libs/lt-h5mkgrp create mode 100755 build/tools/misc/.libs/lt-h5repart create mode 100755 build/tools/misc/.libs/lt-h5repart_gentest create mode 100755 build/tools/misc/.libs/lt-repart_test create mode 100755 build/tools/misc/.libs/lt-talign create mode 100755 build/tools/misc/.libs/repart_test create mode 100755 build/tools/misc/.libs/talign create mode 100644 build/tools/misc/Makefile create mode 100644 build/tools/misc/family_file00000.h5 create mode 100644 build/tools/misc/family_file00001.h5 create mode 100644 build/tools/misc/family_file00002.h5 create mode 100644 build/tools/misc/family_file00003.h5 create mode 100644 build/tools/misc/family_file00004.h5 create mode 100644 build/tools/misc/family_file00005.h5 create mode 100644 build/tools/misc/family_file00006.h5 create mode 100644 build/tools/misc/family_file00007.h5 create mode 100644 build/tools/misc/family_file00008.h5 create mode 100644 build/tools/misc/family_file00009.h5 create mode 100644 build/tools/misc/family_file00010.h5 create mode 100644 build/tools/misc/family_file00011.h5 create mode 100644 build/tools/misc/family_file00012.h5 create mode 100644 build/tools/misc/family_file00013.h5 create mode 100644 build/tools/misc/family_file00014.h5 create mode 100644 build/tools/misc/family_file00015.h5 create mode 100644 build/tools/misc/family_file00016.h5 create mode 100644 build/tools/misc/family_file00017.h5 create mode 100644 build/tools/misc/family_file00018.h5 create mode 100755 build/tools/misc/h5cc create mode 100755 build/tools/misc/h5debug create mode 100644 build/tools/misc/h5debug.o create mode 100755 build/tools/misc/h5mkgrp create mode 100644 build/tools/misc/h5mkgrp.o create mode 100644 build/tools/misc/h5redeploy create mode 100755 build/tools/misc/h5repart create mode 100644 build/tools/misc/h5repart.o create mode 100755 build/tools/misc/h5repart_gentest create mode 100644 build/tools/misc/h5repart_gentest.chkexe create mode 100644 build/tools/misc/h5repart_gentest.chklog create mode 100644 build/tools/misc/h5repart_gentest.o create mode 100755 build/tools/misc/repart_test create mode 100644 build/tools/misc/repart_test.o create mode 100755 build/tools/misc/talign create mode 100644 build/tools/misc/talign.chkexe create mode 100644 build/tools/misc/talign.chklog create mode 100644 build/tools/misc/talign.o create mode 100644 build/tools/misc/testh5mkgrp.sh create mode 100644 build/tools/misc/testh5mkgrp.sh.chkexe create mode 100644 build/tools/misc/testh5mkgrp.sh.chklog create mode 100644 build/tools/misc/testh5repart.sh create mode 100644 build/tools/misc/testh5repart.sh.chkexe create mode 100644 build/tools/misc/testh5repart.sh.chklog create mode 100644 build/tools/perform/.deps/chunk.Po create mode 100644 build/tools/perform/.deps/iopipe.Po create mode 100644 build/tools/perform/.deps/overhead.Po create mode 100644 build/tools/perform/.deps/perf.Po create mode 100644 build/tools/perform/.deps/perf_meta.Po create mode 100644 build/tools/perform/.deps/pio_engine.Po create mode 100644 build/tools/perform/.deps/pio_perf.Po create mode 100644 build/tools/perform/.deps/sio_engine.Po create mode 100644 build/tools/perform/.deps/sio_perf.Po create mode 100644 build/tools/perform/.deps/zip_perf.Po create mode 100755 build/tools/perform/.libs/chunk create mode 100755 build/tools/perform/.libs/h5perf_serial create mode 100755 build/tools/perform/.libs/iopipe create mode 100755 build/tools/perform/.libs/lt-chunk create mode 100755 build/tools/perform/.libs/lt-h5perf_serial create mode 100755 build/tools/perform/.libs/lt-iopipe create mode 100755 build/tools/perform/.libs/lt-overhead create mode 100755 build/tools/perform/.libs/lt-perf_meta create mode 100755 build/tools/perform/.libs/lt-zip_perf create mode 100755 build/tools/perform/.libs/overhead create mode 100755 build/tools/perform/.libs/perf create mode 100755 build/tools/perform/.libs/perf_meta create mode 100755 build/tools/perform/.libs/zip_perf create mode 100644 build/tools/perform/Makefile create mode 100755 build/tools/perform/chunk create mode 100644 build/tools/perform/chunk.chkexe create mode 100644 build/tools/perform/chunk.chklog create mode 100644 build/tools/perform/chunk.h5 create mode 100644 build/tools/perform/chunk.o create mode 100755 build/tools/perform/h5perf_serial create mode 100644 build/tools/perform/h5perf_serial.chkexe create mode 100644 build/tools/perform/h5perf_serial.chklog create mode 100755 build/tools/perform/iopipe create mode 100644 build/tools/perform/iopipe.chkexe create mode 100644 build/tools/perform/iopipe.chklog create mode 100644 build/tools/perform/iopipe.h5 create mode 100644 build/tools/perform/iopipe.o create mode 100644 build/tools/perform/iopipe.raw create mode 100755 build/tools/perform/overhead create mode 100644 build/tools/perform/overhead.chkexe create mode 100644 build/tools/perform/overhead.chklog create mode 100644 build/tools/perform/overhead.o create mode 100755 build/tools/perform/perf create mode 100644 build/tools/perform/perf.o create mode 100755 build/tools/perform/perf_meta create mode 100644 build/tools/perform/perf_meta.chkexe create mode 100644 build/tools/perform/perf_meta.chklog create mode 100644 build/tools/perform/perf_meta.o create mode 100644 build/tools/perform/sio_engine.o create mode 100644 build/tools/perform/sio_perf.o create mode 100644 build/tools/perform/x-diag-rd.dat create mode 100644 build/tools/perform/x-diag-wr.dat create mode 100644 build/tools/perform/x-gnuplot create mode 100644 build/tools/perform/x-rowmaj-rd.dat create mode 100644 build/tools/perform/x-rowmaj-wr.dat create mode 100755 build/tools/perform/zip_perf create mode 100644 build/tools/perform/zip_perf.chkexe create mode 100644 build/tools/perform/zip_perf.chklog create mode 100644 build/tools/perform/zip_perf.o diff --git a/README.txt b/README.txt index 1dac361..96376ff 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-pre1 currently under development +HDF5 version 1.8.21-pre1 released on 2018-05-21 Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..f856449 --- /dev/null +++ b/build/Makefile @@ -0,0 +1,1126 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# This makefile mostly just reinvokes make in the various subdirectories +# but does so in the correct order. You can alternatively invoke make from +# each subdirectory manually. +# +# Top-level HDF5 Makefile(.in) + +# pmake has issues if variables are undefined. Solve this problem in +# top-level Makefile by defining .MAKEFLAGS target to -V before pmake can +# encounter any undefined variables. +# Automake resists putting anything but variable definitions first in +# a Makefile.in, so we'll put a placebo comment here and use sed in +# bin/reconfigure to turn it into the .MAKEFLAGS target. Sigh. -JL 2005 +# Configure should set AM_MAKEFLAGS to -V to solve this problem in +# subdirectories. +# NOTE: This means that invoking pmake in a subdirectory will not work. +.MAKEFLAGS: + $(MAKE) all + +VPATH = .. +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(am__DIST_COMMON) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/compile \ + $(top_srcdir)/bin/config.guess $(top_srcdir)/bin/config.sub \ + $(top_srcdir)/bin/install-sh $(top_srcdir)/bin/ltmain.sh \ + $(top_srcdir)/bin/missing $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/config/commence.am COPYING bin/COPYING \ + bin/compile bin/config.guess bin/config.sub bin/depcomp \ + bin/install-sh bin/ltmain.sh bin/missing bin/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +DIST_TARGETS = dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = .. +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = +top_builddir = . +top_srcdir = .. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Some files/directories generated during check that should be cleaned +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *-tmp +TESTPARALLEL_DIR = + +# Define subdirectories to build. +# Add this directory to SUBDIRS so that examples get built after tools +# but before examples in extra interfaces (c++ and fortran). +# Since we're explicitly listing DIST_SUBDIRS, we also need to list +# directories that are only conditionally built (so that their Makefiles +# are cleaned as well). +# Note that `make clean' will not affect the examples or doc directories. + +# Conditionals. These conditionals are defined during configure +# Define each variable to empty if it is not used to placate pmake +#TESTPARALLEL_DIR = testpar +CXX_DIR = +#CXX_DIR = c++ +FORTRAN_DIR = +#FORTRAN_DIR = fortran +#HDF5_HL_DIR = +HDF5_HL_DIR = hl +SUBDIRS = src test $(TESTPARALLEL_DIR) tools . $(CXX_DIR) $(FORTRAN_DIR) \ + $(HDF5_HL_DIR) + +DIST_SUBDIRS = src test testpar tools . c++ fortran hl examples + +# Some files generated during configure that should be cleaned +DISTCLEANFILES = config/stamp1 config/stamp2 +all: all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(am__empty): + +$(top_srcdir)/configure: # $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build/sub \ + && ../../configure \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + --srcdir=../.. --prefix="$$dc_install_base" \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install-exec: install-exec-recursive +install-data: install-data-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-libtool \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-cscope clean-generic \ + clean-libtool cscope cscopelist-am ctags ctags-am dist \ + dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ + dist-xz dist-zip distcheck distclean distclean-generic \ + distclean-libtool distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installcheck-local \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \ + tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Define rules for lib, progs, check, and tests. +# These simply involve recursing into subdirectories. +test _test: check + +lib progs check-p check-s: + for d in $(SUBDIRS); do \ + if test $$d != .; then \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Make all, tests, and (un)install +tests: + for d in $(SUBDIRS); do \ + if test $$d != .; then \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Check-clean also recurses into examples directory +check-clean: + for d in $(SUBDIRS) examples; do \ + if test $$d != .; then \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + $(RM) -rf prefix-tmp destdir-tmp + +# Some C++ compilers/linkers will create a directory named ii_files in +# the root directory, which should be cleaned. +mostlyclean-local: + if test -d ii_files; then \ + $(RM) -rf ii_files; \ + fi + +# 'make install' will now install examples, the same as 'make install-all'. +# 'make-install-all' will be redundant but will still work. +install: install-recursive install-examples +uninstall: uninstall-recursive uninstall-examples + +# 'make install-all' also installs examples +install-all: + @$(MAKE) $(AM_MAKEFLAGS) install +uninstall-all: + @$(MAKE) $(AM_MAKEFLAGS) uninstall + +# Install examples in this directory and recursively +install-examples uninstall-examples: + for d in examples $(HDF5_INTERFACES) $(HL); do \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + done + +# Placeholder to remind users that docs are now in a separate repository. +install-doc: + @echo "docs no longer live in this tree. Use install-examples to install examples." + +uninstall-doc: + @echo "docs no longer live in this tree. Use install-examples to install examples." + +# `make check-install' or `make installcheck' checks that examples can +# be successfully built +installcheck-local: + if test -n "${DESTDIR}"; then \ + (cd ${DESTDIR}$(bindir) && pwd && ./h5redeploy -force); \ + fi + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# check-install is just a synonym for installcheck +check-install: installcheck + +# check-all-install tests all installation methods. +# Install via different mechanism and then compare against the default. +# Fine if only libXXX.a files are different since they may have been ranlib'ed. +check-all-install: + @echo Installing to default location + $(MAKE) install + @echo Installing to different prefix location + $(MAKE) prefix=${ROOT}/prefix-tmp install + @echo Compare against the default installation. + @echo Fine if only libXXX.a files are different. + -diff -r prefix-tmp ${prefix} + @echo Installing to different $$\DESTDIR location + env DESTDIR=${ROOT}/destdir-tmp $(MAKE) install + @echo Compare against the default installation. + @echo Fine if only libXXX.a files are different. + -diff -r destdir-tmp${prefix} ${prefix} + +# Only source files in the src directory include tracing information, +# so 'make trace' only needs to recurse into that directory. +trace: + @(cd src && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Run tests with different Virtual File Drivers. +# Currently, only invoke check-vfd in the test directory. +check-vfd: + for d in src test; do \ + if test $$d != .; then \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Automake wants to make config.status depend on configure. This +# makes sense, but config.status can't always be regenerated +# properly, which can cause builds to fail. +# This is a problem for our Daily Tests, which need to be able to +# 'make distclean' reliably before running configure. +# The simple solution is to override the dependency Automake supplies +# for config.status so that it will never be regenerated. +$(top_builddir)/config.status: + +# Don't include conclude.am in root Makefile; tests target needs to +# recurse into reguar subdirs. + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/c++/Makefile b/build/c++/Makefile new file mode 100644 index 0000000..7b44ff4 --- /dev/null +++ b/build/c++/Makefile @@ -0,0 +1,1413 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# c++/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Top-level HDF5-C++ Makefile(.in) +# +VPATH = ../../c++ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = c++ +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++ +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++ +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../c++ +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +#SUBDIRS = src test +DIST_SUBDIRS = src test examples + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign c++/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Install examples +install-examples uninstall-examples: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +installcheck-local: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/c++/examples/Makefile b/build/c++/examples/Makefile new file mode 100644 index 0000000..446d520 --- /dev/null +++ b/build/c++/examples/Makefile @@ -0,0 +1,1366 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# c++/examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../../c++/examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = $(TEST_SCRIPT) +subdir = c++/examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-c++-ex.sh testh5c++.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-c++-ex.sh.in \ + $(srcdir)/testh5c++.sh.in $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../c++/examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 +INSTALL_SCRIPT_FILES = run-c++-ex.sh + +# These are the programs that 'make all' or 'make prog' will build and +# which 'make check' will run. List them in the order they should be run. +EXAMPLE_PROG = create readdata writedata compound extend_ds chunks h5group \ + h5tutr_cmprss h5tutr_crtatt h5tutr_crtdat h5tutr_crtgrpar \ + h5tutr_crtgrp h5tutr_crtgrpd h5tutr_extend h5tutr_rdwt \ + h5tutr_subset + +TEST_SCRIPT = testh5c++.sh +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# These are the example files to be installed +INSTALL_FILES = create.cpp readdata.cpp writedata.cpp compound.cpp \ + extend_ds.cpp chunks.cpp h5group.cpp \ + h5tutr_cmprss.cpp h5tutr_crtatt.cpp h5tutr_crtdat.cpp \ + h5tutr_crtgrpar.cpp h5tutr_crtgrp.cpp h5tutr_crtgrpd.cpp \ + h5tutr_extend.cpp h5tutr_rdwt.cpp h5tutr_subset.cpp + + +# Tell conclude.am that these are C++ tests. +CXX_API = yes + +# Where to install examples +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/c++ +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign c++/examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-c++-ex.sh: $(top_builddir)/config.status $(srcdir)/run-c++-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5c++.sh: $(top_builddir)/config.status $(srcdir)/testh5c++.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Some of the examples depend on files created by running other examples +readdata.chkexe_: create.chkexe_ +chunks.chkexe_: extend_ds.chkexe_ +h5tutr_rdwt.chkexe_: h5tutr_crtdat.chkexe +h5tutrcrtatt.chkexe_: h5tutr_crtdat.chkexe +h5tutr_crtgrpd.chkexe_: h5tutr_crtgrpar.chkexe + +# How to build programs using h5c++ +$(EXTRA_PROG): $(H5CPP) + $(H5CPP) $(H5CCFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp + +# List dependencies for each program. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C++ compiler, not h5c++. This is +# an inelegant way of solving the problem, unfortunately. +create: $(srcdir)/create.cpp +readdata: $(srcdir)/readdata.cpp +writedata: $(srcdir)/writedata.cpp +compound: $(srcdir)/compound.cpp +extend_ds: $(srcdir)/extend_ds.cpp +chunks: $(srcdir)/chunks.cpp +h5group: $(srcdir)/h5group.cpp + +h5tutr_cmprss: $(srcdir)/h5tutr_cmprss.cpp +h5tutr_crtatt: $(srcdir)/h5tutr_crtatt.cpp +h5tutr_crtdat: $(srcdir)/h5tutr_crtdat.cpp +h5tutr_crtgrpar: $(srcdir)/h5tutr_crtgrpar.cpp +h5tutr_crtgrp: $(srcdir)/h5tutr_crtgrp.cpp +h5tutr_crtgrpd: $(srcdir)/h5tutr_crtgrpd.cpp +h5tutr_extend: $(srcdir)/h5tutr_extend.cpp +h5tutr_rdwt: $(srcdir)/h5tutr_rdwt.cpp +h5tutr_subset: $(srcdir)/h5tutr_subset.cpp + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/c++/examples/run-c++-ex.sh b/build/c++/examples/run-c++-ex.sh new file mode 100644 index 0000000..a8ca8de --- /dev/null +++ b/build/c++/examples/run-c++-ex.sh @@ -0,0 +1,122 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-c++-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the c++ examples from source files # +# installed in .../share/hdf5_examples/c++ using h5c++. The # +# order for running programs with RunTest in the MAIN section below is taken # +# from the Makefile. The order is important since some of the test programs # +# use data files created by earlier test programs. Any future additions should # +# be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../}" +AR="ar" +RANLIB="ranlib" +H5TOOL="h5c++" # The tool name +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".cpp" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + + + +################## MAIN ################## + +# Run tests +if [ $? -eq 0 ] +then + echo "*************************************************" + echo "** Run C++ API Examples **" + echo "** **" + echo "*************************************************" + if (RunTest create &&\ + rm create &&\ + RunTest readdata &&\ + rm readdata &&\ + RunTest writedata &&\ + rm writedata &&\ + RunTest compound &&\ + rm compound &&\ + RunTest extend_ds &&\ + rm extend_ds &&\ + RunTest chunks &&\ + rm chunks &&\ + RunTest h5group &&\ + rm h5group); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi + echo + echo "***************************************************" + echo "** Run Tutorial Examples **" + echo "** **" + echo "***************************************************" + if (RunTest h5tutr_crtdat &&\ + rm h5tutr_crtdat &&\ + RunTest h5tutr_rdwt &&\ + rm h5tutr_rdwt &&\ + RunTest h5tutr_crtatt &&\ + rm h5tutr_crtatt &&\ + RunTest h5tutr_crtgrp &&\ + rm h5tutr_crtgrp &&\ + RunTest h5tutr_crtgrpar &&\ + rm h5tutr_crtgrpar &&\ + RunTest h5tutr_crtgrpd &&\ + rm h5tutr_crtgrpd &&\ + RunTest h5tutr_extend &&\ + rm h5tutr_extend &&\ + RunTest h5tutr_subset &&\ + rm h5tutr_subset &&\ + RunTest h5tutr_cmprss &&\ + rm h5tutr_cmprss ); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +# Cleanup +rm *.o +rm *.h5 +echo + +exit $EXIT_VALUE + diff --git a/build/c++/examples/testh5c++.sh b/build/c++/examples/testh5c++.sh new file mode 100644 index 0000000..a2c3586 --- /dev/null +++ b/build/c++/examples/testh5c++.sh @@ -0,0 +1,279 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5c++ compiler tool +# Created: Albert Cheng, 2007/3/14 +# +# Modification: +# + +srcdir=../../../c++/examples + +# Initializations +TESTNAME=h5c++ +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# Note: no '/' after DESTDIR. Explanation in commence.am +prefix="${prefix:-${DESTDIR}/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" +AR="ar" +RANLIB="ranlib" +H5TOOL="h5c++" # The tool name +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +CMP='cmp -s' +DIFF='diff -c' + +nerrors=$EXIT_SUCCESS +verbose=yes + +# setup my machine information. +myos=`uname -s` +myhostnama=`uname -n` + +# Generate some source files and library for tests. +suffix=cpp # source file suffix +hdf5main=${H5TOOL}_hdf5main.$suffix +hdf5main_o=${H5TOOL}_hdf5main.o +appmain=${H5TOOL}_appmain.$suffix +appmain_o=${H5TOOL}_appmain.o +prog1=${H5TOOL}_prog1.$suffix +prog1_o=${H5TOOL}_prog1.o +prog2=${H5TOOL}_prog2.$suffix +prog2_o=${H5TOOL}_prog2.o +applib=libapp${H5TOOL}.a + +# short hands +# Caution: if some *.h5 files must be cleaned here, list them by names. +# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated +# by otehr test programs. This will cause a racing condition error when +# parallel make (e.g., gmake -j 4) is used. +temp_SRC="$hdf5main $appmain $prog1 $prog2" +temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` +temp_FILES="a.out $applib" + +# Generate appmain: +# An application Main that calls hdf5 and application's own functions. +cat > $appmain < + +#ifdef OLD_HEADER_FILENAME +#include +#else +#include +#endif + +#include "H5Cpp.h" + +#ifndef H5_NO_NAMESPACE +using namespace H5; +#endif + +const H5std_string FILE_NAME( "tmpapp.h5" ); +int sub1(void); +int sub2(void); + +int main (void) +{ + sub1(); + sub2(); + H5File file( FILE_NAME, H5F_ACC_TRUNC ); + return 0; +} + +EOF + +# generate prog1 +cat > $prog1 < +#else + #include +#endif +#include + +#ifndef H5_NO_NAMESPACE +#ifndef H5_NO_STD + using std::cout; + using std::endl; +#endif // H5_NO_STD +#endif +int sub1(void) +{ + cout << "in sub1" << endl; + return 0; +} +EOF + +# generate prog2 +cat > $prog2 < +#else + #include +#endif +#include + +#ifndef H5_NO_NAMESPACE +#ifndef H5_NO_STD + using std::cout; + using std::endl; +#endif // H5_NO_STD +#endif +int sub2(void) +{ + cout << "in sub2" << endl; + return 0; +} +EOF + +# Generate HDF5 Main Program: +# An HDF5 sample program that calls hdf5 functions. +cat > $hdf5main < + +#ifdef OLD_HEADER_FILENAME +#include +#else +#include +#endif + +#include "H5Cpp.h" + +#ifndef H5_NO_NAMESPACE +using namespace H5; +#endif + +const H5std_string FILE_NAME( "tmphdf5.h5" ); + +int main (void) +{ + H5File file( FILE_NAME, H5F_ACC_TRUNC ); + return 0; +} +EOF + + +# Parse option +# None + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + + +# Debug printing +# Change : to echo to print the debug statement +DPRINT() { + : $* +} + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# failed output. The actual output is not removed if $HDF5_NOCLEANUP is +# defined. +# +TOOLTEST() { + out=test_$H5TOOL_$$.out + err=test_$H5TOOL_$$.err + + # Run test. + TESTING $H5TOOL $@ + $H5TOOL_BIN $@ > $out 2>&1 + result=$? + if [ $result = 0 ]; then + echo " PASSED" + else + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && \ + ( echo "========== results ==========="; cat $out; + echo "===============================================") |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $out + fi +} + +# Print a "SKIP" message +SKIP() { + TESTING $H5TOOL $@ + echo " -SKIP-" +} + + +############################################################################## +### T H E T E S T S ### +############################################################################## +# +# HDF5 program that calls HDF5 APIs. +echo "***"Simple Compile and Link in one step. +TOOLTEST $hdf5main +# Application program that calls HDF5 and its own functions. +TOOLTEST $appmain $prog1 $prog2 + +# Compile, then link. +echo "***"Compile and Link in two steps. +TOOLTEST -c $hdf5main +TOOLTEST $hdf5main_o +TOOLTEST -c $appmain $prog1 $prog2 +TOOLTEST $appmain_o $prog1_o $prog2_o + +# Build external library, then link with it. +echo "***"Build external library and link with it. +TOOLTEST -c $prog1 $prog2 +rm -f $applib +$AR cru $applib $prog1_o $prog2_o +$RANLIB $applib +TOOLTEST $appmain $applib +TOOLTEST $appmain_o $applib +# This is peculiar but should work. (See bug ID 729) +TOOLTEST -c $hdf5main +rm -f $applib +$AR cru $applib $hdf5main_o +$RANLIB $applib +# SunOS does not support this. Skip it. +if [ $myos = SunOS ]; then + SKIP -o a.out $applib +else + TOOLTEST -o a.out $applib +fi + +# Just preprocess, no compile, no link. +echo "***"Just preprocess, no compile, no link. +TOOLTEST -E $hdf5main +TOOLTEST -E $appmain $prog1 $prog2 + +############################################################################## +# END +############################################################################## + +# Clean up file +if test -z "$HDF5_NOCLEANUP"; then + rm -f $temp_SRC $temp_OBJ $temp_FILES +fi + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/c++/src/.deps/H5AbstractDs.Plo b/build/c++/src/.deps/H5AbstractDs.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5AbstractDs.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5AcreatProp.Plo b/build/c++/src/.deps/H5AcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5AcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5ArrayType.Plo b/build/c++/src/.deps/H5ArrayType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5ArrayType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5AtomType.Plo b/build/c++/src/.deps/H5AtomType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5AtomType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Attribute.Plo b/build/c++/src/.deps/H5Attribute.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Attribute.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5CommonFG.Plo b/build/c++/src/.deps/H5CommonFG.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5CommonFG.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5CompType.Plo b/build/c++/src/.deps/H5CompType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5CompType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5DataSet.Plo b/build/c++/src/.deps/H5DataSet.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5DataSet.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5DataSpace.Plo b/build/c++/src/.deps/H5DataSpace.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5DataSpace.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5DataType.Plo b/build/c++/src/.deps/H5DataType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5DataType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5DcreatProp.Plo b/build/c++/src/.deps/H5DcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5DcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5DxferProp.Plo b/build/c++/src/.deps/H5DxferProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5DxferProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5EnumType.Plo b/build/c++/src/.deps/H5EnumType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5EnumType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Exception.Plo b/build/c++/src/.deps/H5Exception.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Exception.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5FaccProp.Plo b/build/c++/src/.deps/H5FaccProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5FaccProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5FcreatProp.Plo b/build/c++/src/.deps/H5FcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5FcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5File.Plo b/build/c++/src/.deps/H5File.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5File.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5FloatType.Plo b/build/c++/src/.deps/H5FloatType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5FloatType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Group.Plo b/build/c++/src/.deps/H5Group.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Group.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5IdComponent.Plo b/build/c++/src/.deps/H5IdComponent.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5IdComponent.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5IntType.Plo b/build/c++/src/.deps/H5IntType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5IntType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5LaccProp.Plo b/build/c++/src/.deps/H5LaccProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5LaccProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5LcreatProp.Plo b/build/c++/src/.deps/H5LcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5LcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Library.Plo b/build/c++/src/.deps/H5Library.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Library.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Location.Plo b/build/c++/src/.deps/H5Location.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Location.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5Object.Plo b/build/c++/src/.deps/H5Object.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5Object.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5OcreatProp.Plo b/build/c++/src/.deps/H5OcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5OcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5PredType.Plo b/build/c++/src/.deps/H5PredType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5PredType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5PropList.Plo b/build/c++/src/.deps/H5PropList.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5PropList.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5StrType.Plo b/build/c++/src/.deps/H5StrType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5StrType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5StrcreatProp.Plo b/build/c++/src/.deps/H5StrcreatProp.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5StrcreatProp.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/.deps/H5VarLenType.Plo b/build/c++/src/.deps/H5VarLenType.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/src/.deps/H5VarLenType.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/src/Makefile b/build/c++/src/Makefile new file mode 100644 index 0000000..c4c23aa --- /dev/null +++ b/build/c++/src/Makefile @@ -0,0 +1,1580 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# c++/src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-C++ Makefile(.in) +# + + + +VPATH = ../../../c++/src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = c++/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5c++ +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ + "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5_cpp_la_DEPENDENCIES = $(LIBHDF5) +am_libhdf5_cpp_la_OBJECTS = H5Exception.lo H5IdComponent.lo \ + H5DataSpace.lo H5PropList.lo H5Library.lo H5FaccProp.lo \ + H5FcreatProp.lo H5LaccProp.lo H5StrcreatProp.lo \ + H5LcreatProp.lo H5AcreatProp.lo H5DxferProp.lo H5DcreatProp.lo \ + H5Location.lo H5AbstractDs.lo H5Attribute.lo H5Object.lo \ + H5OcreatProp.lo H5DataType.lo H5AtomType.lo H5PredType.lo \ + H5EnumType.lo H5IntType.lo H5FloatType.lo H5StrType.lo \ + H5ArrayType.lo H5VarLenType.lo H5CompType.lo H5DataSet.lo \ + H5CommonFG.lo H5Group.lo H5File.lo +libhdf5_cpp_la_OBJECTS = $(am_libhdf5_cpp_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5_cpp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(AM_CXXFLAGS) $(CXXFLAGS) $(libhdf5_cpp_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +SCRIPTS = $(bin_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_$(V)) +am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_$(V)) +am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(libhdf5_cpp_la_SOURCES) +DIST_SOURCES = $(libhdf5_cpp_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5c++.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../c++/src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 + +# This is our main target +lib_LTLIBRARIES = libhdf5_cpp.la + +# Add libtool numbers to the HDF5 C++ library (from config/lt_vers.am) +libhdf5_cpp_la_LDFLAGS = -version-info $(LT_CXX_VERS_INTERFACE):$(LT_CXX_VERS_REVISION):$(LT_CXX_VERS_AGE) $(AM_LDFLAGS) +bin_SCRIPTS = h5c++ + +# Source files for the library +libhdf5_cpp_la_SOURCES = H5Exception.cpp H5IdComponent.cpp \ + H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ + H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ + H5StrcreatProp.cpp H5LcreatProp.cpp H5AcreatProp.cpp \ + H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ + H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ + H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ + H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ + H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ + H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ + H5CommonFG.cpp H5Group.cpp H5File.cpp + + +# HDF5 C++ library depends on HDF5 Library. +libhdf5_cpp_la_LIBADD = $(LIBHDF5) + +# Public headers +include_HEADERS = H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \ + H5CommonFG.h H5CompType.h H5DataSet.h H5DataSpace.h H5DataType.h \ + H5OcreatProp.h H5DcreatProp.h H5DxferProp.h H5EnumType.h \ + H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \ + H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5LaccProp.h \ + H5StrcreatProp.h H5LcreatProp.h H5AcreatProp.h \ + H5Library.h H5Location.h H5Object.h H5PredType.h H5PropList.h \ + H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h + + +# h5c++ and libhdf5.settings are generated during configure. Remove only when +# distclean. +DISTCLEANFILES = h5c++ libhdf5.settings + +# Mark this directory as part of the C++ API +CXX_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign c++/src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5c++: $(top_builddir)/config.status $(srcdir)/h5c++.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5_cpp.la: $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_DEPENDENCIES) $(EXTRA_libhdf5_cpp_la_DEPENDENCIES) + $(AM_V_CXXLD)$(libhdf5_cpp_la_LINK) -rpath $(libdir) $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_LIBADD) $(LIBS) +install-binSCRIPTS: $(bin_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5AbstractDs.Plo +include ./$(DEPDIR)/H5AcreatProp.Plo +include ./$(DEPDIR)/H5ArrayType.Plo +include ./$(DEPDIR)/H5AtomType.Plo +include ./$(DEPDIR)/H5Attribute.Plo +include ./$(DEPDIR)/H5CommonFG.Plo +include ./$(DEPDIR)/H5CompType.Plo +include ./$(DEPDIR)/H5DataSet.Plo +include ./$(DEPDIR)/H5DataSpace.Plo +include ./$(DEPDIR)/H5DataType.Plo +include ./$(DEPDIR)/H5DcreatProp.Plo +include ./$(DEPDIR)/H5DxferProp.Plo +include ./$(DEPDIR)/H5EnumType.Plo +include ./$(DEPDIR)/H5Exception.Plo +include ./$(DEPDIR)/H5FaccProp.Plo +include ./$(DEPDIR)/H5FcreatProp.Plo +include ./$(DEPDIR)/H5File.Plo +include ./$(DEPDIR)/H5FloatType.Plo +include ./$(DEPDIR)/H5Group.Plo +include ./$(DEPDIR)/H5IdComponent.Plo +include ./$(DEPDIR)/H5IntType.Plo +include ./$(DEPDIR)/H5LaccProp.Plo +include ./$(DEPDIR)/H5LcreatProp.Plo +include ./$(DEPDIR)/H5Library.Plo +include ./$(DEPDIR)/H5Location.Plo +include ./$(DEPDIR)/H5Object.Plo +include ./$(DEPDIR)/H5OcreatProp.Plo +include ./$(DEPDIR)/H5PredType.Plo +include ./$(DEPDIR)/H5PropList.Plo +include ./$(DEPDIR)/H5StrType.Plo +include ./$(DEPDIR)/H5StrcreatProp.Plo +include ./$(DEPDIR)/H5VarLenType.Plo + +.cpp.o: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: + $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(HEADERS) all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binSCRIPTS install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binSCRIPTS uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binSCRIPTS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am \ + install-includeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binSCRIPTS uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that +# holds *.ii files, which are template entity instantiations. +# This entire directory should be cleaned. +mostlyclean-local: + @if test -d ii_files; then \ + $(RM) -rf ii_files; \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/c++/src/h5c++ b/build/c++/src/h5c++ new file mode 100644 index 0000000..e4570fc --- /dev/null +++ b/build/c++/src/h5c++ @@ -0,0 +1,393 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# + +############################################################################ +## ## +## Things You May Have to Modify: ## +## ## +## If the following paths don't point to the place were HDF5 is installed ## +## on your system (i.e., you received a binary distribution or moved the ## +## files from the originally installed directory to another directory) ## +## then modify them accordingly to represent the new paths. ## +## ## +############################################################################ +prefix="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" +exec_prefix="${prefix}" +libdir="${exec_prefix}/lib" +includedir="${prefix}/include" +HL="hl" + +############################################################################ +## ## +## Things You Can Modify to Override HDF5 Library Build Components: ## +## ## +## (Advanced usage - know what you're doing - you're on your own here.) ## +## The four variables below can be used to insert paths and flags in ## +## CPPFLAGS, CXXFLAGS, LDFLAGS, or LIBS in the h5cc compile line: ## +## $CLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS ## +## $LDFLAGS $LIBS $clibpath $link_objs $link_args $shared_link ## +## ## +## These settings can be overriden by setting HDF5_CXXFLAGS, ## +## HDF5_CPPFLAGS, HDF5_LDFLAGS, or HDF5_LIBS in the environment. ## +## ## +############################################################################ +CXXFLAGSBASE="" +CPPFLAGSBASE="" +LDFLAGSBASE="" +LIBSBASE="" + +############################################################################ +## ## +## You shouldn't have to modify anything below this line. ## +## ## +############################################################################ + +# Constants definitions +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +host_os="linux-gnu" + +prog_name="`basename $0`" + +allargs="" +compile_args="" +libraries="" +link_args="" +link_objs="" +clibpath="" + +do_link="yes" +do_compile="no" +dash_o="no" +dash_c="no" +get_output_file="no" + +SHOW="eval" +CXXBASE="no" +CXXLINKERBASE="no" + +# CXXFLAGS, CPPFLAGS and LDFLAGS are reserved for use by the script user. +# FLAGS brought from the hdf5 build are put in H5BLD_*FLAGS. + +# User's CPPFLAGS and CXXFLAGS come after their H5BLD counterparts. User's +# LDFLAGS come just before clibpath, user's LIBS come after $link_objs and +# before the hdf5 libraries in $link_args, followed by any external library +# paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in +# from the hdf5 build. The order of the flags is intended to give precedence +# to the user's flags. +H5BLD_CXXFLAGS=" " +H5BLD_CPPFLAGS=" " +H5BLD_LDFLAGS=" " +H5BLD_LIBS="-lz -ldl -lm " + +CXX="${HDF5_CXX:-$CXXBASE}" +CXXLINKER="${HDF5_CLINKER:-$CXXLINKERBASE}" +CXXFLAGS="${HDF5_CXXFLAGS:-$CXXFLAGSBASE}" +CPPFLAGS="${HDF5_CPPFLAGS:-$CPPFLAGSBASE}" +LDFLAGS="${HDF5_LDFLAGS:-$LDFLAGSBASE}" +LIBS="${HDF5_LIBS:-$LIBSBASE}" + +# If a static library is available, the default will be to use it. If the only +# available library is shared, it will be used by default. The user can +# override either default, although choosing an unavailable library will result +# in link errors. +STATIC_AVAILABLE="yes" +if test "${STATIC_AVAILABLE}" = "yes"; then + USE_SHARED_LIB="${HDF5_USE_SHLIB:-no}" +else + USE_SHARED_LIB="${HDF5_USE_SHLIB:-yes}" +fi + +usage() { + # A wonderfully informative "usage" message. + echo "usage: $prog_name [OPTIONS] " + echo " OPTIONS:" + echo " -help This help message." + echo " -echo Show all the shell commands executed" + echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" + echo " subdirectories [default: $prefix]" + echo " -show Show the commands without executing them" + echo " -showconfig Show the HDF5 library configuration summary" + echo " -shlib Compile with shared HDF5 libraries [default for hdf5 built" + echo " without static libraries]" + echo " -noshlib Compile with static HDF5 libraries [default for hdf5 built" + echo " with static libraries]" + echo " " + echo " - the normal compile line options for your compiler." + echo " $prog_name uses the same compiler you used to compile" + echo " HDF5. Check with your compiler's man pages for more" + echo " information on which options are needed." + echo " " + echo " You can override the compiler, linker, and whether or not to use static" + echo " or shared libraries to compile your program by setting the following" + echo " environment variables accordingly:" + echo " " + echo " HDF5_CXX - use a different C++ compiler" + echo " HDF5_CXXLINKER - use a different linker" + echo " HDF5_USE_SHLIB=[yes|no] - use shared or static version of the HDF5 library" + echo " [default: no except when built with only" + echo " shared libraries]" + echo " You can also add or change paths and flags to the compile line using" + echo " the following environment varibles or by assigning them to their counterparts" + echo " in the 'Things You Can Modify to Override...'" section of $prog_name + echo " " + echo " Variable Current value to be replaced" + echo " HDF5_CPPFLAGS \"$CPPFLAGSBASE\"" + echo " HDF5_CXXFLAGS \"$CXXFLAGSBASE\"" + echo " HDF5_LDFLAGS \"$LDFLAGSBASE\"" + echo " HDF5_LIBS \"$LIBSBASE\"" + echo " " + echo " Note that adding library paths to HDF5_LDFLAGS where another hdf5 version" + echo " is located may link your program with that other hdf5 library version." + echo " " + exit $EXIT_FAILURE +} + +# Show the configuration summary of the library recorded in the +# libhdf5.settings file reside in the lib directory. +showconfigure() +{ + cat ${libdir}/libhdf5.settings + status=$? +} + +# Main +status=$EXIT_SUCCESS + +if test "$#" = "0"; then + # No parameters specified, issue usage statement and exit. + usage +fi + +case "$CXX" in + gcc) + kind="gcc" + ;; + mpicc|mpcc|mpicc_r) + # Is this gcc masquarading as an MPI compiler? + if test "`${CXX} -v 2>&1 | sed -n 2p | cut -c1-3`" = "gcc"; then + kind="gcc" + else + # Nope + kind="$host_os" + fi + ;; + *) + kind="$host_os" + ;; +esac + +for arg in $@ ; do + if test "x$get_output_file" = "xyes"; then + link_args="$link_args $arg" + output_file="$arg" + get_output_file="no" + continue + fi + + case "$arg" in + -c) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + + if test "x$do_link" = "xyes" -a -n "$output_file"; then + compile_args="$compile_args -o $output_file" + fi + + do_link="no" + dash_c="yes" + ;; + -o) + allargs="$allargs $arg" + dash_o="yes" + + if test "x$dash_c" = "xyes"; then + compile_args="$compile_args $arg" + else + link_args="$link_args $arg" + do_link="yes" + get_output_file="yes" + fi + ;; + -E|-M|-MT) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + dash_c="yes" + do_link="no" + ;; + -l*) + libraries=" $libraries $arg " + allargs="$allargs $arg" + ;; + -prefix=*) + prefix="`expr "$arg" : '-prefix=\(.*\)'`" + ;; + -echo) + set -x + ;; + -show) + SHOW="echo" + ;; + -showconfig) + showconfigure + exit $status + ;; + -shlib) + USE_SHARED_LIB="yes" + ;; + -noshlib) + USE_SHARED_LIB="no" + ;; + -help) + usage + ;; + *\"*) + qarg="'"$arg"'" + allargs="$allargs $qarg" + ;; + *\'*) + qarg='\"'"$arg"'\"' + allargs="$allargs $qarg" + ;; + + *) + allargs="$allargs $qarg" + + if [ -s "$arg" ] ; then + ext=`expr "$arg" : '.*\(\..*\)'` + if [ "$ext" = ".C" -o "$ext" = ".cxx" -o "$ext" = ".cpp" -o \ + "$ext" = ".cc" -o "$ext" = ".c" -o "$ext" = ".CC" ] ; then + + do_compile="yes" + compile_args="$compile_args $arg" + fname=`basename $arg $ext` + link_objs="$link_objs $fname.o" + elif [ "$ext" = ".o" ] ; then + if test "x$dash_c" = "xyes" ; then + compile_args="$compile_args $arg" + else + do_link="yes" + link_objs="$link_objs $arg" + fi + elif test "x$ext" = "x.a"; then + # This is an archive that we're linking in + libraries=" $libraries $arg " + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + ;; + esac +done + +if test "x$do_compile" = "xyes"; then + if test "x$dash_c" != "xyes"; then + compile_args="-c $compile_args" + fi + + $SHOW $CXX -I$includedir $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS $compile_args + status=$? + + if test "$status" != "0"; then + exit $status + fi +fi + +if test "x$do_link" = "xyes"; then + shared_link="" + # conditionnaly link with the hl library + if test "X$HL" = "Xhl"; then + libraries=" $libraries -lhdf5_hl_cpp -lhdf5_cpp -lhdf5_hl -lhdf5 " + else + libraries=" $libraries -lhdf5_cpp -lhdf5 " + fi + link_args="$link_args -L${libdir}" + + case "$kind" in + gcc|linux*) + # MacOS X doesn't support the "-Wl,-rpath -Wl," style of linker flags. + # It appears to want none of them specified. + case "$host_os" in + darwin*) flag="" ;; + *) flag="-Wl,-rpath -Wl," ;; + esac + ;; + hpux*) flag="-Wl,+b -Wl," ;; + freebsd*|solaris*) flag="-R" ;; + rs6000*|aix*) flag="-L" ;; + sgi) flag="-rpath " ;; + *) flag="" ;; + esac + + if test -n "$flag"; then + shared_link="${flag}${libdir}" + fi + + if test "x$USE_SHARED_LIB" != "xyes"; then + # The "-lhdf5" & "-lhdf5_hl" flags are in here already...This is a static + # compile though, so change it to the static version (.a) of the library. + new_libraries="" + for lib in $libraries; do + case "$lib" in + -lhdf5) + new_libraries="$new_libraries ${libdir}/libhdf5.a" + ;; + -lhdf5_hl) + new_libraries="$new_libraries ${libdir}/libhdf5_hl.a" + ;; + -lhdf5_cpp) + new_libraries="$new_libraries ${libdir}/libhdf5_cpp.a" + ;; + -lhdf5_hl_cpp) + new_libraries="$new_libraries ${libdir}/libhdf5_hl_cpp.a" + ;; + *) + new_libraries="$new_libraries $lib" + ;; + esac + done + libraries="$new_libraries" + fi + + for lib in $libraries; do + if echo $link_args | grep " $lib " > /dev/null || + echo $link_args | grep " $lib$" > /dev/null; then + : + else + link_args="$link_args $lib " + fi + done + + # The LIBS are just a bunch of -l* libraries necessary for the HDF5 + # module. It's okay if they're included twice in the compile line. + link_args="$link_args $H5BLD_LDFLAGS $H5BLD_LIBS" + + # User's CPPFLAGS and CXXFLAGS come after their H5BLD counterparts. User's + # LDFLAGS come just before clibpath, user's LIBS come after $link_objs and + # before the hdf5 libraries in $link_args, followed by any external library + # paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in + # from the hdf5 build. The order of the flags is intended to give precedence + # to the user's flags. + + $SHOW $CXXLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS $LDFLAGS $clibpath $link_objs $LIBS $link_args $shared_link + + status=$? +fi + +exit $status diff --git a/build/c++/test/.deps/dsets.Po b/build/c++/test/.deps/dsets.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/dsets.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/h5cpputil.Po b/build/c++/test/.deps/h5cpputil.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/h5cpputil.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tarray.Po b/build/c++/test/.deps/tarray.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tarray.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tattr.Po b/build/c++/test/.deps/tattr.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tattr.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tcompound.Po b/build/c++/test/.deps/tcompound.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tcompound.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tdspl.Po b/build/c++/test/.deps/tdspl.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tdspl.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/testhdf5.Po b/build/c++/test/.deps/testhdf5.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/testhdf5.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tfile.Po b/build/c++/test/.deps/tfile.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tfile.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tfilter.Po b/build/c++/test/.deps/tfilter.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tfilter.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/th5s.Po b/build/c++/test/.deps/th5s.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/th5s.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tlinks.Po b/build/c++/test/.deps/tlinks.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tlinks.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tobject.Po b/build/c++/test/.deps/tobject.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tobject.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/trefer.Po b/build/c++/test/.deps/trefer.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/trefer.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/ttypes.Po b/build/c++/test/.deps/ttypes.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/ttypes.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/.deps/tvlstr.Po b/build/c++/test/.deps/tvlstr.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/c++/test/.deps/tvlstr.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/c++/test/H5srcdir_str.h b/build/c++/test/H5srcdir_str.h new file mode 100644 index 0000000..71d730e --- /dev/null +++ b/build/c++/test/H5srcdir_str.h @@ -0,0 +1,20 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/* If you are reading this file and it has a '.h' suffix, it was automatically + * generated from the '.in' version. Make changes there. + */ + +/* Set the 'srcdir' path from configure time */ +static const char *config_srcdir = "../../../c++/test"; + diff --git a/build/c++/test/Makefile b/build/c++/test/Makefile new file mode 100644 index 0000000..1f8c365 --- /dev/null +++ b/build/c++/test/Makefile @@ -0,0 +1,1420 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# c++/test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-C++ Makefile(.in) +# +VPATH = ../../../c++/test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = $(am__EXEEXT_1) +subdir = c++/test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = H5srcdir_str.h +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = testhdf5$(EXEEXT) +am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) dsets.$(OBJEXT) \ + tattr.$(OBJEXT) tarray.$(OBJEXT) tcompound.$(OBJEXT) \ + tdspl.$(OBJEXT) tfile.$(OBJEXT) tfilter.$(OBJEXT) \ + th5s.$(OBJEXT) tlinks.$(OBJEXT) tobject.$(OBJEXT) \ + trefer.$(OBJEXT) ttypes.$(OBJEXT) tvlstr.$(OBJEXT) \ + h5cpputil.$(OBJEXT) +testhdf5_OBJECTS = $(am_testhdf5_OBJECTS) +testhdf5_LDADD = $(LDADD) +testhdf5_DEPENDENCIES = $(LIBH5TEST) $(LIBH5CPP) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_$(V)) +am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_$(V)) +am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(testhdf5_SOURCES) +DIST_SOURCES = $(testhdf5_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/H5srcdir_str.h.in $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src, test, and c++/src directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/test -I$(top_srcdir)/c++/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../c++/test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +# Temporary files +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 tattr_multi.h5 \ + tfattrs.h5 tattr_scalar.h5 tattr_compound.h5 tattr_dtype.h5 \ + tattr_basic.h5 + +# These are our main targets. They should be listed in the order to be +# executed, generally most specific tests to least specific tests. +TEST_PROG = testhdf5 + +# The tests depend on the hdf5 library, test library, and the c++ library +LDADD = $(LIBH5TEST) $(LIBH5CPP) $(LIBHDF5) +testhdf5_SOURCES = testhdf5.cpp dsets.cpp tattr.cpp tarray.cpp \ + tcompound.cpp tdspl.cpp tfile.cpp tfilter.cpp th5s.cpp \ + tlinks.cpp tobject.cpp trefer.cpp ttypes.cpp tvlstr.cpp \ + h5cpputil.cpp + + +# Tell conclude.am that these are C++ tests. +CXX_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign c++/test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +H5srcdir_str.h: $(top_builddir)/config.status $(srcdir)/H5srcdir_str.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +testhdf5$(EXEEXT): $(testhdf5_OBJECTS) $(testhdf5_DEPENDENCIES) $(EXTRA_testhdf5_DEPENDENCIES) + @rm -f testhdf5$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(testhdf5_OBJECTS) $(testhdf5_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/dsets.Po +include ./$(DEPDIR)/h5cpputil.Po +include ./$(DEPDIR)/tarray.Po +include ./$(DEPDIR)/tattr.Po +include ./$(DEPDIR)/tcompound.Po +include ./$(DEPDIR)/tdspl.Po +include ./$(DEPDIR)/testhdf5.Po +include ./$(DEPDIR)/tfile.Po +include ./$(DEPDIR)/tfilter.Po +include ./$(DEPDIR)/th5s.Po +include ./$(DEPDIR)/tlinks.Po +include ./$(DEPDIR)/tobject.Po +include ./$(DEPDIR)/trefer.Po +include ./$(DEPDIR)/ttypes.Po +include ./$(DEPDIR)/tvlstr.Po + +.cpp.o: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: + $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +testhdf5.log: testhdf5$(EXEEXT) + @p='testhdf5$(EXEEXT)'; \ + b='testhdf5'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that +# holds *.ii files, which are template entity instantiations. +# This entire directory should be cleaned. +mostlyclean-local: + @if test -d ii_files; then \ + $(RM) -rf ii_files; \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/config.log b/build/config.log new file mode 100644 index 0000000..7a82158 --- /dev/null +++ b/build/config.log @@ -0,0 +1,33663 @@ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by HDF5 configure 1.8.21-pre1, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ ../configure + +## --------- ## +## Platform. ## +## --------- ## + +hostname = jelly +uname -m = x86_64 +uname -r = 3.10.0-327.18.2.el7.x86_64 +uname -s = Linux +uname -v = #1 SMP Thu May 12 11:03:55 UTC 2016 + +/usr/bin/uname -p = x86_64 +/bin/uname -X = unknown + +/bin/arch = x86_64 +/usr/bin/arch -k = unknown +/usr/convex/getsysinfo = unknown +/usr/bin/hostinfo = unknown +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin +PATH: /usr/hdf/bin/AUTOTOOLS +PATH: ./ +PATH: /usr/hdf/bin +PATH: /usr/local/bin +PATH: /usr/bin +PATH: /usr/local/sbin +PATH: /usr/sbin +PATH: /usr/kerberos/bin +PATH: /bin +PATH: /mnt/wrk/lrknox/ec2/bin +PATH: /home/lrknox/bin +PATH: /home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:3086: checking for a BSD-compatible install +configure:3154: result: /usr/bin/install -c +configure:3165: checking whether build environment is sane +configure:3220: result: yes +configure:3371: checking for a thread-safe mkdir -p +configure:3410: result: /usr/bin/mkdir -p +configure:3417: checking for gawk +configure:3433: found /usr/bin/gawk +configure:3444: result: gawk +configure:3455: checking whether gmake -j 8 sets $(MAKE) +configure:3477: result: yes +configure:3506: checking whether gmake -j 8 supports nested variables +configure:3523: result: yes +configure:3660: checking whether gmake -j 8 supports nested variables +configure:3677: result: yes +configure:3700: checking whether to enable maintainer-specific portions of Makefiles +configure:3709: result: no +configure:3758: checking build system type +configure:3772: result: x86_64-unknown-linux-gnu +configure:3792: checking host system type +configure:3805: result: x86_64-unknown-linux-gnu +configure:3873: checking shell variables initial values +ACLOCAL='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15' +AMTAR='$${TAR-tar}' +AM_BACKSLASH='\' +AM_CFLAGS= +AM_CPPFLAGS= +AM_CXXFLAGS= +AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +AM_DEFAULT_VERBOSITY=0 +AM_FCFLAGS= +AM_LDFLAGS= +AM_V='$(V)' +AUTOCONF='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf' +AUTOHEADER='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader' +AUTOMAKE='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15' +AWK=gawk +AWS_ACCESS_KEY=AKIAJGD5VJBPOQPTQJCQ +AWS_ACCOUNT_NUMBER=405397768108 +AWS_SECRET_KEY=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 +BASH=/bin/sh +BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath +BASH_ALIASES=() +BASH_ARGC=() +BASH_ARGV=() +BASH_CMDS=() +BASH_LINENO=([0]="0") +BASH_SOURCE=([0]="../configure") +BASH_VERSINFO=([0]="4" [1]="2" [2]="46" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu") +BASH_VERSION='4.2.46(1)-release' +CFLAGS= +CPPFLAGS= +CVS_RSH=ssh +CXXFLAGS= +CYGPATH_W=echo +DIRSTACK=() +DUALCASE=1 +EC2_HOME=/mnt/wrk/lrknox/ec2 +EC2_PRIVATE_KEY=/home/lrknox/key-hdftest-control-host.pem +EC2_URL=https://ec2.us-west-2.amazonaws.com +ECHO_C= +ECHO_N=-n +ECHO_T= +EUID=10013 +FC= +FCFLAGS= +GROUPS=() +HISTCONTROL=ignoredups +HISTSIZE=1000 +HOME=/home/lrknox +HOSTNAME=jelly +HOSTTYPE=x86_64 +IFS=' +' +INSTALL='/usr/bin/install -c' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' +JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.91-0.b14.el7_2.x86_64/jre +LANG=en_US.UTF-8 +LANGUAGE=C +LC_ALL=C +LDFLAGS= +LESSOPEN='||/usr/bin/lesspipe.sh %s' +LIBOBJS= +LINENO=3873 +LMOD_CMD=/usr/share/lmod/lmod/libexec/lmod +LMOD_COLORIZE=yes +LMOD_DIR=/usr/share/lmod/lmod/libexec +LMOD_FULL_SETTARG_SUPPORT=no +LMOD_PKG=/usr/share/lmod/lmod +LMOD_PREPEND_BLOCK=normal +LMOD_SETTARG_CMD=: +LMOD_VERSION=6.3.4 +LMOD_arch=x86_64 +LMOD_sys=Linux +LOGNAME=lrknox +LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:' +MACHTYPE=x86_64-redhat-linux-gnu +MAINT='#' +MAINTAINER_MODE_FALSE= +MAINTAINER_MODE_TRUE='#' +MAKE='gmake -j 8' +MAKEFLAGS= +MAKEINFO='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo' +MANPATH=/usr/share/lmod/lmod/share/man::/usr/local/man:/usr/share/man:/usr/kerberos/man +MFLAGS= +MISSING='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing' +MKDIR_P='/usr/bin/mkdir -p' +MODULEPATH=/etc/modulefiles:/usr/share/modulefiles:/usr/share/Modules/modulefiles:/opt/pkgs/modules/all:/usr/share/modulefiles/Linux:/usr/share/modulefiles/Core:/usr/share/lmod/lmod/modulefiles/Core +MODULEPATH_ROOT=/usr/share/modulefiles +MODULESHOME=/usr/share/lmod/lmod +OPTERR=1 +OPTIND=1 +OSTYPE=linux-gnu +PACKAGE=hdf5 +PACKAGE_BUGREPORT=help@hdfgroup.org +PACKAGE_NAME=HDF5 +PACKAGE_STRING='HDF5 1.8.21-pre1' +PACKAGE_TARNAME=hdf5 +PACKAGE_URL= +PACKAGE_VERSION=1.8.21-pre1 +PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin +PATH_SEPARATOR=: +PIPESTATUS=([0]="0") +POSIXLY_CORRECT=y +PPID=173560 +PS1='$ ' +PS2='> ' +PS4='+ ' +PWD=/mnt/wrk/lrknox/hdf5_hdf5/build +SELINUX_LEVEL_REQUESTED= +SELINUX_ROLE_REQUESTED= +SELINUX_USE_CURRENT_RANGE= +SET_MAKE= +SHELL=/bin/sh +SHELLOPTS=braceexpand:hashall:interactive-comments:posix +SHLVL=2 +SSH_CLIENT='10.10.10.86 53159 22' +SSH_CONNECTION='10.10.10.86 53159 10.10.10.120 22' +SSH_TTY=/dev/pts/4 +TERM=xterm +UID=10013 +USER=lrknox +USE_MAINTAINER_MODE=no +VERSION=1.8.21-pre1 +XDG_RUNTIME_DIR=/run/user/10013 +XDG_SESSION_ID=422959 +_='checking shell variables initial values... ' +_am_tools='gnutar pax cpio none' +ac_abs_confdir=/mnt/wrk/lrknox/hdf5_hdf5 +ac_aux_dir=../bin +ac_build_alias=x86_64-unknown-linux-gnu +ac_cache_corrupted=false +ac_clean_files= +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_compiler_gnu= +ac_confdir=.. +ac_config_commands=' pubconf' +ac_config_guess='/bin/sh ../bin/config.guess' +ac_config_headers=' src/H5config.h' +ac_config_libobj_dir=. +ac_config_sub='/bin/sh ../bin/config.sub' +ac_configure='/bin/sh ../bin/configure' +ac_configure_args= +ac_cpp='$CPP $CPPFLAGS' +ac_cv_build=x86_64-unknown-linux-gnu +ac_cv_env_CCC_set= +ac_cv_env_CCC_value= +ac_cv_env_CC_set= +ac_cv_env_CC_value= +ac_cv_env_CFLAGS_set= +ac_cv_env_CFLAGS_value= +ac_cv_env_CPPFLAGS_set= +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_CXXCPP_set= +ac_cv_env_CXXCPP_value= +ac_cv_env_CXXFLAGS_set= +ac_cv_env_CXXFLAGS_value= +ac_cv_env_CXX_set= +ac_cv_env_CXX_value= +ac_cv_env_FCFLAGS_set= +ac_cv_env_FCFLAGS_value= +ac_cv_env_FC_set= +ac_cv_env_FC_value= +ac_cv_env_LDFLAGS_set= +ac_cv_env_LDFLAGS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_LT_SYS_LIBRARY_PATH_set= +ac_cv_env_LT_SYS_LIBRARY_PATH_value= +ac_cv_env_build_alias_set= +ac_cv_env_build_alias_value= +ac_cv_env_host_alias_set= +ac_cv_env_host_alias_value= +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_host=x86_64-unknown-linux-gnu +ac_cv_path_install='/usr/bin/install -c' +ac_cv_path_mkdir=/usr/bin/mkdir +ac_cv_prog_AWK=gawk +ac_cv_prog_make_gmake_set=yes +ac_dashdash= +ac_default_prefix=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +ac_dir=../bin +ac_env_CCC_set= +ac_env_CCC_value= +ac_env_CC_set= +ac_env_CC_value= +ac_env_CFLAGS_set= +ac_env_CFLAGS_value= +ac_env_CPPFLAGS_set= +ac_env_CPPFLAGS_value= +ac_env_CPP_set= +ac_env_CPP_value= +ac_env_CXXCPP_set= +ac_env_CXXCPP_value= +ac_env_CXXFLAGS_set= +ac_env_CXXFLAGS_value= +ac_env_CXX_set= +ac_env_CXX_value= +ac_env_FCFLAGS_set= +ac_env_FCFLAGS_value= +ac_env_FC_set= +ac_env_FC_value= +ac_env_LDFLAGS_set= +ac_env_LDFLAGS_value= +ac_env_LIBS_set= +ac_env_LIBS_value= +ac_env_LT_SYS_LIBRARY_PATH_set= +ac_env_LT_SYS_LIBRARY_PATH_value= +ac_env_build_alias_set= +ac_env_build_alias_value= +ac_env_host_alias_set= +ac_env_host_alias_value= +ac_env_target_alias_set= +ac_env_target_alias_value= +ac_exec_ext= +ac_ext=c +ac_hostname=jelly +ac_includes_default='#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif' +ac_init_help= +ac_init_version=false +ac_install_sh='../bin/install-sh -c' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_ls_di='47252934656 .' +ac_make=gmake +ac_msg='sources are in .., but `cd ..'\'' does not work' +ac_must_keep_next=false +ac_new_set= +ac_new_val= +ac_old_set= +ac_old_val= +ac_pass=2 +ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +FC +FCFLAGS +CXX +CXXFLAGS +CCC +CXXCPP +LT_SYS_LIBRARY_PATH +CPP' +ac_prev= +ac_prog=gawk +ac_pwd=/mnt/wrk/lrknox/hdf5_hdf5/build +ac_pwd_ls_di='47252934656 .' +ac_save_IFS=' +' +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +ac_signal=0 +ac_site_file=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/etc/config.site +ac_site_file1=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/share/config.site +ac_site_file2=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/etc/config.site +ac_srcdir_defaulted=yes +ac_subst_files= +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +HAVE_SHARED_CONDITIONAL_FALSE +HAVE_SHARED_CONDITIONAL_TRUE +fortran_linux_linker_option +SEARCH +BUILD_HDF5_HL_CONDITIONAL_FALSE +BUILD_HDF5_HL_CONDITIONAL_TRUE +BUILD_FORTRAN_CONDITIONAL_FALSE +BUILD_FORTRAN_CONDITIONAL_TRUE +BUILD_PARALLEL_CONDITIONAL_FALSE +BUILD_PARALLEL_CONDITIONAL_TRUE +BUILD_CXX_CONDITIONAL_FALSE +BUILD_CXX_CONDITIONAL_TRUE +STRICT_FORMAT_CHECKS +DEFAULT_API_VERSION +DEPRECATED_SYMBOLS +BUILD_ALL_CONDITIONAL_FALSE +BUILD_ALL_CONDITIONAL_TRUE +ROOT +CXX_VERSION +FC_VERSION +CC_VERSION +WORDS_BIGENDIAN +BYTESEX +CONFIG_MODE +CONFIG_USER +CONFIG_DATE +H5_VERSION +DIRECT_VFD_CONDITIONAL_FALSE +DIRECT_VFD_CONDITIONAL_TRUE +ADD_PARALLEL_FILES +USINGMEMCHECKER +CLEARFILEBUF +INSTRUMENT_LIBRARY +TRACE_API +DEBUG_PKG +HAVE_PTHREAD +BUILD_SHARED_SZIP_CONDITIONAL_FALSE +BUILD_SHARED_SZIP_CONDITIONAL_TRUE +LL_PATH +USE_FILTER_SZIP +USE_FILTER_DEFLATE +NOT_UNAME_CYGWIN_FALSE +NOT_UNAME_CYGWIN_TRUE +UNAME_CYGWIN +AM_MAKEFLAGS +LT_STATIC_EXEC +USE_PLUGINS_CONDITIONAL_FALSE +USE_PLUGINS_CONDITIONAL_TRUE +CPP +LT_SYS_LIBRARY_PATH +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +LIBTOOL +FORTRAN_SHARED_CONDITIONAL_FALSE +FORTRAN_SHARED_CONDITIONAL_TRUE +H5_FORTRAN_SHARED +TESTPARALLEL +RUNPARALLEL +RUNSERIAL +PARALLEL +TIME +TR +AR +PERL +HL_FOR +HL +CXXCPP +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +FORTRAN_DEFAULT_REALisDBLE_F_FALSE +FORTRAN_DEFAULT_REALisDBLE_F_TRUE +FORTRAN_2003_CONDITIONAL_F_FALSE +FORTRAN_2003_CONDITIONAL_F_TRUE +FORTRAN_HAVE_STORAGE_SIZE_FALSE +FORTRAN_HAVE_STORAGE_SIZE_TRUE +FORTRAN_HAVE_C_SIZEOF_FALSE +FORTRAN_HAVE_C_SIZEOF_TRUE +FORTRAN_HAVE_SIZEOF_FALSE +FORTRAN_HAVE_SIZEOF_TRUE +FCLIBS +F9XMODEXT +F9XMODFLAG +FSEARCH_DIRS +F9XSUFFIXFLAG +FCFLAGS_f90 +ac_ct_FC +FCFLAGS +OBJECT_NAMELEN_DEFAULT_F +SIZE_T +HID_T +HSSIZE_T +HSIZE_T +HADDR_T +R_INTEGER +R_LARGE +HAVE_FORTRAN_2003 +HDF5_INTERFACES +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +LDFLAGS +CFLAGS +CC +UNAME_INFO +enable_static +enable_shared +STATIC_SHARED +THREADSAFE +DIRECT_VFD +HAVE_DMALLOC +CODESTACK +INSTRUMENT +HDF5_HL +CXX +HDF_CXX +FC2003 +FC +HDF_FORTRAN2003 +HDF_FORTRAN +STATIC_EXEC +MPE +EXTERNAL_FILTERS +AM_LDFLAGS +AM_CPPFLAGS +AM_CXXFLAGS +AM_FCFLAGS +AM_CFLAGS +H5_LDFLAGS +H5_CXXFLAGS +H5_FCFLAGS +H5_CPPFLAGS +H5_CFLAGS +CPPFLAGS +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +MAINT +MAINTAINER_MODE_FALSE +MAINTAINER_MODE_TRUE +AM_BACKSLASH +AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_tool_prefix= +ac_unique_file=src/H5.c +ac_unrecognized_opts= +ac_unrecognized_sep= +ac_user_opts=' +enable_option_checking +enable_silent_rules +enable_maintainer_mode +enable_dependency_tracking +enable_unsupported +enable_fortran +enable_fortran2003 +enable_cxx +enable_hl +enable_shared +enable_static +with_pic +enable_fast_install +with_aix_soname +with_gnu_ld +with_sysroot +enable_libtool_lock +enable_static_exec +enable_sharedlib_rpath +enable_production +with_fnord +with_dmalloc +with_zlib +with_szlib +enable_threadsafe +with_pthread +enable_debug +enable_codestack +enable_metadata_trace_file +enable_trace +enable_instrument +enable_clear_file_buffers +enable_using_memchecker +enable_parallel +with_mpe +enable_direct_vfd +with_default_plugindir +enable_dconv_exception +enable_dconv_accuracy +enable_build_all +enable_deprecated_symbols +with_default_api_version +enable_strict_format_checks +enable_embedded_libinfo +' +ac_val='${datarootdir}/man' +ac_var=CPP +ac_word=gawk +am__api_version=1.15 +am__isrc=' -I$(srcdir)' +am__leading_dot=. +am__tar='$${TAR-tar} chof - "$$tardir"' +am__untar='$${TAR-tar} xf -' +am_aux_dir=/mnt/wrk/lrknox/hdf5_hdf5/bin +am_cv_make_support_nested_variables=yes +am_lf=' +' +am_make='gmake -j 8' +am_missing_run='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing ' +am_sleep_pid=173841 +as_basename=basename +as_bourne_compatible='if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '\''${1+"$@"}'\''='\''"$@"'\'' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +' +as_cr_LETTERS=ABCDEFGHIJKLMNOPQRSTUVWXYZ +as_cr_Letters=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ +as_cr_alnum=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 +as_cr_digits=0123456789 +as_cr_letters=abcdefghijklmnopqrstuvwxyz +as_dir=/usr/bin +as_dirname=dirname +as_echo='printf %s\n' +as_echo_n='printf %s' +as_executable_p=as_fn_executable_p +as_expr=expr +as_have_required=yes +as_lineno_1=477 +as_lineno_1a=477 +as_lineno_2=478 +as_lineno_2a=478 +as_ln_s='ln -s' +as_me=configure +as_mkdir_p='mkdir -p "$as_dir"' +as_myself=../configure +as_nl=' +' +as_required='as_fn_return () { (exit $1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = "$1" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x$exitcode = x0 || exit 1 +test -x / || exit 1' +as_save_IFS=' +' +as_suggested=' as_lineno_1=198 as_lineno_1a=$LINENO + as_lineno_2=199 as_lineno_2a=$LINENO + eval '\''test "x$as_lineno_1'\''$as_run'\''" != "x$as_lineno_2'\''$as_run'\''" && + test "x`expr $as_lineno_1'\''$as_run'\'' + 1`" = "x$as_lineno_2'\''$as_run'\''"'\'' || exit 1 + + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\''\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\'' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" ) || exit 1 +test $(( 1 + 1 )) = 2 || exit 1' +as_test_x='test -x' +as_tr_cpp='eval sed '\''y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[^_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]%_%g'\''' +as_tr_sh='eval sed '\''y%*+%pp%;s%[^_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]%_%g'\''' +as_unset=as_fn_unset +as_var=MAILPATH +bindir='${exec_prefix}/bin' +build=x86_64-unknown-linux-gnu +build_cpu=x86_64 +build_os=linux-gnu +build_vendor=unknown +cache_file=/dev/null +cross_compiling=no +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +dvidir='${docdir}' +exec_prefix=NONE +host=x86_64-unknown-linux-gnu +host_cpu=x86_64 +host_os=linux-gnu +host_vendor=unknown +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${datarootdir}/info' +install_sh='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh' +libdir='${exec_prefix}/lib' +libexecdir='${exec_prefix}/libexec' +localedir='${datarootdir}/locale' +localstatedir='${prefix}/var' +mandir='${datarootdir}/man' +mkdir_p='$(MKDIR_P)' +myhost=jelly +no_create= +no_recursion= +oldincludedir=/usr/include +pdfdir='${docdir}' +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +psdir='${docdir}' +saved_user_CFLAGS= +saved_user_CPPFLAGS= +saved_user_CXXFLAGS= +saved_user_FCFLAGS= +saved_user_LDFLAGS= +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +silent= +site= +srcdir=.. +subdirs= +sysconfdir='${prefix}/etc' +target= +verbose= +x_includes=NONE +x_libraries=NONE +configure:3876: result: done +configure:3925: checking if basename works +configure:3931: result: yes +configure:3936: checking if xargs works +configure:3942: result: yes +configure:3950: checking for cached host +configure:3957: result: none +configure:4011: checking for config x86_64-unknown-linux-gnu +configure:4019: result: no +configure:4011: checking for config x86_64-unknown-linux-gnu +configure:4019: result: no +configure:4011: checking for config unknown-linux-gnu +configure:4019: result: no +configure:4011: checking for config unknown-linux-gnu +configure:4019: result: no +configure:4011: checking for config x86_64-linux-gnu +configure:4019: result: no +configure:4011: checking for config x86_64-linux-gnu +configure:4019: result: no +configure:4011: checking for config x86_64-unknown +configure:4019: result: no +configure:4011: checking for config linux-gnu +configure:4015: result: found +configure:4031: checking for config ../config/site-specific/host-jelly +configure:4039: result: no +configure:4116: checking for gcc +configure:4143: result: gcc +configure:4372: checking for C compiler version +configure:4381: gcc --version >&5 +gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) +Copyright (C) 2015 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:4392: $? = 0 +configure:4381: gcc -v >&5 +Using built-in specs. +COLLECT_GCC=gcc +COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper +Target: x86_64-redhat-linux +Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +Thread model: posix +gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) +configure:4392: $? = 0 +configure:4381: gcc -V >&5 +gcc: error: unrecognized command line option '-V' +gcc: fatal error: no input files +compilation terminated. +configure:4392: $? = 4 +configure:4381: gcc -qversion >&5 +gcc: error: unrecognized command line option '-qversion' +gcc: fatal error: no input files +compilation terminated. +configure:4392: $? = 4 +configure:4412: checking whether the C compiler works +configure:4434: gcc conftest.c >&5 +configure:4438: $? = 0 +configure:4486: result: yes +configure:4489: checking for C compiler default output file name +configure:4491: result: a.out +configure:4497: checking for suffix of executables +configure:4504: gcc -o conftest conftest.c >&5 +configure:4508: $? = 0 +configure:4530: result: +configure:4552: checking whether we are cross compiling +configure:4560: gcc -o conftest conftest.c >&5 +configure:4564: $? = 0 +configure:4571: ./conftest +configure:4575: $? = 0 +configure:4590: result: no +configure:4595: checking for suffix of object files +configure:4617: gcc -c conftest.c >&5 +configure:4621: $? = 0 +configure:4642: result: o +configure:4646: checking whether we are using the GNU C compiler +configure:4665: gcc -c conftest.c >&5 +configure:4665: $? = 0 +configure:4674: result: yes +configure:4683: checking whether gcc accepts -g +configure:4703: gcc -c -g conftest.c >&5 +configure:4703: $? = 0 +configure:4744: result: yes +configure:4761: checking for gcc option to accept ISO C89 +configure:4824: gcc -c conftest.c >&5 +configure:4824: $? = 0 +configure:4837: result: none needed +configure:4862: checking whether gcc understands -c and -o together +configure:4884: gcc -c conftest.c -o conftest2.o +configure:4887: $? = 0 +configure:4884: gcc -c conftest.c -o conftest2.o +configure:4887: $? = 0 +configure:4899: result: yes +configure:4927: checking for style of include used by gmake -j 8 +configure:4955: result: GNU +configure:4981: checking dependency style of gcc +configure:5092: result: gcc3 +configure:5114: checking if unsupported combinations of configure options are allowed +configure:5124: result: no +configure:5139: checking if Fortran interface enabled +configure:5157: checking if Fortran 2003 interface enabled +configure:6804: checking for C++ compiler version +configure:6813: g++ --version >&5 +g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) +Copyright (C) 2015 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:6824: $? = 0 +configure:6813: g++ -v >&5 +Using built-in specs. +COLLECT_GCC=g++ +COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper +Target: x86_64-redhat-linux +Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +Thread model: posix +gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) +configure:6824: $? = 0 +configure:6813: g++ -V >&5 +g++: error: unrecognized command line option '-V' +g++: fatal error: no input files +compilation terminated. +configure:6824: $? = 4 +configure:6813: g++ -qversion >&5 +g++: error: unrecognized command line option '-qversion' +g++: fatal error: no input files +compilation terminated. +configure:6824: $? = 4 +configure:6828: checking whether we are using the GNU C++ compiler +configure:6855: g++ -c conftest.cpp >&5 +configure:6855: $? = 0 +configure:6864: result: yes +configure:6873: checking whether g++ accepts -g +configure:6901: g++ -c -g conftest.cpp >&5 +configure:6901: $? = 0 +configure:6958: result: yes +configure:6983: checking dependency style of g++ +configure:7094: result: gcc3 +configure:7114: checking how to run the C++ preprocessor +configure:7141: g++ -E conftest.cpp +configure:7141: $? = 0 +configure:7155: g++ -E conftest.cpp +conftest.cpp:11:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:7155: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| /* end confdefs.h. */ +| #include +configure:7180: result: g++ -E +configure:7200: g++ -E conftest.cpp +configure:7200: $? = 0 +configure:7214: g++ -E conftest.cpp +conftest.cpp:11:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:7214: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| /* end confdefs.h. */ +| #include +configure:7243: checking if c++ interface enabled +configure:7402: result: no +configure:7423: checking if high level library is enabled +configure:7460: checking for perl +configure:7476: found /usr/bin/perl +configure:7487: result: perl +configure:7510: checking for ar +configure:7526: found /usr/bin/ar +configure:7537: result: ar +configure:7556: checking whether gmake -j 8 sets $(MAKE) +configure:7578: result: yes +configure:7595: checking for tr +configure:7613: found /usr/bin/tr +configure:7625: result: /usr/bin/tr +configure:7644: checking if srcdir= and time commands work together +configure:7652: result: yes +configure:7808: checking how to print strings +configure:7835: result: printf +configure:7856: checking for a sed that does not truncate output +configure:7920: result: /usr/bin/sed +configure:7938: checking for grep that handles long lines and -e +configure:7996: result: /usr/bin/grep +configure:8001: checking for egrep +configure:8063: result: /usr/bin/grep -E +configure:8068: checking for fgrep +configure:8130: result: /usr/bin/grep -F +configure:8165: checking for ld used by gcc +configure:8232: result: /usr/bin/ld +configure:8239: checking if the linker (/usr/bin/ld) is GNU ld +configure:8254: result: yes +configure:8266: checking for BSD- or MS-compatible name lister (nm) +configure:8320: result: /usr/bin/nm -B +configure:8450: checking the name lister (/usr/bin/nm -B) interface +configure:8457: gcc -c conftest.c >&5 +configure:8460: /usr/bin/nm -B "conftest.o" +configure:8463: output +0000000000000000 B some_variable +configure:8470: result: BSD nm +configure:8473: checking whether ln -s works +configure:8477: result: yes +configure:8485: checking the maximum length of command line arguments +configure:8616: result: 1572864 +configure:8664: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format +configure:8704: result: func_convert_file_noop +configure:8711: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format +configure:8731: result: func_convert_file_noop +configure:8738: checking for /usr/bin/ld option to reload object files +configure:8745: result: -r +configure:8819: checking for objdump +configure:8835: found /usr/bin/objdump +configure:8846: result: objdump +configure:8878: checking how to recognize dependent libraries +configure:9078: result: pass_all +configure:9163: checking for dlltool +configure:9193: result: no +configure:9223: checking how to associate runtime and link libraries +configure:9250: result: printf %s\n +configure:9374: checking for archiver @FILE support +configure:9399: gcc -c conftest.c >&5 +configure:9399: $? = 0 +configure:9402: ar cru libconftest.a @conftest.lst >&5 +configure:9405: $? = 0 +configure:9410: ar cru libconftest.a @conftest.lst >&5 +ar: conftest.o: No such file or directory +configure:9413: $? = 1 +configure:9425: result: @ +configure:9483: checking for strip +configure:9499: found /usr/bin/strip +configure:9510: result: strip +configure:9582: checking for ranlib +configure:9598: found /usr/bin/ranlib +configure:9609: result: ranlib +configure:9711: checking command to parse /usr/bin/nm -B output from gcc object +configure:9864: gcc -c conftest.c >&5 +configure:9867: $? = 0 +configure:9871: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm +configure:9874: $? = 0 +configure:9940: gcc -o conftest conftest.c conftstm.o >&5 +configure:9943: $? = 0 +configure:9981: result: ok +configure:10028: checking for sysroot +configure:10058: result: no +configure:10065: checking for a working dd +configure:10103: result: /usr/bin/dd +configure:10107: checking how to truncate binary pipes +configure:10122: result: /usr/bin/dd bs=4096 count=1 +configure:10258: gcc -c conftest.c >&5 +configure:10261: $? = 0 +configure:10459: checking for mt +configure:10489: result: no +configure:10509: checking if : is a manifest tool +configure:10515: : '-?' +configure:10523: result: no +configure:11208: checking how to run the C preprocessor +configure:11239: gcc -E conftest.c +configure:11239: $? = 0 +configure:11253: gcc -E conftest.c +conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:11253: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| /* end confdefs.h. */ +| #include +configure:11278: result: gcc -E +configure:11298: gcc -E conftest.c +configure:11298: $? = 0 +configure:11312: gcc -E conftest.c +conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:11312: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| /* end confdefs.h. */ +| #include +configure:11341: checking for ANSI C header files +configure:11369: gcc -c conftest.c >&5 +configure:11369: $? = 0 +configure:11442: gcc -o conftest conftest.c >&5 +configure:11442: $? = 0 +configure:11442: ./conftest +configure:11442: $? = 0 +configure:11453: result: yes +configure:11466: checking for sys/types.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for sys/stat.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for stdlib.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for string.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for memory.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for strings.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for inttypes.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for stdint.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11466: checking for unistd.h +configure:11466: gcc -c conftest.c >&5 +configure:11466: $? = 0 +configure:11466: result: yes +configure:11480: checking for dlfcn.h +configure:11480: gcc -c conftest.c >&5 +configure:11480: $? = 0 +configure:11480: result: yes +configure:11745: checking for objdir +configure:11760: result: .libs +configure:12020: checking if gcc supports -fno-rtti -fno-exceptions +configure:12038: gcc -c -fno-rtti -fno-exceptions conftest.c >&5 +cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] +configure:12042: $? = 0 +configure:12055: result: no +configure:12413: checking for gcc option to produce PIC +configure:12420: result: -fPIC -DPIC +configure:12428: checking if gcc PIC flag -fPIC -DPIC works +configure:12446: gcc -c -fPIC -DPIC -DPIC conftest.c >&5 +configure:12450: $? = 0 +configure:12463: result: yes +configure:12492: checking if gcc static flag -static works +configure:12520: result: yes +configure:12535: checking if gcc supports -c -o file.o +configure:12556: gcc -c -o out/conftest2.o conftest.c >&5 +configure:12560: $? = 0 +configure:12582: result: yes +configure:12590: checking if gcc supports -c -o file.o +configure:12637: result: yes +configure:12670: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:13945: result: yes +configure:13982: checking whether -lc should be explicitly linked in +configure:13990: gcc -c conftest.c >&5 +configure:13993: $? = 0 +configure:14008: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 +configure:14011: $? = 0 +configure:14025: result: no +configure:14185: checking dynamic linker characteristics +configure:14774: gcc -o conftest -Wl,-rpath -Wl,/foo conftest.c >&5 +configure:14774: $? = 0 +configure:15011: result: GNU/Linux ld.so +configure:15133: checking how to hardcode library paths into programs +configure:15158: result: immediate +configure:15268: checking for shl_load +configure:15268: gcc -o conftest conftest.c >&5 +/tmp/ccQfkVTv.o: In function `main': +conftest.c:(.text+0xa): undefined reference to `shl_load' +collect2: error: ld returned 1 exit status +configure:15268: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| /* end confdefs.h. */ +| /* Define shl_load to an innocuous variant, in case declares shl_load. +| For example, HP-UX 11i declares gettimeofday. */ +| #define shl_load innocuous_shl_load +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char shl_load (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef shl_load +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char shl_load (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_shl_load || defined __stub___shl_load +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return shl_load (); +| ; +| return 0; +| } +configure:15268: result: no +configure:15272: checking for shl_load in -ldld +configure:15305: gcc -o conftest conftest.c -ldld >&5 +/usr/bin/ld: cannot find -ldld +collect2: error: ld returned 1 exit status +configure:15305: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| /* end confdefs.h. */ +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char shl_load (); +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return shl_load (); +| ; +| return 0; +| } +configure:15314: result: no +configure:15319: checking for dlopen +configure:15319: gcc -o conftest conftest.c >&5 +/tmp/ccFLlDpE.o: In function `main': +conftest.c:(.text+0xa): undefined reference to `dlopen' +collect2: error: ld returned 1 exit status +configure:15319: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| /* end confdefs.h. */ +| /* Define dlopen to an innocuous variant, in case declares dlopen. +| For example, HP-UX 11i declares gettimeofday. */ +| #define dlopen innocuous_dlopen +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char dlopen (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef dlopen +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char dlopen (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_dlopen || defined __stub___dlopen +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return dlopen (); +| ; +| return 0; +| } +configure:15319: result: no +configure:15323: checking for dlopen in -ldl +configure:15356: gcc -o conftest conftest.c -ldl >&5 +configure:15356: $? = 0 +configure:15365: result: yes +configure:15500: checking whether a program can dlopen itself +configure:15580: gcc -o conftest -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 +configure:15583: $? = 0 +configure:15601: result: yes +configure:15606: checking whether a statically linked program can dlopen itself +configure:15686: gcc -o conftest -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 +/tmp/ccEVJXdQ.o: In function `main': +conftest.c:(.text+0x1e): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking +/usr/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie +collect2: error: ld returned 1 exit status +configure:15689: $? = 1 +configure:15707: result: no +configure:15746: checking whether stripping libraries is possible +configure:15751: result: yes +configure:15786: checking if libtool supports shared libraries +configure:15788: result: yes +configure:15791: checking whether to build shared libraries +configure:15816: result: yes +configure:15819: checking whether to build static libraries +configure:15823: result: yes +configure:22283: checking if we should install only statically linked executables +configure:22328: checking if -Wl,-rpath should be used to link shared libs in nondefault directories +configure:22346: result: yes +configure:22365: checking whether make will build with undefined variables +configure:22374: result: yes +configure:22389: checking for production mode +configure:22410: result: development +configure:22439: checking for ceil in -lm +configure:22472: gcc -o conftest conftest.c -lm >&5 +conftest.c:31:6: warning: conflicting types for built-in function 'ceil' [enabled by default] + char ceil (); + ^ +configure:22472: $? = 0 +configure:22481: result: yes +configure:22492: checking for dlopen in -ldl +configure:22534: result: yes +configure:22549: checking for ANSI C header files +configure:22661: result: yes +configure:22669: checking whether time.h and sys/time.h may both be included +configure:22697: gcc -c conftest.c >&5 +configure:22697: $? = 0 +configure:22704: result: yes +configure:22717: checking sys/resource.h usability +configure:22717: gcc -c conftest.c >&5 +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking sys/resource.h presence +configure:22717: gcc -E conftest.c +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking for sys/resource.h +configure:22717: result: yes +configure:22717: checking sys/time.h usability +configure:22717: gcc -c conftest.c >&5 +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking sys/time.h presence +configure:22717: gcc -E conftest.c +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking for sys/time.h +configure:22717: result: yes +configure:22717: checking for unistd.h +configure:22717: result: yes +configure:22717: checking sys/ioctl.h usability +configure:22717: gcc -c conftest.c >&5 +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking sys/ioctl.h presence +configure:22717: gcc -E conftest.c +configure:22717: $? = 0 +configure:22717: result: yes +configure:22717: checking for sys/ioctl.h +configure:22717: result: yes +configure:22717: checking for sys/stat.h +configure:22717: result: yes +configure:22730: checking sys/socket.h usability +configure:22730: gcc -c conftest.c >&5 +configure:22730: $? = 0 +configure:22730: result: yes +configure:22730: checking sys/socket.h presence +configure:22730: gcc -E conftest.c +configure:22730: $? = 0 +configure:22730: result: yes +configure:22730: checking for sys/socket.h +configure:22730: result: yes +configure:22730: checking for sys/types.h +configure:22730: result: yes +configure:22743: checking stddef.h usability +configure:22743: gcc -c conftest.c >&5 +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking stddef.h presence +configure:22743: gcc -E conftest.c +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking for stddef.h +configure:22743: result: yes +configure:22743: checking setjmp.h usability +configure:22743: gcc -c conftest.c >&5 +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking setjmp.h presence +configure:22743: gcc -E conftest.c +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking for setjmp.h +configure:22743: result: yes +configure:22743: checking features.h usability +configure:22743: gcc -c conftest.c >&5 +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking features.h presence +configure:22743: gcc -E conftest.c +configure:22743: $? = 0 +configure:22743: result: yes +configure:22743: checking for features.h +configure:22743: result: yes +configure:22755: checking dirent.h usability +configure:22755: gcc -c conftest.c >&5 +configure:22755: $? = 0 +configure:22755: result: yes +configure:22755: checking dirent.h presence +configure:22755: gcc -E conftest.c +configure:22755: $? = 0 +configure:22755: result: yes +configure:22755: checking for dirent.h +configure:22755: result: yes +configure:22767: checking for stdint.h +configure:22767: result: yes +configure:22781: checking mach/mach_time.h usability +configure:22781: gcc -c conftest.c >&5 +conftest.c:73:28: fatal error: mach/mach_time.h: No such file or directory + #include + ^ +compilation terminated. +configure:22781: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:22781: result: no +configure:22781: checking mach/mach_time.h presence +configure:22781: gcc -E conftest.c +conftest.c:40:28: fatal error: mach/mach_time.h: No such file or directory + #include + ^ +compilation terminated. +configure:22781: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +configure:22781: result: no +configure:22781: checking for mach/mach_time.h +configure:22781: result: no +configure:22890: checking io.h usability +configure:22890: gcc -c conftest.c >&5 +conftest.c:73:16: fatal error: io.h: No such file or directory + #include + ^ +compilation terminated. +configure:22890: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:22890: result: no +configure:22890: checking io.h presence +configure:22890: gcc -E conftest.c +conftest.c:40:16: fatal error: io.h: No such file or directory + #include + ^ +compilation terminated. +configure:22890: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +configure:22890: result: no +configure:22890: checking for io.h +configure:22890: result: no +configure:22890: checking winsock2.h usability +configure:22890: gcc -c conftest.c >&5 +conftest.c:73:22: fatal error: winsock2.h: No such file or directory + #include + ^ +compilation terminated. +configure:22890: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:22890: result: no +configure:22890: checking winsock2.h presence +configure:22890: gcc -E conftest.c +conftest.c:40:22: fatal error: winsock2.h: No such file or directory + #include + ^ +compilation terminated. +configure:22890: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| /* end confdefs.h. */ +| #include +configure:22890: result: no +configure:22890: checking for winsock2.h +configure:22890: result: no +configure:22890: checking sys/timeb.h usability +configure:22890: gcc -c conftest.c >&5 +configure:22890: $? = 0 +configure:22890: result: yes +configure:22890: checking sys/timeb.h presence +configure:22890: gcc -E conftest.c +configure:22890: $? = 0 +configure:22890: result: yes +configure:22890: checking for sys/timeb.h +configure:22890: result: yes +configure:22918: checking if libtool needs -no-undefined flag to build shared libraries +configure:22929: result: no +configure:22944: checking for _FILE_OFFSET_BITS value needed for large files +configure:22977: gcc -c conftest.c >&5 +configure:22977: $? = 0 +configure:23017: result: no +configure:23161: checking for off_t +configure:23161: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23161: $? = 0 +configure:23161: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:85:20: error: expected expression before ')' token + if (sizeof ((off_t))) + ^ +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23161: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| if (sizeof ((off_t))) +| return 0; +| ; +| return 0; +| } +configure:23161: result: yes +configure:23172: checking for size_t +configure:23172: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23172: $? = 0 +configure:23172: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:85:21: error: expected expression before ')' token + if (sizeof ((size_t))) + ^ +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23172: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| if (sizeof ((size_t))) +| return 0; +| ; +| return 0; +| } +configure:23172: result: yes +configure:23183: checking for ssize_t +configure:23183: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23183: $? = 0 +configure:23183: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:85:22: error: expected expression before ')' token + if (sizeof ((ssize_t))) + ^ +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23183: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| if (sizeof ((ssize_t))) +| return 0; +| ; +| return 0; +| } +configure:23183: result: yes +configure:23194: checking for ptrdiff_t +configure:23194: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23194: $? = 0 +configure:23194: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:85:24: error: expected expression before ')' token + if (sizeof ((ptrdiff_t))) + ^ +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23194: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| if (sizeof ((ptrdiff_t))) +| return 0; +| ; +| return 0; +| } +configure:23194: result: yes +configure:23205: checking whether byte ordering is bigendian +configure:23220: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:42:9: warning: identifier "not" is a special operator name in C++ [-Wc++-compat] + not a universal capable compiler + ^ +conftest.c:42:9: error: unknown type name 'not' +conftest.c:42:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' + not a universal capable compiler + ^ +conftest.c:42:15: error: unknown type name 'universal' +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23220: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #ifndef __APPLE_CC__ +| not a universal capable compiler +| #endif +| typedef int dummy; +| +configure:23273: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:53:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:53:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23273: $? = 0 +configure:23299: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:53:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:53:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:56:4: warning: identifier "not" is a special operator name in C++ [-Wc++-compat] + not big endian + ^ +conftest.c:56:4: error: unknown type name 'not' +conftest.c:56:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' + not big endian + ^ +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23299: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| /* end confdefs.h. */ +| #include +| #include +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| #if BYTE_ORDER != BIG_ENDIAN +| not big endian +| #endif +| +| ; +| return 0; +| } +configure:23459: result: no +configure:23481: checking size of char +configure:23486: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:74:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (char)); } + ^ +conftest.c: In function 'longval': +conftest.c:74:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:75:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (char)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:75:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:87:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:87:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23486: $? = 0 +configure:23486: ./conftest +configure:23486: $? = 0 +configure:23500: result: 1 +configure:23514: checking size of short +configure:23519: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:75:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (short)); } + ^ +conftest.c: In function 'longval': +conftest.c:75:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:76:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (short)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:76:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:88:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23519: $? = 0 +configure:23519: ./conftest +configure:23519: $? = 0 +configure:23533: result: 2 +configure:23547: checking size of int +configure:23552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:76:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int)); } + ^ +conftest.c: In function 'longval': +conftest.c:76:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:77:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:77:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:89:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:89:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23552: $? = 0 +configure:23552: ./conftest +configure:23552: $? = 0 +configure:23566: result: 4 +configure:23580: checking size of unsigned +configure:23585: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:77:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (unsigned)); } + ^ +conftest.c: In function 'longval': +conftest.c:77:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:78:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (unsigned)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:78:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:90:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:90:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23585: $? = 0 +configure:23585: ./conftest +configure:23585: $? = 0 +configure:23599: result: 4 +configure:23613: checking size of long +configure:23618: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:78:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (long)); } + ^ +conftest.c: In function 'longval': +conftest.c:78:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:79:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (long)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:79:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:91:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:91:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23618: $? = 0 +configure:23618: ./conftest +configure:23618: $? = 0 +configure:23632: result: 8 +configure:23646: checking size of long long +configure:23651: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:79:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (long long)); } + ^ +conftest.c: In function 'longval': +conftest.c:79:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:80:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (long long)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:80:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:92:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:92:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23651: $? = 0 +configure:23651: ./conftest +configure:23651: $? = 0 +configure:23665: result: 8 +configure:23679: checking size of __int64 +configure:23684: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:80:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c: In function 'longval': +conftest.c:80:17: warning: old-style function definition [-Wold-style-definition] +conftest.c:80:57: error: '__int64' undeclared (first use in this function) + static long int longval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c:80:57: note: each undeclared identifier is reported only once for each function it appears in +conftest.c: At top level: +conftest.c:81:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:81:26: warning: old-style function definition [-Wold-style-definition] +conftest.c:81:67: error: '__int64' undeclared (first use in this function) + static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c: At top level: +conftest.c:93:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:93:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:99:28: error: '__int64' undeclared (first use in this function) + if (((long int) (sizeof (__int64))) < 0) + ^ +conftest.c: In function 'longval': +conftest.c:80:1: warning: control reaches end of non-void function [-Wreturn-type] + static long int longval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:81:1: warning: control reaches end of non-void function [-Wreturn-type] + static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } + ^ +conftest.c: At top level: +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23684: $? = 1 +configure: program exited with status 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| static long int longval () { return (long int) (sizeof (__int64)); } +| static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } +| #include +| #include +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| +| FILE *f = fopen ("conftest.val", "w"); +| if (! f) +| return 1; +| if (((long int) (sizeof (__int64))) < 0) +| { +| long int i = longval (); +| if (i != ((long int) (sizeof (__int64)))) +| return 1; +| fprintf (f, "%ld", i); +| } +| else +| { +| unsigned long int i = ulongval (); +| if (i != ((long int) (sizeof (__int64)))) +| return 1; +| fprintf (f, "%lu", i); +| } +| /* Do not output a trailing newline, as this causes \r\n confusion +| on some platforms. */ +| return ferror (f) || fclose (f) != 0; +| +| ; +| return 0; +| } +configure:23698: result: 0 +configure:23712: checking size of float +configure:23717: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:81:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (float)); } + ^ +conftest.c: In function 'longval': +conftest.c:81:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:82:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (float)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:82:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:94:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:94:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23717: $? = 0 +configure:23717: ./conftest +configure:23717: $? = 0 +configure:23731: result: 4 +configure:23745: checking size of double +configure:23750: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:82:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (double)); } + ^ +conftest.c: In function 'longval': +conftest.c:82:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:83:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (double)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:83:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:95:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:95:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23750: $? = 0 +configure:23750: ./conftest +configure:23750: $? = 0 +configure:23764: result: 8 +configure:23778: checking size of long double +configure:23783: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:83:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (long double)); } + ^ +conftest.c: In function 'longval': +conftest.c:83:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:84:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (long double)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:84:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:96:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:96:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23783: $? = 0 +configure:23783: ./conftest +configure:23783: $? = 0 +configure:23797: result: 16 +configure:23910: checking size of int8_t +configure:23915: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:86:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:86:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:87:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:87:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23915: $? = 0 +configure:23915: ./conftest +configure:23915: $? = 0 +configure:23929: result: 1 +configure:23943: checking size of uint8_t +configure:23948: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:87:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:87:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:88:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:100:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:100:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23948: $? = 0 +configure:23948: ./conftest +configure:23948: $? = 0 +configure:23962: result: 1 +configure:23976: checking size of int_least8_t +configure:23981: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:88:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_least8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:88:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:89:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_least8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:89:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:23981: $? = 0 +configure:23981: ./conftest +configure:23981: $? = 0 +configure:23995: result: 1 +configure:24009: checking size of uint_least8_t +configure:24014: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:89:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_least8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:89:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:90:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_least8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:90:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:102:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:102:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24014: $? = 0 +configure:24014: ./conftest +configure:24014: $? = 0 +configure:24028: result: 1 +configure:24042: checking size of int_fast8_t +configure:24047: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:90:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_fast8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:90:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:91:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_fast8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:91:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:103:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:103:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24047: $? = 0 +configure:24047: ./conftest +configure:24047: $? = 0 +configure:24061: result: 1 +configure:24075: checking size of uint_fast8_t +configure:24080: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_fast8_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:91:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:92:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_fast8_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:92:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:104:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:104:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24080: $? = 0 +configure:24080: ./conftest +configure:24080: $? = 0 +configure:24094: result: 1 +configure:24109: checking size of int16_t +configure:24114: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:92:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:92:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:93:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:93:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:105:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:105:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24114: $? = 0 +configure:24114: ./conftest +configure:24114: $? = 0 +configure:24128: result: 2 +configure:24142: checking size of uint16_t +configure:24147: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:93:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:93:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:94:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:94:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:106:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:106:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24147: $? = 0 +configure:24147: ./conftest +configure:24147: $? = 0 +configure:24161: result: 2 +configure:24175: checking size of int_least16_t +configure:24180: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:94:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_least16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:94:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:95:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_least16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:95:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:107:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:107:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24180: $? = 0 +configure:24180: ./conftest +configure:24180: $? = 0 +configure:24194: result: 2 +configure:24208: checking size of uint_least16_t +configure:24213: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:95:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_least16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:95:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:96:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_least16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:96:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:108:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:108:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24213: $? = 0 +configure:24213: ./conftest +configure:24213: $? = 0 +configure:24227: result: 2 +configure:24241: checking size of int_fast16_t +configure:24246: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:96:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_fast16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:96:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:97:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_fast16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:97:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:109:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:109:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24246: $? = 0 +configure:24246: ./conftest +configure:24246: $? = 0 +configure:24260: result: 8 +configure:24274: checking size of uint_fast16_t +configure:24279: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:97:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_fast16_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:97:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:98:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_fast16_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:98:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:110:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:110:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24279: $? = 0 +configure:24279: ./conftest +configure:24279: $? = 0 +configure:24293: result: 8 +configure:24308: checking size of int32_t +configure:24313: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:98:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:98:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:99:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:99:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:111:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:111:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24313: $? = 0 +configure:24313: ./conftest +configure:24313: $? = 0 +configure:24327: result: 4 +configure:24341: checking size of uint32_t +configure:24346: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:99:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:99:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:100:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:100:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:112:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24346: $? = 0 +configure:24346: ./conftest +configure:24346: $? = 0 +configure:24360: result: 4 +configure:24374: checking size of int_least32_t +configure:24379: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:100:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_least32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:100:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:101:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_least32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:101:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:113:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24379: $? = 0 +configure:24379: ./conftest +configure:24379: $? = 0 +configure:24393: result: 4 +configure:24407: checking size of uint_least32_t +configure:24412: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:101:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_least32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:101:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:102:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_least32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:102:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:114:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:114:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24412: $? = 0 +configure:24412: ./conftest +configure:24412: $? = 0 +configure:24426: result: 4 +configure:24440: checking size of int_fast32_t +configure:24445: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:102:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_fast32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:102:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:103:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_fast32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:103:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:115:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:115:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24445: $? = 0 +configure:24445: ./conftest +configure:24445: $? = 0 +configure:24459: result: 8 +configure:24473: checking size of uint_fast32_t +configure:24478: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:103:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_fast32_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:103:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:104:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_fast32_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:104:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:116:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24478: $? = 0 +configure:24478: ./conftest +configure:24478: $? = 0 +configure:24492: result: 8 +configure:24507: checking size of int64_t +configure:24512: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:104:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:104:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:105:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:105:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:117:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:117:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24512: $? = 0 +configure:24512: ./conftest +configure:24512: $? = 0 +configure:24526: result: 8 +configure:24540: checking size of uint64_t +configure:24545: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:105:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:105:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:106:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:106:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:118:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:118:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24545: $? = 0 +configure:24545: ./conftest +configure:24545: $? = 0 +configure:24559: result: 8 +configure:24573: checking size of int_least64_t +configure:24578: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:106:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_least64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:106:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:107:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_least64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:107:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:119:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:119:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24578: $? = 0 +configure:24578: ./conftest +configure:24578: $? = 0 +configure:24592: result: 8 +configure:24606: checking size of uint_least64_t +configure:24611: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:107:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_least64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:107:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:108:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_least64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:108:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:120:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:120:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +configure:24611: $? = 0 +configure:24611: ./conftest +configure:24611: $? = 0 +configure:24625: result: 8 +configure:24639: checking size of int_fast64_t +configure:24644: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:108:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (int_fast64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:108:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:109:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (int_fast64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:109:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:121:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:121:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24644: $? = 0 +configure:24644: ./conftest +configure:24644: $? = 0 +configure:24658: result: 8 +configure:24672: checking size of uint_fast64_t +configure:24677: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:109:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (uint_fast64_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:109:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:110:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (uint_fast64_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:110:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:122:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:122:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24677: $? = 0 +configure:24677: ./conftest +configure:24677: $? = 0 +configure:24691: result: 8 +configure:24706: checking size of size_t +configure:24711: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:110:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (size_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:110:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:111:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (size_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:111:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:123:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:123:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24711: $? = 0 +configure:24711: ./conftest +configure:24711: $? = 0 +configure:24725: result: 8 +configure:24739: checking size of ssize_t +configure:24744: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:111:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (ssize_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:111:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:112:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (ssize_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:112:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:124:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:124:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24744: $? = 0 +configure:24744: ./conftest +configure:24744: $? = 0 +configure:24758: result: 8 +configure:24772: checking size of ptrdiff_t +configure:24777: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:112:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (ptrdiff_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:112:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:113:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (ptrdiff_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:113:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:125:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24777: $? = 0 +configure:24777: ./conftest +configure:24777: $? = 0 +configure:24791: result: 8 +configure:24809: checking size of off_t +configure:24814: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:114:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static long int longval () { return (long int) (sizeof (off_t)); } + ^ +conftest.c: In function 'longval': +conftest.c:114:17: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:115:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] + static unsigned long int ulongval () { return (long int) (sizeof (off_t)); } + ^ +conftest.c: In function 'ulongval': +conftest.c:115:26: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:127:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:127:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24814: $? = 0 +configure:24814: ./conftest +configure:24814: $? = 0 +configure:24828: result: 8 +configure:24929: checking if dev_t is scalar +configure:24954: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:96:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:96:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:98:17: warning: 'd1' is used uninitialized in this function [-Wuninitialized] + dev_t d1, d2; if(d1==d2) return 0; + ^ +conftest.c:98:17: warning: 'd2' is used uninitialized in this function [-Wuninitialized] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:24954: $? = 0 +configure:24958: result: yes +configure:25074: checking for dmalloc library +configure:25076: result: suppressed +configure:25209: checking zlib.h usability +configure:25209: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:25209: $? = 0 +configure:25209: result: yes +configure:25209: checking zlib.h presence +configure:25209: gcc -E -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c +configure:25209: $? = 0 +configure:25209: result: yes +configure:25209: checking for zlib.h +configure:25209: result: yes +configure:25222: checking for compress2 in -lz +configure:25255: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char compress2 (); + ^ +conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:25255: $? = 0 +configure:25264: result: yes +configure:25283: checking for compress2 +configure:25283: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:87:0: warning: macro "compress2" is not used [-Wunused-macros] + #define compress2 innocuous_compress2 + ^ +conftest.c:108:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char compress2 (); + ^ +conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:125:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:25283: $? = 0 +configure:25283: result: yes +configure:25524: checking for szlib +configure:25526: result: suppressed +configure:25819: checking for thread safe support +configure:25857: result: no +configure:26155: checking whether CLOCK_MONOTONIC is declared +configure:26155: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:97:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:97:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26155: $? = 0 +configure:26155: result: yes +configure:26170: checking for tm_gmtoff in struct tm +configure:26193: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:98:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:98:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:100:11: warning: variable 'tm' set but not used [-Wunused-but-set-variable] + struct tm tm; tm.tm_gmtoff=0; + ^ +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26193: $? = 0 +configure:26197: result: yes +configure:26206: checking for global timezone variable +configure:26236: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26236: $? = 0 +configure:26240: result: yes +configure:26255: checking for st_blocks in struct stat +configure:26277: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:101:13: warning: variable 'sb' set but not used [-Wunused-but-set-variable] + struct stat sb; sb.st_blocks=0; + ^ +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26277: $? = 0 +configure:26281: result: yes +configure:26295: checking for _getvideoconfig +configure:26295: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:0: warning: macro "_getvideoconfig" is not used [-Wunused-macros] + #define _getvideoconfig innocuous__getvideoconfig + ^ +conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char _getvideoconfig (); + ^ +conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/ccTaI9v1.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `_getvideoconfig' +collect2: error: ld returned 1 exit status +configure:26295: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| /* end confdefs.h. */ +| /* Define _getvideoconfig to an innocuous variant, in case declares _getvideoconfig. +| For example, HP-UX 11i declares gettimeofday. */ +| #define _getvideoconfig innocuous__getvideoconfig +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char _getvideoconfig (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef _getvideoconfig +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char _getvideoconfig (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub__getvideoconfig || defined __stub____getvideoconfig +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return _getvideoconfig (); +| ; +| return 0; +| } +configure:26295: result: no +configure:26295: checking for gettextinfo +configure:26295: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:0: warning: macro "gettextinfo" is not used [-Wunused-macros] + #define gettextinfo innocuous_gettextinfo + ^ +conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char gettextinfo (); + ^ +conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/ccWYOQI2.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `gettextinfo' +collect2: error: ld returned 1 exit status +configure:26295: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| /* end confdefs.h. */ +| /* Define gettextinfo to an innocuous variant, in case declares gettextinfo. +| For example, HP-UX 11i declares gettimeofday. */ +| #define gettextinfo innocuous_gettextinfo +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char gettextinfo (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef gettextinfo +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char gettextinfo (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_gettextinfo || defined __stub___gettextinfo +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return gettextinfo (); +| ; +| return 0; +| } +configure:26295: result: no +configure:26311: checking for GetConsoleScreenBufferInfo +configure:26311: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:0: warning: macro "GetConsoleScreenBufferInfo" is not used [-Wunused-macros] + #define GetConsoleScreenBufferInfo innocuous_GetConsoleScreenBufferInfo + ^ +conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char GetConsoleScreenBufferInfo (); + ^ +conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/ccWUfMK8.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `GetConsoleScreenBufferInfo' +collect2: error: ld returned 1 exit status +configure:26311: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| /* end confdefs.h. */ +| /* Define GetConsoleScreenBufferInfo to an innocuous variant, in case declares GetConsoleScreenBufferInfo. +| For example, HP-UX 11i declares gettimeofday. */ +| #define GetConsoleScreenBufferInfo innocuous_GetConsoleScreenBufferInfo +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char GetConsoleScreenBufferInfo (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef GetConsoleScreenBufferInfo +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char GetConsoleScreenBufferInfo (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_GetConsoleScreenBufferInfo || defined __stub___GetConsoleScreenBufferInfo +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return GetConsoleScreenBufferInfo (); +| ; +| return 0; +| } +configure:26311: result: no +configure:26311: checking for getpwuid +configure:26311: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:91:0: warning: macro "getpwuid" is not used [-Wunused-macros] + #define getpwuid innocuous_getpwuid + ^ +conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char getpwuid (); + ^ +conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26311: $? = 0 +configure:26311: result: yes +configure:26325: checking for _scrsize +configure:26325: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:92:0: warning: macro "_scrsize" is not used [-Wunused-macros] + #define _scrsize innocuous__scrsize + ^ +conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char _scrsize (); + ^ +conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:130:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/ccAOesfg.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:132: undefined reference to `_scrsize' +collect2: error: ld returned 1 exit status +configure:26325: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| /* end confdefs.h. */ +| /* Define _scrsize to an innocuous variant, in case declares _scrsize. +| For example, HP-UX 11i declares gettimeofday. */ +| #define _scrsize innocuous__scrsize +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char _scrsize (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef _scrsize +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char _scrsize (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub__scrsize || defined __stub____scrsize +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return _scrsize (); +| ; +| return 0; +| } +configure:26325: result: no +configure:26325: checking for ioctl +configure:26325: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:92:0: warning: macro "ioctl" is not used [-Wunused-macros] + #define ioctl innocuous_ioctl + ^ +conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char ioctl (); + ^ +conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:130:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26325: $? = 0 +configure:26325: result: yes +configure:26335: checking for struct videoconfig +configure:26356: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:103:20: error: storage size of 'w' isn't known + struct videoconfig w; w.numtextcols=0; + ^ +conftest.c:103:20: warning: unused variable 'w' [-Wunused-variable] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26356: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| /* end confdefs.h. */ +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| struct videoconfig w; w.numtextcols=0; +| ; +| return 0; +| } +configure:26363: result: no +configure:26368: checking for struct text_info +configure:26389: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:103:18: error: storage size of 'w' isn't known + struct text_info w; w.screenwidth=0; + ^ +conftest.c:103:18: warning: unused variable 'w' [-Wunused-variable] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26389: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| /* end confdefs.h. */ +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| struct text_info w; w.screenwidth=0; +| ; +| return 0; +| } +configure:26396: result: no +configure:26401: checking for TIOCGWINSZ +configure:26422: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:103:5: warning: unused variable 'w' [-Wunused-variable] + int w=TIOCGWINSZ; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26422: $? = 0 +configure:26426: result: yes +configure:26434: checking for TIOCGETD +configure:26455: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:102:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:102:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:104:5: warning: unused variable 'w' [-Wunused-variable] + int w=TIOCGETD; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26455: $? = 0 +configure:26459: result: yes +configure:26473: checking for library containing clock_gettime +configure:26512: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:100:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char clock_gettime (); + ^ +conftest.c:110:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:110:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26512: $? = 0 +configure:26529: result: none required +configure:26540: checking for alarm +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:95:0: warning: macro "alarm" is not used [-Wunused-macros] + #define alarm innocuous_alarm + ^ +conftest.c:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char alarm (); + ^ +conftest.c:133:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:133:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26540: checking for clock_gettime +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:96:0: warning: macro "clock_gettime" is not used [-Wunused-macros] + #define clock_gettime innocuous_clock_gettime + ^ +conftest.c:117:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char clock_gettime (); + ^ +conftest.c:134:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:134:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26540: checking for difftime +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:97:0: warning: macro "difftime" is not used [-Wunused-macros] + #define difftime innocuous_difftime + ^ +conftest.c:118:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char difftime (); + ^ +conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:135:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26540: checking for fork +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:98:0: warning: macro "fork" is not used [-Wunused-macros] + #define fork innocuous_fork + ^ +conftest.c:119:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char fork (); + ^ +conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:136:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26540: checking for frexpf +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:99:0: warning: macro "frexpf" is not used [-Wunused-macros] + #define frexpf innocuous_frexpf + ^ +conftest.c:120:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char frexpf (); + ^ +conftest.c:120:6: warning: conflicting types for built-in function 'frexpf' [enabled by default] + char frexpf (); + ^ +conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:137:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26540: checking for frexpl +configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:100:0: warning: macro "frexpl" is not used [-Wunused-macros] + #define frexpl innocuous_frexpl + ^ +conftest.c:121:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char frexpl (); + ^ +conftest.c:121:6: warning: conflicting types for built-in function 'frexpl' [enabled by default] + char frexpl (); + ^ +conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:138:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26540: $? = 0 +configure:26540: result: yes +configure:26552: checking for gethostname +configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:101:0: warning: macro "gethostname" is not used [-Wunused-macros] + #define gethostname innocuous_gethostname + ^ +conftest.c:122:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char gethostname (); + ^ +conftest.c:139:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:139:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26552: $? = 0 +configure:26552: result: yes +configure:26552: checking for getrusage +configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:102:0: warning: macro "getrusage" is not used [-Wunused-macros] + #define getrusage innocuous_getrusage + ^ +conftest.c:123:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char getrusage (); + ^ +conftest.c:140:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:140:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26552: $? = 0 +configure:26552: result: yes +configure:26552: checking for gettimeofday +configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:103:0: warning: macro "gettimeofday" is not used [-Wunused-macros] + #define gettimeofday innocuous_gettimeofday + ^ +conftest.c:124:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char gettimeofday (); + ^ +conftest.c:141:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:141:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26552: $? = 0 +configure:26552: result: yes +configure:26564: checking for lstat +configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:104:0: warning: macro "lstat" is not used [-Wunused-macros] + #define lstat innocuous_lstat + ^ +conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char lstat (); + ^ +conftest.c:142:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:142:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26564: $? = 0 +configure:26564: result: yes +configure:26564: checking for rand_r +configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:105:0: warning: macro "rand_r" is not used [-Wunused-macros] + #define rand_r innocuous_rand_r + ^ +conftest.c:126:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char rand_r (); + ^ +conftest.c:143:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:143:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26564: $? = 0 +configure:26564: result: yes +configure:26564: checking for random +configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:106:0: warning: macro "random" is not used [-Wunused-macros] + #define random innocuous_random + ^ +conftest.c:127:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char random (); + ^ +conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:144:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26564: $? = 0 +configure:26564: result: yes +configure:26564: checking for setsysinfo +configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:107:0: warning: macro "setsysinfo" is not used [-Wunused-macros] + #define setsysinfo innocuous_setsysinfo + ^ +conftest.c:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char setsysinfo (); + ^ +conftest.c:145:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:145:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/ccX3t6tu.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:147: undefined reference to `setsysinfo' +collect2: error: ld returned 1 exit status +configure:26564: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| #define HAVE_TIOCGWINSZ 1 +| #define HAVE_TIOCGETD 1 +| #define HAVE_ALARM 1 +| #define HAVE_CLOCK_GETTIME 1 +| #define HAVE_DIFFTIME 1 +| #define HAVE_FORK 1 +| #define HAVE_FREXPF 1 +| #define HAVE_FREXPL 1 +| #define HAVE_GETHOSTNAME 1 +| #define HAVE_GETRUSAGE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_LSTAT 1 +| #define HAVE_RAND_R 1 +| #define HAVE_RANDOM 1 +| /* end confdefs.h. */ +| /* Define setsysinfo to an innocuous variant, in case declares setsysinfo. +| For example, HP-UX 11i declares gettimeofday. */ +| #define setsysinfo innocuous_setsysinfo +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char setsysinfo (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef setsysinfo +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char setsysinfo (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_setsysinfo || defined __stub___setsysinfo +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return setsysinfo (); +| ; +| return 0; +| } +configure:26564: result: no +configure:26576: checking for signal +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:107:0: warning: macro "signal" is not used [-Wunused-macros] + #define signal innocuous_signal + ^ +conftest.c:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char signal (); + ^ +conftest.c:145:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:145:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26576: $? = 0 +configure:26576: result: yes +configure:26576: checking for longjmp +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:108:0: warning: macro "longjmp" is not used [-Wunused-macros] + #define longjmp innocuous_longjmp + ^ +conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char longjmp (); + ^ +conftest.c:146:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:146:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26576: $? = 0 +configure:26576: result: yes +configure:26576: checking for setjmp +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:109:0: warning: macro "setjmp" is not used [-Wunused-macros] + #define setjmp innocuous_setjmp + ^ +conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char setjmp (); + ^ +conftest.c:147:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:147:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26576: $? = 0 +configure:26576: result: yes +configure:26576: checking for siglongjmp +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:110:0: warning: macro "siglongjmp" is not used [-Wunused-macros] + #define siglongjmp innocuous_siglongjmp + ^ +conftest.c:131:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char siglongjmp (); + ^ +conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26576: $? = 0 +configure:26576: result: yes +configure:26576: checking for sigsetjmp +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:111:0: warning: macro "sigsetjmp" is not used [-Wunused-macros] + #define sigsetjmp innocuous_sigsetjmp + ^ +conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char sigsetjmp (); + ^ +conftest.c:149:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:149:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +/tmp/cc5pIkvX.o: In function `main': +/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:151: undefined reference to `sigsetjmp' +collect2: error: ld returned 1 exit status +configure:26576: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| #define HAVE_TIOCGWINSZ 1 +| #define HAVE_TIOCGETD 1 +| #define HAVE_ALARM 1 +| #define HAVE_CLOCK_GETTIME 1 +| #define HAVE_DIFFTIME 1 +| #define HAVE_FORK 1 +| #define HAVE_FREXPF 1 +| #define HAVE_FREXPL 1 +| #define HAVE_GETHOSTNAME 1 +| #define HAVE_GETRUSAGE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_LSTAT 1 +| #define HAVE_RAND_R 1 +| #define HAVE_RANDOM 1 +| #define HAVE_SIGNAL 1 +| #define HAVE_LONGJMP 1 +| #define HAVE_SETJMP 1 +| #define HAVE_SIGLONGJMP 1 +| /* end confdefs.h. */ +| /* Define sigsetjmp to an innocuous variant, in case declares sigsetjmp. +| For example, HP-UX 11i declares gettimeofday. */ +| #define sigsetjmp innocuous_sigsetjmp +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char sigsetjmp (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef sigsetjmp +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char sigsetjmp (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_sigsetjmp || defined __stub___sigsetjmp +| choke me +| #endif +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| return sigsetjmp (); +| ; +| return 0; +| } +configure:26576: result: no +configure:26576: checking for sigprocmask +configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:111:0: warning: macro "sigprocmask" is not used [-Wunused-macros] + #define sigprocmask innocuous_sigprocmask + ^ +conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char sigprocmask (); + ^ +conftest.c:149:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:149:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26576: $? = 0 +configure:26576: result: yes +configure:26588: checking for snprintf +configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:112:0: warning: macro "snprintf" is not used [-Wunused-macros] + #define snprintf innocuous_snprintf + ^ +conftest.c:133:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char snprintf (); + ^ +conftest.c:133:6: warning: conflicting types for built-in function 'snprintf' [enabled by default] + char snprintf (); + ^ +conftest.c:150:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:150:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26588: $? = 0 +configure:26588: result: yes +configure:26588: checking for srandom +configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:113:0: warning: macro "srandom" is not used [-Wunused-macros] + #define srandom innocuous_srandom + ^ +conftest.c:134:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char srandom (); + ^ +conftest.c:151:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:151:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26588: $? = 0 +configure:26588: result: yes +configure:26588: checking for strdup +configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:114:0: warning: macro "strdup" is not used [-Wunused-macros] + #define strdup innocuous_strdup + ^ +conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char strdup (); + ^ +conftest.c:152:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:152:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26588: $? = 0 +configure:26588: result: yes +configure:26588: checking for symlink +configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:115:0: warning: macro "symlink" is not used [-Wunused-macros] + #define symlink innocuous_symlink + ^ +conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char symlink (); + ^ +conftest.c:153:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:153:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26588: $? = 0 +configure:26588: result: yes +configure:26588: checking for system +configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:116:0: warning: macro "system" is not used [-Wunused-macros] + #define system innocuous_system + ^ +conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char system (); + ^ +conftest.c:154:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:154:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26588: $? = 0 +configure:26588: result: yes +configure:26600: checking for strtoll +configure:26600: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:117:0: warning: macro "strtoll" is not used [-Wunused-macros] + #define strtoll innocuous_strtoll + ^ +conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char strtoll (); + ^ +conftest.c:155:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:155:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26600: $? = 0 +configure:26600: result: yes +configure:26600: checking for strtoull +configure:26600: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:118:0: warning: macro "strtoull" is not used [-Wunused-macros] + #define strtoull innocuous_strtoull + ^ +conftest.c:139:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char strtoull (); + ^ +conftest.c:156:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:156:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26600: $? = 0 +configure:26600: result: yes +configure:26612: checking for tmpfile +configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:119:0: warning: macro "tmpfile" is not used [-Wunused-macros] + #define tmpfile innocuous_tmpfile + ^ +conftest.c:140:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char tmpfile (); + ^ +conftest.c:157:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:157:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26612: $? = 0 +configure:26612: result: yes +configure:26612: checking for asprintf +configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:120:0: warning: macro "asprintf" is not used [-Wunused-macros] + #define asprintf innocuous_asprintf + ^ +conftest.c:141:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char asprintf (); + ^ +conftest.c:158:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:158:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26612: $? = 0 +configure:26612: result: yes +configure:26612: checking for vasprintf +configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:121:0: warning: macro "vasprintf" is not used [-Wunused-macros] + #define vasprintf innocuous_vasprintf + ^ +conftest.c:142:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char vasprintf (); + ^ +conftest.c:159:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:159:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26612: $? = 0 +configure:26612: result: yes +configure:26612: checking for vsnprintf +configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:122:0: warning: macro "vsnprintf" is not used [-Wunused-macros] + #define vsnprintf innocuous_vsnprintf + ^ +conftest.c:143:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char vsnprintf (); + ^ +conftest.c:143:6: warning: conflicting types for built-in function 'vsnprintf' [enabled by default] + char vsnprintf (); + ^ +conftest.c:160:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:160:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26612: $? = 0 +configure:26612: result: yes +configure:26612: checking for waitpid +configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:123:0: warning: macro "waitpid" is not used [-Wunused-macros] + #define waitpid innocuous_waitpid + ^ +conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char waitpid (); + ^ +conftest.c:161:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:161:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26612: $? = 0 +configure:26612: result: yes +configure:26625: checking for an ANSI C-conforming const +configure:26699: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:132:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:153:9: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] + ppc = (char**) pcpcc; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26699: $? = 0 +configure:26706: result: yes +configure:26715: checking if the compiler understands __inline__ +configure:26721: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:122:40: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] + static __inline__ void f(void){return;}; + ^ +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26721: $? = 0 +configure:26724: result: yes +configure:26733: checking if the compiler understands __inline +configure:26739: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:123:38: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] + static __inline void f(void){return;}; + ^ +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26739: $? = 0 +configure:26742: result: yes +configure:26751: checking if the compiler understands inline +configure:26757: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:124:36: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] + static inline void f(void){return;}; + ^ +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26757: $? = 0 +configure:26760: result: yes +configure:26769: checking for __attribute__ extension +configure:26790: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:135:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26790: $? = 0 +configure:26794: result: yes +configure:26802: checking for __func__ extension +configure:26823: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:136:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:138:14: warning: unused variable 'fname' [-Wunused-variable] + const char *fname = __func__; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26823: $? = 0 +configure:26827: result: yes +configure:26834: checking for __FUNCTION__ extension +configure:26855: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:137:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:139:14: warning: unused variable 'fname' [-Wunused-variable] + const char *fname = __FUNCTION__; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26855: $? = 0 +configure:26859: result: yes +configure:26866: checking for C99 designated initialization support +configure:26895: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:138:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:148:29: warning: unused variable 'x' [-Wunused-variable] + di_struct_t x = {0, { .d = 0.0}}; + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26895: $? = 0 +configure:26899: result: yes +configure:26912: checking how to print long long +configure:26939: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c: In function 'main': +conftest.c:136:12: warning: request for implicit conversion from 'void *' to 'char *' not permitted in C++ [-Wc++-compat] + char *s = malloc(128); + ^ +conftest.c:138:2: warning: format '%ld' expects argument of type 'long int', but argument 3 has type 'long long int' [-Wformat=] + sprintf(s,"%ld",x); + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26939: $? = 0 +configure:26939: ./conftest +configure:26939: $? = 0 +configure:26950: result: %ld and %lu +configure:26962: checking Threads support system scope +configure:26992: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:26992: $? = 0 +configure:26992: ./conftest +configure:26992: $? = 0 +configure:27008: result: yes +configure:27019: checking for debug flags +configure:27042: result: default (d,e,f,g,hg,i,mm,o,p,s,t,v,z) +configure:27072: checking whether function stack tracking is enabled +configure:27091: result: no +configure:27099: checking whether metadata trace file code is enabled +configure:27118: result: no +configure:27128: checking for API tracing +configure:27147: result: yes +configure:27165: checking for instrumented library +configure:27184: result: yes +configure:27203: checking whether to clear file buffers +configure:27219: result: yes +configure:27234: checking whether a memory checking tool will be used +configure:27253: result: no +configure:27372: checking for parallel support files +configure:27377: result: skipped +configure:27871: checking whether O_DIRECT is declared +configure:27871: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:144:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:27871: $? = 0 +configure:27871: result: yes +configure:27884: checking for posix_memalign +configure:27884: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:135:0: warning: macro "posix_memalign" is not used [-Wunused-macros] + #define posix_memalign innocuous_posix_memalign + ^ +conftest.c:156:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + char posix_memalign (); + ^ +conftest.c:173:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:173:1: warning: old-style function definition [-Wold-style-definition] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:27884: $? = 0 +configure:27884: result: yes +configure:27894: checking if the direct I/O virtual file driver (VFD) is enabled +configure:27922: result: no +configure:27938: checking for custom plugin default path definition +configure:27954: result: /usr/local/hdf5/lib/plugin +configure:27971: checking whether exception handling functions is checked during data conversions +configure:27982: result: yes +configure:27998: checking whether data accuracy is guaranteed during data conversions +configure:28009: result: yes +configure:28025: checking if the machine has window style path name +configure:28037: result: no +configure:28051: checking if using special algorithm to convert long double to (unsigned) long values +configure:28137: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:198:17: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] + exit(ret); + ^ +conftest.c:198:17: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] + #define WANT_DCONV_EXCEPTION 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] + #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] + #define WANT_DATA_ACCURACY 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:28137: $? = 0 +configure:28137: ./conftest +configure:28137: $? = 1 +configure: program exited with status 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| #define HAVE_TIOCGWINSZ 1 +| #define HAVE_TIOCGETD 1 +| #define HAVE_ALARM 1 +| #define HAVE_CLOCK_GETTIME 1 +| #define HAVE_DIFFTIME 1 +| #define HAVE_FORK 1 +| #define HAVE_FREXPF 1 +| #define HAVE_FREXPL 1 +| #define HAVE_GETHOSTNAME 1 +| #define HAVE_GETRUSAGE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_LSTAT 1 +| #define HAVE_RAND_R 1 +| #define HAVE_RANDOM 1 +| #define HAVE_SIGNAL 1 +| #define HAVE_LONGJMP 1 +| #define HAVE_SETJMP 1 +| #define HAVE_SIGLONGJMP 1 +| #define HAVE_SIGPROCMASK 1 +| #define HAVE_SNPRINTF 1 +| #define HAVE_SRANDOM 1 +| #define HAVE_STRDUP 1 +| #define HAVE_SYMLINK 1 +| #define HAVE_SYSTEM 1 +| #define HAVE_STRTOLL 1 +| #define HAVE_STRTOULL 1 +| #define HAVE_TMPFILE 1 +| #define HAVE_ASPRINTF 1 +| #define HAVE_VASPRINTF 1 +| #define HAVE_VSNPRINTF 1 +| #define HAVE_WAITPID 1 +| #define HAVE___INLINE__ 1 +| #define HAVE___INLINE 1 +| #define HAVE_INLINE 1 +| #define HAVE_ATTRIBUTE 1 +| #define HAVE_C99_FUNC 1 +| #define HAVE_FUNCTION 1 +| #define HAVE_C99_DESIGNATED_INITIALIZER 1 +| #define PRINTF_LL_WIDTH "l" +| #define SYSTEM_SCOPE_THREADS 1 +| #define HAVE_INSTRUMENTED_LIBRARY 1 +| #define CLEAR_MEMORY 1 +| #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" +| #define WANT_DCONV_EXCEPTION 1 +| #define WANT_DATA_ACCURACY 1 +| /* end confdefs.h. */ +| +| #include +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| +| long double ld = 20041683600089727.779961L; +| long ll; +| unsigned long ull; +| unsigned char s[16]; +| unsigned char s2[8]; +| int ret = 1; +| +| if(sizeof(long double) == 16 && sizeof(long) == 8) { +| /*make sure the long double type has 16 bytes in size and +| * 11 bits of exponent. If it is, +| *the bit sequence should be like below. It's not +| *a decent way to check but this info isn't available. */ +| memcpy(s, &ld, 16); +| if(s[0]==0x43 && s[1]==0x51 && s[2]==0xcc && s[3]==0xf3 && +| s[4]==0x85 && s[5]==0xeb && s[6]==0xc8 && s[7]==0xa0 && +| s[8]==0xbf && s[9]==0xcc && s[10]==0x2a && s[11]==0x3c) { +| +| /* Assign the hexadecimal value of long double type. */ +| s[0]=0x43; s[1]=0x51; s[2]=0xcc; s[3]=0xf3; +| s[4]=0x85; s[5]=0xeb; s[6]=0xc8; s[7]=0xa0; +| s[8]=0xbf; s[9]=0xcc; s[10]=0x2a; s[11]=0x3c; +| s[12]=0x3d; s[13]=0x85; s[14]=0x56; s[15]=0x20; +| +| memcpy(&ld, s, 16); +| +| ll = (long)ld; +| memcpy(s2, &ll, 8); +| +| /* The library's algorithm converts it to 0x 00 47 33 ce 17 af 22 82 +| * and gets wrong value 20041683600089730 on the IBM Power6 Linux. +| * But the IBM Power6 Linux converts it to 0x00 47 33 ce 17 af 22 7f +| * and gets the correct value 20041683600089727. It uses some special +| * algorithm. We're going to define the macro and skip the test until +| * we can figure out how they do it. */ +| if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && +| s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) +| ret = 0; +| +| ull = (unsigned long)ld; +| memcpy(s2, &ull, 8); +| +| /* The unsigned long is the same as signed long. */ +| if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && +| s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) +| ret = 0; +| } +| } +| exit(ret); +| +| ; +| return 0; +| } +| +configure:28157: result: no +configure:28169: checking if using special algorithm to convert (unsigned) long to long double values +configure:28258: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:201:17: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] + exit(ret); + ^ +conftest.c:201:17: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] + #define WANT_DCONV_EXCEPTION 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] + #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] + #define WANT_DATA_ACCURACY 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:28258: $? = 0 +configure:28258: ./conftest +configure:28258: $? = 1 +configure: program exited with status 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "HDF5" +| #define PACKAGE_TARNAME "hdf5" +| #define PACKAGE_VERSION "1.8.21-pre1" +| #define PACKAGE_STRING "HDF5 1.8.21-pre1" +| #define PACKAGE_BUGREPORT "help@hdfgroup.org" +| #define PACKAGE_URL "" +| #define PACKAGE "hdf5" +| #define VERSION "1.8.21-pre1" +| #define INCLUDE_HL 1 +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_LIBM 1 +| #define HAVE_LIBDL 1 +| #define STDC_HEADERS 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE_SYS_RESOURCE_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_SETJMP_H 1 +| #define HAVE_FEATURES_H 1 +| #define HAVE_DIRENT_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_SYS_TIMEB_H 1 +| #define SIZEOF_CHAR 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_UNSIGNED 4 +| #define SIZEOF_LONG 8 +| #define SIZEOF_LONG_LONG 8 +| #define SIZEOF___INT64 0 +| #define SIZEOF_FLOAT 4 +| #define SIZEOF_DOUBLE 8 +| #define SIZEOF_LONG_DOUBLE 16 +| #include +| #include +| #define SIZEOF_INT8_T 1 +| #define SIZEOF_UINT8_T 1 +| #define SIZEOF_INT_LEAST8_T 1 +| #define SIZEOF_UINT_LEAST8_T 1 +| #define SIZEOF_INT_FAST8_T 1 +| #define SIZEOF_UINT_FAST8_T 1 +| #define SIZEOF_INT16_T 2 +| #define SIZEOF_UINT16_T 2 +| #define SIZEOF_INT_LEAST16_T 2 +| #define SIZEOF_UINT_LEAST16_T 2 +| #define SIZEOF_INT_FAST16_T 8 +| #define SIZEOF_UINT_FAST16_T 8 +| #define SIZEOF_INT32_T 4 +| #define SIZEOF_UINT32_T 4 +| #define SIZEOF_INT_LEAST32_T 4 +| #define SIZEOF_UINT_LEAST32_T 4 +| #define SIZEOF_INT_FAST32_T 8 +| #define SIZEOF_UINT_FAST32_T 8 +| #define SIZEOF_INT64_T 8 +| #define SIZEOF_UINT64_T 8 +| #define SIZEOF_INT_LEAST64_T 8 +| #define SIZEOF_UINT_LEAST64_T 8 +| #define SIZEOF_INT_FAST64_T 8 +| #define SIZEOF_UINT_FAST64_T 8 +| #define SIZEOF_SIZE_T 8 +| #define SIZEOF_SSIZE_T 8 +| #define SIZEOF_PTRDIFF_T 8 +| #include /*for off_t definition*/ +| #define SIZEOF_OFF_T 8 +| #define DEV_T_IS_SCALAR 1 +| #define HAVE_ZLIB_H 1 +| #define HAVE_LIBZ 1 +| #define HAVE_FILTER_DEFLATE 1 +| #define HAVE_TM_GMTOFF 1 +| #define HAVE_TIMEZONE 1 +| #define HAVE_STAT_ST_BLOCKS 1 +| #define HAVE_GETPWUID 1 +| #define HAVE_IOCTL 1 +| #define HAVE_TIOCGWINSZ 1 +| #define HAVE_TIOCGETD 1 +| #define HAVE_ALARM 1 +| #define HAVE_CLOCK_GETTIME 1 +| #define HAVE_DIFFTIME 1 +| #define HAVE_FORK 1 +| #define HAVE_FREXPF 1 +| #define HAVE_FREXPL 1 +| #define HAVE_GETHOSTNAME 1 +| #define HAVE_GETRUSAGE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_LSTAT 1 +| #define HAVE_RAND_R 1 +| #define HAVE_RANDOM 1 +| #define HAVE_SIGNAL 1 +| #define HAVE_LONGJMP 1 +| #define HAVE_SETJMP 1 +| #define HAVE_SIGLONGJMP 1 +| #define HAVE_SIGPROCMASK 1 +| #define HAVE_SNPRINTF 1 +| #define HAVE_SRANDOM 1 +| #define HAVE_STRDUP 1 +| #define HAVE_SYMLINK 1 +| #define HAVE_SYSTEM 1 +| #define HAVE_STRTOLL 1 +| #define HAVE_STRTOULL 1 +| #define HAVE_TMPFILE 1 +| #define HAVE_ASPRINTF 1 +| #define HAVE_VASPRINTF 1 +| #define HAVE_VSNPRINTF 1 +| #define HAVE_WAITPID 1 +| #define HAVE___INLINE__ 1 +| #define HAVE___INLINE 1 +| #define HAVE_INLINE 1 +| #define HAVE_ATTRIBUTE 1 +| #define HAVE_C99_FUNC 1 +| #define HAVE_FUNCTION 1 +| #define HAVE_C99_DESIGNATED_INITIALIZER 1 +| #define PRINTF_LL_WIDTH "l" +| #define SYSTEM_SCOPE_THREADS 1 +| #define HAVE_INSTRUMENTED_LIBRARY 1 +| #define CLEAR_MEMORY 1 +| #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" +| #define WANT_DCONV_EXCEPTION 1 +| #define WANT_DATA_ACCURACY 1 +| /* end confdefs.h. */ +| +| #include +| +| #ifdef FC_DUMMY_MAIN +| #ifndef FC_DUMMY_MAIN_EQ_F77 +| # ifdef __cplusplus +| extern "C" +| # endif +| int FC_DUMMY_MAIN() { return 1; } +| #endif +| #endif +| int +| main () +| { +| +| long double ld; +| long ll; +| unsigned long ull; +| unsigned char s[16]; +| int flag=0, ret=1; +| +| /*Determine if long double has 16 byte in size, 11 bit exponent, and +| *the bias is 0x3ff */ +| if(sizeof(long double) == 16) { +| ld = 1.0L; +| memcpy(s, &ld, 16); +| if(s[0]==0x3f && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && +| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00) +| flag = 1; +| } +| +| if(flag==1 && sizeof(long)==8) { +| ll = 0x003fffffffffffffL; +| ld = (long double)ll; +| memcpy(s, &ld, 16); +| /* The library converts the value to 0x434fffffffffffff8000000000000000. +| * In decimal it is 18014398509481982.000000, one value short of the original. +| * The IBM Power6 Linux converts it to 0x4350000000000000bff0000000000000. +| * The value is correct in decimal. It uses some special +| * algorithm. We're going to define the macro and skip the test until +| * we can figure out how they do it. */ +| if(s[0]==0x43 && s[1]==0x50 && s[2]==0x00 && s[3]==0x00 && +| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && +| s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && +| s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) +| ret = 0; +| } +| if(flag==1 && sizeof(unsigned long)==8) { +| ull = 0xffffffffffffffffUL; +| ld = (long double)ull; +| memcpy(s, &ld, 16); +| /* Use a different value from signed long to test. The problem is the same +| * for both long and unsigned long. The value is 18446744073709551615. +| * The library converts the value to 0x43effffffffffffffe000000000000000. +| * In decimal it's 18446744073709548544.000000, very different from the original. +| * The IBM Power6 Linux converts it to 0x43f0000000000000bff0000000000000. +| * The value is correct in decimal. It uses some special +| * algorithm. We're going to define the macro and skip the test until +| * we can figure out how they do it. */ +| if(s[0]==0x43 && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && +| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && +| s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && +| s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) +| ret = 0; +| } +| exit(ret); +| +| ; +| return 0; +| } +| +configure:28278: result: no +configure:28295: checking if correctly converting long double to (unsigned) long long values +configure:28351: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c: In function 'main': +conftest.c:150:17: warning: implicit declaration of function 'memcpy' [-Wimplicit-function-declaration] + memcpy(s, &ld, 16); + ^ +conftest.c:150:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] +conftest.c:171:13: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] + exit(ret); + ^ +conftest.c:171:13: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] +conftest.c:170:5: warning: label 'done' defined but not used [-Wunused-label] + done: + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] + #define WANT_DCONV_EXCEPTION 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] + #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] + #define WANT_DATA_ACCURACY 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:28351: $? = 0 +configure:28351: ./conftest +configure:28351: $? = 0 +configure:28368: result: yes +configure:28386: checking if correctly converting (unsigned) long long to long double values +configure:28446: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c: In function 'main': +conftest.c:150:17: warning: implicit declaration of function 'memcpy' [-Wimplicit-function-declaration] + memcpy(s, &ld, 16); + ^ +conftest.c:150:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] +conftest.c:159:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] + memcpy(s, &ld, 16); + ^ +conftest.c:169:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] + memcpy(s, &ld, 16); + ^ +conftest.c:176:13: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] + exit(ret); + ^ +conftest.c:176:13: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] +conftest.c:175:5: warning: label 'done' defined but not used [-Wunused-label] + done: + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] + #define WANT_DCONV_EXCEPTION 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:135:0: warning: macro "LDOUBLE_TO_LLONG_ACCURATE" is not used [-Wunused-macros] + #define LDOUBLE_TO_LLONG_ACCURATE 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] + #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] + #define WANT_DATA_ACCURACY 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:28446: $? = 0 +configure:28446: ./conftest +configure:28446: $? = 0 +configure:28463: result: yes +configure:28587: checking additional programs should be built +configure:28615: checking if deprecated public symbols are available +configure:28627: result: yes +configure:28646: checking which version of public symbols to use by default +configure:28665: result: v18 +configure:28686: checking whether to perform strict file format checks +configure:28705: result: yes +configure:28723: checking whether to have library information embedded in the executables +configure:28734: result: yes +configure:28748: checking if alignment restrictions are strictly enforced +configure:28809: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 +conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:159:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] + main () + ^ +conftest.c: In function 'main': +conftest.c:159:1: warning: old-style function definition [-Wold-style-definition] +conftest.c:162:21: warning: initialization discards 'const' qualifier from pointer target type [enabled by default] + char *chp = "beefs"; + ^ +conftest.c:163:23: warning: request for implicit conversion from 'void *' to 'char **' not permitted in C++ [-Wc++-compat] + char **chpp = malloc (2 * sizeof (char *)); + ^ +conftest.c:177:13: warning: request for implicit conversion from 'void *' to 'struct hvl_t *' not permitted in C++ [-Wc++-compat] + vlp = malloc (2 * sizeof (hvl_t)); + ^ +conftest.c: At top level: +conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] + #define HAVE_GETPWUID 1 + ^ +conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] + #define HAVE_STRING_H 1 + ^ +conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_LONG_DOUBLE 16 + ^ +conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG_LONG 8 + ^ +conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST8_T 1 + ^ +conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] + #define HAVE_SYSTEM 1 + ^ +conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] + #define HAVE_ASPRINTF 1 + ^ +conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT32_T 4 + ^ +conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] + #define HAVE_ATTRIBUTE 1 + ^ +conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST32_T 8 + ^ +conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] + #define HAVE_C99_DESIGNATED_INITIALIZER 1 + ^ +conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] + #define HAVE_FREXPF 1 + ^ +conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] + #define HAVE_ALARM 1 + ^ +conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST64_T 8 + ^ +conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] + #define PACKAGE_STRING "HDF5 1.8.21-pre1" + ^ +conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] + #define HAVE_MEMORY_H 1 + ^ +conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] + #define HAVE_SIGPROCMASK 1 + ^ +conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT8_T 1 + ^ +conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] + #define HAVE_STDINT_H 1 + ^ +conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] + #define HAVE_DIRENT_H 1 + ^ +conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] + #define HAVE_INTTYPES_H 1 + ^ +conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] + #define HAVE_SRANDOM 1 + ^ +conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] + #define HAVE_FILTER_DEFLATE 1 + ^ +conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] + #define DEV_T_IS_SCALAR 1 + ^ +conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] + #define PACKAGE_TARNAME "hdf5" + ^ +conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] + #define HAVE_TM_GMTOFF 1 + ^ +conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] + #define HAVE_GETHOSTNAME 1 + ^ +conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] + #define WANT_DCONV_EXCEPTION 1 + ^ +conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] + #define HAVE_GETTIMEOFDAY 1 + ^ +conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SSIZE_T 8 + ^ +conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] + #define HAVE_STDLIB_H 1 + ^ +conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] + #define HAVE_SYS_TYPES_H 1 + ^ +conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] + #define HAVE_FORK 1 + ^ +conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] + #define HAVE_SYS_SOCKET_H 1 + ^ +conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIMEB_H 1 + ^ +conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] + #define CLEAR_MEMORY 1 + ^ +conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] + #define HAVE_STRTOULL 1 + ^ +conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] + #define HAVE_TIOCGWINSZ 1 + ^ +conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] + #define SIZEOF_DOUBLE 8 + ^ +conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] + #define HAVE_SYS_IOCTL_H 1 + ^ +conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT16_T 2 + ^ +conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] + #define SIZEOF_INT16_T 2 + ^ +conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST32_T 4 + ^ +conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] + #define PACKAGE_BUGREPORT "help@hdfgroup.org" + ^ +conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] + #define HAVE_SETJMP 1 + ^ +conftest.c:135:0: warning: macro "LDOUBLE_TO_LLONG_ACCURATE" is not used [-Wunused-macros] + #define LDOUBLE_TO_LLONG_ACCURATE 1 + ^ +conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] + #define SIZEOF_INT 4 + ^ +conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST32_T 4 + ^ +conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] + #define SIZEOF_UNSIGNED 4 + ^ +conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] + #define SIZEOF_SHORT 2 + ^ +conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] + #define HAVE_VASPRINTF 1 + ^ +conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST32_T 8 + ^ +conftest.c:136:0: warning: macro "LLONG_TO_LDOUBLE_CORRECT" is not used [-Wunused-macros] + #define LLONG_TO_LDOUBLE_CORRECT 1 + ^ +conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] + #define HAVE_UNISTD_H 1 + ^ +conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] + #define HAVE_SIGNAL 1 + ^ +conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] + #define HAVE_LSTAT 1 + ^ +conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] + #define HAVE_ZLIB_H 1 + ^ +conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST16_T 8 + ^ +conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] + #define SIZEOF_CHAR 1 + ^ +conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] + #define HAVE_SYS_RESOURCE_H 1 + ^ +conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] + #define HAVE_TIOCGETD 1 + ^ +conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST16_T 2 + ^ +conftest.c:137:0: warning: macro "STRICT_FORMAT_CHECKS" is not used [-Wunused-macros] + #define STRICT_FORMAT_CHECKS 1 + ^ +conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] + #define HAVE_STRINGS_H 1 + ^ +conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] + #define HAVE_STDDEF_H 1 + ^ +conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] + #define HAVE___INLINE__ 1 + ^ +conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] + #define HAVE_SNPRINTF 1 + ^ +conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] + #define INCLUDE_HL 1 + ^ +conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] + #define HAVE_FUNCTION 1 + ^ +conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] + #define SIZEOF_OFF_T 8 + ^ +conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT64_T 8 + ^ +conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] + #define HAVE_SYS_STAT_H 1 + ^ +conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] + #define SIZEOF_INT64_T 8 + ^ +conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] + #define STDC_HEADERS 1 + ^ +conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] + #define HAVE_WAITPID 1 + ^ +conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] + #define HAVE_INLINE 1 + ^ +conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] + #define PACKAGE_VERSION "1.8.21-pre1" + ^ +conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] + #define PRINTF_LL_WIDTH "l" + ^ +conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] + #define PACKAGE_NAME "HDF5" + ^ +conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] + #define HAVE_FREXPL 1 + ^ +conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] + #define HAVE_GETRUSAGE 1 + ^ +conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] + #define HAVE_C99_FUNC 1 + ^ +conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] + #define HAVE_TMPFILE 1 + ^ +conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] + #define HAVE_SYS_TIME_H 1 + ^ +conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] + #define HAVE_TIMEZONE 1 + ^ +conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] + #define PACKAGE "hdf5" + ^ +conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] + #define SIZEOF_LONG 8 + ^ +conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] + #define HAVE_IOCTL 1 + ^ +conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] + #define HAVE_VSNPRINTF 1 + ^ +conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] + #define LT_OBJDIR ".libs/" + ^ +conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] + #define HAVE_SYMLINK 1 + ^ +conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] + #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + ^ +conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] + #define HAVE_LONGJMP 1 + ^ +conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] + #define HAVE_CLOCK_GETTIME 1 + ^ +conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] + #define SIZEOF_FLOAT 4 + ^ +conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST64_T 8 + ^ +conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST8_T 1 + ^ +conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] + #define HAVE_INSTRUMENTED_LIBRARY 1 + ^ +conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] + #define HAVE___INLINE 1 + ^ +conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] + #define HAVE_LIBM 1 + ^ +conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] + #define HAVE_LIBZ 1 + ^ +conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] + #define HAVE_STAT_ST_BLOCKS 1 + ^ +conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] + #define WANT_DATA_ACCURACY 1 + ^ +conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] + #define HAVE_DIFFTIME 1 + ^ +conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_INT_LEAST64_T 8 + ^ +conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] + #define HAVE_RANDOM 1 + ^ +conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST16_T 2 + ^ +conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] + #define SYSTEM_SCOPE_THREADS 1 + ^ +conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST16_T 8 + ^ +conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] + #define HAVE_DLFCN_H 1 + ^ +conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] + #define SIZEOF_PTRDIFF_T 8 + ^ +conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] + #define HAVE_RAND_R 1 + ^ +conftest.c:138:0: warning: macro "HAVE_EMBEDDED_LIBINFO" is not used [-Wunused-macros] + #define HAVE_EMBEDDED_LIBINFO 1 + ^ +conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] + #define SIZEOF_INT8_T 1 + ^ +conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] + #define HAVE_FEATURES_H 1 + ^ +conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] + #define HAVE_STRTOLL 1 + ^ +conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] + #define HAVE_SETJMP_H 1 + ^ +conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] + #define SIZEOF_SIZE_T 8 + ^ +conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_INT_FAST8_T 1 + ^ +conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] + #define HAVE_STRDUP 1 + ^ +conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] + #define HAVE_SIGLONGJMP 1 + ^ +conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] + #define TIME_WITH_SYS_TIME 1 + ^ +conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] + #define SIZEOF_INT32_T 4 + ^ +conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] + #define HAVE_LIBDL 1 + ^ +conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] + #define SIZEOF___INT64 0 + ^ +conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] + #define VERSION "1.8.21-pre1" + ^ +conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_FAST8_T 1 + ^ +conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] + #define PACKAGE_URL "" + ^ +conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] + #define SIZEOF_UINT_LEAST64_T 8 + ^ +configure:28809: $? = 0 +configure:28809: ./conftest +configure:28809: $? = 0 +configure:28814: result: no +configure:28911: creating ./config.lt + +## ------------------ ## +## Running config.lt. ## +## ------------------ ## +config.lt:733: creating libtool +configure:30882: checking that generated files are newer than configure +configure:30888: result: done +configure:30984: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by HDF5 config.status 1.8.21-pre1, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on jelly + +config.status:1517: creating src/libhdf5.settings +config.status:1517: creating Makefile +config.status:1517: creating src/Makefile +config.status:1517: creating test/Makefile +config.status:1517: creating test/testcheck_version.sh +config.status:1517: creating test/testerror.sh +config.status:1517: creating test/H5srcdir_str.h +config.status:1517: creating test/testlibinfo.sh +config.status:1517: creating test/testlinks_env.sh +config.status:1517: creating test/test_plugin.sh +config.status:1517: creating testpar/Makefile +config.status:1517: creating tools/Makefile +config.status:1517: creating tools/h5dump/Makefile +config.status:1517: creating tools/h5dump/h5dump_plugin.sh +config.status:1517: creating tools/h5dump/testh5dump.sh +config.status:1517: creating tools/h5dump/testh5dumppbits.sh +config.status:1517: creating tools/h5dump/testh5dumpxml.sh +config.status:1517: creating tools/h5ls/Makefile +config.status:1517: creating tools/h5ls/h5ls_plugin.sh +config.status:1517: creating tools/h5ls/testh5ls.sh +config.status:1517: creating tools/h5import/Makefile +config.status:1517: creating tools/h5import/h5importtestutil.sh +config.status:1517: creating tools/h5diff/Makefile +config.status:1517: creating tools/h5diff/h5diff_plugin.sh +config.status:1517: creating tools/h5diff/testh5diff.sh +config.status:1517: creating tools/h5diff/testph5diff.sh +config.status:1517: creating tools/h5jam/Makefile +config.status:1517: creating tools/h5jam/testh5jam.sh +config.status:1517: creating tools/h5repack/Makefile +config.status:1517: creating tools/h5repack/h5repack.sh +config.status:1517: creating tools/h5repack/h5repack_plugin.sh +config.status:1517: creating tools/h5copy/Makefile +config.status:1517: creating tools/h5copy/testh5copy.sh +config.status:1517: creating tools/lib/Makefile +config.status:1517: creating tools/misc/Makefile +config.status:1517: creating tools/misc/h5cc +config.status:1517: creating tools/misc/testh5mkgrp.sh +config.status:1517: creating tools/misc/testh5repart.sh +config.status:1517: creating tools/h5stat/testh5stat.sh +config.status:1517: creating tools/h5stat/Makefile +config.status:1517: creating tools/perform/Makefile +config.status:1517: creating examples/Makefile +config.status:1517: creating examples/run-c-ex.sh +config.status:1517: creating examples/testh5cc.sh +config.status:1517: creating c++/Makefile +config.status:1517: creating c++/src/Makefile +config.status:1517: creating c++/src/h5c++ +config.status:1517: creating c++/test/Makefile +config.status:1517: creating c++/test/H5srcdir_str.h +config.status:1517: creating c++/examples/Makefile +config.status:1517: creating c++/examples/run-c++-ex.sh +config.status:1517: creating c++/examples/testh5c++.sh +config.status:1517: creating fortran/Makefile +config.status:1517: creating fortran/src/h5fc +config.status:1517: creating fortran/src/Makefile +config.status:1517: creating fortran/test/Makefile +config.status:1517: creating fortran/testpar/Makefile +config.status:1517: creating fortran/examples/Makefile +config.status:1517: creating fortran/examples/run-fortran-ex.sh +config.status:1517: creating fortran/examples/testh5fc.sh +config.status:1517: creating hl/Makefile +config.status:1517: creating hl/src/Makefile +config.status:1517: creating hl/test/Makefile +config.status:1517: creating hl/test/H5srcdir_str.h +config.status:1517: creating hl/tools/Makefile +config.status:1517: creating hl/tools/gif2h5/Makefile +config.status:1517: creating hl/tools/gif2h5/h52giftest.sh +config.status:1517: creating hl/examples/Makefile +config.status:1517: creating hl/examples/run-hlc-ex.sh +config.status:1517: creating hl/c++/Makefile +config.status:1517: creating hl/c++/src/Makefile +config.status:1517: creating hl/c++/test/Makefile +config.status:1517: creating hl/c++/examples/Makefile +config.status:1517: creating hl/c++/examples/run-hlc++-ex.sh +config.status:1517: creating hl/fortran/Makefile +config.status:1517: creating hl/fortran/src/Makefile +config.status:1517: creating hl/fortran/test/Makefile +config.status:1517: creating hl/fortran/examples/Makefile +config.status:1517: creating hl/fortran/examples/run-hlfortran-ex.sh +config.status:1517: creating src/H5config.h +config.status:1683: src/H5config.h is unchanged +config.status:1731: executing pubconf commands +config.status:1731: executing depfiles commands +config.status:1731: executing libtool commands + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=x86_64-unknown-linux-gnu +ac_cv_c_bigendian=no +ac_cv_c_compiler_gnu=yes +ac_cv_c_const=yes +ac_cv_cxx_compiler_gnu=yes +ac_cv_env_CCC_set= +ac_cv_env_CCC_value= +ac_cv_env_CC_set= +ac_cv_env_CC_value= +ac_cv_env_CFLAGS_set= +ac_cv_env_CFLAGS_value= +ac_cv_env_CPPFLAGS_set= +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_CXXCPP_set= +ac_cv_env_CXXCPP_value= +ac_cv_env_CXXFLAGS_set= +ac_cv_env_CXXFLAGS_value= +ac_cv_env_CXX_set= +ac_cv_env_CXX_value= +ac_cv_env_FCFLAGS_set= +ac_cv_env_FCFLAGS_value= +ac_cv_env_FC_set= +ac_cv_env_FC_value= +ac_cv_env_LDFLAGS_set= +ac_cv_env_LDFLAGS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_LT_SYS_LIBRARY_PATH_set= +ac_cv_env_LT_SYS_LIBRARY_PATH_value= +ac_cv_env_build_alias_set= +ac_cv_env_build_alias_value= +ac_cv_env_host_alias_set= +ac_cv_env_host_alias_value= +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_func_GetConsoleScreenBufferInfo=no +ac_cv_func__getvideoconfig=no +ac_cv_func__scrsize=no +ac_cv_func_alarm=yes +ac_cv_func_asprintf=yes +ac_cv_func_clock_gettime=yes +ac_cv_func_compress2=yes +ac_cv_func_difftime=yes +ac_cv_func_dlopen=no +ac_cv_func_fork=yes +ac_cv_func_frexpf=yes +ac_cv_func_frexpl=yes +ac_cv_func_gethostname=yes +ac_cv_func_getpwuid=yes +ac_cv_func_getrusage=yes +ac_cv_func_gettextinfo=no +ac_cv_func_gettimeofday=yes +ac_cv_func_ioctl=yes +ac_cv_func_longjmp=yes +ac_cv_func_lstat=yes +ac_cv_func_posix_memalign=yes +ac_cv_func_rand_r=yes +ac_cv_func_random=yes +ac_cv_func_setjmp=yes +ac_cv_func_setsysinfo=no +ac_cv_func_shl_load=no +ac_cv_func_siglongjmp=yes +ac_cv_func_signal=yes +ac_cv_func_sigprocmask=yes +ac_cv_func_sigsetjmp=no +ac_cv_func_snprintf=yes +ac_cv_func_srandom=yes +ac_cv_func_strdup=yes +ac_cv_func_strtoll=yes +ac_cv_func_strtoull=yes +ac_cv_func_symlink=yes +ac_cv_func_system=yes +ac_cv_func_tmpfile=yes +ac_cv_func_vasprintf=yes +ac_cv_func_vsnprintf=yes +ac_cv_func_waitpid=yes +ac_cv_have_decl_CLOCK_MONOTONIC=yes +ac_cv_have_decl_O_DIRECT=yes +ac_cv_header_dirent_h=yes +ac_cv_header_dlfcn_h=yes +ac_cv_header_features_h=yes +ac_cv_header_inttypes_h=yes +ac_cv_header_io_h=no +ac_cv_header_mach_mach_time_h=no +ac_cv_header_memory_h=yes +ac_cv_header_setjmp_h=yes +ac_cv_header_stdc=yes +ac_cv_header_stddef_h=yes +ac_cv_header_stdint_h=yes +ac_cv_header_stdlib_h=yes +ac_cv_header_string_h=yes +ac_cv_header_strings_h=yes +ac_cv_header_sys_ioctl_h=yes +ac_cv_header_sys_resource_h=yes +ac_cv_header_sys_socket_h=yes +ac_cv_header_sys_stat_h=yes +ac_cv_header_sys_time_h=yes +ac_cv_header_sys_timeb_h=yes +ac_cv_header_sys_types_h=yes +ac_cv_header_time=yes +ac_cv_header_unistd_h=yes +ac_cv_header_winsock2_h=no +ac_cv_header_zlib_h=yes +ac_cv_host=x86_64-unknown-linux-gnu +ac_cv_lib_dl_dlopen=yes +ac_cv_lib_dld_shl_load=no +ac_cv_lib_m_ceil=yes +ac_cv_lib_z_compress2=yes +ac_cv_objext=o +ac_cv_path_EGREP='/usr/bin/grep -E' +ac_cv_path_FGREP='/usr/bin/grep -F' +ac_cv_path_GREP=/usr/bin/grep +ac_cv_path_SED=/usr/bin/sed +ac_cv_path_TR=/usr/bin/tr +ac_cv_path_install='/usr/bin/install -c' +ac_cv_path_lt_DD=/usr/bin/dd +ac_cv_path_mkdir=/usr/bin/mkdir +ac_cv_prog_AR=ar +ac_cv_prog_AWK=gawk +ac_cv_prog_CPP='gcc -E' +ac_cv_prog_CXXCPP='g++ -E' +ac_cv_prog_PERL=perl +ac_cv_prog_ac_ct_CC=gcc +ac_cv_prog_ac_ct_OBJDUMP=objdump +ac_cv_prog_ac_ct_RANLIB=ranlib +ac_cv_prog_ac_ct_STRIP=strip +ac_cv_prog_cc_c89= +ac_cv_prog_cc_g=yes +ac_cv_prog_cxx_g=yes +ac_cv_prog_make_gmake_set=yes +ac_cv_search_clock_gettime='none required' +ac_cv_sizeof___int64=0 +ac_cv_sizeof_char=1 +ac_cv_sizeof_double=8 +ac_cv_sizeof_float=4 +ac_cv_sizeof_int16_t=2 +ac_cv_sizeof_int32_t=4 +ac_cv_sizeof_int64_t=8 +ac_cv_sizeof_int8_t=1 +ac_cv_sizeof_int=4 +ac_cv_sizeof_int_fast16_t=8 +ac_cv_sizeof_int_fast32_t=8 +ac_cv_sizeof_int_fast64_t=8 +ac_cv_sizeof_int_fast8_t=1 +ac_cv_sizeof_int_least16_t=2 +ac_cv_sizeof_int_least32_t=4 +ac_cv_sizeof_int_least64_t=8 +ac_cv_sizeof_int_least8_t=1 +ac_cv_sizeof_long=8 +ac_cv_sizeof_long_double=16 +ac_cv_sizeof_long_long=8 +ac_cv_sizeof_off_t=8 +ac_cv_sizeof_ptrdiff_t=8 +ac_cv_sizeof_short=2 +ac_cv_sizeof_size_t=8 +ac_cv_sizeof_ssize_t=8 +ac_cv_sizeof_uint16_t=2 +ac_cv_sizeof_uint32_t=4 +ac_cv_sizeof_uint64_t=8 +ac_cv_sizeof_uint8_t=1 +ac_cv_sizeof_uint_fast16_t=8 +ac_cv_sizeof_uint_fast32_t=8 +ac_cv_sizeof_uint_fast64_t=8 +ac_cv_sizeof_uint_fast8_t=1 +ac_cv_sizeof_uint_least16_t=2 +ac_cv_sizeof_uint_least32_t=4 +ac_cv_sizeof_uint_least64_t=8 +ac_cv_sizeof_uint_least8_t=1 +ac_cv_sizeof_unsigned=4 +ac_cv_sys_file_offset_bits=no +ac_cv_type_off_t=yes +ac_cv_type_ptrdiff_t=yes +ac_cv_type_size_t=yes +ac_cv_type_ssize_t=yes +am_cv_CC_dependencies_compiler_type=gcc3 +am_cv_CXX_dependencies_compiler_type=gcc3 +am_cv_make_support_nested_variables=yes +am_cv_prog_cc_c_o=yes +hdf5_cv_direct_io=yes +hdf5_cv_host=x86_64-unknown-linux-gnu +hdf5_cv_ldouble_to_llong_accurate=yes +hdf5_cv_ldouble_to_long_special=no +hdf5_cv_llong_to_ldouble_correct=yes +hdf5_cv_long_to_ldouble_special=no +hdf5_cv_posix_memalign=yes +hdf5_cv_printf_ll=l +hdf5_cv_system_scope_threads=yes +lt_cv_ar_at_file=@ +lt_cv_archive_cmds_need_lc=no +lt_cv_deplibs_check_method=pass_all +lt_cv_dlopen=dlopen +lt_cv_dlopen_libs=-ldl +lt_cv_dlopen_self=yes +lt_cv_dlopen_self_static=no +lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_ld_reload_flag=-r +lt_cv_nm_interface='BSD nm' +lt_cv_objdir=.libs +lt_cv_path_LD=/usr/bin/ld +lt_cv_path_NM='/usr/bin/nm -B' +lt_cv_path_mainfest_tool=no +lt_cv_prog_compiler_c_o=yes +lt_cv_prog_compiler_pic='-fPIC -DPIC' +lt_cv_prog_compiler_pic_works=yes +lt_cv_prog_compiler_rtti_exceptions=no +lt_cv_prog_compiler_static_works=yes +lt_cv_prog_gnu_ld=yes +lt_cv_sharedlib_from_linklib_cmd='printf %s\n' +lt_cv_shlibpath_overrides_runpath=no +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import= +lt_cv_sys_max_cmd_len=1572864 +lt_cv_to_host_file_cmd=func_convert_file_noop +lt_cv_to_tool_file_cmd=func_convert_file_noop +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' + +## ----------------- ## +## Output variables. ## +## ----------------- ## + +ACLOCAL='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15' +ADD_PARALLEL_FILES='no' +AMDEPBACKSLASH='\' +AMDEP_FALSE='#' +AMDEP_TRUE='' +AMTAR='$${TAR-tar}' +AM_BACKSLASH='\' +AM_CFLAGS='' +AM_CPPFLAGS='' +AM_CXXFLAGS='' +AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +AM_DEFAULT_VERBOSITY='0' +AM_FCFLAGS='' +AM_LDFLAGS='' +AM_MAKEFLAGS='' +AM_V='$(V)' +AR='ar' +AUTOCONF='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf' +AUTOHEADER='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader' +AUTOMAKE='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15' +AWK='gawk' +BUILD_ALL_CONDITIONAL_FALSE='' +BUILD_ALL_CONDITIONAL_TRUE='#' +BUILD_CXX_CONDITIONAL_FALSE='' +BUILD_CXX_CONDITIONAL_TRUE='#' +BUILD_FORTRAN_CONDITIONAL_FALSE='' +BUILD_FORTRAN_CONDITIONAL_TRUE='#' +BUILD_HDF5_HL_CONDITIONAL_FALSE='#' +BUILD_HDF5_HL_CONDITIONAL_TRUE='' +BUILD_PARALLEL_CONDITIONAL_FALSE='' +BUILD_PARALLEL_CONDITIONAL_TRUE='#' +BUILD_SHARED_SZIP_CONDITIONAL_FALSE='' +BUILD_SHARED_SZIP_CONDITIONAL_TRUE='#' +BYTESEX='little-endian' +CC='gcc' +CCDEPMODE='depmode=gcc3' +CC_VERSION='/usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 )' +CFLAGS='' +CLEARFILEBUF='yes' +CODESTACK='no' +CONFIG_DATE='Mon May 14 21:05:08 CDT 2018' +CONFIG_MODE='development' +CONFIG_USER='lrknox@jelly' +CPP='gcc -E' +CPPFLAGS='' +CXX='no' +CXXCPP='g++ -E' +CXXDEPMODE='depmode=gcc3' +CXXFLAGS='' +CXX_VERSION='no ( g++ (GCC) 4.8.5 20150623 )' +CYGPATH_W='echo' +DEBUG_PKG='d,e,f,g,hg,i,mm,o,p,s,t,v,z' +DEFAULT_API_VERSION='v18' +DEFS='-DHAVE_CONFIG_H' +DEPDIR='.deps' +DEPRECATED_SYMBOLS='yes' +DIRECT_VFD='no' +DIRECT_VFD_CONDITIONAL_FALSE='' +DIRECT_VFD_CONDITIONAL_TRUE='#' +DLLTOOL='false' +DSYMUTIL='' +DUMPBIN='' +ECHO_C='' +ECHO_N='-n' +ECHO_T='' +EGREP='/usr/bin/grep -E' +EXEEXT='' +EXTERNAL_FILTERS='deflate(zlib)' +F9XMODEXT='' +F9XMODFLAG='' +F9XSUFFIXFLAG='' +FC2003='' +FC='no' +FCFLAGS='' +FCFLAGS_f90='' +FCLIBS='' +FC_VERSION='no ( GNU Fortran (GCC) 4.8.5 20150623 )' +FGREP='/usr/bin/grep -F' +FORTRAN_2003_CONDITIONAL_F_FALSE='' +FORTRAN_2003_CONDITIONAL_F_TRUE='#' +FORTRAN_DEFAULT_REALisDBLE_F_FALSE='' +FORTRAN_DEFAULT_REALisDBLE_F_TRUE='#' +FORTRAN_HAVE_C_SIZEOF_FALSE='' +FORTRAN_HAVE_C_SIZEOF_TRUE='#' +FORTRAN_HAVE_SIZEOF_FALSE='' +FORTRAN_HAVE_SIZEOF_TRUE='#' +FORTRAN_HAVE_STORAGE_SIZE_FALSE='' +FORTRAN_HAVE_STORAGE_SIZE_TRUE='#' +FORTRAN_SHARED_CONDITIONAL_FALSE='' +FORTRAN_SHARED_CONDITIONAL_TRUE='#' +FSEARCH_DIRS='' +GREP='/usr/bin/grep' +H5_CFLAGS='-std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g' +H5_CPPFLAGS='-D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API' +H5_CXXFLAGS=' ' +H5_FCFLAGS=' ' +H5_FORTRAN_SHARED='no' +H5_LDFLAGS='' +H5_VERSION='1.8.21-pre1' +HADDR_T='' +HAVE_DMALLOC='no' +HAVE_FORTRAN_2003='' +HAVE_PTHREAD='' +HAVE_SHARED_CONDITIONAL_FALSE='#' +HAVE_SHARED_CONDITIONAL_TRUE='' +HDF5_HL='yes' +HDF5_INTERFACES='' +HDF_CXX='no' +HDF_FORTRAN2003='no' +HDF_FORTRAN='no' +HID_T='' +HL='hl' +HL_FOR='' +HSIZE_T='' +HSSIZE_T='' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' +INSTRUMENT='yes' +INSTRUMENT_LIBRARY='yes' +LD='/usr/bin/ld -m elf_x86_64' +LDFLAGS='' +LIBOBJS='' +LIBS='-lz -ldl -lm ' +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +LIPO='' +LL_PATH='' +LN_S='ln -s' +LTLIBOBJS='' +LT_STATIC_EXEC='' +LT_SYS_LIBRARY_PATH='' +MAINT='#' +MAINTAINER_MODE_FALSE='' +MAINTAINER_MODE_TRUE='#' +MAKEINFO='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo' +MANIFEST_TOOL=':' +MKDIR_P='/usr/bin/mkdir -p' +MPE='no' +NM='/usr/bin/nm -B' +NMEDIT='' +NOT_UNAME_CYGWIN_FALSE='#' +NOT_UNAME_CYGWIN_TRUE='' +OBJDUMP='objdump' +OBJECT_NAMELEN_DEFAULT_F='' +OBJEXT='o' +OTOOL64='' +OTOOL='' +PACKAGE='hdf5' +PACKAGE_BUGREPORT='help@hdfgroup.org' +PACKAGE_NAME='HDF5' +PACKAGE_STRING='HDF5 1.8.21-pre1' +PACKAGE_TARNAME='hdf5' +PACKAGE_URL='' +PACKAGE_VERSION='1.8.21-pre1' +PARALLEL='no' +PATH_SEPARATOR=':' +PERL='perl' +RANLIB='ranlib' +ROOT='/mnt/wrk/lrknox/hdf5_hdf5/build' +RUNPARALLEL='' +RUNSERIAL='' +R_INTEGER='' +R_LARGE='' +SEARCH='$(srcdir) $(top_builddir)/src $(top_srcdir)/src' +SED='/usr/bin/sed' +SET_MAKE='' +SHELL='/bin/sh' +SIZE_T='' +STATIC_EXEC='no' +STATIC_SHARED='static, shared' +STRICT_FORMAT_CHECKS='yes' +STRIP='strip' +TESTPARALLEL='' +THREADSAFE='no' +TIME='time' +TR='/usr/bin/tr' +TRACE_API='yes' +UNAME_CYGWIN='no' +UNAME_INFO='Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux' +USE_FILTER_DEFLATE='yes' +USE_FILTER_SZIP='no' +USE_PLUGINS_CONDITIONAL_FALSE='#' +USE_PLUGINS_CONDITIONAL_TRUE='' +USINGMEMCHECKER='no' +VERSION='1.8.21-pre1' +WORDS_BIGENDIAN='no' +ac_ct_AR='' +ac_ct_CC='gcc' +ac_ct_CXX='' +ac_ct_DUMPBIN='' +ac_ct_FC='' +am__EXEEXT_FALSE='' +am__EXEEXT_TRUE='#' +am__fastdepCC_FALSE='#' +am__fastdepCC_TRUE='' +am__fastdepCXX_FALSE='#' +am__fastdepCXX_TRUE='' +am__include='include' +am__isrc=' -I$(srcdir)' +am__leading_dot='.' +am__nodep='_no' +am__quote='' +am__tar='$${TAR-tar} chof - "$$tardir"' +am__untar='$${TAR-tar} xf -' +bindir='${exec_prefix}/bin' +build='x86_64-unknown-linux-gnu' +build_alias='' +build_cpu='x86_64' +build_os='linux-gnu' +build_vendor='unknown' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +dvidir='${docdir}' +enable_shared='yes' +enable_static='yes' +exec_prefix='${prefix}' +fortran_linux_linker_option='' +host='x86_64-unknown-linux-gnu' +host_alias='' +host_cpu='x86_64' +host_os='linux-gnu' +host_vendor='unknown' +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${datarootdir}/info' +install_sh='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh' +libdir='${exec_prefix}/lib' +libexecdir='${exec_prefix}/libexec' +localedir='${datarootdir}/locale' +localstatedir='${prefix}/var' +mandir='${datarootdir}/man' +mkdir_p='$(MKDIR_P)' +oldincludedir='/usr/include' +pdfdir='${docdir}' +prefix='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5' +program_transform_name='s,x,x,' +psdir='${docdir}' +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +sysconfdir='${prefix}/etc' +target_alias='' + +## ----------- ## +## confdefs.h. ## +## ----------- ## + +/* confdefs.h */ +#define PACKAGE_NAME "HDF5" +#define PACKAGE_TARNAME "hdf5" +#define PACKAGE_VERSION "1.8.21-pre1" +#define PACKAGE_STRING "HDF5 1.8.21-pre1" +#define PACKAGE_BUGREPORT "help@hdfgroup.org" +#define PACKAGE_URL "" +#define PACKAGE "hdf5" +#define VERSION "1.8.21-pre1" +#define INCLUDE_HL 1 +#define STDC_HEADERS 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_DLFCN_H 1 +#define LT_OBJDIR ".libs/" +#define HAVE_LIBM 1 +#define HAVE_LIBDL 1 +#define STDC_HEADERS 1 +#define TIME_WITH_SYS_TIME 1 +#define HAVE_SYS_RESOURCE_H 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_SYS_IOCTL_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_SOCKET_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_STDDEF_H 1 +#define HAVE_SETJMP_H 1 +#define HAVE_FEATURES_H 1 +#define HAVE_DIRENT_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_SYS_TIMEB_H 1 +#define SIZEOF_CHAR 1 +#define SIZEOF_SHORT 2 +#define SIZEOF_INT 4 +#define SIZEOF_UNSIGNED 4 +#define SIZEOF_LONG 8 +#define SIZEOF_LONG_LONG 8 +#define SIZEOF___INT64 0 +#define SIZEOF_FLOAT 4 +#define SIZEOF_DOUBLE 8 +#define SIZEOF_LONG_DOUBLE 16 +#include +#include +#define SIZEOF_INT8_T 1 +#define SIZEOF_UINT8_T 1 +#define SIZEOF_INT_LEAST8_T 1 +#define SIZEOF_UINT_LEAST8_T 1 +#define SIZEOF_INT_FAST8_T 1 +#define SIZEOF_UINT_FAST8_T 1 +#define SIZEOF_INT16_T 2 +#define SIZEOF_UINT16_T 2 +#define SIZEOF_INT_LEAST16_T 2 +#define SIZEOF_UINT_LEAST16_T 2 +#define SIZEOF_INT_FAST16_T 8 +#define SIZEOF_UINT_FAST16_T 8 +#define SIZEOF_INT32_T 4 +#define SIZEOF_UINT32_T 4 +#define SIZEOF_INT_LEAST32_T 4 +#define SIZEOF_UINT_LEAST32_T 4 +#define SIZEOF_INT_FAST32_T 8 +#define SIZEOF_UINT_FAST32_T 8 +#define SIZEOF_INT64_T 8 +#define SIZEOF_UINT64_T 8 +#define SIZEOF_INT_LEAST64_T 8 +#define SIZEOF_UINT_LEAST64_T 8 +#define SIZEOF_INT_FAST64_T 8 +#define SIZEOF_UINT_FAST64_T 8 +#define SIZEOF_SIZE_T 8 +#define SIZEOF_SSIZE_T 8 +#define SIZEOF_PTRDIFF_T 8 +#include /*for off_t definition*/ +#define SIZEOF_OFF_T 8 +#define DEV_T_IS_SCALAR 1 +#define HAVE_ZLIB_H 1 +#define HAVE_LIBZ 1 +#define HAVE_FILTER_DEFLATE 1 +#define HAVE_TM_GMTOFF 1 +#define HAVE_TIMEZONE 1 +#define HAVE_STAT_ST_BLOCKS 1 +#define HAVE_GETPWUID 1 +#define HAVE_IOCTL 1 +#define HAVE_TIOCGWINSZ 1 +#define HAVE_TIOCGETD 1 +#define HAVE_ALARM 1 +#define HAVE_CLOCK_GETTIME 1 +#define HAVE_DIFFTIME 1 +#define HAVE_FORK 1 +#define HAVE_FREXPF 1 +#define HAVE_FREXPL 1 +#define HAVE_GETHOSTNAME 1 +#define HAVE_GETRUSAGE 1 +#define HAVE_GETTIMEOFDAY 1 +#define HAVE_LSTAT 1 +#define HAVE_RAND_R 1 +#define HAVE_RANDOM 1 +#define HAVE_SIGNAL 1 +#define HAVE_LONGJMP 1 +#define HAVE_SETJMP 1 +#define HAVE_SIGLONGJMP 1 +#define HAVE_SIGPROCMASK 1 +#define HAVE_SNPRINTF 1 +#define HAVE_SRANDOM 1 +#define HAVE_STRDUP 1 +#define HAVE_SYMLINK 1 +#define HAVE_SYSTEM 1 +#define HAVE_STRTOLL 1 +#define HAVE_STRTOULL 1 +#define HAVE_TMPFILE 1 +#define HAVE_ASPRINTF 1 +#define HAVE_VASPRINTF 1 +#define HAVE_VSNPRINTF 1 +#define HAVE_WAITPID 1 +#define HAVE___INLINE__ 1 +#define HAVE___INLINE 1 +#define HAVE_INLINE 1 +#define HAVE_ATTRIBUTE 1 +#define HAVE_C99_FUNC 1 +#define HAVE_FUNCTION 1 +#define HAVE_C99_DESIGNATED_INITIALIZER 1 +#define PRINTF_LL_WIDTH "l" +#define SYSTEM_SCOPE_THREADS 1 +#define HAVE_INSTRUMENTED_LIBRARY 1 +#define CLEAR_MEMORY 1 +#define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" +#define WANT_DCONV_EXCEPTION 1 +#define WANT_DATA_ACCURACY 1 +#define LDOUBLE_TO_LLONG_ACCURATE 1 +#define LLONG_TO_LDOUBLE_CORRECT 1 +#define STRICT_FORMAT_CHECKS 1 +#define HAVE_EMBEDDED_LIBINFO 1 +#define NO_ALIGNMENT_RESTRICTIONS 1 + +configure: exit 0 diff --git a/build/config.lt b/build/config.lt new file mode 100755 index 0000000..c3af3db --- /dev/null +++ b/build/config.lt @@ -0,0 +1,1598 @@ +#! /bin/sh +# Generated by configure. +# Run this file to recreate a libtool stub with the current configuration. +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## --------------------------------- ## +## Main body of "$CONFIG_LT" script. ## +## --------------------------------- ## +lt_cl_silent=false +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX +} >&5 + +lt_cl_help="\ +'$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $0 [OPTIONS] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +HDF5 config.lt 1.8.21-pre1 +configured by $0, generated by GNU Autoconf 2.69. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test 0 != $# +do + case $1 in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) as_fn_error $? "unrecognized option: $1 +Try '$0 --help' for more information." "$LINENO" 5 ;; + + *) as_fn_error $? "unrecognized argument: $1 +Try '$0 --help' for more information." "$LINENO" 5 ;; + esac + shift +done + +if $lt_cl_silent; then + exec 6>/dev/null +fi + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +double_quote_subst='s/\(["`\\]\)/\\\1/g' +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' +macro_version='2.4.6' +macro_revision='2.4.6' +enable_shared='yes' +enable_static='yes' +pic_mode='default' +enable_fast_install='yes' +shared_archive_member_spec='' +SHELL='/bin/sh' +ECHO='printf %s\n' +PATH_SEPARATOR=':' +host_alias='' +host='x86_64-unknown-linux-gnu' +host_os='linux-gnu' +build_alias='' +build='x86_64-unknown-linux-gnu' +build_os='linux-gnu' +SED='/usr/bin/sed' +Xsed='/usr/bin/sed -e 1s/^X//' +GREP='/usr/bin/grep' +EGREP='/usr/bin/grep -E' +FGREP='/usr/bin/grep -F' +LD='/usr/bin/ld -m elf_x86_64' +NM='/usr/bin/nm -B' +LN_S='ln -s' +max_cmd_len='1572864' +ac_objext='o' +exeext='' +lt_unset='unset' +lt_SP2NL='tr \040 \012' +lt_NL2SP='tr \015\012 \040\040' +lt_cv_to_host_file_cmd='func_convert_file_noop' +lt_cv_to_tool_file_cmd='func_convert_file_noop' +reload_flag=' -r' +reload_cmds='$LD$reload_flag -o $output$reload_objs' +OBJDUMP='objdump' +deplibs_check_method='pass_all' +file_magic_cmd='$MAGIC_CMD' +file_magic_glob='' +want_nocaseglob='no' +DLLTOOL='false' +sharedlib_from_linklib_cmd='printf %s\n' +AR='ar' +AR_FLAGS='cru' +archiver_list_spec='@' +STRIP='strip' +RANLIB='ranlib' +old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' +old_postuninstall_cmds='' +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +lock_old_archive_extraction='no' +CC='gcc' +CFLAGS='' +compiler='gcc' +GCC='yes' +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import='' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_nm_interface='BSD nm' +nm_file_list_spec='@' +lt_sysroot='' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' +objdir='.libs' +MAGIC_CMD='file' +lt_prog_compiler_no_builtin_flag=' -fno-builtin' +lt_prog_compiler_pic=' -fPIC -DPIC' +lt_prog_compiler_wl='-Wl,' +lt_prog_compiler_static='-static' +lt_cv_prog_compiler_c_o='yes' +need_locks='no' +MANIFEST_TOOL=':' +DSYMUTIL='' +NMEDIT='' +LIPO='' +OTOOL='' +OTOOL64='' +libext='a' +shrext_cmds='.so' +extract_expsyms_cmds='' +archive_cmds_need_lc='no' +enable_shared_with_static_runtimes='no' +export_dynamic_flag_spec='$wl--export-dynamic' +whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' +compiler_needs_object='no' +old_archive_from_new_cmds='' +old_archive_from_expsyms_cmds='' +archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' +archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' +module_cmds='' +module_expsym_cmds='' +with_gnu_ld='yes' +allow_undefined_flag='' +no_undefined_flag='' +hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' +hardcode_libdir_separator='' +hardcode_direct='no' +hardcode_direct_absolute='no' +hardcode_minus_L='no' +hardcode_shlibpath_var='unsupported' +hardcode_automatic='no' +inherit_rpath='no' +link_all_deplibs='unknown' +always_export_symbols='no' +export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' +exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' +include_expsyms='' +prelink_cmds='' +postlink_cmds='' +file_list_spec='' +variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' +need_lib_prefix='no' +need_version='no' +version_type='linux' +runpath_var='LD_RUN_PATH' +shlibpath_var='LD_LIBRARY_PATH' +shlibpath_overrides_runpath='no' +libname_spec='lib$name' +library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' +soname_spec='$libname$release$shared_ext$major' +install_override_mode='' +postinstall_cmds='' +postuninstall_cmds='' +finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' +finish_eval='' +hardcode_into_libs='yes' +sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib ' +configure_time_dlsearch_path='/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql ' +configure_time_lt_sys_library_path='' +hardcode_action='immediate' +enable_dlopen='yes' +enable_dlopen_self='yes' +enable_dlopen_self_static='no' +old_striplib='strip --strip-debug' +striplib='strip --strip-unneeded' +compiler_lib_search_dirs='' +predep_objects='' +postdep_objects='' +predeps='' +postdeps='' +compiler_lib_search_path='' +LD_CXX='' +LD_FC='' +reload_flag_CXX=' -r' +reload_flag_FC=' -r' +reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' +reload_cmds_FC='$LD$reload_flag -o $output$reload_objs' +old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +old_archive_cmds_FC='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +compiler_CXX='' +compiler_FC='' +GCC_CXX='' +GCC_FC='' +lt_prog_compiler_no_builtin_flag_CXX='' +lt_prog_compiler_no_builtin_flag_FC='' +lt_prog_compiler_pic_CXX='' +lt_prog_compiler_pic_FC='' +lt_prog_compiler_wl_CXX='' +lt_prog_compiler_wl_FC='' +lt_prog_compiler_static_CXX='' +lt_prog_compiler_static_FC='' +lt_cv_prog_compiler_c_o_CXX='' +lt_cv_prog_compiler_c_o_FC='' +archive_cmds_need_lc_CXX='no' +archive_cmds_need_lc_FC='no' +enable_shared_with_static_runtimes_CXX='no' +enable_shared_with_static_runtimes_FC='no' +export_dynamic_flag_spec_CXX='' +export_dynamic_flag_spec_FC='' +whole_archive_flag_spec_CXX='' +whole_archive_flag_spec_FC='' +compiler_needs_object_CXX='no' +compiler_needs_object_FC='' +old_archive_from_new_cmds_CXX='' +old_archive_from_new_cmds_FC='' +old_archive_from_expsyms_cmds_CXX='' +old_archive_from_expsyms_cmds_FC='' +archive_cmds_CXX='' +archive_cmds_FC='' +archive_expsym_cmds_CXX='' +archive_expsym_cmds_FC='' +module_cmds_CXX='' +module_cmds_FC='' +module_expsym_cmds_CXX='' +module_expsym_cmds_FC='' +with_gnu_ld_CXX='' +with_gnu_ld_FC='' +allow_undefined_flag_CXX='' +allow_undefined_flag_FC='' +no_undefined_flag_CXX='' +no_undefined_flag_FC='' +hardcode_libdir_flag_spec_CXX='' +hardcode_libdir_flag_spec_FC='' +hardcode_libdir_separator_CXX='' +hardcode_libdir_separator_FC='' +hardcode_direct_CXX='no' +hardcode_direct_FC='no' +hardcode_direct_absolute_CXX='no' +hardcode_direct_absolute_FC='no' +hardcode_minus_L_CXX='no' +hardcode_minus_L_FC='no' +hardcode_shlibpath_var_CXX='unsupported' +hardcode_shlibpath_var_FC='' +hardcode_automatic_CXX='no' +hardcode_automatic_FC='no' +inherit_rpath_CXX='no' +inherit_rpath_FC='no' +link_all_deplibs_CXX='unknown' +link_all_deplibs_FC='unknown' +always_export_symbols_CXX='no' +always_export_symbols_FC='no' +export_symbols_cmds_CXX='' +export_symbols_cmds_FC='' +exclude_expsyms_CXX='' +exclude_expsyms_FC='' +include_expsyms_CXX='' +include_expsyms_FC='' +prelink_cmds_CXX='' +prelink_cmds_FC='' +postlink_cmds_CXX='' +postlink_cmds_FC='' +file_list_spec_CXX='' +file_list_spec_FC='' +hardcode_action_CXX='' +hardcode_action_FC='' +compiler_lib_search_dirs_CXX='' +compiler_lib_search_dirs_FC='' +predep_objects_CXX='' +predep_objects_FC='' +postdep_objects_CXX='' +postdep_objects_FC='' +predeps_CXX='' +predeps_FC='' +postdeps_CXX='' +postdeps_FC='' +compiler_lib_search_path_CXX='' +compiler_lib_search_path_FC='' + +LTCC='gcc' +LTCFLAGS=' ' +compiler='gcc' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX LD_FC reload_flag_CXX reload_flag_FC compiler_CXX compiler_FC lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_no_builtin_flag_FC lt_prog_compiler_pic_CXX lt_prog_compiler_pic_FC lt_prog_compiler_wl_CXX lt_prog_compiler_wl_FC lt_prog_compiler_static_CXX lt_prog_compiler_static_FC lt_cv_prog_compiler_c_o_CXX lt_cv_prog_compiler_c_o_FC export_dynamic_flag_spec_CXX export_dynamic_flag_spec_FC whole_archive_flag_spec_CXX whole_archive_flag_spec_FC compiler_needs_object_CXX compiler_needs_object_FC with_gnu_ld_CXX with_gnu_ld_FC allow_undefined_flag_CXX allow_undefined_flag_FC no_undefined_flag_CXX no_undefined_flag_FC hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_FC hardcode_libdir_separator_CXX hardcode_libdir_separator_FC exclude_expsyms_CXX exclude_expsyms_FC include_expsyms_CXX include_expsyms_FC file_list_spec_CXX file_list_spec_FC compiler_lib_search_dirs_CXX compiler_lib_search_dirs_FC predep_objects_CXX predep_objects_FC postdep_objects_CXX postdep_objects_FC predeps_CXX predeps_FC postdeps_CXX postdeps_FC compiler_lib_search_path_CXX compiler_lib_search_path_FC; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX reload_cmds_FC old_archive_cmds_CXX old_archive_cmds_FC old_archive_from_new_cmds_CXX old_archive_from_new_cmds_FC old_archive_from_expsyms_cmds_CXX old_archive_from_expsyms_cmds_FC archive_cmds_CXX archive_cmds_FC archive_expsym_cmds_CXX archive_expsym_cmds_FC module_cmds_CXX module_cmds_FC module_expsym_cmds_CXX module_expsym_cmds_FC export_symbols_cmds_CXX export_symbols_cmds_FC prelink_cmds_CXX prelink_cmds_FC postlink_cmds_CXX postlink_cmds_FC; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +ac_aux_dir='../bin' + +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='hdf5' + VERSION='1.8.21-pre1' + RM='rm -f' + ofile='libtool' + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 +$as_echo "$as_me: creating $ofile" >&6;} + + + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 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. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# The names of the tagged configurations supported by this script. +available_tags='CXX FC ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot=$lt_sysroot + +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain=$ac_aux_dir/ltmain.sh + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: FC + +# The linker used to build libraries. +LD=$lt_LD_FC + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_FC +reload_cmds=$lt_reload_cmds_FC + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_FC + +# A language specific compiler. +CC=$lt_compiler_FC + +# Is the compiler the GNU compiler? +with_gcc=$GCC_FC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_FC + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_FC + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_FC + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_FC + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_FC + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_FC +archive_expsym_cmds=$lt_archive_expsym_cmds_FC + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_FC +module_expsym_cmds=$lt_module_expsym_cmds_FC + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_FC + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_FC + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_FC + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_FC + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_FC + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_FC + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_FC + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_FC + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_FC + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_FC + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_FC + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_FC + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_FC + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_FC + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_FC + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_FC + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_FC + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_FC + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_FC +postdep_objects=$lt_postdep_objects_FC +predeps=$lt_predeps_FC +postdeps=$lt_postdeps_FC + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_FC + +# ### END LIBTOOL TAG CONFIG: FC +_LT_EOF + + +as_fn_exit 0 diff --git a/build/config.status b/build/config.status new file mode 100755 index 0000000..b5c1eeb --- /dev/null +++ b/build/config.status @@ -0,0 +1,2716 @@ +#! /bin/sh +# Generated by configure. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by HDF5 $as_me 1.8.21-pre1, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +# Files that config.status was made for. +config_files=" src/libhdf5.settings Makefile src/Makefile test/Makefile test/testcheck_version.sh test/testerror.sh test/H5srcdir_str.h test/testlibinfo.sh test/testlinks_env.sh test/test_plugin.sh testpar/Makefile tools/Makefile tools/h5dump/Makefile tools/h5dump/h5dump_plugin.sh tools/h5dump/testh5dump.sh tools/h5dump/testh5dumppbits.sh tools/h5dump/testh5dumpxml.sh tools/h5ls/Makefile tools/h5ls/h5ls_plugin.sh tools/h5ls/testh5ls.sh tools/h5import/Makefile tools/h5import/h5importtestutil.sh tools/h5diff/Makefile tools/h5diff/h5diff_plugin.sh tools/h5diff/testh5diff.sh tools/h5diff/testph5diff.sh tools/h5jam/Makefile tools/h5jam/testh5jam.sh tools/h5repack/Makefile tools/h5repack/h5repack.sh tools/h5repack/h5repack_plugin.sh tools/h5copy/Makefile tools/h5copy/testh5copy.sh tools/lib/Makefile tools/misc/Makefile tools/misc/h5cc tools/misc/testh5mkgrp.sh tools/misc/testh5repart.sh tools/h5stat/testh5stat.sh tools/h5stat/Makefile tools/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh" +config_headers=" src/H5config.h" +config_commands=" pubconf depfiles libtool" + +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +ac_cs_config="" +ac_cs_version="\ +HDF5 config.status 1.8.21-pre1 +configured by ../configure, generated by GNU Autoconf 2.69, + with options \"$ac_cs_config\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='/mnt/wrk/lrknox/hdf5_hdf5/build' +srcdir='..' +INSTALL='/usr/bin/install -c' +MKDIR_P='/usr/bin/mkdir -p' +AWK='gawk' +test -n "$AWK" || AWK=awk +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +if $ac_cs_recheck; then + set X /bin/sh '../configure' $ac_configure_extra_args --no-create --no-recursion + shift + $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 + CONFIG_SHELL='/bin/sh' + export CONFIG_SHELL + exec "$@" +fi + +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +# +# INIT-COMMANDS +# +AMDEP_TRUE="" ac_aux_dir="../bin" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +double_quote_subst='s/\(["`\\]\)/\\\1/g' +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' +macro_version='2.4.6' +macro_revision='2.4.6' +enable_shared='yes' +enable_static='yes' +pic_mode='default' +enable_fast_install='yes' +shared_archive_member_spec='' +SHELL='/bin/sh' +ECHO='printf %s\n' +PATH_SEPARATOR=':' +host_alias='' +host='x86_64-unknown-linux-gnu' +host_os='linux-gnu' +build_alias='' +build='x86_64-unknown-linux-gnu' +build_os='linux-gnu' +SED='/usr/bin/sed' +Xsed='/usr/bin/sed -e 1s/^X//' +GREP='/usr/bin/grep' +EGREP='/usr/bin/grep -E' +FGREP='/usr/bin/grep -F' +LD='/usr/bin/ld -m elf_x86_64' +NM='/usr/bin/nm -B' +LN_S='ln -s' +max_cmd_len='1572864' +ac_objext='o' +exeext='' +lt_unset='unset' +lt_SP2NL='tr \040 \012' +lt_NL2SP='tr \015\012 \040\040' +lt_cv_to_host_file_cmd='func_convert_file_noop' +lt_cv_to_tool_file_cmd='func_convert_file_noop' +reload_flag=' -r' +reload_cmds='$LD$reload_flag -o $output$reload_objs' +OBJDUMP='objdump' +deplibs_check_method='pass_all' +file_magic_cmd='$MAGIC_CMD' +file_magic_glob='' +want_nocaseglob='no' +DLLTOOL='false' +sharedlib_from_linklib_cmd='printf %s\n' +AR='ar' +AR_FLAGS='cru' +archiver_list_spec='@' +STRIP='strip' +RANLIB='ranlib' +old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' +old_postuninstall_cmds='' +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +lock_old_archive_extraction='no' +CC='gcc' +CFLAGS='' +compiler='gcc' +GCC='yes' +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import='' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_nm_interface='BSD nm' +nm_file_list_spec='@' +lt_sysroot='' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' +objdir='.libs' +MAGIC_CMD='file' +lt_prog_compiler_no_builtin_flag=' -fno-builtin' +lt_prog_compiler_pic=' -fPIC -DPIC' +lt_prog_compiler_wl='-Wl,' +lt_prog_compiler_static='-static' +lt_cv_prog_compiler_c_o='yes' +need_locks='no' +MANIFEST_TOOL=':' +DSYMUTIL='' +NMEDIT='' +LIPO='' +OTOOL='' +OTOOL64='' +libext='a' +shrext_cmds='.so' +extract_expsyms_cmds='' +archive_cmds_need_lc='no' +enable_shared_with_static_runtimes='no' +export_dynamic_flag_spec='$wl--export-dynamic' +whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' +compiler_needs_object='no' +old_archive_from_new_cmds='' +old_archive_from_expsyms_cmds='' +archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' +archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' +module_cmds='' +module_expsym_cmds='' +with_gnu_ld='yes' +allow_undefined_flag='' +no_undefined_flag='' +hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' +hardcode_libdir_separator='' +hardcode_direct='no' +hardcode_direct_absolute='no' +hardcode_minus_L='no' +hardcode_shlibpath_var='unsupported' +hardcode_automatic='no' +inherit_rpath='no' +link_all_deplibs='unknown' +always_export_symbols='no' +export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' +exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' +include_expsyms='' +prelink_cmds='' +postlink_cmds='' +file_list_spec='' +variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' +need_lib_prefix='no' +need_version='no' +version_type='linux' +runpath_var='LD_RUN_PATH' +shlibpath_var='LD_LIBRARY_PATH' +shlibpath_overrides_runpath='no' +libname_spec='lib$name' +library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' +soname_spec='$libname$release$shared_ext$major' +install_override_mode='' +postinstall_cmds='' +postuninstall_cmds='' +finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' +finish_eval='' +hardcode_into_libs='yes' +sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib ' +configure_time_dlsearch_path='/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql ' +configure_time_lt_sys_library_path='' +hardcode_action='immediate' +enable_dlopen='yes' +enable_dlopen_self='yes' +enable_dlopen_self_static='no' +old_striplib='strip --strip-debug' +striplib='strip --strip-unneeded' +compiler_lib_search_dirs='' +predep_objects='' +postdep_objects='' +predeps='' +postdeps='' +compiler_lib_search_path='' +LD_CXX='' +LD_FC='' +reload_flag_CXX=' -r' +reload_flag_FC=' -r' +reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' +reload_cmds_FC='$LD$reload_flag -o $output$reload_objs' +old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +old_archive_cmds_FC='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +compiler_CXX='' +compiler_FC='' +GCC_CXX='' +GCC_FC='' +lt_prog_compiler_no_builtin_flag_CXX='' +lt_prog_compiler_no_builtin_flag_FC='' +lt_prog_compiler_pic_CXX='' +lt_prog_compiler_pic_FC='' +lt_prog_compiler_wl_CXX='' +lt_prog_compiler_wl_FC='' +lt_prog_compiler_static_CXX='' +lt_prog_compiler_static_FC='' +lt_cv_prog_compiler_c_o_CXX='' +lt_cv_prog_compiler_c_o_FC='' +archive_cmds_need_lc_CXX='no' +archive_cmds_need_lc_FC='no' +enable_shared_with_static_runtimes_CXX='no' +enable_shared_with_static_runtimes_FC='no' +export_dynamic_flag_spec_CXX='' +export_dynamic_flag_spec_FC='' +whole_archive_flag_spec_CXX='' +whole_archive_flag_spec_FC='' +compiler_needs_object_CXX='no' +compiler_needs_object_FC='' +old_archive_from_new_cmds_CXX='' +old_archive_from_new_cmds_FC='' +old_archive_from_expsyms_cmds_CXX='' +old_archive_from_expsyms_cmds_FC='' +archive_cmds_CXX='' +archive_cmds_FC='' +archive_expsym_cmds_CXX='' +archive_expsym_cmds_FC='' +module_cmds_CXX='' +module_cmds_FC='' +module_expsym_cmds_CXX='' +module_expsym_cmds_FC='' +with_gnu_ld_CXX='' +with_gnu_ld_FC='' +allow_undefined_flag_CXX='' +allow_undefined_flag_FC='' +no_undefined_flag_CXX='' +no_undefined_flag_FC='' +hardcode_libdir_flag_spec_CXX='' +hardcode_libdir_flag_spec_FC='' +hardcode_libdir_separator_CXX='' +hardcode_libdir_separator_FC='' +hardcode_direct_CXX='no' +hardcode_direct_FC='no' +hardcode_direct_absolute_CXX='no' +hardcode_direct_absolute_FC='no' +hardcode_minus_L_CXX='no' +hardcode_minus_L_FC='no' +hardcode_shlibpath_var_CXX='unsupported' +hardcode_shlibpath_var_FC='' +hardcode_automatic_CXX='no' +hardcode_automatic_FC='no' +inherit_rpath_CXX='no' +inherit_rpath_FC='no' +link_all_deplibs_CXX='unknown' +link_all_deplibs_FC='unknown' +always_export_symbols_CXX='no' +always_export_symbols_FC='no' +export_symbols_cmds_CXX='' +export_symbols_cmds_FC='' +exclude_expsyms_CXX='' +exclude_expsyms_FC='' +include_expsyms_CXX='' +include_expsyms_FC='' +prelink_cmds_CXX='' +prelink_cmds_FC='' +postlink_cmds_CXX='' +postlink_cmds_FC='' +file_list_spec_CXX='' +file_list_spec_FC='' +hardcode_action_CXX='' +hardcode_action_FC='' +compiler_lib_search_dirs_CXX='' +compiler_lib_search_dirs_FC='' +predep_objects_CXX='' +predep_objects_FC='' +postdep_objects_CXX='' +postdep_objects_FC='' +predeps_CXX='' +predeps_FC='' +postdeps_CXX='' +postdeps_FC='' +compiler_lib_search_path_CXX='' +compiler_lib_search_path_FC='' + +LTCC='gcc' +LTCFLAGS=' ' +compiler='gcc' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX LD_FC reload_flag_CXX reload_flag_FC compiler_CXX compiler_FC lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_no_builtin_flag_FC lt_prog_compiler_pic_CXX lt_prog_compiler_pic_FC lt_prog_compiler_wl_CXX lt_prog_compiler_wl_FC lt_prog_compiler_static_CXX lt_prog_compiler_static_FC lt_cv_prog_compiler_c_o_CXX lt_cv_prog_compiler_c_o_FC export_dynamic_flag_spec_CXX export_dynamic_flag_spec_FC whole_archive_flag_spec_CXX whole_archive_flag_spec_FC compiler_needs_object_CXX compiler_needs_object_FC with_gnu_ld_CXX with_gnu_ld_FC allow_undefined_flag_CXX allow_undefined_flag_FC no_undefined_flag_CXX no_undefined_flag_FC hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_FC hardcode_libdir_separator_CXX hardcode_libdir_separator_FC exclude_expsyms_CXX exclude_expsyms_FC include_expsyms_CXX include_expsyms_FC file_list_spec_CXX file_list_spec_FC compiler_lib_search_dirs_CXX compiler_lib_search_dirs_FC predep_objects_CXX predep_objects_FC postdep_objects_CXX postdep_objects_FC predeps_CXX predeps_FC postdeps_CXX postdeps_FC compiler_lib_search_path_CXX compiler_lib_search_path_FC; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX reload_cmds_FC old_archive_cmds_CXX old_archive_cmds_FC old_archive_from_new_cmds_CXX old_archive_from_new_cmds_FC old_archive_from_expsyms_cmds_CXX old_archive_from_expsyms_cmds_FC archive_cmds_CXX archive_cmds_FC archive_expsym_cmds_CXX archive_expsym_cmds_FC module_cmds_CXX module_cmds_FC module_expsym_cmds_CXX module_expsym_cmds_FC export_symbols_cmds_CXX export_symbols_cmds_FC prelink_cmds_CXX prelink_cmds_FC postlink_cmds_CXX postlink_cmds_FC; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +ac_aux_dir='../bin' + +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='hdf5' + VERSION='1.8.21-pre1' + RM='rm -f' + ofile='libtool' + + + + + +ac_aux_dir='../bin' + + + + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "src/H5config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/H5config.h" ;; + "pubconf") CONFIG_COMMANDS="$CONFIG_COMMANDS pubconf" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "src/libhdf5.settings") CONFIG_FILES="$CONFIG_FILES src/libhdf5.settings" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; + "test/testcheck_version.sh") CONFIG_FILES="$CONFIG_FILES test/testcheck_version.sh" ;; + "test/testerror.sh") CONFIG_FILES="$CONFIG_FILES test/testerror.sh" ;; + "test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES test/H5srcdir_str.h" ;; + "test/testlibinfo.sh") CONFIG_FILES="$CONFIG_FILES test/testlibinfo.sh" ;; + "test/testlinks_env.sh") CONFIG_FILES="$CONFIG_FILES test/testlinks_env.sh" ;; + "test/test_plugin.sh") CONFIG_FILES="$CONFIG_FILES test/test_plugin.sh" ;; + "testpar/Makefile") CONFIG_FILES="$CONFIG_FILES testpar/Makefile" ;; + "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; + "tools/h5dump/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5dump/Makefile" ;; + "tools/h5dump/h5dump_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/h5dump_plugin.sh" ;; + "tools/h5dump/testh5dump.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dump.sh" ;; + "tools/h5dump/testh5dumppbits.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dumppbits.sh" ;; + "tools/h5dump/testh5dumpxml.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dumpxml.sh" ;; + "tools/h5ls/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5ls/Makefile" ;; + "tools/h5ls/h5ls_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5ls/h5ls_plugin.sh" ;; + "tools/h5ls/testh5ls.sh") CONFIG_FILES="$CONFIG_FILES tools/h5ls/testh5ls.sh" ;; + "tools/h5import/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5import/Makefile" ;; + "tools/h5import/h5importtestutil.sh") CONFIG_FILES="$CONFIG_FILES tools/h5import/h5importtestutil.sh" ;; + "tools/h5diff/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5diff/Makefile" ;; + "tools/h5diff/h5diff_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/h5diff_plugin.sh" ;; + "tools/h5diff/testh5diff.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/testh5diff.sh" ;; + "tools/h5diff/testph5diff.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/testph5diff.sh" ;; + "tools/h5jam/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5jam/Makefile" ;; + "tools/h5jam/testh5jam.sh") CONFIG_FILES="$CONFIG_FILES tools/h5jam/testh5jam.sh" ;; + "tools/h5repack/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5repack/Makefile" ;; + "tools/h5repack/h5repack.sh") CONFIG_FILES="$CONFIG_FILES tools/h5repack/h5repack.sh" ;; + "tools/h5repack/h5repack_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5repack/h5repack_plugin.sh" ;; + "tools/h5copy/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5copy/Makefile" ;; + "tools/h5copy/testh5copy.sh") CONFIG_FILES="$CONFIG_FILES tools/h5copy/testh5copy.sh" ;; + "tools/lib/Makefile") CONFIG_FILES="$CONFIG_FILES tools/lib/Makefile" ;; + "tools/misc/Makefile") CONFIG_FILES="$CONFIG_FILES tools/misc/Makefile" ;; + "tools/misc/h5cc") CONFIG_FILES="$CONFIG_FILES tools/misc/h5cc" ;; + "tools/misc/testh5mkgrp.sh") CONFIG_FILES="$CONFIG_FILES tools/misc/testh5mkgrp.sh" ;; + "tools/misc/testh5repart.sh") CONFIG_FILES="$CONFIG_FILES tools/misc/testh5repart.sh" ;; + "tools/h5stat/testh5stat.sh") CONFIG_FILES="$CONFIG_FILES tools/h5stat/testh5stat.sh" ;; + "tools/h5stat/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5stat/Makefile" ;; + "tools/perform/Makefile") CONFIG_FILES="$CONFIG_FILES tools/perform/Makefile" ;; + "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; + "examples/run-c-ex.sh") CONFIG_FILES="$CONFIG_FILES examples/run-c-ex.sh" ;; + "examples/testh5cc.sh") CONFIG_FILES="$CONFIG_FILES examples/testh5cc.sh" ;; + "c++/Makefile") CONFIG_FILES="$CONFIG_FILES c++/Makefile" ;; + "c++/src/Makefile") CONFIG_FILES="$CONFIG_FILES c++/src/Makefile" ;; + "c++/src/h5c++") CONFIG_FILES="$CONFIG_FILES c++/src/h5c++" ;; + "c++/test/Makefile") CONFIG_FILES="$CONFIG_FILES c++/test/Makefile" ;; + "c++/test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES c++/test/H5srcdir_str.h" ;; + "c++/examples/Makefile") CONFIG_FILES="$CONFIG_FILES c++/examples/Makefile" ;; + "c++/examples/run-c++-ex.sh") CONFIG_FILES="$CONFIG_FILES c++/examples/run-c++-ex.sh" ;; + "c++/examples/testh5c++.sh") CONFIG_FILES="$CONFIG_FILES c++/examples/testh5c++.sh" ;; + "fortran/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/Makefile" ;; + "fortran/src/h5fc") CONFIG_FILES="$CONFIG_FILES fortran/src/h5fc" ;; + "fortran/src/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/src/Makefile" ;; + "fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/test/Makefile" ;; + "fortran/testpar/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/testpar/Makefile" ;; + "fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/examples/Makefile" ;; + "fortran/examples/run-fortran-ex.sh") CONFIG_FILES="$CONFIG_FILES fortran/examples/run-fortran-ex.sh" ;; + "fortran/examples/testh5fc.sh") CONFIG_FILES="$CONFIG_FILES fortran/examples/testh5fc.sh" ;; + "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; + "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; + "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; + "hl/test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES hl/test/H5srcdir_str.h" ;; + "hl/tools/Makefile") CONFIG_FILES="$CONFIG_FILES hl/tools/Makefile" ;; + "hl/tools/gif2h5/Makefile") CONFIG_FILES="$CONFIG_FILES hl/tools/gif2h5/Makefile" ;; + "hl/tools/gif2h5/h52giftest.sh") CONFIG_FILES="$CONFIG_FILES hl/tools/gif2h5/h52giftest.sh" ;; + "hl/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/examples/Makefile" ;; + "hl/examples/run-hlc-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/examples/run-hlc-ex.sh" ;; + "hl/c++/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/Makefile" ;; + "hl/c++/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/src/Makefile" ;; + "hl/c++/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/test/Makefile" ;; + "hl/c++/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/examples/Makefile" ;; + "hl/c++/examples/run-hlc++-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/c++/examples/run-hlc++-ex.sh" ;; + "hl/fortran/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/Makefile" ;; + "hl/fortran/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/src/Makefile" ;; + "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; + "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; + "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && +S["am__EXEEXT_FALSE"]="" +S["am__EXEEXT_TRUE"]="#" +S["LTLIBOBJS"]="" +S["LIBOBJS"]="" +S["HAVE_SHARED_CONDITIONAL_FALSE"]="#" +S["HAVE_SHARED_CONDITIONAL_TRUE"]="" +S["fortran_linux_linker_option"]="" +S["SEARCH"]="$(srcdir) $(top_builddir)/src $(top_srcdir)/src" +S["BUILD_HDF5_HL_CONDITIONAL_FALSE"]="#" +S["BUILD_HDF5_HL_CONDITIONAL_TRUE"]="" +S["BUILD_FORTRAN_CONDITIONAL_FALSE"]="" +S["BUILD_FORTRAN_CONDITIONAL_TRUE"]="#" +S["BUILD_PARALLEL_CONDITIONAL_FALSE"]="" +S["BUILD_PARALLEL_CONDITIONAL_TRUE"]="#" +S["BUILD_CXX_CONDITIONAL_FALSE"]="" +S["BUILD_CXX_CONDITIONAL_TRUE"]="#" +S["STRICT_FORMAT_CHECKS"]="yes" +S["DEFAULT_API_VERSION"]="v18" +S["DEPRECATED_SYMBOLS"]="yes" +S["BUILD_ALL_CONDITIONAL_FALSE"]="" +S["BUILD_ALL_CONDITIONAL_TRUE"]="#" +S["ROOT"]="/mnt/wrk/lrknox/hdf5_hdf5/build" +S["CXX_VERSION"]="no ( g++ (GCC) 4.8.5 20150623 )" +S["FC_VERSION"]="no ( GNU Fortran (GCC) 4.8.5 20150623 )" +S["CC_VERSION"]="/usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 )" +S["WORDS_BIGENDIAN"]="no" +S["BYTESEX"]="little-endian" +S["CONFIG_MODE"]="development" +S["CONFIG_USER"]="lrknox@jelly" +S["CONFIG_DATE"]="Mon May 14 21:05:08 CDT 2018" +S["H5_VERSION"]="1.8.21-pre1" +S["DIRECT_VFD_CONDITIONAL_FALSE"]="" +S["DIRECT_VFD_CONDITIONAL_TRUE"]="#" +S["ADD_PARALLEL_FILES"]="no" +S["USINGMEMCHECKER"]="no" +S["CLEARFILEBUF"]="yes" +S["INSTRUMENT_LIBRARY"]="yes" +S["TRACE_API"]="yes" +S["DEBUG_PKG"]="d,e,f,g,hg,i,mm,o,p,s,t,v,z" +S["HAVE_PTHREAD"]="" +S["BUILD_SHARED_SZIP_CONDITIONAL_FALSE"]="" +S["BUILD_SHARED_SZIP_CONDITIONAL_TRUE"]="#" +S["LL_PATH"]="" +S["USE_FILTER_SZIP"]="no" +S["USE_FILTER_DEFLATE"]="yes" +S["NOT_UNAME_CYGWIN_FALSE"]="#" +S["NOT_UNAME_CYGWIN_TRUE"]="" +S["UNAME_CYGWIN"]="no" +S["AM_MAKEFLAGS"]="" +S["LT_STATIC_EXEC"]="" +S["USE_PLUGINS_CONDITIONAL_FALSE"]="#" +S["USE_PLUGINS_CONDITIONAL_TRUE"]="" +S["CPP"]="gcc -E" +S["LT_SYS_LIBRARY_PATH"]="" +S["OTOOL64"]="" +S["OTOOL"]="" +S["LIPO"]="" +S["NMEDIT"]="" +S["DSYMUTIL"]="" +S["MANIFEST_TOOL"]=":" +S["RANLIB"]="ranlib" +S["ac_ct_AR"]="" +S["DLLTOOL"]="false" +S["OBJDUMP"]="objdump" +S["LN_S"]="ln -s" +S["NM"]="/usr/bin/nm -B" +S["ac_ct_DUMPBIN"]="" +S["DUMPBIN"]="" +S["LD"]="/usr/bin/ld -m elf_x86_64" +S["FGREP"]="/usr/bin/grep -F" +S["EGREP"]="/usr/bin/grep -E" +S["GREP"]="/usr/bin/grep" +S["SED"]="/usr/bin/sed" +S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool" +S["FORTRAN_SHARED_CONDITIONAL_FALSE"]="" +S["FORTRAN_SHARED_CONDITIONAL_TRUE"]="#" +S["H5_FORTRAN_SHARED"]="no" +S["TESTPARALLEL"]="" +S["RUNPARALLEL"]="" +S["RUNSERIAL"]="" +S["PARALLEL"]="no" +S["TIME"]="time" +S["TR"]="/usr/bin/tr" +S["AR"]="ar" +S["PERL"]="perl" +S["HL_FOR"]="" +S["HL"]="hl" +S["CXXCPP"]="g++ -E" +S["am__fastdepCXX_FALSE"]="#" +S["am__fastdepCXX_TRUE"]="" +S["CXXDEPMODE"]="depmode=gcc3" +S["ac_ct_CXX"]="" +S["CXXFLAGS"]="" +S["FORTRAN_DEFAULT_REALisDBLE_F_FALSE"]="" +S["FORTRAN_DEFAULT_REALisDBLE_F_TRUE"]="#" +S["FORTRAN_2003_CONDITIONAL_F_FALSE"]="" +S["FORTRAN_2003_CONDITIONAL_F_TRUE"]="#" +S["FORTRAN_HAVE_STORAGE_SIZE_FALSE"]="" +S["FORTRAN_HAVE_STORAGE_SIZE_TRUE"]="#" +S["FORTRAN_HAVE_C_SIZEOF_FALSE"]="" +S["FORTRAN_HAVE_C_SIZEOF_TRUE"]="#" +S["FORTRAN_HAVE_SIZEOF_FALSE"]="" +S["FORTRAN_HAVE_SIZEOF_TRUE"]="#" +S["FCLIBS"]="" +S["F9XMODEXT"]="" +S["F9XMODFLAG"]="" +S["FSEARCH_DIRS"]="" +S["F9XSUFFIXFLAG"]="" +S["FCFLAGS_f90"]="" +S["ac_ct_FC"]="" +S["FCFLAGS"]="" +S["OBJECT_NAMELEN_DEFAULT_F"]="" +S["SIZE_T"]="" +S["HID_T"]="" +S["HSSIZE_T"]="" +S["HSIZE_T"]="" +S["HADDR_T"]="" +S["R_INTEGER"]="" +S["R_LARGE"]="" +S["HAVE_FORTRAN_2003"]="" +S["HDF5_INTERFACES"]="" +S["am__fastdepCC_FALSE"]="#" +S["am__fastdepCC_TRUE"]="" +S["CCDEPMODE"]="depmode=gcc3" +S["am__nodep"]="_no" +S["AMDEPBACKSLASH"]="\\" +S["AMDEP_FALSE"]="#" +S["AMDEP_TRUE"]="" +S["am__quote"]="" +S["am__include"]="include" +S["DEPDIR"]=".deps" +S["OBJEXT"]="o" +S["EXEEXT"]="" +S["ac_ct_CC"]="gcc" +S["LDFLAGS"]="" +S["CFLAGS"]="" +S["CC"]="gcc" +S["UNAME_INFO"]="Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux" +S["enable_static"]="yes" +S["enable_shared"]="yes" +S["STATIC_SHARED"]="static, shared" +S["THREADSAFE"]="no" +S["DIRECT_VFD"]="no" +S["HAVE_DMALLOC"]="no" +S["CODESTACK"]="no" +S["INSTRUMENT"]="yes" +S["HDF5_HL"]="yes" +S["CXX"]="no" +S["HDF_CXX"]="no" +S["FC2003"]="" +S["FC"]="no" +S["HDF_FORTRAN2003"]="no" +S["HDF_FORTRAN"]="no" +S["STATIC_EXEC"]="no" +S["MPE"]="no" +S["EXTERNAL_FILTERS"]="deflate(zlib)" +S["AM_LDFLAGS"]="" +S["AM_CPPFLAGS"]="" +S["AM_CXXFLAGS"]="" +S["AM_FCFLAGS"]="" +S["AM_CFLAGS"]="" +S["H5_LDFLAGS"]="" +S["H5_CXXFLAGS"]=" " +S["H5_FCFLAGS"]=" " +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG"\ +" -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API" +S["H5_CFLAGS"]="-std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggreg"\ +"ate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-forma"\ +"t-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-sty"\ +"le-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimi"\ +"zations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict"\ +"-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsugges"\ +"t-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g" +S["CPPFLAGS"]="" +S["host_os"]="linux-gnu" +S["host_vendor"]="unknown" +S["host_cpu"]="x86_64" +S["host"]="x86_64-unknown-linux-gnu" +S["build_os"]="linux-gnu" +S["build_vendor"]="unknown" +S["build_cpu"]="x86_64" +S["build"]="x86_64-unknown-linux-gnu" +S["MAINT"]="#" +S["MAINTAINER_MODE_FALSE"]="" +S["MAINTAINER_MODE_TRUE"]="#" +S["AM_BACKSLASH"]="\\" +S["AM_DEFAULT_VERBOSITY"]="0" +S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" +S["AM_V"]="$(V)" +S["am__untar"]="$${TAR-tar} xf -" +S["am__tar"]="$${TAR-tar} chof - \"$$tardir\"" +S["AMTAR"]="$${TAR-tar}" +S["am__leading_dot"]="." +S["SET_MAKE"]="" +S["AWK"]="gawk" +S["mkdir_p"]="$(MKDIR_P)" +S["MKDIR_P"]="/usr/bin/mkdir -p" +S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" +S["STRIP"]="strip" +S["install_sh"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh" +S["MAKEINFO"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15" +S["AUTOCONF"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15" +S["VERSION"]="1.8.21-pre1" +S["PACKAGE"]="hdf5" +S["CYGPATH_W"]="echo" +S["am__isrc"]=" -I$(srcdir)" +S["INSTALL_DATA"]="${INSTALL} -m 644" +S["INSTALL_SCRIPT"]="${INSTALL}" +S["INSTALL_PROGRAM"]="${INSTALL}" +S["target_alias"]="" +S["host_alias"]="" +S["build_alias"]="" +S["LIBS"]="-lz -ldl -lm " +S["ECHO_T"]="" +S["ECHO_N"]="-n" +S["ECHO_C"]="" +S["DEFS"]="-DHAVE_CONFIG_H" +S["mandir"]="${datarootdir}/man" +S["localedir"]="${datarootdir}/locale" +S["libdir"]="${exec_prefix}/lib" +S["psdir"]="${docdir}" +S["pdfdir"]="${docdir}" +S["dvidir"]="${docdir}" +S["htmldir"]="${docdir}" +S["infodir"]="${datarootdir}/info" +S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}" +S["oldincludedir"]="/usr/include" +S["includedir"]="${prefix}/include" +S["localstatedir"]="${prefix}/var" +S["sharedstatedir"]="${prefix}/com" +S["sysconfdir"]="${prefix}/etc" +S["datadir"]="${datarootdir}" +S["datarootdir"]="${prefix}/share" +S["libexecdir"]="${exec_prefix}/libexec" +S["sbindir"]="${exec_prefix}/sbin" +S["bindir"]="${exec_prefix}/bin" +S["program_transform_name"]="s,x,x," +S["prefix"]="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" +S["exec_prefix"]="${prefix}" +S["PACKAGE_URL"]="" +S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" +S["PACKAGE_STRING"]="HDF5 1.8.21-pre1" +S["PACKAGE_VERSION"]="1.8.21-pre1" +S["PACKAGE_TARNAME"]="hdf5" +S["PACKAGE_NAME"]="HDF5" +S["PATH_SEPARATOR"]=":" +S["SHELL"]="/bin/sh" +_ACAWK +cat >>"$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +D["PACKAGE_NAME"]=" \"HDF5\"" +D["PACKAGE_TARNAME"]=" \"hdf5\"" +D["PACKAGE_VERSION"]=" \"1.8.21-pre1\"" +D["PACKAGE_STRING"]=" \"HDF5 1.8.21-pre1\"" +D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" +D["PACKAGE_URL"]=" \"\"" +D["PACKAGE"]=" \"hdf5\"" +D["VERSION"]=" \"1.8.21-pre1\"" +D["INCLUDE_HL"]=" 1" +D["STDC_HEADERS"]=" 1" +D["HAVE_SYS_TYPES_H"]=" 1" +D["HAVE_SYS_STAT_H"]=" 1" +D["HAVE_STDLIB_H"]=" 1" +D["HAVE_STRING_H"]=" 1" +D["HAVE_MEMORY_H"]=" 1" +D["HAVE_STRINGS_H"]=" 1" +D["HAVE_INTTYPES_H"]=" 1" +D["HAVE_STDINT_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["HAVE_DLFCN_H"]=" 1" +D["LT_OBJDIR"]=" \".libs/\"" +D["HAVE_LIBM"]=" 1" +D["HAVE_LIBDL"]=" 1" +D["STDC_HEADERS"]=" 1" +D["TIME_WITH_SYS_TIME"]=" 1" +D["HAVE_SYS_RESOURCE_H"]=" 1" +D["HAVE_SYS_TIME_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["HAVE_SYS_IOCTL_H"]=" 1" +D["HAVE_SYS_STAT_H"]=" 1" +D["HAVE_SYS_SOCKET_H"]=" 1" +D["HAVE_SYS_TYPES_H"]=" 1" +D["HAVE_STDDEF_H"]=" 1" +D["HAVE_SETJMP_H"]=" 1" +D["HAVE_FEATURES_H"]=" 1" +D["HAVE_DIRENT_H"]=" 1" +D["HAVE_STDINT_H"]=" 1" +D["HAVE_SYS_TIMEB_H"]=" 1" +D["SIZEOF_CHAR"]=" 1" +D["SIZEOF_SHORT"]=" 2" +D["SIZEOF_INT"]=" 4" +D["SIZEOF_UNSIGNED"]=" 4" +D["SIZEOF_LONG"]=" 8" +D["SIZEOF_LONG_LONG"]=" 8" +D["SIZEOF___INT64"]=" 0" +D["SIZEOF_FLOAT"]=" 4" +D["SIZEOF_DOUBLE"]=" 8" +D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF_INT8_T"]=" 1" +D["SIZEOF_UINT8_T"]=" 1" +D["SIZEOF_INT_LEAST8_T"]=" 1" +D["SIZEOF_UINT_LEAST8_T"]=" 1" +D["SIZEOF_INT_FAST8_T"]=" 1" +D["SIZEOF_UINT_FAST8_T"]=" 1" +D["SIZEOF_INT16_T"]=" 2" +D["SIZEOF_UINT16_T"]=" 2" +D["SIZEOF_INT_LEAST16_T"]=" 2" +D["SIZEOF_UINT_LEAST16_T"]=" 2" +D["SIZEOF_INT_FAST16_T"]=" 8" +D["SIZEOF_UINT_FAST16_T"]=" 8" +D["SIZEOF_INT32_T"]=" 4" +D["SIZEOF_UINT32_T"]=" 4" +D["SIZEOF_INT_LEAST32_T"]=" 4" +D["SIZEOF_UINT_LEAST32_T"]=" 4" +D["SIZEOF_INT_FAST32_T"]=" 8" +D["SIZEOF_UINT_FAST32_T"]=" 8" +D["SIZEOF_INT64_T"]=" 8" +D["SIZEOF_UINT64_T"]=" 8" +D["SIZEOF_INT_LEAST64_T"]=" 8" +D["SIZEOF_UINT_LEAST64_T"]=" 8" +D["SIZEOF_INT_FAST64_T"]=" 8" +D["SIZEOF_UINT_FAST64_T"]=" 8" +D["SIZEOF_SIZE_T"]=" 8" +D["SIZEOF_SSIZE_T"]=" 8" +D["SIZEOF_PTRDIFF_T"]=" 8" +D["SIZEOF_OFF_T"]=" 8" +D["DEV_T_IS_SCALAR"]=" 1" +D["HAVE_ZLIB_H"]=" 1" +D["HAVE_LIBZ"]=" 1" +D["HAVE_FILTER_DEFLATE"]=" 1" +D["HAVE_TM_GMTOFF"]=" 1" +D["HAVE_TIMEZONE"]=" 1" +D["HAVE_STAT_ST_BLOCKS"]=" 1" +D["HAVE_GETPWUID"]=" 1" +D["HAVE_IOCTL"]=" 1" +D["HAVE_TIOCGWINSZ"]=" 1" +D["HAVE_TIOCGETD"]=" 1" +D["HAVE_ALARM"]=" 1" +D["HAVE_CLOCK_GETTIME"]=" 1" +D["HAVE_DIFFTIME"]=" 1" +D["HAVE_FORK"]=" 1" +D["HAVE_FREXPF"]=" 1" +D["HAVE_FREXPL"]=" 1" +D["HAVE_GETHOSTNAME"]=" 1" +D["HAVE_GETRUSAGE"]=" 1" +D["HAVE_GETTIMEOFDAY"]=" 1" +D["HAVE_LSTAT"]=" 1" +D["HAVE_RAND_R"]=" 1" +D["HAVE_RANDOM"]=" 1" +D["HAVE_SIGNAL"]=" 1" +D["HAVE_LONGJMP"]=" 1" +D["HAVE_SETJMP"]=" 1" +D["HAVE_SIGLONGJMP"]=" 1" +D["HAVE_SIGPROCMASK"]=" 1" +D["HAVE_SNPRINTF"]=" 1" +D["HAVE_SRANDOM"]=" 1" +D["HAVE_STRDUP"]=" 1" +D["HAVE_SYMLINK"]=" 1" +D["HAVE_SYSTEM"]=" 1" +D["HAVE_STRTOLL"]=" 1" +D["HAVE_STRTOULL"]=" 1" +D["HAVE_TMPFILE"]=" 1" +D["HAVE_ASPRINTF"]=" 1" +D["HAVE_VASPRINTF"]=" 1" +D["HAVE_VSNPRINTF"]=" 1" +D["HAVE_WAITPID"]=" 1" +D["HAVE___INLINE__"]=" 1" +D["HAVE___INLINE"]=" 1" +D["HAVE_INLINE"]=" 1" +D["HAVE_ATTRIBUTE"]=" 1" +D["HAVE_C99_FUNC"]=" 1" +D["HAVE_FUNCTION"]=" 1" +D["HAVE_C99_DESIGNATED_INITIALIZER"]=" 1" +D["PRINTF_LL_WIDTH"]=" \"l\"" +D["SYSTEM_SCOPE_THREADS"]=" 1" +D["HAVE_INSTRUMENTED_LIBRARY"]=" 1" +D["CLEAR_MEMORY"]=" 1" +D["DEFAULT_PLUGINDIR"]=" \"/usr/local/hdf5/lib/plugin\"" +D["WANT_DCONV_EXCEPTION"]=" 1" +D["WANT_DATA_ACCURACY"]=" 1" +D["LDOUBLE_TO_LLONG_ACCURATE"]=" 1" +D["LLONG_TO_LDOUBLE_CORRECT"]=" 1" +D["STRICT_FORMAT_CHECKS"]=" 1" +D["HAVE_EMBEDDED_LIBINFO"]=" 1" +D["NO_ALIGNMENT_RESTRICTIONS"]=" 1" + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { + line = $ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + ac_datarootdir_hack=' + s&@datadir@&${datarootdir}&g + s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g + s&@infodir@&${datarootdir}/info&g + s&@localedir@&${datarootdir}/locale&g + s&@mandir@&${datarootdir}/man&g + s&\${datarootdir}&${prefix}/share&g' ;; +esac +ac_sed_extra=" + +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "pubconf":C) + echo "creating src/H5pubconf.h" + sed 's/#define /#define H5_/' pubconf + if test ! -f src/H5pubconf.h; then + /bin/mv -f pubconf src/H5pubconf.h + elif (diff pubconf src/H5pubconf.h >/dev/null); then + rm -f pubconf + echo "src/H5pubconf.h is unchanged" + else + /bin/mv -f pubconf src/H5pubconf.h + fi + echo "Post process src/libhdf5.settings" + sed '/^#/d' < src/libhdf5.settings > libhdf5.settings.TMP + cp libhdf5.settings.TMP src/libhdf5.settings + rm -f libhdf5.settings.TMP + ;; + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 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. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# The names of the tagged configurations supported by this script. +available_tags='CXX FC ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot=$lt_sysroot + +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain=$ac_aux_dir/ltmain.sh + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: FC + +# The linker used to build libraries. +LD=$lt_LD_FC + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_FC +reload_cmds=$lt_reload_cmds_FC + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_FC + +# A language specific compiler. +CC=$lt_compiler_FC + +# Is the compiler the GNU compiler? +with_gcc=$GCC_FC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_FC + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_FC + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_FC + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_FC + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_FC + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_FC +archive_expsym_cmds=$lt_archive_expsym_cmds_FC + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_FC +module_expsym_cmds=$lt_module_expsym_cmds_FC + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_FC + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_FC + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_FC + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_FC + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_FC + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_FC + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_FC + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_FC + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_FC + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_FC + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_FC + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_FC + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_FC + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_FC + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_FC + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_FC + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_FC + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_FC + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_FC +postdep_objects=$lt_postdep_objects_FC +predeps=$lt_predeps_FC +postdeps=$lt_postdeps_FC + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_FC + +# ### END LIBTOOL TAG CONFIG: FC +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 diff --git a/build/config/stamp1 b/build/config/stamp1 new file mode 100644 index 0000000..e69de29 diff --git a/build/config/stamp2 b/build/config/stamp2 new file mode 100644 index 0000000..e69de29 diff --git a/build/examples/Makefile b/build/examples/Makefile new file mode 100644 index 0000000..5110efb --- /dev/null +++ b/build/examples/Makefile @@ -0,0 +1,1396 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = $(TEST_SCRIPT) +subdir = examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-c-ex.sh testh5cc.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-c-ex.sh.in \ + $(srcdir)/testh5cc.sh.in $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am README +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 $(EXTLINK_DIRS) \ + *.h5 +#EXAMPLE_PROG_PARA = ph5example +INSTALL_SCRIPT_FILES = run-c-ex.sh +INSTALL_TOP_SCRIPT_FILES = run-all-ex.sh +INSTALL_TOP_FILES = README + +# Example programs. +# Don't tell automake about them, because if it knew they were programs, +# it would try to compile them instead of using the h5cc script. +# Use the boilerplate in config/examples.am instead. +EXAMPLE_PROG = h5_write h5_read h5_extend_write h5_chunk_read h5_compound \ + h5_crtgrpd h5_subset h5_cmprss h5_rdwt h5_crtgrpar h5_extend \ + h5_crtatt h5_crtgrp h5_crtdat \ + h5_group h5_select h5_attribute h5_mount h5_reference h5_drivers \ + h5_ref2reg h5_extlink h5_elink_unix2win h5_shared_mesg + +TEST_SCRIPT = testh5cc.sh +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# Install files +# List all file that should be installed in examples directory +INSTALL_FILES = h5_write.c h5_read.c h5_extend_write.c h5_chunk_read.c \ + h5_crtgrpd.c h5_subset.c h5_cmprss.c h5_rdwt.c h5_crtgrpar.c \ + h5_extend.c h5_crtatt.c h5_crtgrp.c h5_crtdat.c \ + h5_compound.c h5_group.c h5_select.c h5_attribute.c h5_mount.c \ + h5_reference.c h5_drivers.c h5_extlink.c h5_elink_unix2win.c \ + h5_ref2reg.c h5_shared_mesg.c ph5example.c + + +# The external link examples demonstrate how to use paths; they need +# directories to be created to do this. +EXTLINK_DIRS = red blue u2w + +# Example directory +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/c +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples +#LD_LIBRARY_PATH = $(LL_PATH) + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-c-ex.sh: $(top_builddir)/config.status $(srcdir)/run-c-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5cc.sh: $(top_builddir)/config.status $(srcdir)/testh5cc.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# How to build examples, using installed version of h5cc +#$(EXTRA_PROG): $(H5CC_PP) +# $(H5CC_PP) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; +$(EXTRA_PROG): $(H5CC) + $(H5CC) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; + +# Some examples depend on files created by other examples. +h5_read.chkexe_: h5_write.chkexe_ +h5_chunk_read.chkexe_: h5_extend_write.chkexe_ +h5_crtgrpd.chkexe_: h5_crtgrpar.chkexe_ +# h5_rdwt and h5_crtatt both modify the same file created by +# h5_crtdat. Serialize them. +h5_rdwt.chkexe_: h5_crtdat.chkexe_ +h5_crtatt.chkexe_: h5_rdwt.chkexe_ + +$(EXTLINK_DIRS): + echo $(mkdir_p) $@ + $(mkdir_p) $@ + +# List dependencies for each program. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C compiler, not h5cc. This is +# an inelegant way of solving the problem. +# All programs share the same build rule and a dependency on the main hdf5 +# library above. +h5_chunk_read: $(srcdir)/h5_chunk_read.c +h5_compound: $(srcdir)/h5_compound.c +h5_crtgrpd: $(srcdir)/h5_crtgrpd.c +h5_subset: $(srcdir)/h5_subset.c +h5_cmprss: $(srcdir)/h5_cmprss.c +h5_rdwt: $(srcdir)/h5_rdwt.c +h5_crtgrpar: $(srcdir)/h5_crtgrpar.c +h5_extend: $(srcdir)/h5_extend.c +h5_crtatt: $(srcdir)/h5_crtatt.c +h5_crtgrp: $(srcdir)/h5_crtgrp.c +h5_crtdat: $(srcdir)/h5_crtdat.c +h5_extend_write: $(srcdir)/h5_extend_write.c +h5_group: $(srcdir)/h5_group.c +h5_write: $(srcdir)/h5_write.c +h5_read: $(srcdir)/h5_read.c +h5_select: $(srcdir)/h5_select.c +h5_attribute: $(srcdir)/h5_attribute.c +h5_mount: $(srcdir)/h5_mount.c +h5_reference: $(srcdir)/h5_reference.c +h5_ref2reg: $(srcdir)/h5_ref2reg.c +h5_drivers: $(srcdir)/h5_drivers.c +ph5example: $(srcdir)/ph5example.c +h5_dtransform: $(srcdir)/h5_dtransform.c +h5_extlink: $(srcdir)/h5_extlink.c $(EXTLINK_DIRS) +h5_elink_unix2win: $(srcdir)/h5_elink_unix2win.c $(EXTLINK_DIRS) +h5_shared_mesg: $(srcdir)/h5_shared_mesg.c + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/examples/run-c-ex.sh b/build/examples/run-c-ex.sh new file mode 100644 index 0000000..f2dfb58 --- /dev/null +++ b/build/examples/run-c-ex.sh @@ -0,0 +1,140 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-c-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the c examples from source files installed # +# in .../share/hdf5_examples/c using h5cc or h5pc. The order for running # +# programs with RunTest in the MAIN section below is taken from the Makefile. # +# The order is important since some of the test programs use data files created # +# by earlier test programs. Any future additions should be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5cc" # The tool name +else + H5TOOL="h5pcc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".c" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + + + +################## MAIN ################## + +if ! test -d red; then + mkdir red +fi +if ! test -d blue; then + mkdir blue +fi +if ! test -d u2w; then + mkdir u2w +fi + +# Run tests +if [ $? -eq 0 ] +then + if (RunTest h5_crtdat &&\ + rm h5_crtdat &&\ + RunTest h5_extend &&\ + rm h5_extend &&\ + RunTest h5_rdwt &&\ + rm h5_rdwt &&\ + RunTest h5_crtatt &&\ + rm h5_crtatt &&\ + RunTest h5_crtgrp &&\ + rm h5_crtgrp &&\ + RunTest h5_crtgrpar &&\ + rm h5_crtgrpar &&\ + RunTest h5_crtgrpd &&\ + rm h5_crtgrpd &&\ + RunTest h5_subset &&\ + rm h5_subset &&\ + RunTest h5_cmprss &&\ + rm h5_cmprss &&\ + RunTest h5_write &&\ + rm h5_write &&\ + RunTest h5_read &&\ + rm h5_read &&\ + RunTest h5_extend_write &&\ + rm h5_extend_write &&\ + RunTest h5_chunk_read &&\ + rm h5_chunk_read &&\ + RunTest h5_compound &&\ + rm h5_compound &&\ + RunTest h5_group &&\ + rm h5_group &&\ + RunTest h5_select &&\ + rm h5_select &&\ + RunTest h5_attribute &&\ + rm h5_attribute &&\ + RunTest h5_mount &&\ + rm h5_mount &&\ + RunTest h5_reference &&\ + rm h5_reference &&\ + RunTest h5_drivers &&\ + rm h5_drivers &&\ + RunTest h5_ref2reg &&\ + rm h5_ref2reg &&\ + RunTest h5_extlink &&\ + rm h5_extlink &&\ + RunTest h5_elink_unix2win &&\ + rm h5_elink_unix2win &&\ + RunTest h5_shared_mesg &&\ + rm h5_shared_mesg); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +# Cleanup +rm *.o +rm *.h5 +rm -rf red blue u2w +echo + +exit $EXIT_VALUE + diff --git a/build/examples/testh5cc.sh b/build/examples/testh5cc.sh new file mode 100644 index 0000000..fdcd94e --- /dev/null +++ b/build/examples/testh5cc.sh @@ -0,0 +1,351 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5cc compiler tool +# Created: Albert Cheng, 2007/4/11 +# +# Modification: +# Albert Cheng, 2008/9/27 +# Added -shlib tests and verbose control. +# Albert Cheng, 2009/10/28 +# Added version compatibility tests. +# + +srcdir=../../examples + +# Initializations +TESTNAME=h5cc +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# Note: no '/' after DESTDIR. Explanation in commence.am +prefix="${prefix:-${DESTDIR}/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5cc" # The tool name +else + H5TOOL="h5pcc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +CMP='cmp -s' +DIFF='diff -c' + +nerrors=$EXIT_SUCCESS +verbose=${HDF5_VERBOSE:-1} # 0: none; 1: default; 2: chatty; 3: everything +test $verbose -gt 2 && set -x +H5_NO_DEPRECATED_SYMBOLS=`grep '#define H5_NO_DEPRECATED_SYMBOLS ' ../src/H5pubconf.h` +H5_USE_16_API_DEFAULT=`grep '#define H5_USE_16_API_DEFAULT ' ../src/H5pubconf.h` + +# setup my machine information. +myos=`uname -s` +myhostnama=`uname -n` + +# Generate some source files and library for tests. +suffix=c # source file suffix +hdf5main=${H5TOOL}_hdf5main.$suffix +hdf5main_o=${H5TOOL}_hdf5main.o +v16main=${H5TOOL}_v16main.$suffix +v16main_o=${H5TOOL}_v16main.o +v18main=${H5TOOL}_v18main.$suffix +v18main_o=${H5TOOL}_v18main.o +appmain=${H5TOOL}_appmain.$suffix +appmain_o=${H5TOOL}_appmain.o +prog1=${H5TOOL}_prog1.$suffix +prog1_o=${H5TOOL}_prog1.o +prog2=${H5TOOL}_prog2.$suffix +prog2_o=${H5TOOL}_prog2.o +applib=libapp${H5TOOL}.a + +# short hands +# Caution: if some *.h5 files must be cleaned here, list them by names. +# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated +# by otehr test programs. This will cause a racing condition error when +# parallel make (e.g., gmake -j 4) is used. +temp_SRC="$hdf5main $v16main $v18main $appmain $prog1 $prog2" +temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` +temp_FILES="a.out $applib" + +# Generate appmain: +# An application Main that calls hdf5 and application's own functions. +cat > $appmain < $prog1 < $prog2 < $hdf5main < $v16main < $v18main < $out 2>&1 + result=$? + if [ $result = 0 ]; then + echo " PASSED" + test $verbose -gt 1 && \ + ( echo "========== results ==========="; cat $out; + echo "===============================================") |sed 's/^/ /' + else + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + test $verbose -gt 0 && \ + ( echo "========== results ==========="; cat $out; + echo "===============================================") |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $out + fi +} + +# Print a "SKIP" message +SKIP() { + TESTING $H5TOOL $@ + echo " -SKIP-" +} + + +############################################################################## +### T H E T E S T S ### +############################################################################## +# +# Group 1: HDF5 program that calls HDF5 APIs. +echo "***"Simple Compile and Link in one step. +TOOLTEST $hdf5main +# Application program that calls HDF5 and its own functions. +TOOLTEST $appmain $prog1 $prog2 +# Repeat with -shlib option +echo "***"Simple Compile and Link with -shlib in one step. +TOOLTEST -shlib $hdf5main +# Application program that calls HDF5 and its own functions. +TOOLTEST -shlib $appmain $prog1 $prog2 + +# Group 2: Compile, then link. +echo "***"Compile and Link in two steps. +TOOLTEST -c $hdf5main +TOOLTEST $hdf5main_o +TOOLTEST -c $appmain $prog1 $prog2 +TOOLTEST $appmain_o $prog1_o $prog2_o +# Repeat with -shlib option +echo "***"Compile and Link with -shlib in two steps. +TOOLTEST -c $hdf5main +TOOLTEST -shlib $hdf5main_o +TOOLTEST -c $appmain $prog1 $prog2 +TOOLTEST -shlib $appmain_o $prog1_o $prog2_o + +# Group3: Build external library, then link with it. +echo "***"Build external library and link with it. +TOOLTEST -c $prog1 $prog2 +$AR cru $applib $prog1_o $prog2_o +$RANLIB $applib +TOOLTEST $appmain $applib +TOOLTEST $appmain_o $applib +# Repeat with -shlib option +echo "***"Build external library and link with it using -shlib. +TOOLTEST -c $prog1 $prog2 +$AR cru $applib $prog1_o $prog2_o +$RANLIB $applib +TOOLTEST -shlib $appmain $applib +TOOLTEST -shlib $appmain_o $applib + +# Group 4: Just preprocess, no compile, no link. +echo "***"Just preprocess, no compile, no link. +TOOLTEST -E $hdf5main +TOOLTEST -E $appmain $prog1 $prog2 + +# Group5: Version compatibility tests. +echo "***"Version compatibility tests. +# Test these two cases now. More later. +# If H5_NO_DEPRECATED_SYMBOLS; +# then only v18main works. +# else if H5_USE_16_API_DEFAULT; +# then v16main works and -DH5_NO_DEPRECATED_SYMBOLS v18main also works. +# else v18main works and -DH5_USE_16_API_DEFAULT v16main also works. +# +if [ -n "$H5_USE_16_API_DEFAULT" ]; then + echo "H5_USE_16_API_DEFAULT is defined." +else + echo "H5_USE_16_API_DEFAULT is not defined." +fi +if [ -n "$H5_NO_DEPRECATED_SYMBOLS" ]; then + echo "H5_NO_DEPRECATED_SYMBOLS is defined." +else + echo "H5_NO_DEPRECATED_SYMBOLS is not defined." +fi +if [ -n "$H5_NO_DEPRECATED_SYMBOLS" ]; then + echo "Skipping $v16main test" + TOOLTEST $v18main +elif [ -n "$H5_USE_16_API_DEFAULT" ]; then + TOOLTEST $v16main + TOOLTEST -DH5_NO_DEPRECATED_SYMBOLS $v18main +else + TOOLTEST -DH5_USE_16_API_DEFAULT $v16main + TOOLTEST $v18main +fi + +############################################################################## +# END +############################################################################## + +# Clean up file +if test -z "$HDF5_NOCLEANUP"; then + rm -f $temp_SRC $temp_OBJ $temp_FILES +fi + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/fortran/Makefile b/build/fortran/Makefile new file mode 100644 index 0000000..eda5163 --- /dev/null +++ b/build/fortran/Makefile @@ -0,0 +1,1422 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# fortran/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# This makefile mostly just reinvokes make in the various subdirectories +# but does so in the correct order. You can alternatively invoke make from +# each subdirectory manually. +# +# Top-level HDF5-Fortran Makefile(.in) +# +VPATH = ../../fortran +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = fortran +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../fortran +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +#TESTPARALLEL_DIR = testpar + +# Subdirectories in build order, not including examples directory +#SUBDIRS = src test $(TESTPARALLEL_DIR) + +# All directories that have Makefiles +DIST_SUBDIRS = src test testpar examples + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fortran/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Install examples +install-examples uninstall-examples: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +installcheck-local: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/fortran/examples/Makefile b/build/fortran/examples/Makefile new file mode 100644 index 0000000..456b8e6 --- /dev/null +++ b/build/fortran/examples/Makefile @@ -0,0 +1,1387 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# fortran/examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-Fortran Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../../fortran/examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Add attention tests for Fortran 2003 features +#am__append_1 = rwdset_fortran2003 nested_derived_type \ +# compound_fortran2003 compound_complex_fortran2003 + +#am__append_2 = rwdset_fortran2003.f90 nested_derived_type.f90 \ +# compound_fortran2003.f90 compound_complex_fortran2003.f90 + +TESTS = $(TEST_SCRIPT) +subdir = fortran/examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-fortran-ex.sh testh5fc.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-fortran-ex.sh.in \ + $(srcdir)/testh5fc.sh.in $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../fortran/examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 + +# Compile parallel fortran examples only if parallel is enabled +#EXAMPLE_PROG_PARA = ph5example +INSTALL_SCRIPT_FILES = run-fortran-ex.sh + +# These are the programs that 'make all' or 'make tests' will build and +# that 'make check' will run. List them in the order in which they should +# be run. +# We don't tell automake about these programs so that it doesn't try to +# compile them with the regular fortran compiler. +EXAMPLE_PROG = h5_crtdat h5_rdwt h5_crtatt h5_crtgrp h5_crtgrpar \ + h5_crtgrpd h5_extend h5_subset h5_cmprss hyperslab selectele \ + refobjexample refregexample mountexample compound \ + $(am__append_1) + +# List files to be installed here +INSTALL_FILES = h5_crtdat.f90 h5_rdwt.f90 h5_crtatt.f90 h5_crtgrp.f90 \ + h5_crtgrpar.f90 h5_crtgrpd.f90 h5_extend.f90 h5_subset.f90 \ + h5_cmprss.f90 hyperslab.f90 selectele.f90 refobjexample.f90 \ + refregexample.f90 mountexample.f90 compound.f90 ph5example.f90 \ + $(am__append_2) +TEST_SCRIPT = testh5fc.sh +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# Mark this directory as part of the Fortran API +FORTRAN_API = yes + +# Tell automake how to install examples +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/fortran +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fortran/examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-fortran-ex.sh: $(top_builddir)/config.status $(srcdir)/run-fortran-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5fc.sh: $(top_builddir)/config.status $(srcdir)/testh5fc.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Some examples depend on files created by other examples. +h5_crtgrpd.chkexe_: h5_crtgrpar.chkexe_ +refregexample.chkexe_: refobjexample.chkexe_ +# h5_rdwt and h5_crtatt both modify the same file created by +# h5_crtdat. Serialize them. +h5_rdwt.chkexe_: h5_crtdat.chkexe_ +h5_crtatt.chkexe_: h5_rdwt.chkexe_ + +# Tell automake how to build examples using h5fc +# Additional dependencies for the examples are listed below +#$(EXTRA_PROG): $(H5FC_PP) +# $(H5FC_PP) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; +$(EXTRA_PROG): $(H5FC) + $(H5FC) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; + +# List dependencies for each example. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C compiler, not h5cc. This is +# an inelegant way of solving the problem. +# All programs share the same build rule and a dependency on the main hdf5 +# and fortran libraries above. +h5_crtdat: h5_crtdat.f90 +h5_extend: h5_extend.f90 +h5_subset: h5_subset.f90 +h5_rdwt: h5_rdwt.f90 +h5_crtatt: h5_crtatt.f90 +h5_crtgrp: h5_crtgrp.f90 +h5_crtgrpar: h5_crtgrpar.f90 +h5_crtgrpd: h5_crtgrpd.f90 +h5_cmprss: h5_cmprss.f90 +hyperslab: hyperslab.f90 +selectele: selectele.f90 +refobjexample: refobjexample.f90 +refregexample: refregexample.f90 +mountexample: mountexample.f90 +compound: compound.f90 +ph5example: ph5example.f90 +#rwdset_fortran2003: rwdset_fortran2003.f90 +#nested_derived_type: nested_derived_type.f90 +#compound_fortran2003: compound_fortran2003.f90 +#compound_complex_fortran2003: compound_complex_fortran2003.f90 + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/fortran/examples/run-fortran-ex.sh b/build/fortran/examples/run-fortran-ex.sh new file mode 100644 index 0000000..adab171 --- /dev/null +++ b/build/fortran/examples/run-fortran-ex.sh @@ -0,0 +1,131 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-hlfortran-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the fortran examples from source files # +# installed in .../share/hdf5_examples/fortran using h5fc or h5pfc. The # +# order for running programs with RunTest in the MAIN section below is taken # +# from the Makefile. The order is important since some of the test programs # +# use data files created by earlier test programs. Any future additions should # +# be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5fc" # The tool name +else + H5TOOL="h5pfc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".f90" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + +F2003_ENABLED= + +################## MAIN ################## + +# Run tests +if [ $? -eq 0 ] +then + if (RunTest h5_crtdat &&\ + rm h5_crtdat &&\ + RunTest h5_rdwt &&\ + rm h5_rdwt &&\ + RunTest h5_crtatt &&\ + rm h5_crtatt &&\ + RunTest h5_crtgrp &&\ + rm h5_crtgrp &&\ + RunTest h5_crtgrpar &&\ + rm h5_crtgrpar &&\ + RunTest h5_crtgrpd &&\ + rm h5_crtgrpd &&\ + RunTest h5_extend &&\ + rm h5_extend &&\ + RunTest h5_subset &&\ + rm h5_subset &&\ + RunTest h5_cmprss &&\ + rm h5_cmprss &&\ + RunTest hyperslab &&\ + rm hyperslab &&\ + RunTest selectele &&\ + rm selectele &&\ + RunTest refobjexample &&\ + rm refobjexample &&\ + RunTest refregexample &&\ + rm refregexample &&\ + RunTest mountexample &&\ + rm mountexample &&\ + RunTest compound &&\ + rm compound); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +if [ $EXIT_VALUE -eq ${EXIT_SUCCESS} -a "$F2003_ENABLED" = "yes" ] +then +# Add attention tests for Fortran 2003 features + if (RunTest rwdset_fortran2003 &&\ + rm rwdset_fortran2003 &&\ + RunTest nested_derived_type &&\ + rm nested_derived_type &&\ + RunTest compound_fortran2003 &&\ + rm compound_fortran2003 &&\ + RunTest compound_complex_fortran2003 &&\ + rm compound_complex_fortran2003); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + + +# Cleanup +rm *.o +rm *.h5 +echo + +exit $EXIT_VALUE + diff --git a/build/fortran/examples/testh5fc.sh b/build/fortran/examples/testh5fc.sh new file mode 100644 index 0000000..9bddac1 --- /dev/null +++ b/build/fortran/examples/testh5fc.sh @@ -0,0 +1,224 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5fc compiler tool +# Created: Albert Cheng, 2007/3/14 +# +# Modification: +# + +srcdir=../../../fortran/examples + +# Initializations +TESTNAME=h5fc +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +prefix="${prefix:-/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5fc" # The tool name +else + H5TOOL="h5pfc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +CMP='cmp -s' +DIFF='diff -c' + +nerrors=$EXIT_SUCCESS +verbose=yes + +# setup my machine information. +myos=`uname -s` +myhostnama=`uname -n` + +# Generate some source files and library for tests. +suffix=f90 # source file suffix +hdf5main=${H5TOOL}_hdf5main.$suffix +hdf5main_o=${H5TOOL}_hdf5main.o +appmain=${H5TOOL}_appmain.$suffix +appmain_o=${H5TOOL}_appmain.o +prog1=${H5TOOL}_prog1.$suffix +prog1_o=${H5TOOL}_prog1.o +prog2=${H5TOOL}_prog2.$suffix +prog2_o=${H5TOOL}_prog2.o +applib=libapp${H5TOOL}.a + +# short hands +# Caution: if some *.h5 files must be cleaned here, list them by names. +# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated +# by otehr test programs. This will cause a racing condition error when +# parallel make (e.g., gmake -j 4) is used. +temp_SRC="$hdf5main $appmain $prog1 $prog2" +temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` +temp_FILES="a.out $applib" + +# Generate appmain: +# An application Main that calls hdf5 and application's own functions. +cat > $appmain < $prog1 < $prog2 < $hdf5main < $out 2>&1 + result=$? + if [ $result = 0 ]; then + echo " PASSED" + else + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && \ + ( echo "========== results ==========="; cat $out; + echo "===============================================") |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $out + fi +} + +# Print a "SKIP" message +SKIPTEST() { + TESTING $H5TOOL $@ + echo " -SKIP-" +} + + +############################################################################## +### T H E T E S T S ### +############################################################################## +# +# HDF5 program that calls HDF5 APIs. +echo "***"Simple Compile and Link in one step. +TOOLTEST $hdf5main +# Application program that calls HDF5 and its own functions. +TOOLTEST $appmain $prog1 $prog2 + +# Compile, then link. +echo "***"Compile and Link in two steps. +TOOLTEST -c $hdf5main +TOOLTEST $hdf5main_o +TOOLTEST -c $appmain $prog1 $prog2 +TOOLTEST $appmain_o $prog1_o $prog2_o + +# Build external library, then link with it. +echo "***"Build external library and link with it. +TOOLTEST -c $prog1 $prog2 +$AR cru $applib $prog1_o $prog2_o +$RANLIB $applib +TOOLTEST $appmain $applib +TOOLTEST $appmain_o $applib + +# No preprocess test since -E is not a common option for Fortran compilers. + +############################################################################## +# END +############################################################################## + +# Clean up file +if test -z "$HDF5_NOCLEANUP"; then + rm -f $temp_SRC $temp_OBJ $temp_FILES +fi + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/fortran/src/.deps/H5Af.Plo b/build/fortran/src/.deps/H5Af.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Af.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Df.Plo b/build/fortran/src/.deps/H5Df.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Df.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Ef.Plo b/build/fortran/src/.deps/H5Ef.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Ef.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5FDmpiof.Plo b/build/fortran/src/.deps/H5FDmpiof.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5FDmpiof.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Ff.Plo b/build/fortran/src/.deps/H5Ff.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Ff.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Gf.Plo b/build/fortran/src/.deps/H5Gf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Gf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5If.Plo b/build/fortran/src/.deps/H5If.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5If.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Lf.Plo b/build/fortran/src/.deps/H5Lf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Lf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Of.Plo b/build/fortran/src/.deps/H5Of.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Of.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Pf.Plo b/build/fortran/src/.deps/H5Pf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Pf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Rf.Plo b/build/fortran/src/.deps/H5Rf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Rf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Sf.Plo b/build/fortran/src/.deps/H5Sf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Sf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Tf.Plo b/build/fortran/src/.deps/H5Tf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Tf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5Zf.Plo b/build/fortran/src/.deps/H5Zf.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5Zf.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5_f.Plo b/build/fortran/src/.deps/H5_f.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5_f.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5f90kit.Plo b/build/fortran/src/.deps/H5f90kit.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5f90kit.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/.deps/H5match_types.Po b/build/fortran/src/.deps/H5match_types.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/src/.deps/H5match_types.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/src/Makefile b/build/fortran/src/Makefile new file mode 100644 index 0000000..93ec523 --- /dev/null +++ b/build/fortran/src/Makefile @@ -0,0 +1,1719 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# fortran/src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Fortran Library Makefile(.in) +# + + +VPATH = ../../../fortran/src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Some Fortran compilers can't build shared libraries, so sometimes we +# want to build a shared C library and a static Fortran library. If so, +# pass the -static flag to the library linker. +am__append_1 = -static +noinst_PROGRAMS = H5match_types$(EXEEXT) H5fortran_detect$(EXEEXT) \ + H5test_kind$(EXEEXT) +TESTS = +subdir = fortran/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5fc +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5_fortran_la_DEPENDENCIES = $(LIBHDF5) +am__libhdf5_fortran_la_SOURCES_DIST = H5f90global.f90 \ + H5fortran_types.f90 H5_ff$(F_STATUS).f90 H5_ff.f90 H5Aff.f90 \ + H5Dff.f90 H5Eff.f90 H5Fff.f90 H5Gff.f90 H5Iff.f90 H5Lff.f90 \ + H5Off.f90 H5Pff.f90 H5Rff.f90 H5Sff.f90 H5Tff.f90 H5Zff.f90 \ + H5_DBLE_Interface$(F_DBLE).f90 H5f90kit.c H5_f.c H5Af.c H5Df.c \ + H5Ef.c H5Ff.c H5Gf.c H5If.c H5Lf.c H5Of.c H5Pf.c H5Rf.c H5Sf.c \ + H5Tf.c H5Zf.c H5Aff$(F_STATUS).f90 H5Dff$(F_STATUS).f90 \ + H5Eff$(F_STATUS).f90 H5Fff$(F_STATUS).f90 H5Lff$(F_STATUS).f90 \ + H5Off$(F_STATUS).f90 H5Pff$(F_STATUS).f90 H5Rff$(F_STATUS).f90 \ + H5Tff$(F_STATUS).f90 HDF5.f90 H5FDmpiof.c HDF5mpio.f90 \ + H5FDmpioff.f90 +am__objects_1 = HDF5.lo +#am__objects_1 = H5FDmpiof.lo \ +# HDF5mpio.lo H5FDmpioff.lo +am_libhdf5_fortran_la_OBJECTS = H5f90global.lo H5fortran_types.lo \ + H5_ff$(F_STATUS).lo H5_ff.lo H5Aff.lo H5Dff.lo H5Eff.lo \ + H5Fff.lo H5Gff.lo H5Iff.lo H5Lff.lo H5Off.lo H5Pff.lo H5Rff.lo \ + H5Sff.lo H5Tff.lo H5Zff.lo H5_DBLE_Interface$(F_DBLE).lo \ + H5f90kit.lo H5_f.lo H5Af.lo H5Df.lo H5Ef.lo H5Ff.lo H5Gf.lo \ + H5If.lo H5Lf.lo H5Of.lo H5Pf.lo H5Rf.lo H5Sf.lo H5Tf.lo \ + H5Zf.lo H5Aff$(F_STATUS).lo H5Dff$(F_STATUS).lo \ + H5Eff$(F_STATUS).lo H5Fff$(F_STATUS).lo H5Lff$(F_STATUS).lo \ + H5Off$(F_STATUS).lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo \ + H5Tff$(F_STATUS).lo $(am__objects_1) +libhdf5_fortran_la_OBJECTS = $(am_libhdf5_fortran_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5_fortran_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ + $(AM_FCFLAGS) $(FCFLAGS) $(libhdf5_fortran_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +PROGRAMS = $(noinst_PROGRAMS) +am_H5fortran_detect_OBJECTS = H5fortran_detect.$(OBJEXT) +H5fortran_detect_OBJECTS = $(am_H5fortran_detect_OBJECTS) +H5fortran_detect_LDADD = $(LDADD) +H5match_types_SOURCES = H5match_types.c +H5match_types_OBJECTS = H5match_types.$(OBJEXT) +H5match_types_LDADD = $(LDADD) +am__H5test_kind_SOURCES_DIST = H5test_kind.f90 H5test_kind_SIZEOF.f90 \ + H5test_kind_STORAGE_SIZE.f90 +am_H5test_kind_OBJECTS = H5test_kind.$(OBJEXT) +#am_H5test_kind_OBJECTS = H5test_kind_SIZEOF.$(OBJEXT) +#am_H5test_kind_OBJECTS = H5test_kind_STORAGE_SIZE.$(OBJEXT) +H5test_kind_OBJECTS = $(am_H5test_kind_OBJECTS) +H5test_kind_LDADD = $(LDADD) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) +LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) +AM_V_FC = $(am__v_FC_$(V)) +am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) +am__v_FC_0 = @echo " FC " $@; +am__v_FC_1 = +FCLD = $(FC) +FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_FCLD = $(am__v_FCLD_$(V)) +am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_FCLD_0 = @echo " FCLD " $@; +am__v_FCLD_1 = +SOURCES = $(libhdf5_fortran_la_SOURCES) $(H5fortran_detect_SOURCES) \ + H5match_types.c $(H5test_kind_SOURCES) +DIST_SOURCES = $(am__libhdf5_fortran_la_SOURCES_DIST) \ + $(H5fortran_detect_SOURCES) H5match_types.c \ + $(am__H5test_kind_SOURCES_DIST) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5fc.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am README +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src directory in both Fortran and C flags (C compiler is used +# for linking). +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = -I$(top_srcdir)/src \ + -I$(top_srcdir)/fortran/src +AM_LDFLAGS = $(am__append_1) +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../fortran/src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 +AM_FCLIBS = $(LIBHDF5) + +# This is our main target, the fortran library +lib_LTLIBRARIES = libhdf5_fortran.la + +# Add libtool numbers to the HDF5 Fortran library (from config/lt_vers.am) +libhdf5_fortran_la_LDFLAGS = -version-info $(LT_F_VERS_INTERFACE):$(LT_F_VERS_REVISION):$(LT_F_VERS_AGE) $(AM_LDFLAGS) +PARALLEL_COND_SRC = HDF5.f90 + +# Include HDF5.f90 if parallel is disabled, HDF5mpiof* if parallel is enabled +#PARALLEL_COND_SRC = H5FDmpiof.c HDF5mpio.f90 H5FDmpioff.f90 +F_STATUS = _F90 + +# Check if the compiler supports the Fortran 2003 standard +# which should include the intrinsic module iso_c_binding +#F_STATUS = _F03 +F_DBLE = Include + +# Condition for including/excluding the DBLE interfaces for when the +# default REAL is of type DOUBLE PRECISION. +# We do not include the double precision interfaces if the defaut REAL is +# DOUBLE PRECISION since this would lead to a non-unique conflict with the +# generic interfaces declared as REAL. +#F_DBLE = Exclude + +# Source files for the library. +libhdf5_fortran_la_SOURCES = H5f90global.f90 \ + H5fortran_types.f90 H5_ff$(F_STATUS).f90 H5_ff.f90 H5Aff.f90 H5Dff.f90 H5Eff.f90 \ + H5Fff.f90 H5Gff.f90 H5Iff.f90 H5Lff.f90 H5Off.f90 H5Pff.f90 H5Rff.f90 H5Sff.f90 \ + H5Tff.f90 H5Zff.f90 \ + H5_DBLE_Interface$(F_DBLE).f90 \ + H5f90kit.c H5_f.c H5Af.c H5Df.c H5Ef.c H5Ff.c H5Gf.c \ + H5If.c H5Lf.c H5Of.c H5Pf.c H5Rf.c H5Sf.c H5Tf.c H5Zf.c \ + H5Aff$(F_STATUS).f90 H5Dff$(F_STATUS).f90 H5Eff$(F_STATUS).f90 H5Fff$(F_STATUS).f90 H5Lff$(F_STATUS).f90 \ + H5Off$(F_STATUS).f90 H5Pff$(F_STATUS).f90 H5Rff$(F_STATUS).f90 H5Tff$(F_STATUS).f90 $(PARALLEL_COND_SRC) + + +# HDF5 Fortran library depends on HDF5 Library. +libhdf5_fortran_la_LIBADD = $(LIBHDF5) + +# h5fc is generated during configure. +# Remove it only when distclean. +DISTCLEANFILES = h5fc + +# H5fortran_types.f90 and H5f90i.h are automatically generaed by +# H5match_types, and must be cleaned explicitly. H5fort_type_defines.h +# is generated by H5fortran_detect +MOSTLYCLEANFILES = H5fortran_types.f90 H5f90i_gen.h H5fort_type_defines.h \ + H5fortran_detect.f90 + +H5FC_NAME = h5fc + +# Custom rule for installing h5fc, since it will be named h5pfc if hdf5 +# is configured for parallel mode +#H5FC_NAME = h5pfc + +# Tell Automake to create H5f90i_gen.h before it builds the library +# sources. When it creates H5f90i_gen.h, it will create +# H5fortran_types.f90 as a side effect. +BUILT_SOURCES = H5f90i_gen.h + +# Automake knows how to build fortran programs if we tell it the source +# files. +H5fortran_detect_SOURCES = H5fortran_detect.f90 +H5test_kind_SOURCES = H5test_kind.f90 +#H5test_kind_SOURCES = H5test_kind_SIZEOF.f90 + +# H5test_kind.f90 is included in the distribution, and Automake knows +# how to compile a fortran program given its sources. +#H5test_kind_SOURCES = H5test_kind_STORAGE_SIZE.f90 + +# Mark this directory as part of the Fortran API +FORTRAN_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fortran/src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5fc: $(top_builddir)/config.status $(srcdir)/h5fc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5_fortran.la: $(libhdf5_fortran_la_OBJECTS) $(libhdf5_fortran_la_DEPENDENCIES) $(EXTRA_libhdf5_fortran_la_DEPENDENCIES) + $(AM_V_FCLD)$(libhdf5_fortran_la_LINK) -rpath $(libdir) $(libhdf5_fortran_la_OBJECTS) $(libhdf5_fortran_la_LIBADD) $(LIBS) + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +H5fortran_detect$(EXEEXT): $(H5fortran_detect_OBJECTS) $(H5fortran_detect_DEPENDENCIES) $(EXTRA_H5fortran_detect_DEPENDENCIES) + @rm -f H5fortran_detect$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(H5fortran_detect_OBJECTS) $(H5fortran_detect_LDADD) $(LIBS) + +H5match_types$(EXEEXT): $(H5match_types_OBJECTS) $(H5match_types_DEPENDENCIES) $(EXTRA_H5match_types_DEPENDENCIES) + @rm -f H5match_types$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(H5match_types_OBJECTS) $(H5match_types_LDADD) $(LIBS) + +H5test_kind$(EXEEXT): $(H5test_kind_OBJECTS) $(H5test_kind_DEPENDENCIES) $(EXTRA_H5test_kind_DEPENDENCIES) + @rm -f H5test_kind$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(H5test_kind_OBJECTS) $(H5test_kind_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5Af.Plo +include ./$(DEPDIR)/H5Df.Plo +include ./$(DEPDIR)/H5Ef.Plo +include ./$(DEPDIR)/H5FDmpiof.Plo +include ./$(DEPDIR)/H5Ff.Plo +include ./$(DEPDIR)/H5Gf.Plo +include ./$(DEPDIR)/H5If.Plo +include ./$(DEPDIR)/H5Lf.Plo +include ./$(DEPDIR)/H5Of.Plo +include ./$(DEPDIR)/H5Pf.Plo +include ./$(DEPDIR)/H5Rf.Plo +include ./$(DEPDIR)/H5Sf.Plo +include ./$(DEPDIR)/H5Tf.Plo +include ./$(DEPDIR)/H5Zf.Plo +include ./$(DEPDIR)/H5_f.Plo +include ./$(DEPDIR)/H5f90kit.Plo +include ./$(DEPDIR)/H5match_types.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +.f90.o: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +.f90.obj: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` + +.f90.lo: + $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ + clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-exec-local install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-local + +.MAKE: all check check-am install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-exec-local \ + install-html install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am uninstall-libLTLIBRARIES \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Fortran module files can have different extensions and different names +# (e.g., different capitalizations) on different platforms. Write rules +# for them explicitly rather than trying to teach automake about them. +# They should be installed as headers and removed during clean. +maintainer-clean-local: clean-local +distclean-local: clean-local +clean-local: + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + $(RM) *.$(F9XMODEXT); \ + fi + +install-data-local: + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + $(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \ + fi + $(CP) $(top_builddir)/$(subdir)/H5f90i_gen.h $(DESTDIR)$(includedir)/. + $(CP) $(top_srcdir)/fortran/src/H5f90i.h $(DESTDIR)$(includedir)/. + +uninstall-local: + @if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \ + if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(includedir)/HDF5.$(F9XMODEXT)"; then \ + set -x; $(RM) $(DESTDIR)$(includedir)/*.$(F9XMODEXT); \ + fi; \ + fi; \ + $(RM) $(DESTDIR)$(bindir)/$(H5FC_NAME) + $(RM) $(DESTDIR)$(includedir)/H5f90i*.h + +# Also install and uninstall (uninstall-local above) h5fc script +install-exec-local: + @$(INSTALL) h5fc $(DESTDIR)$(bindir)/$(H5FC_NAME) + +#Specify what Automake needs to create: first the H5fort_type_defines.h +# header, then H5match_types which includes that header, then +# it needs to run H5match_types. +H5fortran_types.f90 H5f90i_gen.h: H5match_types$(EXEEXT) + $(RUNSERIAL) ./H5match_types$(EXEEXT) + +# H5fort_type_defines.h is created by running H5fortran_detect. +# Obviously, H5fortran_detect needs to be built first. +H5fort_type_defines.h: H5fortran_detect$(EXEEXT) + $(RUNSERIAL) ./H5fortran_detect$(EXEEXT) > H5fort_type_defines.h + +H5match_types.$(OBJEXT): H5fort_type_defines.h + +# H5test_kind.f90 generates H5Fortran_detect.f90 depending on if +# intrinsic function SIZEOF is available. + +H5fortran_detect.f90: H5test_kind$(EXEEXT) + $(RUNSERIAL) ./H5test_kind$(EXEEXT) > H5fortran_detect.f90 + +# Hardcode the dependencies of these files. There isn't a known way of +# determining this automagically (like we do with the C files). So, when +# doing a parallel make, some modules could be made way before the +# modules they depend upon are actually made. *sigh* +H5f90global.lo: $(srcdir)/H5f90global.f90 H5fortran_types.lo +H5fortran_types.lo: H5fortran_types.f90 +H5fortran_detect.lo: H5fortran_detect.f90 +H5test_kind.lo: $(srcdir)/H5test_kind.f90 +H5test_kind_SIZEOF.lo: $(srcdir)/H5test_kind_SIZEOF.f90 +H5_ff$(F_STATUS).lo: $(srcdir)/H5_ff$(F_STATUS).f90 H5f90global.lo +H5_ff.lo: $(srcdir)/H5_ff.f90 H5f90global.lo H5_ff$(F_STATUS).lo +H5Aff.lo: $(srcdir)/H5Aff.f90 H5f90global.lo +H5Dff.lo: $(srcdir)/H5Dff.f90 H5f90global.lo +H5Aff$(F_STATUS).lo: $(srcdir)/H5Aff$(F_STATUS).f90 H5f90global.lo +H5Dff$(F_STATUS).lo: $(srcdir)/H5Dff$(F_STATUS).f90 H5f90global.lo +H5Eff$(F_STATUS).lo: $(srcdir)/H5Eff$(F_STATUS).f90 H5f90global.lo +H5Fff$(F_STATUS).lo: $(srcdir)/H5Fff$(F_STATUS).f90 H5f90global.lo +H5Lff$(F_STATUS).lo: $(srcdir)/H5Lff$(F_STATUS).f90 H5f90global.lo +H5Off$(F_STATUS).lo: $(srcdir)/H5Off$(F_STATUS).f90 H5f90global.lo +H5Pff$(F_STATUS).lo: $(srcdir)/H5Pff$(F_STATUS).f90 H5f90global.lo +H5Rff$(F_STATUS).lo: $(srcdir)/H5Rff$(F_STATUS).f90 H5f90global.lo +H5Tff$(F_STATUS).lo: $(srcdir)/H5Tff$(F_STATUS).f90 H5f90global.lo +H5Eff.lo: $(srcdir)/H5Eff.f90 H5f90global.lo +H5Fff.lo: $(srcdir)/H5Fff.f90 H5f90global.lo +H5Gff.lo: $(srcdir)/H5Gff.f90 H5f90global.lo +H5Iff.lo: $(srcdir)/H5Iff.f90 H5f90global.lo +H5Lff.lo: $(srcdir)/H5Lff.f90 H5f90global.lo +H5Off.lo: $(srcdir)/H5Off.f90 H5f90global.lo +H5Pff.lo: $(srcdir)/H5Pff.f90 H5f90global.lo +H5Rff.lo: $(srcdir)/H5Rff.f90 H5f90global.lo +H5Sff.lo: $(srcdir)/H5Sff.f90 H5f90global.lo +H5Tff.lo: $(srcdir)/H5Tff.f90 H5f90global.lo +H5Zff.lo: $(srcdir)/H5Zff.f90 H5f90global.lo +H5_DBLE_Interface$(F_DBLE).lo: $(srcdir)/H5_DBLE_Interface$(F_DBLE).f90 H5Aff$(F_STATUS).lo H5Dff$(F_STATUS).lo H5Fff$(F_STATUS).lo H5Eff$(F_STATUS).lo H5Pff$(F_STATUS).lo +HDF5.lo: $(srcdir)/HDF5.f90 H5f90global.lo H5_ff$(F_STATUS).lo H5_ff.lo H5Aff.lo H5Aff$(F_STATUS).lo \ + H5Dff.lo H5Dff$(F_STATUS).lo \ + H5Eff.lo H5Eff$(F_STATUS).lo \ + H5Fff.lo H5Fff$(F_STATUS).lo H5Gff.lo H5Iff.lo H5Lff.lo H5Lff$(F_STATUS).lo \ + H5Off.lo H5Off$(F_STATUS).lo H5Pff.lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo H5Rff.lo \ + H5Sff.lo H5Tff.lo H5Tff$(F_STATUS).lo H5Zff.lo \ + H5_DBLE_Interface$(F_DBLE).lo +H5FDmpioff.lo: $(srcdir)/H5FDmpioff.f90 H5f90global.lo +HDF5mpio.lo: $(srcdir)/H5FDmpioff.f90 H5f90global.lo H5_ff$(F_STATUS).lo H5_ff.lo \ + H5Aff.lo H5Aff$(F_STATUS).lo \ + H5Dff.lo H5Dff$(F_STATUS).lo \ + H5Eff.lo H5Eff$(F_STATUS).lo \ + H5Fff.lo H5Fff$(F_STATUS).lo H5Gff.lo H5Iff.lo H5Lff.lo H5Lff$(F_STATUS).lo \ + H5Off.lo H5Off$(F_STATUS).lo H5Pff.lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo H5Rff.lo \ + H5Sff.lo H5Tff.lo H5Tff$(F_STATUS).lo H5Zff.lo \ + H5_DBLE_Interface$(F_DBLE).lo H5FDmpioff.lo +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/fortran/src/h5fc b/build/fortran/src/h5fc new file mode 100644 index 0000000..7ac5604 --- /dev/null +++ b/build/fortran/src/h5fc @@ -0,0 +1,370 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# + +############################################################################ +## ## +## Things You May Have to Modify: ## +## ## +## If the following paths don't point to the place were HDF5 is installed ## +## on your system (i.e., you received a binary distribution or moved the ## +## files from the originally installed directory to another directory) ## +## then modify them accordingly to represent the new paths. ## +## ## +############################################################################ +prefix="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" +exec_prefix="${prefix}" +libdir="${exec_prefix}/lib" +includedir="${prefix}/include" +HL="hl" + +############################################################################ +## ## +## Things You Can Modify to Override HDF5 Library Build Components: ## +## ## +## (Advanced usage - know what you're doing - you're on your own here.) ## +## The three variables below can be used to insert paths and flags in ## +## FCFLAGS, LDFLAGS, or LIBS in the h5fc compile line: ## +## $FLINKER $FCFLAGS $H5BLD_FCFLAGS $F9XSUFFIXFLAG $LDFLAGS $LIBS ## +## $fmodules $link_objs $link_args $shared_link ## +## ## +## These settings can be overriden by setting HDF5_FCFLAGS, ## +## HDF5_LDFLAGS, or HDF5_LIBS in the environment. ## +## ## +############################################################################ +FCFLAGSBASE="" +LDFLAGSBASE="" +LIBSBASE="" + +############################################################################ +## ## +## You shouldn't have to modify anything below this line. ## +## ## +############################################################################ + +# Constants definitions +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +host_os="linux-gnu" + +prog_name="`basename $0`" + +allargs="" +compile_args="" +link_args="" +link_objs="" + +do_link="yes" +do_compile="no" +dash_o="no" +dash_c="no" +get_output_file="no" + +SHOW="eval" +FCBASE="no" +FLINKERBASE="no" + +# FCFLAGS and LDFLAGS are reserved for use by the script user. +# FLAGS brought from the hdf5 build are put in H5BLD_*FLAGS. + +# User's FCFLAGS come after their H5BLD counterparts. User's LDFLAGS come just +# before clibpath, user's LIBS come after $link_objs and before the hdf5 +# libraries in $link_args, followed by any external library paths and libraries +# from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in from the hdf5 build. +# The order of the flags is intended to give precedence to the user's flags. +H5BLD_FCFLAGS=" " +F9XMODFLAG="" +F9XSUFFIXFLAG="" +H5BLD_LDFLAGS=" " +H5BLD_LIBS="-lz -ldl -lm " + +FC="${HDF5_FC:-$FCBASE}" +FLINKER="${HDF5_FLINKER:-$FLINKERBASE}" +FCFLAGS="${HDF5_FCFLAGS:-$FCFLAGSBASE}" +LDFLAGS="${HDF5_LDFLAGS:-$LDFLAGSBASE}" +LIBS="${HDF5_LIBS:-$LIBSBASE}" + +# If a static library is available, the default will be to use it. If the only +# available library is shared, it will be used by default. The user can +# override either default, although choosing an unavailable library will result +# in link errors. +STATIC_AVAILABLE="yes" +if test "${STATIC_AVAILABLE}" = "yes"; then + USE_SHARED_LIB="${HDF5_USE_SHLIB:-no}" +else + USE_SHARED_LIB="${HDF5_USE_SHLIB:-yes}" +fi + +usage() { + # A wonderfully informative "usage" message. + echo "usage: $prog_name [OPTIONS] " + echo " OPTIONS:" + echo " -help This help message." + echo " -echo Show all the shell commands executed" + echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" + echo " subdirectories [default: $prefix]" + echo " -show Show the commands without executing them" + echo " -showconfig Show the HDF5 library configuration summary" + echo " -shlib Compile with shared HDF5 libraries [default for hdf5 built" + echo " without static libraries]" + echo " -noshlib Compile with static HDF5 libraries [default for hdf5 built" + echo " with static libraries]" + echo " " + echo " - the normal compile line options for your compiler." + echo " $prog_name uses the same compiler you used to compile" + echo " HDF5. Check with your compiler's man pages for more" + echo " information on which options are needed." + echo " " + echo " You can override the compiler and linker to compile your program by" + echo " setting the following environment variables accordingly:" + echo " " + echo " HDF5_FC - use a different Fortran 90 or 95 compiler" + echo " HDF5_FLINKER - use a different linker" + echo " HDF5_USE_SHLIB=[yes|no] - use shared or static version of the HDF5 library" + echo " [default: no except when built with only" + echo " shared libraries]" + echo " " + echo " You can also add or change paths and flags to the compile line using" + echo " the following environment varibles or by assigning them to their counterparts" + echo " in the 'Things You Can Modify to Override...'" section of $prog_name + echo " " + echo " Variable Current value to be replaced" + echo " HDF5_FCFLAGS \"$CFLAGSBASE\"" + echo " HDF5_LDFLAGS \"$LDFLAGSBASE\"" + echo " HDF5_LIBS \"$LIBSBASE\"" + echo " " + echo " Note that adding library paths to HDF5_LDFLAGS where another hdf5 version" + echo " is located may link your program with that other hdf5 library version." + echo " " + exit $EXIT_FAILURE +} + +# Show the configuration summary of the library recorded in the +# libhdf5.settings file reside in the lib directory. +showconfigure() +{ + cat ${libdir}/libhdf5.settings + status=$? +} + +# Main +status=$EXIT_SUCCESS + +if test "$#" = "0"; then + # No parameters specified, issue usage statement and exit. + usage +fi + +for arg in $@ ; do + if test "x$get_output_file" = "xyes"; then + link_args="$link_args $arg" + output_file="$arg" + get_output_file="no" + continue + fi + + case "$arg" in + -c) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + + if test "x$do_link" = "xyes" -a -n "$output_file"; then + compile_args="$compile_args -o $output_file" + fi + + do_link="no" + dash_c="yes" + ;; + -o) + allargs="$allargs $arg" + dash_o="yes" + + if test "x$dash_c" = "xyes"; then + compile_args="$compile_args $arg" + else + link_args="$link_args $arg" + do_link="yes" + get_output_file="yes" + fi + ;; + -E|-M|-MT) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + dash_c="yes" + do_link="no" + ;; + -l*) + link_args="$link_args $arg" + allargs="$allargs $arg" + ;; + -prefix=*) + prefix="`expr "$arg" : '-prefix=\(.*\)'`" + ;; + -echo) + set -x + ;; + -show) + SHOW="echo" + ;; + -showconfig) + showconfigure + exit $status + ;; + -shlib) + USE_SHARED_LIB="yes" + ;; + -noshlib) + USE_SHARED_LIB="no" + ;; + -help) + usage + ;; + *\"*) + qarg="'"$arg"'" + allargs="$allargs $qarg" + ;; + *\'*) + qarg='\"'"$arg"'\"' + allargs="$allargs $qarg" + ;; + + *) allargs="$allargs $arg" + if [ -s "$arg" ] ; then + ext=`expr "$arg" : '.*\(\..*\)'` + if [ "$ext" = ".f" -o "$ext" = ".F" -o \ + "$ext" = ".for" -o "$ext" = ".FOR" -o \ + "$ext" = ".ftn" -o "$ext" = ".FTN" -o \ + "$ext" = ".f90" -o "$ext" = ".F90" -o \ + "$ext" = ".f95" -o "$ext" = ".F95" -o \ + "$ext" = ".f03" -o "$ext" = ".F03" -o \ + "$ext" = ".f08" -o "$ext" = ".F08" ] ; then + do_compile="yes" + compile_args="$compile_args $arg" + fname=`basename $arg $ext` + link_objs="$link_objs $fname.o" + elif [ "$ext" = ".o" ] ; then + if test "x$dash_c" = "xyes" ; then + compile_args="$compile_args $arg" + else + do_link="yes" + link_objs="$link_objs $arg" + fi + elif test "x$ext" = "x.a"; then + # This is an archive that we're linking in + libraries=" $libraries $arg " + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + ;; + esac +done + +# It's possible that there isn't a modules flag... + fmodules="" + if test -n "$F9XMODFLAG"; then + fmodules="${F9XMODFLAG}${includedir}" + fi + +if test "x$do_compile" = "xyes"; then + if test "x$dash_c" != "xyes"; then + compile_args="-c $compile_args" + fi + + + $SHOW $FC $H5BLD_FCFLAGS $FCFLAGS ${F9XSUFFIXFLAG} ${fmodules} $compile_args + status=$? + + if test "$status" != "0"; then + exit $status + fi +fi + + +if test "x$do_link" = "xyes"; then + shared_link="" +# conditionnaly link with the hl library + if test "X$HL" = "Xhl"; then + libraries=" $libraries -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 " + else + libraries=" $libraries -lhdf5_fortran -lhdf5 " + fi + link_args="$link_args -L${libdir}" + + case "$host_os" in + linux*) flag="-rpath -Wl," ;; + hpux*) flag="-Wl,+b -Wl," ;; + freebsd*|solaris*) flag="-R" ;; + rs6000*|aix*) flag="-L" ;; + sgi) flag="-rpath " ;; + *) flag="" ;; + esac + + if test -n "$flag"; then + shared_link="${flag}${libdir}" + fi + + if test "x$USE_SHARED_LIB" != "xyes"; then + # The hdf5 library "-l" flags are in here already. This is a static + # compile though, so change it to the static versions (.a) of the libraries. + new_libraries="" + for lib in $libraries; do + case "$lib" in + -lhdf5) + new_libraries="$new_libraries ${libdir}/libhdf5.a" + ;; + -lhdf5_hl) + new_libraries="$new_libraries ${libdir}/libhdf5_hl.a" + ;; + -lhdf5_fortran) + new_libraries="$new_libraries ${libdir}/libhdf5_fortran.a" + ;; + -lhdf5hl_fortran) + new_libraries="$new_libraries ${libdir}/libhdf5hl_fortran.a" + ;; + *) + new_libraries="$new_libraries $lib" + ;; + esac + done + libraries="$new_libraries" + fi + + for lib in $libraries; do + if echo $link_args | grep " $lib " > /dev/null || + echo $link_args | grep " $lib$" > /dev/null; then + : + else + link_args="$link_args $lib " + fi + done + + # The LIBS are just a bunch of -l* libraries necessary for the HDF5 + # module. It's okay if they're included twice in the compile line. + link_args="$link_args $H5BLD_LDFLAGS $H5BLD_LIBS" + + # User's FCFLAGS come after their H5BLD counterparts. User's LDFLAGS come just + # before clibpath, user's LIBS come after $link_objs and before the hdf5 + # libraries in $link_args, followed by any external library paths and libraries + # from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in from the hdf5 build. + # The order of the flags is intended to give precedence to the user's flags. + $SHOW $FLINKER $FCFLAGS $H5BLD_FCFLAGS $F9XSUFFIXFLAG $LDFLAGS $fmodules $link_objs $LIBS $link_args $shared_link + status=$? +fi + +exit $status diff --git a/build/fortran/test/.deps/t.Plo b/build/fortran/test/.deps/t.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/fortran/test/.deps/t.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/fortran/test/Makefile b/build/fortran/test/Makefile new file mode 100644 index 0000000..b7cbb5e --- /dev/null +++ b/build/fortran/test/Makefile @@ -0,0 +1,1695 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# fortran/test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +VPATH = ../../../fortran/test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Some Fortran compilers can't build shared libraries, so sometimes we +# want to build a shared C library and a static Fortran library. If so, +# pass the -static flag to the library linker. +am__append_1 = -static +#am__append_2 = fortranlib_test_F03 +check_PROGRAMS = $(am__EXEEXT_2) +TESTS = $(am__EXEEXT_2) +subdir = fortran/test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libh5test_fortran_la_LIBADD = +am__libh5test_fortran_la_SOURCES_DIST = tf_F90.f90 tf.f90 t.c \ + tf_F03.f90 tf_F08.f90 +am_libh5test_fortran_la_OBJECTS = tf_F90.lo \ + tf.lo \ + t.lo +#am_libh5test_fortran_la_OBJECTS = tf_F03.lo \ +# tf.lo \ +# t.lo +#am_libh5test_fortran_la_OBJECTS = \ +# tf_F08.lo tf.lo t.lo +libh5test_fortran_la_OBJECTS = $(am_libh5test_fortran_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +#am__EXEEXT_1 = \ +# fortranlib_test_F03$(EXEEXT) +am__EXEEXT_2 = fortranlib_test$(EXEEXT) fflush1$(EXEEXT) \ + fflush2$(EXEEXT) fortranlib_test_1_8$(EXEEXT) $(am__EXEEXT_1) +am_fflush1_OBJECTS = fflush1.$(OBJEXT) +fflush1_OBJECTS = $(am_fflush1_OBJECTS) +fflush1_LDADD = $(LDADD) +fflush1_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) \ + $(LIBHDF5) +am_fflush2_OBJECTS = fflush2.$(OBJEXT) +fflush2_OBJECTS = $(am_fflush2_OBJECTS) +fflush2_LDADD = $(LDADD) +fflush2_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) \ + $(LIBHDF5) +am_fortranlib_test_OBJECTS = fortranlib_test-tH5F.$(OBJEXT) \ + fortranlib_test-tH5D.$(OBJEXT) fortranlib_test-tH5R.$(OBJEXT) \ + fortranlib_test-tH5S.$(OBJEXT) fortranlib_test-tH5T.$(OBJEXT) \ + fortranlib_test-tH5VL.$(OBJEXT) fortranlib_test-tH5Z.$(OBJEXT) \ + fortranlib_test-tH5Sselect.$(OBJEXT) \ + fortranlib_test-tH5P.$(OBJEXT) fortranlib_test-tH5A.$(OBJEXT) \ + fortranlib_test-tH5I.$(OBJEXT) fortranlib_test-tH5G.$(OBJEXT) \ + fortranlib_test-tH5E.$(OBJEXT) fortranlib_test-tHDF5.$(OBJEXT) \ + fortranlib_test-fortranlib_test.$(OBJEXT) +fortranlib_test_OBJECTS = $(am_fortranlib_test_OBJECTS) +fortranlib_test_LDADD = $(LDADD) +fortranlib_test_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ + $(LIBH5F) $(LIBHDF5) +fortranlib_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ + $(fortranlib_test_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +am_fortranlib_test_1_8_OBJECTS = tH5O.$(OBJEXT) tH5A_1_8.$(OBJEXT) \ + tH5G_1_8.$(OBJEXT) tH5MISC_1_8.$(OBJEXT) tHDF5_1_8.$(OBJEXT) \ + fortranlib_test_1_8.$(OBJEXT) +fortranlib_test_1_8_OBJECTS = $(am_fortranlib_test_1_8_OBJECTS) +fortranlib_test_1_8_LDADD = $(LDADD) +fortranlib_test_1_8_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ + $(LIBH5F) $(LIBHDF5) +am__fortranlib_test_F03_SOURCES_DIST = tH5E_F03.f90 tH5F_F03.f90 \ + tH5L_F03.f90 tH5O_F03.f90 tH5P_F03.f90 tH5T_F03.f90 \ + tHDF5_F03.f90 fortranlib_test_F03.f90 +#am_fortranlib_test_F03_OBJECTS = \ +# tH5E_F03.$(OBJEXT) \ +# tH5F_F03.$(OBJEXT) \ +# tH5L_F03.$(OBJEXT) \ +# tH5O_F03.$(OBJEXT) \ +# tH5P_F03.$(OBJEXT) \ +# tH5T_F03.$(OBJEXT) \ +# tHDF5_F03.$(OBJEXT) \ +# fortranlib_test_F03.$(OBJEXT) +fortranlib_test_F03_OBJECTS = $(am_fortranlib_test_F03_OBJECTS) +fortranlib_test_F03_LDADD = $(LDADD) +fortranlib_test_F03_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ + $(LIBH5F) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) +LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) +AM_V_FC = $(am__v_FC_$(V)) +am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) +am__v_FC_0 = @echo " FC " $@; +am__v_FC_1 = +FCLD = $(FC) +FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_FCLD = $(am__v_FCLD_$(V)) +am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_FCLD_0 = @echo " FCLD " $@; +am__v_FCLD_1 = +SOURCES = $(libh5test_fortran_la_SOURCES) $(fflush1_SOURCES) \ + $(fflush2_SOURCES) $(fortranlib_test_SOURCES) \ + $(fortranlib_test_1_8_SOURCES) $(fortranlib_test_F03_SOURCES) +DIST_SOURCES = $(am__libh5test_fortran_la_SOURCES_DIST) \ + $(fflush1_SOURCES) $(fflush2_SOURCES) \ + $(fortranlib_test_SOURCES) $(fortranlib_test_1_8_SOURCES) \ + $(am__fortranlib_test_F03_SOURCES_DIST) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_builddir)/fortran/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 + +# Include files +AM_FCFLAGS = -I$(top_builddir)/fortran/src \ + $(F9XMODFLAG)$(top_builddir)/fortran/src +AM_LDFLAGS = $(am__append_1) +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../fortran/test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.raw + +# The Fortran test library +noinst_LTLIBRARIES = libh5test_fortran.la +ff_PREFIX = F90 + +# Check if the compiler supports the Fortran 2003 standard +# which should include the intrinsic module iso_c_binding +#ff_PREFIX = F03 + +# Our main targets, the tests themselves +TEST_PROG = fortranlib_test fflush1 fflush2 fortranlib_test_1_8 \ + $(am__append_2) + +# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be +# compiled first +libh5test_fortran_la_SOURCES = tf_F90.f90 \ + tf.f90 \ + t.c + +# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be +# compiled first +#libh5test_fortran_la_SOURCES = tf_F03.f90 \ +# tf.f90 \ +# t.c + +# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be +# compiled first +#libh5test_fortran_la_SOURCES = \ +# tf_F08.f90 tf.f90 t.c + +# Source files are used for both the library and fortranlib_test. +# Automake will complain about this without the following workaround. +fortranlib_test_FCFLAGS = $(AM_FCFLAGS) +fortranlib_test_CFLAGS = $(AM_CFLAGS) +fortranlib_test_SOURCES = tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90 tH5VL.f90 tH5Z.f90 \ + tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 tH5G.f90 tH5E.f90 tHDF5.f90 fortranlib_test.f90 + +fortranlib_test_1_8_SOURCES = tH5O.f90 tH5A_1_8.f90 tH5G_1_8.f90 tH5MISC_1_8.f90 tHDF5_1_8.f90\ + fortranlib_test_1_8.f90 + +#fortranlib_test_F03_SOURCES = tH5E_F03.f90 tH5F_F03.f90 tH5L_F03.f90 \ +# tH5O_F03.f90 tH5P_F03.f90 tH5T_F03.f90 tHDF5_F03.f90 fortranlib_test_F03.f90 + +fflush1_SOURCES = fflush1.f90 +fflush2_SOURCES = fflush2.f90 + +# The tests depend on both fortran libraries and both main libraries. +LDADD = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) $(LIBHDF5) +MOSTLYCLEANFILES = *.tmp + +# Mark this directory as part of the Fortran API (this affects output +# from tests in conclude.am) +FORTRAN_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fortran/test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libh5test_fortran.la: $(libh5test_fortran_la_OBJECTS) $(libh5test_fortran_la_DEPENDENCIES) $(EXTRA_libh5test_fortran_la_DEPENDENCIES) + $(AM_V_FCLD)$(FCLINK) $(libh5test_fortran_la_OBJECTS) $(libh5test_fortran_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +fflush1$(EXEEXT): $(fflush1_OBJECTS) $(fflush1_DEPENDENCIES) $(EXTRA_fflush1_DEPENDENCIES) + @rm -f fflush1$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(fflush1_OBJECTS) $(fflush1_LDADD) $(LIBS) + +fflush2$(EXEEXT): $(fflush2_OBJECTS) $(fflush2_DEPENDENCIES) $(EXTRA_fflush2_DEPENDENCIES) + @rm -f fflush2$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(fflush2_OBJECTS) $(fflush2_LDADD) $(LIBS) + +fortranlib_test$(EXEEXT): $(fortranlib_test_OBJECTS) $(fortranlib_test_DEPENDENCIES) $(EXTRA_fortranlib_test_DEPENDENCIES) + @rm -f fortranlib_test$(EXEEXT) + $(AM_V_FCLD)$(fortranlib_test_LINK) $(fortranlib_test_OBJECTS) $(fortranlib_test_LDADD) $(LIBS) + +fortranlib_test_1_8$(EXEEXT): $(fortranlib_test_1_8_OBJECTS) $(fortranlib_test_1_8_DEPENDENCIES) $(EXTRA_fortranlib_test_1_8_DEPENDENCIES) + @rm -f fortranlib_test_1_8$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(fortranlib_test_1_8_OBJECTS) $(fortranlib_test_1_8_LDADD) $(LIBS) + +fortranlib_test_F03$(EXEEXT): $(fortranlib_test_F03_OBJECTS) $(fortranlib_test_F03_DEPENDENCIES) $(EXTRA_fortranlib_test_F03_DEPENDENCIES) + @rm -f fortranlib_test_F03$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(fortranlib_test_F03_OBJECTS) $(fortranlib_test_F03_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/t.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +.f90.o: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +.f90.obj: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` + +.f90.lo: + $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +fortranlib_test-tH5F.o: tH5F.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5F.o $(FCFLAGS_f90) `test -f 'tH5F.f90' || echo '$(srcdir)/'`tH5F.f90 + +fortranlib_test-tH5F.obj: tH5F.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5F.obj $(FCFLAGS_f90) `if test -f 'tH5F.f90'; then $(CYGPATH_W) 'tH5F.f90'; else $(CYGPATH_W) '$(srcdir)/tH5F.f90'; fi` + +fortranlib_test-tH5D.o: tH5D.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5D.o $(FCFLAGS_f90) `test -f 'tH5D.f90' || echo '$(srcdir)/'`tH5D.f90 + +fortranlib_test-tH5D.obj: tH5D.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5D.obj $(FCFLAGS_f90) `if test -f 'tH5D.f90'; then $(CYGPATH_W) 'tH5D.f90'; else $(CYGPATH_W) '$(srcdir)/tH5D.f90'; fi` + +fortranlib_test-tH5R.o: tH5R.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5R.o $(FCFLAGS_f90) `test -f 'tH5R.f90' || echo '$(srcdir)/'`tH5R.f90 + +fortranlib_test-tH5R.obj: tH5R.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5R.obj $(FCFLAGS_f90) `if test -f 'tH5R.f90'; then $(CYGPATH_W) 'tH5R.f90'; else $(CYGPATH_W) '$(srcdir)/tH5R.f90'; fi` + +fortranlib_test-tH5S.o: tH5S.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5S.o $(FCFLAGS_f90) `test -f 'tH5S.f90' || echo '$(srcdir)/'`tH5S.f90 + +fortranlib_test-tH5S.obj: tH5S.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5S.obj $(FCFLAGS_f90) `if test -f 'tH5S.f90'; then $(CYGPATH_W) 'tH5S.f90'; else $(CYGPATH_W) '$(srcdir)/tH5S.f90'; fi` + +fortranlib_test-tH5T.o: tH5T.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5T.o $(FCFLAGS_f90) `test -f 'tH5T.f90' || echo '$(srcdir)/'`tH5T.f90 + +fortranlib_test-tH5T.obj: tH5T.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5T.obj $(FCFLAGS_f90) `if test -f 'tH5T.f90'; then $(CYGPATH_W) 'tH5T.f90'; else $(CYGPATH_W) '$(srcdir)/tH5T.f90'; fi` + +fortranlib_test-tH5VL.o: tH5VL.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5VL.o $(FCFLAGS_f90) `test -f 'tH5VL.f90' || echo '$(srcdir)/'`tH5VL.f90 + +fortranlib_test-tH5VL.obj: tH5VL.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5VL.obj $(FCFLAGS_f90) `if test -f 'tH5VL.f90'; then $(CYGPATH_W) 'tH5VL.f90'; else $(CYGPATH_W) '$(srcdir)/tH5VL.f90'; fi` + +fortranlib_test-tH5Z.o: tH5Z.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Z.o $(FCFLAGS_f90) `test -f 'tH5Z.f90' || echo '$(srcdir)/'`tH5Z.f90 + +fortranlib_test-tH5Z.obj: tH5Z.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Z.obj $(FCFLAGS_f90) `if test -f 'tH5Z.f90'; then $(CYGPATH_W) 'tH5Z.f90'; else $(CYGPATH_W) '$(srcdir)/tH5Z.f90'; fi` + +fortranlib_test-tH5Sselect.o: tH5Sselect.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Sselect.o $(FCFLAGS_f90) `test -f 'tH5Sselect.f90' || echo '$(srcdir)/'`tH5Sselect.f90 + +fortranlib_test-tH5Sselect.obj: tH5Sselect.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Sselect.obj $(FCFLAGS_f90) `if test -f 'tH5Sselect.f90'; then $(CYGPATH_W) 'tH5Sselect.f90'; else $(CYGPATH_W) '$(srcdir)/tH5Sselect.f90'; fi` + +fortranlib_test-tH5P.o: tH5P.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5P.o $(FCFLAGS_f90) `test -f 'tH5P.f90' || echo '$(srcdir)/'`tH5P.f90 + +fortranlib_test-tH5P.obj: tH5P.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5P.obj $(FCFLAGS_f90) `if test -f 'tH5P.f90'; then $(CYGPATH_W) 'tH5P.f90'; else $(CYGPATH_W) '$(srcdir)/tH5P.f90'; fi` + +fortranlib_test-tH5A.o: tH5A.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5A.o $(FCFLAGS_f90) `test -f 'tH5A.f90' || echo '$(srcdir)/'`tH5A.f90 + +fortranlib_test-tH5A.obj: tH5A.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5A.obj $(FCFLAGS_f90) `if test -f 'tH5A.f90'; then $(CYGPATH_W) 'tH5A.f90'; else $(CYGPATH_W) '$(srcdir)/tH5A.f90'; fi` + +fortranlib_test-tH5I.o: tH5I.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5I.o $(FCFLAGS_f90) `test -f 'tH5I.f90' || echo '$(srcdir)/'`tH5I.f90 + +fortranlib_test-tH5I.obj: tH5I.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5I.obj $(FCFLAGS_f90) `if test -f 'tH5I.f90'; then $(CYGPATH_W) 'tH5I.f90'; else $(CYGPATH_W) '$(srcdir)/tH5I.f90'; fi` + +fortranlib_test-tH5G.o: tH5G.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5G.o $(FCFLAGS_f90) `test -f 'tH5G.f90' || echo '$(srcdir)/'`tH5G.f90 + +fortranlib_test-tH5G.obj: tH5G.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5G.obj $(FCFLAGS_f90) `if test -f 'tH5G.f90'; then $(CYGPATH_W) 'tH5G.f90'; else $(CYGPATH_W) '$(srcdir)/tH5G.f90'; fi` + +fortranlib_test-tH5E.o: tH5E.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5E.o $(FCFLAGS_f90) `test -f 'tH5E.f90' || echo '$(srcdir)/'`tH5E.f90 + +fortranlib_test-tH5E.obj: tH5E.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5E.obj $(FCFLAGS_f90) `if test -f 'tH5E.f90'; then $(CYGPATH_W) 'tH5E.f90'; else $(CYGPATH_W) '$(srcdir)/tH5E.f90'; fi` + +fortranlib_test-tHDF5.o: tHDF5.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tHDF5.o $(FCFLAGS_f90) `test -f 'tHDF5.f90' || echo '$(srcdir)/'`tHDF5.f90 + +fortranlib_test-tHDF5.obj: tHDF5.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tHDF5.obj $(FCFLAGS_f90) `if test -f 'tHDF5.f90'; then $(CYGPATH_W) 'tHDF5.f90'; else $(CYGPATH_W) '$(srcdir)/tHDF5.f90'; fi` + +fortranlib_test-fortranlib_test.o: fortranlib_test.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-fortranlib_test.o $(FCFLAGS_f90) `test -f 'fortranlib_test.f90' || echo '$(srcdir)/'`fortranlib_test.f90 + +fortranlib_test-fortranlib_test.obj: fortranlib_test.f90 + $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-fortranlib_test.obj $(FCFLAGS_f90) `if test -f 'fortranlib_test.f90'; then $(CYGPATH_W) 'fortranlib_test.f90'; else $(CYGPATH_W) '$(srcdir)/fortranlib_test.f90'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +fortranlib_test.log: fortranlib_test$(EXEEXT) + @p='fortranlib_test$(EXEEXT)'; \ + b='fortranlib_test'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fflush1.log: fflush1$(EXEEXT) + @p='fflush1$(EXEEXT)'; \ + b='fflush1'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fflush2.log: fflush2$(EXEEXT) + @p='fflush2$(EXEEXT)'; \ + b='fflush2'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fortranlib_test_1_8.log: fortranlib_test_1_8$(EXEEXT) + @p='fortranlib_test_1_8$(EXEEXT)'; \ + b='fortranlib_test_1_8'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fortranlib_test_F03.log: fortranlib_test_F03$(EXEEXT) + @p='fortranlib_test_F03$(EXEEXT)'; \ + b='fortranlib_test_F03'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \ + clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + clean-local clean-noinstLTLIBRARIES cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am + +.PRECIOUS: Makefile + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-Fortran test/Makefile(.in) +# +# Autoconf cannot figure out dependencies between modules; disable parallel make +.NOTPARALLEL: + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Fortran module files can have different extensions and different names +# (e.g., different capitalizations) on different platforms. Write rules +# for them explicitly rather than trying to teach automake about them. +# They should be installed as headers and removed during clean. +maintainer-clean-local: clean-local +distclean-local: clean-local +clean-local: + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + $(RM) *.$(F9XMODEXT); \ + fi + +# fflush2 depends on files created by fflush1 +fflush2.chkexe_: fflush1.chkexe_ +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/fortran/testpar/Makefile b/build/fortran/testpar/Makefile new file mode 100644 index 0000000..d6fb6d9 --- /dev/null +++ b/build/fortran/testpar/Makefile @@ -0,0 +1,1367 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# fortran/testpar/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Fortran Parallel Library Test Makefile(.in) +# +VPATH = ../../../fortran/testpar +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Some Fortran compilers can't build shared libraries, so sometimes we +# want to build a shared C library and a static Fortran library. If so, +# pass the -static flag to the library linker. +# (Actually, we historically have bad luck combining shared libraries with +# parallel code. But you're welcome to try...) +am__append_1 = -static +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = +subdir = fortran/testpar +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = parallel_test$(EXEEXT) +am_parallel_test_OBJECTS = ptest.$(OBJEXT) hyper.$(OBJEXT) \ + mdset.$(OBJEXT) +parallel_test_OBJECTS = $(am_parallel_test_OBJECTS) +parallel_test_LDADD = $(LDADD) +parallel_test_DEPENDENCIES = $(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) \ + $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) +LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) +AM_V_FC = $(am__v_FC_$(V)) +am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) +am__v_FC_0 = @echo " FC " $@; +am__v_FC_1 = +FCLD = $(FC) +FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_FCLD = $(am__v_FCLD_$(V)) +am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_FCLD_0 = @echo " FCLD " $@; +am__v_FCLD_1 = +SOURCES = $(parallel_test_SOURCES) +DIST_SOURCES = $(parallel_test_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 + +# Include files +AM_FCFLAGS = -I$(top_srcdir)/fortran/src \ + -I$(top_srcdir)/fortran/test \ + $(F9XMODFLAG)$(top_builddir)/fortran/src \ + $(F9XMODFLAG)$(top_builddir)/fortran/test +AM_LDFLAGS = $(am__append_1) +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/testpar +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/testpar +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../fortran/testpar +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 parf[12].h5 + +# These are our main targets +TEST_PROG_PARA = parallel_test + +# Test source files +parallel_test_SOURCES = ptest.f90 hyper.f90 mdset.f90 + +# The tests depend on several libraries. +LDADD = $(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) $(LIBHDF5) + +# Mark this directory as part of the Fortran API +FORTRAN_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/testpar/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fortran/testpar/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +parallel_test$(EXEEXT): $(parallel_test_OBJECTS) $(parallel_test_DEPENDENCIES) $(EXTRA_parallel_test_DEPENDENCIES) + @rm -f parallel_test$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(parallel_test_OBJECTS) $(parallel_test_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +.f90.o: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +.f90.obj: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` + +.f90.lo: + $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/Makefile b/build/hl/Makefile new file mode 100644 index 0000000..12779a4 --- /dev/null +++ b/build/hl/Makefile @@ -0,0 +1,1423 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# +# This makefile mostly just reinvokes make in the various subdirectories +# but does so in the correct order. You can alternatively invoke make from +# each subdirectory manually. +# +# HDF5 High-Level Makefile(.in) +VPATH = ../../hl +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../hl +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +#FORTRAN_DIR = fortran +#CXX_DIR = c++ +SUBDIRS = src test tools $(CXX_DIR) $(FORTRAN_DIR) +DIST_SUBDIRS = src test tools c++ fortran examples + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Install examples +install-examples uninstall-examples: + for d in examples $(HDF5_INTERFACES); do \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + done + +installcheck-local: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +build-check-clean: +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/c++/Makefile b/build/hl/c++/Makefile new file mode 100644 index 0000000..ceb18b0 --- /dev/null +++ b/build/hl/c++/Makefile @@ -0,0 +1,1413 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/c++/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# High-Level API C++ Makefile(.in) +# +VPATH = ../../../hl/c++ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/c++ +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++ +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++ +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/c++ +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +SUBDIRS = src test +DIST_SUBDIRS = src test examples + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/c++/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Install examples +install-examples uninstall-examples: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +installcheck-local: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/c++/examples/Makefile b/build/hl/c++/examples/Makefile new file mode 100644 index 0000000..fbd238a --- /dev/null +++ b/build/hl/c++/examples/Makefile @@ -0,0 +1,1331 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/c++/examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../../../hl/c++/examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/c++/examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-hlc++-ex.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-hlc++-ex.sh.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/c++/examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 + +# These are the programs that 'make all' or 'make prog' will build and +# which 'make check' will run. List them in the order they should be run. +EXAMPLE_PROG = ptExampleFL +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# These are the example files to be installed +INSTALL_FILES = ptExampleFL.cpp +INSTALL_SCRIPT_FILES = run-hlc++-ex.sh + +# Tell conclude.am that these are C++ tests. +CXX_API = yes + +# Where to install examples +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/c++ +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/c++/examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-hlc++-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlc++-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# How to build programs using h5c++ +$(EXTRA_PROG): $(H5CPP) + $(H5CPP) $(H5CCFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp + +# List dependencies for each program. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C++ compiler, not h5c++. This is +# an inelegant way of solving the problem, unfortunately. +ptExampleFL: ptExampleFL.cpp + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/c++/examples/run-hlc++-ex.sh b/build/hl/c++/examples/run-hlc++-ex.sh new file mode 100644 index 0000000..75bdd2e --- /dev/null +++ b/build/hl/c++/examples/run-hlc++-ex.sh @@ -0,0 +1,78 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-hlc++-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the c++ examples from source files # +# installed in .../share/hdf5_examples/hl/c++ using h5c++. The # +# order for running programs with RunTest in the MAIN section below is taken # +# from the Makefile. The order is important since some of the test programs # +# use data files created by earlier test programs. Any future additions should # +# be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../../}" +AR="ar" +RANLIB="ranlib" +H5TOOL="h5c++" # The tool name +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".cpp" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + + + +################## MAIN ################## + +# Run tests +if [ $? -eq 0 ] +then + if (RunTest ptExampleFL &&\ + rm ptExampleFL); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +# Cleanup +rm *.o +rm *.h5 +echo + +exit $EXIT_VALUE + diff --git a/build/hl/c++/src/.deps/H5PacketTable.Plo b/build/hl/c++/src/.deps/H5PacketTable.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/c++/src/.deps/H5PacketTable.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/c++/src/Makefile b/build/hl/c++/src/Makefile new file mode 100644 index 0000000..aa7298f --- /dev/null +++ b/build/hl/c++/src/Makefile @@ -0,0 +1,1464 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/c++/src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-C++ Makefile(.in) +# + + +VPATH = ../../../../hl/c++/src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/c++/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5_hl_cpp_la_DEPENDENCIES = $(LIBH5_HL) $(LIBH5CPP) +am_libhdf5_hl_cpp_la_OBJECTS = H5PacketTable.lo +libhdf5_hl_cpp_la_OBJECTS = $(am_libhdf5_hl_cpp_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5_hl_cpp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(AM_CXXFLAGS) $(CXXFLAGS) $(libhdf5_hl_cpp_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_$(V)) +am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_$(V)) +am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(libhdf5_hl_cpp_la_SOURCES) +DIST_SOURCES = $(libhdf5_hl_cpp_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/hl/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/c++/src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 + +# This is our main target +lib_LTLIBRARIES = libhdf5_hl_cpp.la + +# Add libtool numbers to the HDF5 HL C++ library (from config/lt_vers.am) +libhdf5_hl_cpp_la_LDFLAGS = -version-info $(LT_HL_CXX_VERS_INTERFACE):$(LT_HL_CXX_VERS_REVISION):$(LT_HL_CXX_VERS_AGE) $(AM_LDFLAGS) + +# Source files for the library +# At the moment, only the H5PT Packet Table has a C++ API. +libhdf5_hl_cpp_la_SOURCES = H5PacketTable.cpp + +# HDF5 HL C++ library depends on HDF5 Library. +libhdf5_hl_cpp_la_LIBADD = $(LIBH5_HL) $(LIBH5CPP) + +# Public headers +include_HEADERS = H5PacketTable.h + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/c++/src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5_hl_cpp.la: $(libhdf5_hl_cpp_la_OBJECTS) $(libhdf5_hl_cpp_la_DEPENDENCIES) $(EXTRA_libhdf5_hl_cpp_la_DEPENDENCIES) + $(AM_V_CXXLD)$(libhdf5_hl_cpp_la_LINK) -rpath $(libdir) $(libhdf5_hl_cpp_la_OBJECTS) $(libhdf5_hl_cpp_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5PacketTable.Plo + +.cpp.o: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: + $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-includeHEADERS install-info \ + install-info-am install-libLTLIBRARIES install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/c++/test/.deps/ptableTest.Po b/build/hl/c++/test/.deps/ptableTest.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/c++/test/.deps/ptableTest.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/c++/test/Makefile b/build/hl/c++/test/Makefile new file mode 100644 index 0000000..3b0d824 --- /dev/null +++ b/build/hl/c++/test/Makefile @@ -0,0 +1,1387 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/c++/test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-C++ Makefile(.in) +# +VPATH = ../../../../hl/c++/test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = $(am__EXEEXT_1) +subdir = hl/c++/test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = ptableTest$(EXEEXT) +am_ptableTest_OBJECTS = ptableTest.$(OBJEXT) +ptableTest_OBJECTS = $(am_ptableTest_OBJECTS) +ptableTest_LDADD = $(LDADD) +ptableTest_DEPENDENCIES = $(LIBH5CPP_HL) $(LIBH5_HL) $(LIBH5CPP) \ + $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_$(V)) +am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_$(V)) +am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(ptableTest_SOURCES) +DIST_SOURCES = $(ptableTest_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/c++/src -I$(top_srcdir)/hl/src \ + -I$(top_srcdir)/hl/c++/src -I$(top_srcdir)/test \ + -I$(top_builddir)/hl/test -I$(top_srcdir)/hl/test +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/c++/test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# These are our main targets. They should be listed in the order to be +# executed, generally most specific tests to least specific tests. +TEST_PROG = ptableTest + +# The tests depend on the hdf5, hdf5 C++, and hdf5_hl libraries +LDADD = $(LIBH5CPP_HL) $(LIBH5_HL) $(LIBH5CPP) $(LIBHDF5) +ptableTest_SOURCES = ptableTest.cpp + +# Tell conclude.am that these are C++ tests. +CXX_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/c++/test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +ptableTest$(EXEEXT): $(ptableTest_OBJECTS) $(ptableTest_DEPENDENCIES) $(EXTRA_ptableTest_DEPENDENCIES) + @rm -f ptableTest$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(ptableTest_OBJECTS) $(ptableTest_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/ptableTest.Po + +.cpp.o: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: + $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: + $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +ptableTest.log: ptableTest$(EXEEXT) + @p='ptableTest$(EXEEXT)'; \ + b='ptableTest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/examples/Makefile b/build/hl/examples/Makefile new file mode 100644 index 0000000..eb96f71 --- /dev/null +++ b/build/hl/examples/Makefile @@ -0,0 +1,1370 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../../hl/examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-hlc-ex.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-hlc-ex.sh.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 +#EXAMPLE_PROG_PARA = + +# Example directory +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/c +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl +INSTALL_SCRIPT_FILES = run-hlc-ex.sh +INSTALL_TOP_SCRIPT_FILES = run-hl-ex.sh + +# Example programs. +# Don't tell automake about them, because if it knew they were programs, +# it would try to compile them instead of using the h5cc script. +# Use the boilerplate in config/examples.am instead. +EXAMPLE_PROG = ex_lite1 ex_lite2 ex_lite3 ptExampleFL \ + ex_image1 ex_image2 \ + ex_table_01 ex_table_02 ex_table_03 ex_table_04 \ + ex_table_05 ex_table_06 ex_table_07 ex_table_08 \ + ex_table_09 ex_table_10 ex_table_11 ex_table_12 \ + ex_ds1 + +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# Install files +# List all file that should be installed in examples directory +INSTALL_FILES = ex_lite1.c ex_lite2.c ex_lite3.c ptExampleFL.c \ + ex_image1.c ex_image2.c \ + ex_table_01.c ex_table_02.c ex_table_03.c ex_table_04.c \ + ex_table_05.c ex_table_06.c ex_table_07.c ex_table_08.c \ + ex_table_09.c ex_table_10.c ex_table_11.c ex_table_12.c \ + ex_ds1.c image24pixel.txt image8.txt pal_rgb.h + +#LD_LIBRARY_PATH = $(LL_PATH) + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-hlc-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlc-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Additional dependencies for each program are listed below. +#$(EXTRA_PROG): $(H5CC_PP) +# $(H5CC_PP) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; +$(EXTRA_PROG): $(H5CC) + $(H5CC) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; + +# ex_lite2 uses a file created by ex_lite1 +ex_lite2.chkexe_: ex_lite1.chkexe_ + +# List dependencies for each program. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C compiler, not h5cc. This is +# an inelegant way of solving the problem. +# All programs share the same build rule and a dependency on the main hdf5 +# library above. +ex_lite1: $(srcdir)/ex_lite1.c +ex_lite2: $(srcdir)/ex_lite2.c +ex_lite3: $(srcdir)/ex_lite3.c +ptExampleFL: $(srcdir)/ptExampleFL.c +ex_image1: $(srcdir)/ex_image1.c +ex_image2: $(srcdir)/ex_image2.c +ex_table01: $(srcdir)/ex_table01.c +ex_table02: $(srcdir)/ex_table02.c +ex_table03: $(srcdir)/ex_table03.c +ex_table04: $(srcdir)/ex_table04.c +ex_table05: $(srcdir)/ex_table05.c +ex_table06: $(srcdir)/ex_table06.c +ex_table07: $(srcdir)/ex_table07.c +ex_table08: $(srcdir)/ex_table08.c +ex_table09: $(srcdir)/ex_table09.c +ex_table10: $(srcdir)/ex_table10.c +ex_table11: $(srcdir)/ex_table11.c +ex_table12: $(srcdir)/ex_table12.c + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/examples/run-hlc-ex.sh b/build/hl/examples/run-hlc-ex.sh new file mode 100644 index 0000000..7690a7d --- /dev/null +++ b/build/hl/examples/run-hlc-ex.sh @@ -0,0 +1,119 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-hlc-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the c examples from source files installed # +# in .../share/hdf5_examples/hl/c using h5cc or h5pc. The order for running # +# programs with RunTest in the MAIN section below is taken from the Makefile. # +# The order is important since some of the test programs use data files created # +# by earlier test programs. Any future additions should be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../../}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5cc" # The tool name +else + H5TOOL="h5pcc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".c" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + + + +################## MAIN ################## + +# Run tests +if [ $? -eq 0 ] +then + if (RunTest ex_lite1 &&\ + rm ex_lite1 &&\ + RunTest ex_lite2 &&\ + rm ex_lite2 &&\ + RunTest ex_lite3 &&\ + rm ex_lite3 &&\ + RunTest ptExampleFL &&\ + rm ptExampleFL &&\ + RunTest ex_image1 &&\ + rm ex_image1 &&\ + RunTest ex_image2 &&\ + rm ex_image2 &&\ + RunTest ex_table_01 &&\ + rm ex_table_01 &&\ + RunTest ex_table_02 &&\ + rm ex_table_02 &&\ + RunTest ex_table_03 &&\ + rm ex_table_03 &&\ + RunTest ex_table_04 &&\ + rm ex_table_04 &&\ + RunTest ex_table_05 && + rm ex_table_05 && + RunTest ex_table_06 &&\ + rm ex_table_06 &&\ + RunTest ex_table_07 &&\ + rm ex_table_07 &&\ + RunTest ex_table_08 &&\ + rm ex_table_08 &&\ + RunTest ex_table_09 &&\ + rm ex_table_09 &&\ + RunTest ex_table_10 &&\ + rm ex_table_10 &&\ + RunTest ex_table_11 &&\ + rm ex_table_11 &&\ + RunTest ex_table_12 &&\ + rm ex_table_12 &&\ + RunTest ex_ds1 &&\ + rm ex_ds1); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +# Cleanup +rm *.o +rm *.h5 +echo + +exit $EXIT_VALUE + diff --git a/build/hl/fortran/Makefile b/build/hl/fortran/Makefile new file mode 100644 index 0000000..702090e --- /dev/null +++ b/build/hl/fortran/Makefile @@ -0,0 +1,1417 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/fortran/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# +# This makefile mostly just reinvokes make in the various subdirectories +# but does so in the correct order. You can alternatively invoke make from +# each subdirectory manually. +# +# HDF5 High-Level Makefile(.in) +VPATH = ../../../hl/fortran +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/fortran +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/fortran +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +SUBDIRS = src test +DIST_SUBDIRS = src test examples + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/fortran/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Install examples +install-examples uninstall-examples: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +installcheck-local: + @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/fortran/examples/Makefile b/build/hl/fortran/examples/Makefile new file mode 100644 index 0000000..4251191 --- /dev/null +++ b/build/hl/fortran/examples/Makefile @@ -0,0 +1,1342 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/fortran/examples/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5-Fortran Examples Makefile(.in) +# + +# We can't tell automake about example programs, because they need to be +# built using h5cc (or h5fc, etc.) instead of the standard compilers. +# This creates some extra work for us. +VPATH = ../../../../hl/fortran/examples +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/fortran/examples +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = run-hlfortran-ex.sh +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(srcdir)/run-hlfortran-ex.sh.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/examples.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/examples +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/examples +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/fortran/examples +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 + +# Compile parallel fortran examples only if parallel is enabled +#EXAMPLE_PROG_PARA = + +# These are the programs that 'make all' or 'make tests' will build and +# that 'make check' will run. List them in the order in which they should +# be run. +# We don't tell automake about these programs so that it doesn't try to +# compile them with the regular fortran compiler. +EXAMPLE_PROG = exlite ex_ds1 +TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) + +# List files to be installed here +INSTALL_FILES = exlite.f90 ex_ds1.f90 +INSTALL_SCRIPT_FILES = run-hlfortran-ex.sh + +# Mark this directory as part of the Fortran API (this affects output +# from tests in conclude.am) +FORTRAN_API = yes + +# Tell automake how to install examples +# Note: no '/' after DESTDIR. Explanation in commence.am +EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/fortran +EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl + +# Assume that all tests in this directory are examples, and tell +# conclude.am when to build them. +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# We need to tell automake what to clean +MOSTLYCLEANFILES = *.raw *.meta *.o +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/fortran/examples/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +run-hlfortran-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlfortran-ex.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-local + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: all all-am all-local check check-TESTS check-am clean \ + clean-generic clean-libtool cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-local installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Tell automake how to build examples using h5fc +#$(EXTRA_PROG): $(H5FC_PP) +# $(H5FC_PP) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; +$(EXTRA_PROG): $(H5FC) + $(H5FC) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; + +# How to create EXAMPLEDIR if it doesn't already exist +$(EXAMPLEDIR): + -$(top_srcdir)/bin/mkdirs $@ +$(EXAMPLETOPDIR): + -$(top_srcdir)/bin/mkdirs $@ + +# Install and uninstall rules. We install the source files, not the +# example programs themselves. +install-data-local: + @$(MAKE) $(AM_MAKEFLAGS) install-examples +uninstall-local: + @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples + +install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) + @for f in X $(INSTALL_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ + chmod a-x $(EXAMPLEDIR)/$$f; \ + fi; \ + done + @for f in X $(INSTALL_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ + fi; \ + done + @for f in X $(INSTALL_TOP_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + chmod a-x $(EXAMPLETOPDIR)/$$f;\ + fi; \ + done + @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ + if test $$f != X; then \ + (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ + fi; \ + done + +uninstall-examples: + @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ + fi + @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ + set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ + fi + @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ + fi + @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ + set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ + fi + +installcheck-local: + @if test "$(STATIC_SHARED)" = "static, shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + $(MAKE) $(AM_MAKEFLAGS) clean; \ + H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ + elif test "$(STATIC_SHARED)" = "shared"; then \ + H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + fi + @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ + echo "============================"; \ + echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ + echo "============================"; \ + (cd $(EXAMPLEDIR); \ + /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ + fi +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# List dependencies for each example. Normally, automake would take +# care of this for us, but if we tell automake about the programs it +# will try to build them with the normal C compiler, not h5cc. This is +# an inelegant way of solving the problem. +# All programs share the same build rule and a dependency on the main hdf5 +# and fortran libraries above. + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/fortran/examples/run-hlfortran-ex.sh b/build/hl/fortran/examples/run-hlfortran-ex.sh new file mode 100644 index 0000000..16ba469 --- /dev/null +++ b/build/hl/fortran/examples/run-hlfortran-ex.sh @@ -0,0 +1,84 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# This file: run-hlfortran-ex.sh +# Written by: Larry Knox +# Date: May 11, 2010 +# +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +# # +# This script will compile and run the fortran examples from source files # +# installed in .../share/hdf5_examples/hl/fortran using h5fc or h5pfc. The # +# order for running programs with RunTest in the MAIN section below is taken # +# from the Makefile. The order is important since some of the test programs # +# use data files created by earlier test programs. Any future additions should # +# be placed accordingly. # +# # +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # + +# Initializations +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Where the tool is installed. +# default is relative path to installed location of the tools +prefix="${prefix:-../../../../}" +PARALLEL=no # Am I in parallel mode? +AR="ar" +RANLIB="ranlib" +if [ "$PARALLEL" = no ]; then + H5TOOL="h5fc" # The tool name +else + H5TOOL="h5pfc" # The tool name +fi +H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary + +#### Run test #### +RunTest() +{ + TEST_EXEC=$1 + Test=$1".f90" + + echo + echo "################# $1 #################" + ${H5TOOL_BIN} -o $TEST_EXEC $Test + if [ $? -ne 0 ] + then + echo "messed up compiling $Test" + exit 1 + fi + ./$TEST_EXEC +} + + + +################## MAIN ################## + +# Run tests +if [ $? -eq 0 ] +then + if (RunTest exlite &&\ + rm exlite); then + EXIT_VALUE=${EXIT_SUCCESS} + else + EXIT_VALUE=${EXIT_FAILURE} + fi +fi + +# Cleanup +rm *.o +rm *.h5 +echo + +exit $EXIT_VALUE + diff --git a/build/hl/fortran/src/.deps/H5DSfc.Plo b/build/hl/fortran/src/.deps/H5DSfc.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/fortran/src/.deps/H5DSfc.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/fortran/src/.deps/H5IMcc.Plo b/build/hl/fortran/src/.deps/H5IMcc.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/fortran/src/.deps/H5IMcc.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/fortran/src/.deps/H5IMfc.Plo b/build/hl/fortran/src/.deps/H5IMfc.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/fortran/src/.deps/H5IMfc.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/fortran/src/.deps/H5LTfc.Plo b/build/hl/fortran/src/.deps/H5LTfc.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/fortran/src/.deps/H5LTfc.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/fortran/src/.deps/H5TBfc.Plo b/build/hl/fortran/src/.deps/H5TBfc.Plo new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/fortran/src/.deps/H5TBfc.Plo @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/fortran/src/Makefile b/build/hl/fortran/src/Makefile new file mode 100644 index 0000000..bf476e7 --- /dev/null +++ b/build/hl/fortran/src/Makefile @@ -0,0 +1,1512 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/fortran/src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# +# HDF5 High-Level Fortran Makefile(.in) + +VPATH = ../../../../hl/fortran/src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Some Fortran compilers can't build shared libraries, so sometimes we +# want to build a shared C library and a static Fortran library. If so, +# pass the -static flag to the library linker. +am__append_1 = -static +TESTS = +subdir = hl/fortran/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5hl_fortran_la_DEPENDENCIES = $(LIBH5_HL) $(LIBH5F) +am_libhdf5hl_fortran_la_OBJECTS = H5DSfc.lo H5LTfc.lo H5IMfc.lo \ + H5IMcc.lo H5TBfc.lo H5DSff.lo H5LTff.lo H5IMff.lo H5TBff.lo +libhdf5hl_fortran_la_OBJECTS = $(am_libhdf5hl_fortran_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5hl_fortran_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ + $(AM_FCFLAGS) $(FCFLAGS) $(libhdf5hl_fortran_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) +LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) +AM_V_FC = $(am__v_FC_$(V)) +am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) +am__v_FC_0 = @echo " FC " $@; +am__v_FC_1 = +FCLD = $(FC) +FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_FCLD = $(am__v_FCLD_$(V)) +am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_FCLD_0 = @echo " FCLD " $@; +am__v_FCLD_1 = +SOURCES = $(libhdf5hl_fortran_la_SOURCES) +DIST_SOURCES = $(libhdf5hl_fortran_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/hl/src -I$(top_builddir)/hl/src \ + -I$(top_srcdir)/fortran/src -I$(top_builddir)/fortran/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = -I$(top_builddir)/fortran/src \ + $(F9XMODFLAG)$(top_builddir)/fortran/src +AM_LDFLAGS = $(am__append_1) +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/fortran/src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 + +# Our main target, the high-level fortran library +lib_LTLIBRARIES = libhdf5hl_fortran.la + +# Add libtool numbers to the HDF5 HL Fortran library (from config/lt_vers.am) +libhdf5hl_fortran_la_LDFLAGS = -version-info $(LT_HL_F_VERS_INTERFACE):$(LT_HL_F_VERS_REVISION):$(LT_HL_F_VERS_AGE) $(AM_LDFLAGS) + +# Source files for the library +#if BUILD_PARALLEL_CONDITIONAL +# PARALLEL_COND_SRC=HDFDmpiof.c HDF5mpio.f90 +#endif + +# List sources to include in the HDF5 HL Fortran library. +libhdf5hl_fortran_la_SOURCES = H5DSfc.c H5LTfc.c H5IMfc.c H5IMcc.c H5TBfc.c \ + H5DSff.f90 H5LTff.f90 H5IMff.f90 H5TBff.f90 + + +# HDF5 HL Fortran library depends on HDF5 Library. +libhdf5hl_fortran_la_LIBADD = $(LIBH5_HL) $(LIBH5F) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/fortran/src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5hl_fortran.la: $(libhdf5hl_fortran_la_OBJECTS) $(libhdf5hl_fortran_la_DEPENDENCIES) $(EXTRA_libhdf5hl_fortran_la_DEPENDENCIES) + $(AM_V_FCLD)$(libhdf5hl_fortran_la_LINK) -rpath $(libdir) $(libhdf5hl_fortran_la_OBJECTS) $(libhdf5hl_fortran_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5DSfc.Plo +include ./$(DEPDIR)/H5IMcc.Plo +include ./$(DEPDIR)/H5IMfc.Plo +include ./$(DEPDIR)/H5LTfc.Plo +include ./$(DEPDIR)/H5TBfc.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +.f90.o: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +.f90.obj: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` + +.f90.lo: + $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-local cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am uninstall-libLTLIBRARIES \ + uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Fortran module files can have different extensions and different names +# (e.g., different capitalizations) on different platforms. Write rules +# for them explicitly rather than trying to teach automake about them. +# They should be installed as headers and removed during clean. +maintainer-clean-local: clean-local +distclean-local: clean-local +clean-local: + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + $(RM) *.$(F9XMODEXT); \ + fi + +install-data-local: + @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ + $(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \ + fi + +uninstall-local: + @if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \ + if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(DESTDIR)$(includedir)/HDF5.$(F9XMODEXT)"; then \ + set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ + fi; \ + fi + +# Hardcode the dependencies of these files. There isn't a known way of +# determining this automagically (like we do with the C files). So, when +# doing a parallel make, some modules could be made way before the +# modules they depend upon are actually made. *sigh* +H5DSff.lo: $(srcdir)/H5DSff.f90 +H5LTff.lo: $(srcdir)/H5LTff.f90 +H5IMff.lo: $(srcdir)/H5IMff.f90 +H5TBff.lo: $(srcdir)/H5TBff.f90 +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/fortran/test/Makefile b/build/hl/fortran/test/Makefile new file mode 100644 index 0000000..58307df --- /dev/null +++ b/build/hl/fortran/test/Makefile @@ -0,0 +1,1422 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/fortran/test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# +# HDF5 High-Level Fortran Makefile(.in) +VPATH = ../../../../hl/fortran/test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu + +# Some Fortran compilers can't build shared libraries, so sometimes we +# need to make sure the Fortran programs link against the static version +# of the HDF5 library. We do this by passing the -static flag to the linker. +am__append_1 = -static +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = $(am__EXEEXT_1) +subdir = hl/fortran/test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = tstds$(EXEEXT) tstlite$(EXEEXT) tstimage$(EXEEXT) \ + tsttable$(EXEEXT) +am_tstds_OBJECTS = tstds.$(OBJEXT) +tstds_OBJECTS = $(am_tstds_OBJECTS) +tstds_LDADD = $(LDADD) +tstds_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +am_tstimage_OBJECTS = tstimage.$(OBJEXT) +tstimage_OBJECTS = $(am_tstimage_OBJECTS) +tstimage_LDADD = $(LDADD) +tstimage_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) +am_tstlite_OBJECTS = tstlite.$(OBJEXT) +tstlite_OBJECTS = $(am_tstlite_OBJECTS) +tstlite_LDADD = $(LDADD) +tstlite_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) +am_tsttable_OBJECTS = tsttable.$(OBJEXT) +tsttable_OBJECTS = $(am_tsttable_OBJECTS) +tsttable_LDADD = $(LDADD) +tsttable_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) +LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) +AM_V_FC = $(am__v_FC_$(V)) +am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) +am__v_FC_0 = @echo " FC " $@; +am__v_FC_1 = +FCLD = $(FC) +FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_FCLD = $(am__v_FCLD_$(V)) +am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_FCLD_0 = @echo " FCLD " $@; +am__v_FCLD_1 = +SOURCES = $(tstds_SOURCES) $(tstimage_SOURCES) $(tstlite_SOURCES) \ + $(tsttable_SOURCES) +DIST_SOURCES = $(tstds_SOURCES) $(tstimage_SOURCES) $(tstlite_SOURCES) \ + $(tsttable_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_builddir)/src -I$(top_srcdir)/hl/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = -I$(top_builddir)/fortran/src \ + -I$(top_builddir)/hl/fortran/src \ + $(F9XMODFLAG)$(top_builddir)/fortran/src \ + $(F9XMODFLAG)$(top_builddir)/hl/fortran/src +AM_LDFLAGS = $(am__append_1) +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/fortran/test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 dsetf[1-5].h5 \ + f1img.h5 f1tab.h5 tstds.h5 + +# Our main target, the test programs +TEST_PROG = tstds tstlite tstimage tsttable +LDADD = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) + +# Source files for the programs +tstds_SOURCES = tstds.f90 +tstlite_SOURCES = tstlite.f90 +tstimage_SOURCES = tstimage.f90 +tsttable_SOURCES = tsttable.f90 + +# Mark this directory as part of the Fortran API (this affects output +# from tests in conclude.am) +FORTRAN_API = yes + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/fortran/test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +tstds$(EXEEXT): $(tstds_OBJECTS) $(tstds_DEPENDENCIES) $(EXTRA_tstds_DEPENDENCIES) + @rm -f tstds$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(tstds_OBJECTS) $(tstds_LDADD) $(LIBS) + +tstimage$(EXEEXT): $(tstimage_OBJECTS) $(tstimage_DEPENDENCIES) $(EXTRA_tstimage_DEPENDENCIES) + @rm -f tstimage$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(tstimage_OBJECTS) $(tstimage_LDADD) $(LIBS) + +tstlite$(EXEEXT): $(tstlite_OBJECTS) $(tstlite_DEPENDENCIES) $(EXTRA_tstlite_DEPENDENCIES) + @rm -f tstlite$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(tstlite_OBJECTS) $(tstlite_LDADD) $(LIBS) + +tsttable$(EXEEXT): $(tsttable_OBJECTS) $(tsttable_DEPENDENCIES) $(EXTRA_tsttable_DEPENDENCIES) + @rm -f tsttable$(EXEEXT) + $(AM_V_FCLD)$(FCLINK) $(tsttable_OBJECTS) $(tsttable_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +.f90.o: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +.f90.obj: + $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` + +.f90.lo: + $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +tstds.log: tstds$(EXEEXT) + @p='tstds$(EXEEXT)'; \ + b='tstds'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +tstlite.log: tstlite$(EXEEXT) + @p='tstlite$(EXEEXT)'; \ + b='tstlite'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +tstimage.log: tstimage$(EXEEXT) + @p='tstimage$(EXEEXT)'; \ + b='tstimage'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +tsttable.log: tsttable$(EXEEXT) + @p='tsttable$(EXEEXT)'; \ + b='tsttable'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/src/.deps/H5DO.Plo b/build/hl/src/.deps/H5DO.Plo new file mode 100644 index 0000000..d1ca219 --- /dev/null +++ b/build/hl/src/.deps/H5DO.Plo @@ -0,0 +1,370 @@ +H5DO.lo: ../../../hl/src/H5DO.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/assert.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../hl/src/hdf5_hl.h \ + ../../../hl/src/H5DOpublic.h ../../../hl/src/H5DSpublic.h \ + ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ + ../../../hl/src/H5TBpublic.h ../../../hl/src/H5PTpublic.h \ + ../../../src/H5private.h /usr/include/ctype.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/assert.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/hl/src/.deps/H5DS.Plo b/build/hl/src/.deps/H5DS.Plo new file mode 100644 index 0000000..def0da7 --- /dev/null +++ b/build/hl/src/.deps/H5DS.Plo @@ -0,0 +1,379 @@ +H5DS.lo: ../../../hl/src/H5DS.c /usr/include/stdc-predef.h \ + /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/src/H5DSprivate.h \ + ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ + /usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5LTprivate.h \ + ../../../hl/src/H5IMprivate.h ../../../hl/src/H5TBprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/assert.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/stdlib.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/src/H5DSprivate.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5LTprivate.h: + +../../../hl/src/H5IMprivate.h: + +../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.deps/H5IM.Plo b/build/hl/src/.deps/H5IM.Plo new file mode 100644 index 0000000..b012d41 --- /dev/null +++ b/build/hl/src/.deps/H5IM.Plo @@ -0,0 +1,375 @@ +H5IM.lo: ../../../hl/src/H5IM.c /usr/include/stdc-predef.h \ + ../../../hl/src/H5IMprivate.h ../../../hl/src/H5HLprivate2.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/xlocale.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5LTprivate.h + +/usr/include/stdc-predef.h: + +../../../hl/src/H5IMprivate.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5LTprivate.h: diff --git a/build/hl/src/.deps/H5LT.Plo b/build/hl/src/.deps/H5LT.Plo new file mode 100644 index 0000000..318c2d6 --- /dev/null +++ b/build/hl/src/.deps/H5LT.Plo @@ -0,0 +1,373 @@ +H5LT.lo: ../../../hl/src/H5LT.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/assert.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../hl/src/H5LTprivate.h ../../../hl/src/H5HLprivate2.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../hl/src/hdf5_hl.h \ + ../../../hl/src/H5DOpublic.h ../../../hl/src/H5DSpublic.h \ + ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ + ../../../hl/src/H5TBpublic.h ../../../hl/src/H5PTpublic.h \ + ../../../src/H5private.h /usr/include/ctype.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/assert.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../hl/src/H5LTprivate.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/hl/src/.deps/H5LTanalyze.Plo b/build/hl/src/.deps/H5LTanalyze.Plo new file mode 100644 index 0000000..16174b4 --- /dev/null +++ b/build/hl/src/.deps/H5LTanalyze.Plo @@ -0,0 +1,217 @@ +H5LTanalyze.lo: ../../../hl/src/H5LTanalyze.c /usr/include/stdc-predef.h \ + /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h /usr/include/xlocale.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../hl/src/H5LTparse.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/inttypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/H5LTparse.h: diff --git a/build/hl/src/.deps/H5LTparse.Plo b/build/hl/src/.deps/H5LTparse.Plo new file mode 100644 index 0000000..229e46b --- /dev/null +++ b/build/hl/src/.deps/H5LTparse.Plo @@ -0,0 +1,188 @@ +H5LTparse.lo: ../../../hl/src/H5LTparse.c /usr/include/stdc-predef.h \ + /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h /usr/include/xlocale.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/hl/src/.deps/H5PT.Plo b/build/hl/src/.deps/H5PT.Plo new file mode 100644 index 0000000..93082ee --- /dev/null +++ b/build/hl/src/.deps/H5PT.Plo @@ -0,0 +1,374 @@ +H5PT.lo: ../../../hl/src/H5PT.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + ../../../hl/src/H5PTprivate.h ../../../hl/src/H5HLprivate2.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5TBprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../hl/src/H5PTprivate.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.deps/H5TB.Plo b/build/hl/src/.deps/H5TB.Plo new file mode 100644 index 0000000..c0914c7 --- /dev/null +++ b/build/hl/src/.deps/H5TB.Plo @@ -0,0 +1,374 @@ +H5TB.lo: ../../../hl/src/H5TB.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/src/H5LTprivate.h \ + ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5TBprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/src/H5LTprivate.h: + +../../../hl/src/H5HLprivate2.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.libs/H5DO.o b/build/hl/src/.libs/H5DO.o new file mode 100644 index 0000000..b013f06 Binary files /dev/null and b/build/hl/src/.libs/H5DO.o differ diff --git a/build/hl/src/.libs/H5DS.o b/build/hl/src/.libs/H5DS.o new file mode 100644 index 0000000..4b06910 Binary files /dev/null and b/build/hl/src/.libs/H5DS.o differ diff --git a/build/hl/src/.libs/H5IM.o b/build/hl/src/.libs/H5IM.o new file mode 100644 index 0000000..8dbf67b Binary files /dev/null and b/build/hl/src/.libs/H5IM.o differ diff --git a/build/hl/src/.libs/H5LT.o b/build/hl/src/.libs/H5LT.o new file mode 100644 index 0000000..1d0674a Binary files /dev/null and b/build/hl/src/.libs/H5LT.o differ diff --git a/build/hl/src/.libs/H5LTanalyze.o b/build/hl/src/.libs/H5LTanalyze.o new file mode 100644 index 0000000..7f8f4f5 Binary files /dev/null and b/build/hl/src/.libs/H5LTanalyze.o differ diff --git a/build/hl/src/.libs/H5LTparse.o b/build/hl/src/.libs/H5LTparse.o new file mode 100644 index 0000000..7be2a2a Binary files /dev/null and b/build/hl/src/.libs/H5LTparse.o differ diff --git a/build/hl/src/.libs/H5PT.o b/build/hl/src/.libs/H5PT.o new file mode 100644 index 0000000..c90a06f Binary files /dev/null and b/build/hl/src/.libs/H5PT.o differ diff --git a/build/hl/src/.libs/H5TB.o b/build/hl/src/.libs/H5TB.o new file mode 100644 index 0000000..e8bd5a6 Binary files /dev/null and b/build/hl/src/.libs/H5TB.o differ diff --git a/build/hl/src/.libs/libhdf5_hl.a b/build/hl/src/.libs/libhdf5_hl.a new file mode 100644 index 0000000..659f734 Binary files /dev/null and b/build/hl/src/.libs/libhdf5_hl.a differ diff --git a/build/hl/src/.libs/libhdf5_hl.la b/build/hl/src/.libs/libhdf5_hl.la new file mode 120000 index 0000000..ba90d06 --- /dev/null +++ b/build/hl/src/.libs/libhdf5_hl.la @@ -0,0 +1 @@ +../libhdf5_hl.la \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.lai b/build/hl/src/.libs/libhdf5_hl.lai new file mode 100644 index 0000000..962397c --- /dev/null +++ b/build/hl/src/.libs/libhdf5_hl.lai @@ -0,0 +1,41 @@ +# libhdf5_hl.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libhdf5_hl.so.10' + +# Names of this library. +library_names='libhdf5_hl.so.10.2.2 libhdf5_hl.so.10 libhdf5_hl.so' + +# The name of the static archive. +old_library='libhdf5_hl.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib/libhdf5.la -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libhdf5_hl. +current=12 +age=2 +revision=2 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' diff --git a/build/hl/src/.libs/libhdf5_hl.so b/build/hl/src/.libs/libhdf5_hl.so new file mode 120000 index 0000000..81effd8 --- /dev/null +++ b/build/hl/src/.libs/libhdf5_hl.so @@ -0,0 +1 @@ +libhdf5_hl.so.10.2.2 \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.so.10 b/build/hl/src/.libs/libhdf5_hl.so.10 new file mode 120000 index 0000000..81effd8 --- /dev/null +++ b/build/hl/src/.libs/libhdf5_hl.so.10 @@ -0,0 +1 @@ +libhdf5_hl.so.10.2.2 \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.so.10.2.2 b/build/hl/src/.libs/libhdf5_hl.so.10.2.2 new file mode 100755 index 0000000..cfd22d3 Binary files /dev/null and b/build/hl/src/.libs/libhdf5_hl.so.10.2.2 differ diff --git a/build/hl/src/H5DO.lo b/build/hl/src/H5DO.lo new file mode 100644 index 0000000..c58fdf0 --- /dev/null +++ b/build/hl/src/H5DO.lo @@ -0,0 +1,12 @@ +# H5DO.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5DO.o' + +# Name of the non-PIC object +non_pic_object='H5DO.o' + diff --git a/build/hl/src/H5DO.o b/build/hl/src/H5DO.o new file mode 100644 index 0000000..abd6357 Binary files /dev/null and b/build/hl/src/H5DO.o differ diff --git a/build/hl/src/H5DS.lo b/build/hl/src/H5DS.lo new file mode 100644 index 0000000..cfd6ab4 --- /dev/null +++ b/build/hl/src/H5DS.lo @@ -0,0 +1,12 @@ +# H5DS.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5DS.o' + +# Name of the non-PIC object +non_pic_object='H5DS.o' + diff --git a/build/hl/src/H5DS.o b/build/hl/src/H5DS.o new file mode 100644 index 0000000..3c37468 Binary files /dev/null and b/build/hl/src/H5DS.o differ diff --git a/build/hl/src/H5IM.lo b/build/hl/src/H5IM.lo new file mode 100644 index 0000000..5dae021 --- /dev/null +++ b/build/hl/src/H5IM.lo @@ -0,0 +1,12 @@ +# H5IM.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5IM.o' + +# Name of the non-PIC object +non_pic_object='H5IM.o' + diff --git a/build/hl/src/H5IM.o b/build/hl/src/H5IM.o new file mode 100644 index 0000000..1b98227 Binary files /dev/null and b/build/hl/src/H5IM.o differ diff --git a/build/hl/src/H5LT.lo b/build/hl/src/H5LT.lo new file mode 100644 index 0000000..6b566db --- /dev/null +++ b/build/hl/src/H5LT.lo @@ -0,0 +1,12 @@ +# H5LT.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5LT.o' + +# Name of the non-PIC object +non_pic_object='H5LT.o' + diff --git a/build/hl/src/H5LT.o b/build/hl/src/H5LT.o new file mode 100644 index 0000000..c6951bd Binary files /dev/null and b/build/hl/src/H5LT.o differ diff --git a/build/hl/src/H5LTanalyze.lo b/build/hl/src/H5LTanalyze.lo new file mode 100644 index 0000000..92b84ef --- /dev/null +++ b/build/hl/src/H5LTanalyze.lo @@ -0,0 +1,12 @@ +# H5LTanalyze.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5LTanalyze.o' + +# Name of the non-PIC object +non_pic_object='H5LTanalyze.o' + diff --git a/build/hl/src/H5LTanalyze.o b/build/hl/src/H5LTanalyze.o new file mode 100644 index 0000000..8b9a33f Binary files /dev/null and b/build/hl/src/H5LTanalyze.o differ diff --git a/build/hl/src/H5LTparse.lo b/build/hl/src/H5LTparse.lo new file mode 100644 index 0000000..3dc61cd --- /dev/null +++ b/build/hl/src/H5LTparse.lo @@ -0,0 +1,12 @@ +# H5LTparse.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5LTparse.o' + +# Name of the non-PIC object +non_pic_object='H5LTparse.o' + diff --git a/build/hl/src/H5LTparse.o b/build/hl/src/H5LTparse.o new file mode 100644 index 0000000..59977ba Binary files /dev/null and b/build/hl/src/H5LTparse.o differ diff --git a/build/hl/src/H5PT.lo b/build/hl/src/H5PT.lo new file mode 100644 index 0000000..7db4918 --- /dev/null +++ b/build/hl/src/H5PT.lo @@ -0,0 +1,12 @@ +# H5PT.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5PT.o' + +# Name of the non-PIC object +non_pic_object='H5PT.o' + diff --git a/build/hl/src/H5PT.o b/build/hl/src/H5PT.o new file mode 100644 index 0000000..2fed1d6 Binary files /dev/null and b/build/hl/src/H5PT.o differ diff --git a/build/hl/src/H5TB.lo b/build/hl/src/H5TB.lo new file mode 100644 index 0000000..56f602c --- /dev/null +++ b/build/hl/src/H5TB.lo @@ -0,0 +1,12 @@ +# H5TB.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5TB.o' + +# Name of the non-PIC object +non_pic_object='H5TB.o' + diff --git a/build/hl/src/H5TB.o b/build/hl/src/H5TB.o new file mode 100644 index 0000000..cde2367 Binary files /dev/null and b/build/hl/src/H5TB.o differ diff --git a/build/hl/src/Makefile b/build/hl/src/Makefile new file mode 100644 index 0000000..663e1a8 --- /dev/null +++ b/build/hl/src/Makefile @@ -0,0 +1,1469 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 High-Level Library Makefile(.in) +# + + +VPATH = ../../../hl/src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5_hl_la_DEPENDENCIES = $(LIBHDF5) +am_libhdf5_hl_la_OBJECTS = H5DO.lo H5DS.lo H5IM.lo H5LT.lo \ + H5LTanalyze.lo H5LTparse.lo H5PT.lo H5TB.lo +libhdf5_hl_la_OBJECTS = $(am_libhdf5_hl_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5_hl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libhdf5_hl_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libhdf5_hl_la_SOURCES) +DIST_SOURCES = $(libhdf5_hl_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Add include directories to the C preprocessor flags +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 + +# This library is our main target. +lib_LTLIBRARIES = libhdf5_hl.la + +# Add libtool numbers to the HDF5 hl library (from config/lt_vers.am) +libhdf5_hl_la_LDFLAGS = -version-info $(LT_HL_VERS_INTERFACE):$(LT_HL_VERS_REVISION):$(LT_HL_VERS_AGE) $(AM_LDFLAGS) + +# List sources to include in the HDF5 HL Library. +libhdf5_hl_la_SOURCES = H5DO.c H5DS.c H5IM.c H5LT.c H5LTanalyze.c H5LTparse.c H5PT.c H5TB.c + +# HDF5 HL library depends on HDF5 Library. +libhdf5_hl_la_LIBADD = $(LIBHDF5) + +# Public header files (to be installed) +include_HEADERS = hdf5_hl.h H5DOpublic.h H5IMpublic.h H5LTpublic.h H5TBpublic.h H5DSpublic.h H5PTpublic.h + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5_hl.la: $(libhdf5_hl_la_OBJECTS) $(libhdf5_hl_la_DEPENDENCIES) $(EXTRA_libhdf5_hl_la_DEPENDENCIES) + $(AM_V_CCLD)$(libhdf5_hl_la_LINK) -rpath $(libdir) $(libhdf5_hl_la_OBJECTS) $(libhdf5_hl_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5DO.Plo +include ./$(DEPDIR)/H5DS.Plo +include ./$(DEPDIR)/H5IM.Plo +include ./$(DEPDIR)/H5LT.Plo +include ./$(DEPDIR)/H5LTanalyze.Plo +include ./$(DEPDIR)/H5LTparse.Plo +include ./$(DEPDIR)/H5PT.Plo +include ./$(DEPDIR)/H5TB.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-includeHEADERS install-info \ + install-info-am install-libLTLIBRARIES install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/src/libhdf5_hl.la b/build/hl/src/libhdf5_hl.la new file mode 100644 index 0000000..71598e5 --- /dev/null +++ b/build/hl/src/libhdf5_hl.la @@ -0,0 +1,42 @@ +# libhdf5_hl.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libhdf5_hl.so.10' + +# Names of this library. +library_names='libhdf5_hl.so.10.2.2 libhdf5_hl.so.10 libhdf5_hl.so' + +# The name of the static archive. +old_library='libhdf5_hl.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libhdf5_hl. +current=12 +age=2 +revision=2 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/src; /bin/sh \"/mnt/wrk/lrknox/hdf5_hdf5/build/libtool\" --silent --tag CC --mode=relink gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -version-info 12:2:2 -o libhdf5_hl.la -rpath /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib H5DO.lo H5DS.lo H5IM.lo H5LT.lo H5LTanalyze.lo H5LTparse.lo H5PT.lo H5TB.lo ../../src/libhdf5.la -lz -ldl -lm @inst_prefix_dir@)" diff --git a/build/hl/test/.deps/gen_test_ds.Po b/build/hl/test/.deps/gen_test_ds.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/hl/test/.deps/gen_test_ds.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/hl/test/.deps/test_ds.Po b/build/hl/test/.deps/test_ds.Po new file mode 100644 index 0000000..2324b0d --- /dev/null +++ b/build/hl/test/.deps/test_ds.Po @@ -0,0 +1,387 @@ +test_ds.o: ../../../hl/test/test_ds.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: diff --git a/build/hl/test/.deps/test_dset_opt.Po b/build/hl/test/.deps/test_dset_opt.Po new file mode 100644 index 0000000..54475c3 --- /dev/null +++ b/build/hl/test/.deps/test_dset_opt.Po @@ -0,0 +1,386 @@ +test_dset_opt.o: ../../../hl/test/test_dset_opt.c \ + /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ + ../../../hl/src/H5DOpublic.h /usr/include/zlib.h /usr/include/zconf.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../../hl/src/H5DOpublic.h: + +/usr/include/zlib.h: + +/usr/include/zconf.h: diff --git a/build/hl/test/.deps/test_file_image.Po b/build/hl/test/.deps/test_file_image.Po new file mode 100644 index 0000000..61c44aa --- /dev/null +++ b/build/hl/test/.deps/test_file_image.Po @@ -0,0 +1,377 @@ +test_file_image.o: ../../../hl/test/test_file_image.c \ + /usr/include/stdc-predef.h ../../../hl/test/h5hltest.h \ + ../../../test/h5test.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../hl/src/H5LTpublic.h + +/usr/include/stdc-predef.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../hl/src/H5LTpublic.h: diff --git a/build/hl/test/.deps/test_image.Po b/build/hl/test/.deps/test_image.Po new file mode 100644 index 0000000..2958342 --- /dev/null +++ b/build/hl/test/.deps/test_image.Po @@ -0,0 +1,386 @@ +test_image.o: ../../../hl/test/test_image.c /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ + ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ + ../../../hl/test/pal_rgb.h + +/usr/include/stdc-predef.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/stdlib.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/test/pal_rgb.h: diff --git a/build/hl/test/.deps/test_lite.Po b/build/hl/test/.deps/test_lite.Po new file mode 100644 index 0000000..f4b9d41 --- /dev/null +++ b/build/hl/test/.deps/test_lite.Po @@ -0,0 +1,382 @@ +test_lite.o: ../../../hl/test/test_lite.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ + ../../../hl/src/H5LTpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../../hl/src/H5LTpublic.h: diff --git a/build/hl/test/.deps/test_packet.Po b/build/hl/test/.deps/test_packet.Po new file mode 100644 index 0000000..04b5b9d --- /dev/null +++ b/build/hl/test/.deps/test_packet.Po @@ -0,0 +1,380 @@ +test_packet.o: ../../../hl/test/test_packet.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../hl/src/H5PTpublic.h \ + ../../../hl/src/H5TBpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../hl/src/H5TBpublic.h: diff --git a/build/hl/test/.deps/test_packet_vlen.Po b/build/hl/test/.deps/test_packet_vlen.Po new file mode 100644 index 0000000..e6cf0b5 --- /dev/null +++ b/build/hl/test/.deps/test_packet_vlen.Po @@ -0,0 +1,375 @@ +test_packet_vlen.o: ../../../hl/test/test_packet_vlen.c \ + /usr/include/stdc-predef.h ../../../hl/test/h5hltest.h \ + ../../../test/h5test.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h + +/usr/include/stdc-predef.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: diff --git a/build/hl/test/.deps/test_table.Po b/build/hl/test/.deps/test_table.Po new file mode 100644 index 0000000..f580ca2 --- /dev/null +++ b/build/hl/test/.deps/test_table.Po @@ -0,0 +1,382 @@ +test_table.o: ../../../hl/test/test_table.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ + ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ + ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ + ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ + ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ + ../../../hl/src/H5TBpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../hl/test/h5hltest.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../hl/src/H5HLprivate2.h: + +../../../hl/src/hdf5_hl.h: + +../../../hl/src/H5DOpublic.h: + +../../../hl/src/H5DSpublic.h: + +../../../hl/src/H5LTpublic.h: + +../../../hl/src/H5IMpublic.h: + +../../../hl/src/H5TBpublic.h: + +../../../hl/src/H5PTpublic.h: + +../../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../../hl/src/H5TBpublic.h: diff --git a/build/hl/test/.libs/lt-test_ds b/build/hl/test/.libs/lt-test_ds new file mode 100755 index 0000000..4e21ed1 Binary files /dev/null and b/build/hl/test/.libs/lt-test_ds differ diff --git a/build/hl/test/.libs/lt-test_dset_opt b/build/hl/test/.libs/lt-test_dset_opt new file mode 100755 index 0000000..a3fc26c Binary files /dev/null and b/build/hl/test/.libs/lt-test_dset_opt differ diff --git a/build/hl/test/.libs/lt-test_file_image b/build/hl/test/.libs/lt-test_file_image new file mode 100755 index 0000000..859271f Binary files /dev/null and b/build/hl/test/.libs/lt-test_file_image differ diff --git a/build/hl/test/.libs/lt-test_image b/build/hl/test/.libs/lt-test_image new file mode 100755 index 0000000..3550ce2 Binary files /dev/null and b/build/hl/test/.libs/lt-test_image differ diff --git a/build/hl/test/.libs/lt-test_lite b/build/hl/test/.libs/lt-test_lite new file mode 100755 index 0000000..066a8ad Binary files /dev/null and b/build/hl/test/.libs/lt-test_lite differ diff --git a/build/hl/test/.libs/lt-test_packet b/build/hl/test/.libs/lt-test_packet new file mode 100755 index 0000000..7322daa Binary files /dev/null and b/build/hl/test/.libs/lt-test_packet differ diff --git a/build/hl/test/.libs/lt-test_table b/build/hl/test/.libs/lt-test_table new file mode 100755 index 0000000..d522c01 Binary files /dev/null and b/build/hl/test/.libs/lt-test_table differ diff --git a/build/hl/test/.libs/test_ds b/build/hl/test/.libs/test_ds new file mode 100755 index 0000000..75303e1 Binary files /dev/null and b/build/hl/test/.libs/test_ds differ diff --git a/build/hl/test/.libs/test_dset_opt b/build/hl/test/.libs/test_dset_opt new file mode 100755 index 0000000..d0bfa5e Binary files /dev/null and b/build/hl/test/.libs/test_dset_opt differ diff --git a/build/hl/test/.libs/test_file_image b/build/hl/test/.libs/test_file_image new file mode 100755 index 0000000..5e8675e Binary files /dev/null and b/build/hl/test/.libs/test_file_image differ diff --git a/build/hl/test/.libs/test_image b/build/hl/test/.libs/test_image new file mode 100755 index 0000000..e351401 Binary files /dev/null and b/build/hl/test/.libs/test_image differ diff --git a/build/hl/test/.libs/test_lite b/build/hl/test/.libs/test_lite new file mode 100755 index 0000000..ccb6712 Binary files /dev/null and b/build/hl/test/.libs/test_lite differ diff --git a/build/hl/test/.libs/test_packet b/build/hl/test/.libs/test_packet new file mode 100755 index 0000000..e06bb57 Binary files /dev/null and b/build/hl/test/.libs/test_packet differ diff --git a/build/hl/test/.libs/test_table b/build/hl/test/.libs/test_table new file mode 100755 index 0000000..452b958 Binary files /dev/null and b/build/hl/test/.libs/test_table differ diff --git a/build/hl/test/H5srcdir_str.h b/build/hl/test/H5srcdir_str.h new file mode 100644 index 0000000..b5749cf --- /dev/null +++ b/build/hl/test/H5srcdir_str.h @@ -0,0 +1,20 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/* If you are reading this file and it has a '.h' suffix, it was automatically + * generated from the '.in' version. Make changes there. + */ + +/* Set the 'srcdir' path from configure time */ +static const char *config_srcdir = "../../../hl/test"; + diff --git a/build/hl/test/Makefile b/build/hl/test/Makefile new file mode 100644 index 0000000..f422e3d --- /dev/null +++ b/build/hl/test/Makefile @@ -0,0 +1,1529 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# +# +# HDF5 High-Level Test Makefile(.in) +# + +VPATH = ../../../hl/test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +#noinst_PROGRAMS = $(am__EXEEXT_2) +TESTS = $(am__EXEEXT_1) +subdir = hl/test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = H5srcdir_str.h +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = test_lite$(EXEEXT) test_image$(EXEEXT) \ + test_file_image$(EXEEXT) test_table$(EXEEXT) test_ds$(EXEEXT) \ + test_packet$(EXEEXT) test_dset_opt$(EXEEXT) +am__EXEEXT_2 = gen_test_ds$(EXEEXT) +PROGRAMS = $(noinst_PROGRAMS) +gen_test_ds_SOURCES = gen_test_ds.c +gen_test_ds_OBJECTS = gen_test_ds.$(OBJEXT) +gen_test_ds_LDADD = $(LDADD) +gen_test_ds_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +test_ds_SOURCES = test_ds.c +test_ds_OBJECTS = test_ds.$(OBJEXT) +test_ds_LDADD = $(LDADD) +test_ds_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +test_dset_opt_SOURCES = test_dset_opt.c +test_dset_opt_OBJECTS = test_dset_opt.$(OBJEXT) +test_dset_opt_LDADD = $(LDADD) +test_dset_opt_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +test_file_image_SOURCES = test_file_image.c +test_file_image_OBJECTS = test_file_image.$(OBJEXT) +test_file_image_LDADD = $(LDADD) +test_file_image_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +test_image_SOURCES = test_image.c +test_image_OBJECTS = test_image.$(OBJEXT) +test_image_LDADD = $(LDADD) +test_image_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +test_lite_SOURCES = test_lite.c +test_lite_OBJECTS = test_lite.$(OBJEXT) +test_lite_LDADD = $(LDADD) +test_lite_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +am_test_packet_OBJECTS = test_packet.$(OBJEXT) \ + test_packet_vlen.$(OBJEXT) +test_packet_OBJECTS = $(am_test_packet_OBJECTS) +test_packet_LDADD = $(LDADD) +test_packet_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +test_table_SOURCES = test_table.c +test_table_OBJECTS = test_table.$(OBJEXT) +test_table_LDADD = $(LDADD) +test_table_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = gen_test_ds.c test_ds.c test_dset_opt.c test_file_image.c \ + test_image.c test_lite.c $(test_packet_SOURCES) test_table.c +DIST_SOURCES = gen_test_ds.c test_ds.c test_dset_opt.c \ + test_file_image.c test_image.c test_lite.c \ + $(test_packet_SOURCES) test_table.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/H5srcdir_str.h.in $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Add include directories to C preprocessor flags +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I. -I$(srcdir) \ + -I$(top_builddir)/src -I$(top_srcdir)/src \ + -I$(top_builddir)/test -I$(top_srcdir)/test \ + -I$(top_srcdir)/hl/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. These files are the ones created by running `make test'. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 \ + combine_tables[1-2].h5 test_ds[1-9].h5 test_ds10.h5 \ + test_image[1-3].h5 file_img[1-2].h5 test_lite[1-4].h5 \ + test_table.h5 test_packet_table.h5 test_packet_compress.h5 \ + test_detach.h5 test_dectris.h5 test_packet_table_vlen.h5 \ + testfl_packet_table_vlen.h5 + +# The tests depend on the hdf5, hdf5 test, and hdf5_hl libraries +LDADD = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) + +# Test programs. These are our main targets. They should be listed in the +# order to be executed, generally most specific tests to least specific tests. +TEST_PROG = test_lite test_image test_file_image test_table test_ds test_packet test_dset_opt + +# These programs generate test files for the tests. They don't need to be +# compiled every time we want to test the library. However, putting +# them in a conditional causes automake to generate rules so that they +# can be built by hand. They can also be built by specifying +# --enable-build-all at configure time. +BUILD_ALL_PROGS = gen_test_ds + +# Sources for test_packet executable +test_packet_SOURCES = test_packet.c test_packet_vlen.c + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +H5srcdir_str.h: $(top_builddir)/config.status $(srcdir)/H5srcdir_str.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +gen_test_ds$(EXEEXT): $(gen_test_ds_OBJECTS) $(gen_test_ds_DEPENDENCIES) $(EXTRA_gen_test_ds_DEPENDENCIES) + @rm -f gen_test_ds$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_test_ds_OBJECTS) $(gen_test_ds_LDADD) $(LIBS) + +test_ds$(EXEEXT): $(test_ds_OBJECTS) $(test_ds_DEPENDENCIES) $(EXTRA_test_ds_DEPENDENCIES) + @rm -f test_ds$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_ds_OBJECTS) $(test_ds_LDADD) $(LIBS) + +test_dset_opt$(EXEEXT): $(test_dset_opt_OBJECTS) $(test_dset_opt_DEPENDENCIES) $(EXTRA_test_dset_opt_DEPENDENCIES) + @rm -f test_dset_opt$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_dset_opt_OBJECTS) $(test_dset_opt_LDADD) $(LIBS) + +test_file_image$(EXEEXT): $(test_file_image_OBJECTS) $(test_file_image_DEPENDENCIES) $(EXTRA_test_file_image_DEPENDENCIES) + @rm -f test_file_image$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_file_image_OBJECTS) $(test_file_image_LDADD) $(LIBS) + +test_image$(EXEEXT): $(test_image_OBJECTS) $(test_image_DEPENDENCIES) $(EXTRA_test_image_DEPENDENCIES) + @rm -f test_image$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_image_OBJECTS) $(test_image_LDADD) $(LIBS) + +test_lite$(EXEEXT): $(test_lite_OBJECTS) $(test_lite_DEPENDENCIES) $(EXTRA_test_lite_DEPENDENCIES) + @rm -f test_lite$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_lite_OBJECTS) $(test_lite_LDADD) $(LIBS) + +test_packet$(EXEEXT): $(test_packet_OBJECTS) $(test_packet_DEPENDENCIES) $(EXTRA_test_packet_DEPENDENCIES) + @rm -f test_packet$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_packet_OBJECTS) $(test_packet_LDADD) $(LIBS) + +test_table$(EXEEXT): $(test_table_OBJECTS) $(test_table_DEPENDENCIES) $(EXTRA_test_table_DEPENDENCIES) + @rm -f test_table$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(test_table_OBJECTS) $(test_table_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/gen_test_ds.Po +include ./$(DEPDIR)/test_ds.Po +include ./$(DEPDIR)/test_dset_opt.Po +include ./$(DEPDIR)/test_file_image.Po +include ./$(DEPDIR)/test_image.Po +include ./$(DEPDIR)/test_lite.Po +include ./$(DEPDIR)/test_packet.Po +include ./$(DEPDIR)/test_packet_vlen.Po +include ./$(DEPDIR)/test_table.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +test_lite.log: test_lite$(EXEEXT) + @p='test_lite$(EXEEXT)'; \ + b='test_lite'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_image.log: test_image$(EXEEXT) + @p='test_image$(EXEEXT)'; \ + b='test_image'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_file_image.log: test_file_image$(EXEEXT) + @p='test_file_image$(EXEEXT)'; \ + b='test_file_image'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_table.log: test_table$(EXEEXT) + @p='test_table$(EXEEXT)'; \ + b='test_table'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_ds.log: test_ds$(EXEEXT) + @p='test_ds$(EXEEXT)'; \ + b='test_ds'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_packet.log: test_packet$(EXEEXT) + @p='test_packet$(EXEEXT)'; \ + b='test_packet'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test_dset_opt.log: test_dset_opt$(EXEEXT) + @p='test_dset_opt$(EXEEXT)'; \ + b='test_dset_opt'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/test/combine_tables1.h5 b/build/hl/test/combine_tables1.h5 new file mode 100644 index 0000000..c37f303 Binary files /dev/null and b/build/hl/test/combine_tables1.h5 differ diff --git a/build/hl/test/combine_tables2.h5 b/build/hl/test/combine_tables2.h5 new file mode 100644 index 0000000..dae21c7 Binary files /dev/null and b/build/hl/test/combine_tables2.h5 differ diff --git a/build/hl/test/test_dectris.h5 b/build/hl/test/test_dectris.h5 new file mode 100644 index 0000000..af7a782 Binary files /dev/null and b/build/hl/test/test_dectris.h5 differ diff --git a/build/hl/test/test_detach.h5 b/build/hl/test/test_detach.h5 new file mode 100644 index 0000000..3b4e722 Binary files /dev/null and b/build/hl/test/test_detach.h5 differ diff --git a/build/hl/test/test_ds b/build/hl/test/test_ds new file mode 100755 index 0000000..cdedcd1 --- /dev/null +++ b/build/hl/test/test_ds @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_ds - temporary wrapper script for .libs/test_ds +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_ds program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_ds.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_ds:test_ds:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_ds:test_ds:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_ds:test_ds:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_ds' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_ds.chkexe b/build/hl/test/test_ds.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_ds.chklog b/build/hl/test/test_ds.chklog new file mode 100644 index 0000000..483db9e --- /dev/null +++ b/build/hl/test/test_ds.chklog @@ -0,0 +1,65 @@ +============================ + test_ds Test Log +============================ +Testing test_char_attachscales PASSED +Testing test_short_attachscales PASSED +Testing test_int_attachscales PASSED +Testing test_long_attachscales PASSED +Testing test_float_attachscales PASSED +Testing set char scale/cmp scale name PASSED +Testing set short scale/cmp scale name PASSED +Testing set int scale/cmp scale name PASSED +Testing set long scale/cmp scale name PASSED +Testing set float scale/cmp scale name PASSED +Testing test_numberofscales PASSED +Testing test_long_attachscales PASSED +Testing test_duplicatelong_attachscales PASSED +Testing set same long scale/cmp scale name PASSED +Testing test_foreign_scaleattached PASSED +Testing test_foreign_scaleattached PASSED +Testing test_detachscales PASSED +Testing permutations of attaching and detaching PASSED +Testing API functions +Testing detach scales PASSED +Testing set/get label PASSED +Testing set scale/get scale name PASSED +Testing iterate scales PASSED +Testing error conditions +Testing attach a dataset to itself PASSED +Testing attach a group with a dataset PASSED +Testing attach a dataset with a group PASSED +Testing set scale for a group PASSED +Testing attach a scale that has scales PASSED +Testing attach to a dataset that is a scale PASSED +Testing attach to a dataset that is a reserved class dataset PASSED +Testing is scale PASSED +Testing detach scale from dataset it is not attached to PASSED +Testing detach scale from group PASSED +Testing detach scale when scale is group PASSED +Testing parameter errors +Testing attach scales PASSED +Testing detach scales PASSED +Testing set/get label PASSED +Testing iterate scales PASSED +Testing ranks +Testing attach PASSED +Testing detach PASSED +Testing attach, set, get names, labels PASSED +Testing attach a scalar scale PASSED +Testing iterators +Testing iterate when the dataset has no scales PASSED +Testing iterate on dimension that is outside the rank PASSED +Testing iterate for dimension with many scales PASSED +Testing iterate on group PASSED +Testing iterate in deleted scales PASSED +Testing scales with several datatypes +Testing floating point and short scales PASSED +Testing string scales PASSED +Testing reading ASCII data and generate HDF5 data with scales +Testing generating scales PASSED +All dimension scales tests passed. +0.29user 0.02system 0:00.37elapsed 86%CPU (0avgtext+0avgdata 7240maxresident)k +0inputs+1112outputs (0major+9680minor)pagefaults 0swaps + +Finished testing test_ds +============================ diff --git a/build/hl/test/test_ds.o b/build/hl/test/test_ds.o new file mode 100644 index 0000000..ef18471 Binary files /dev/null and b/build/hl/test/test_ds.o differ diff --git a/build/hl/test/test_ds1.h5 b/build/hl/test/test_ds1.h5 new file mode 100644 index 0000000..bd52b4d Binary files /dev/null and b/build/hl/test/test_ds1.h5 differ diff --git a/build/hl/test/test_ds10.h5 b/build/hl/test/test_ds10.h5 new file mode 100644 index 0000000..9a8fe9e Binary files /dev/null and b/build/hl/test/test_ds10.h5 differ diff --git a/build/hl/test/test_ds2.h5 b/build/hl/test/test_ds2.h5 new file mode 100644 index 0000000..6a79308 Binary files /dev/null and b/build/hl/test/test_ds2.h5 differ diff --git a/build/hl/test/test_ds3.h5 b/build/hl/test/test_ds3.h5 new file mode 100644 index 0000000..6801667 Binary files /dev/null and b/build/hl/test/test_ds3.h5 differ diff --git a/build/hl/test/test_ds4.h5 b/build/hl/test/test_ds4.h5 new file mode 100644 index 0000000..fdb8505 Binary files /dev/null and b/build/hl/test/test_ds4.h5 differ diff --git a/build/hl/test/test_ds5.h5 b/build/hl/test/test_ds5.h5 new file mode 100644 index 0000000..968eaa9 Binary files /dev/null and b/build/hl/test/test_ds5.h5 differ diff --git a/build/hl/test/test_ds6.h5 b/build/hl/test/test_ds6.h5 new file mode 100644 index 0000000..b7dacdd Binary files /dev/null and b/build/hl/test/test_ds6.h5 differ diff --git a/build/hl/test/test_ds7.h5 b/build/hl/test/test_ds7.h5 new file mode 100644 index 0000000..14b141f Binary files /dev/null and b/build/hl/test/test_ds7.h5 differ diff --git a/build/hl/test/test_ds8.h5 b/build/hl/test/test_ds8.h5 new file mode 100644 index 0000000..fb3c05c Binary files /dev/null and b/build/hl/test/test_ds8.h5 differ diff --git a/build/hl/test/test_ds9.h5 b/build/hl/test/test_ds9.h5 new file mode 100644 index 0000000..c40827b Binary files /dev/null and b/build/hl/test/test_ds9.h5 differ diff --git a/build/hl/test/test_dset_opt b/build/hl/test/test_dset_opt new file mode 100755 index 0000000..d6df7a7 --- /dev/null +++ b/build/hl/test/test_dset_opt @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_dset_opt - temporary wrapper script for .libs/test_dset_opt +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_dset_opt program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_dset_opt.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_dset_opt:test_dset_opt:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_dset_opt:test_dset_opt:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_dset_opt:test_dset_opt:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_dset_opt' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_dset_opt.chkexe b/build/hl/test/test_dset_opt.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_dset_opt.chklog b/build/hl/test/test_dset_opt.chklog new file mode 100644 index 0000000..ccc3548 --- /dev/null +++ b/build/hl/test/test_dset_opt.chklog @@ -0,0 +1,20 @@ +============================ + test_dset_opt Test Log +============================ +Testing basic functionality of H5DOwrite_chunk PASSED +Testing overwriting existing data with H5DOwrite_chunk PASSED +Testing skipping compression filter for H5DOwrite_chunk/H5DOread_chunk PASSED +Testing skipping compression filters but keep two other filters PASSED +Testing data conversion for H5DOwrite_chunk/H5DOread_chunk PASSED +Testing invalid parameters for H5DOwrite_chunk/H5DOread_chunk PASSED +Testing basic functionality of H5DOread_chunk (chunk cache disabled) PASSED +Testing basic functionality of H5DOread_chunk (flush chunk cache) PASSED +Testing basic functionality of H5DOread_chunk (does not flush chunk cache) PASSED +Testing basic functionality of H5DOread_chunk on unfiltered datasets PASSED +Testing H5DOread_chunk with unallocated chunks PASSED +All direct chunk read/write tests passed. +0.04user 0.02system 0:00.12elapsed 59%CPU (0avgtext+0avgdata 7128maxresident)k +0inputs+272outputs (0major+9280minor)pagefaults 0swaps + +Finished testing test_dset_opt +============================ diff --git a/build/hl/test/test_dset_opt.o b/build/hl/test/test_dset_opt.o new file mode 100644 index 0000000..61ffc91 Binary files /dev/null and b/build/hl/test/test_dset_opt.o differ diff --git a/build/hl/test/test_file_image b/build/hl/test/test_file_image new file mode 100755 index 0000000..08b71ce --- /dev/null +++ b/build/hl/test/test_file_image @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_file_image - temporary wrapper script for .libs/test_file_image +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_file_image program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_file_image.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_file_image:test_file_image:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_file_image:test_file_image:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_file_image:test_file_image:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_file_image' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_file_image.chkexe b/build/hl/test/test_file_image.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_file_image.chklog b/build/hl/test/test_file_image.chklog new file mode 100644 index 0000000..878edab --- /dev/null +++ b/build/hl/test/test_file_image.chklog @@ -0,0 +1,15 @@ +============================ + test_file_image Test Log +============================ +Testing get file images PASSED +Testing open file images and check image copies PASSED +Testing read file images PASSED +Testing write and extend file images PASSED +Testing read extended file images PASSED +Testing close file images PASSED +File image tests passed. +0.05user 0.03system 0:00.08elapsed 103%CPU (0avgtext+0avgdata 8940maxresident)k +0inputs+152outputs (0major+10147minor)pagefaults 0swaps + +Finished testing test_file_image +============================ diff --git a/build/hl/test/test_file_image.o b/build/hl/test/test_file_image.o new file mode 100644 index 0000000..4335b14 Binary files /dev/null and b/build/hl/test/test_file_image.o differ diff --git a/build/hl/test/test_image b/build/hl/test/test_image new file mode 100755 index 0000000..aa39aa7 --- /dev/null +++ b/build/hl/test/test_image @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_image - temporary wrapper script for .libs/test_image +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_image program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_image.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_image:test_image:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_image:test_image:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_image:test_image:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_image' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_image.chkexe b/build/hl/test/test_image.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_image.chklog b/build/hl/test/test_image.chklog new file mode 100644 index 0000000..945577a --- /dev/null +++ b/build/hl/test/test_image.chklog @@ -0,0 +1,22 @@ +============================ + test_image Test Log +============================ +Testing indexed image PASSED +Testing true color image PASSED +Testing pallete functions PASSED +Testing read ascii image data and generate images +Testing make indexed image PASSED +Testing attaching palettes PASSED +Testing make true color image with pixel interlace PASSED +Testing make true color image with plane interlace PASSED +Testing read and process data and make indexed images +Testing make indexed image from all the data PASSED +Testing make indexed image from land data PASSED +Testing make indexed image from sea data PASSED +Testing attaching palettes PASSED +All image tests passed. +0.21user 0.03system 0:00.27elapsed 88%CPU (0avgtext+0avgdata 7544maxresident)k +0inputs+4920outputs (0major+9872minor)pagefaults 0swaps + +Finished testing test_image +============================ diff --git a/build/hl/test/test_image.o b/build/hl/test/test_image.o new file mode 100644 index 0000000..4167c86 Binary files /dev/null and b/build/hl/test/test_image.o differ diff --git a/build/hl/test/test_image1.h5 b/build/hl/test/test_image1.h5 new file mode 100644 index 0000000..c603e82 Binary files /dev/null and b/build/hl/test/test_image1.h5 differ diff --git a/build/hl/test/test_image2.h5 b/build/hl/test/test_image2.h5 new file mode 100644 index 0000000..d92681b Binary files /dev/null and b/build/hl/test/test_image2.h5 differ diff --git a/build/hl/test/test_image3.h5 b/build/hl/test/test_image3.h5 new file mode 100644 index 0000000..f6715ed Binary files /dev/null and b/build/hl/test/test_image3.h5 differ diff --git a/build/hl/test/test_lite b/build/hl/test/test_lite new file mode 100755 index 0000000..6fee167 --- /dev/null +++ b/build/hl/test/test_lite @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_lite - temporary wrapper script for .libs/test_lite +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_lite program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_lite.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_lite:test_lite:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_lite:test_lite:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_lite:test_lite:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_lite' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_lite.chkexe b/build/hl/test/test_lite.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_lite.chklog b/build/hl/test/test_lite.chklog new file mode 100644 index 0000000..a943d0e --- /dev/null +++ b/build/hl/test/test_lite.chklog @@ -0,0 +1,101 @@ +============================ + test_lite Test Log +============================ +Testing H5LTmake_dataset PASSED +Testing H5LTread_dataset PASSED +Testing H5LTmake_dataset_char PASSED +Testing H5LTmake_dataset_short PASSED +Testing H5LTmake_dataset_int PASSED +Testing H5LTmake_dataset_long PASSED +Testing H5LTmake_dataset_float PASSED +Testing H5LTmake_dataset_double PASSED +Testing H5LTmake_dataset_string PASSED +Testing H5LTset_attribute_string PASSED +Testing H5LTget_attribute_string PASSED +Testing H5LTset_attribute_char PASSED +Testing H5LTget_attribute_char PASSED +Testing H5LTset_attribute_short PASSED +Testing H5LTget_attribute_short PASSED +Testing H5LTset_attribute_int PASSED +Testing H5LTget_attribute_int PASSED +Testing H5LTset_attribute_long PASSED +Testing H5LTget_attribute_long PASSED +Testing H5LTset_attribute_uchar PASSED +Testing H5LTget_attribute_uchar PASSED +Testing H5LTset_attribute_ushort PASSED +Testing H5LTget_attribute_ushort PASSED +Testing H5LTset_attribute_uint PASSED +Testing H5LTget_attribute_uint PASSED +Testing H5LTset_attribute_ulong PASSED +Testing H5LTget_attribute_ulong PASSED +Testing H5LTset_attribute_float PASSED +Testing H5LTget_attribute_float PASSED +Testing H5LTset_attribute_double PASSED +Testing H5LTget_attribute_double PASSED +Testing H5LTget_attribute_ndims PASSED +Testing H5LTget_attribute_info PASSED +Testing H5LTset_attribute_string PASSED +Testing H5LTget_attribute_string PASSED +Testing H5LTset_attribute_char PASSED +Testing H5LTget_attribute_char PASSED +Testing H5LTset_attribute_short PASSED +Testing H5LTget_attribute_short PASSED +Testing H5LTset_attribute_int PASSED +Testing H5LTget_attribute_int PASSED +Testing H5LTset_attribute_long PASSED +Testing H5LTget_attribute_long PASSED +Testing H5LTset_attribute_uchar PASSED +Testing H5LTget_attribute_uchar PASSED +Testing H5LTset_attribute_ushort PASSED +Testing H5LTget_attribute_ushort PASSED +Testing H5LTset_attribute_uint PASSED +Testing H5LTget_attribute_uint PASSED +Testing H5LTset_attribute_ulong PASSED +Testing H5LTget_attribute_ulong PASSED +Testing H5LTset_attribute_float PASSED +Testing H5LTget_attribute_float PASSED +Testing H5LTset_attribute_double PASSED +Testing H5LTget_attribute_double PASSED +Testing H5LTget_attribute_ndims PASSED +Testing H5LTget_attribute_info PASSED +Testing H5LTset_attribute_string PASSED +Testing H5LTget_attribute_string PASSED +Testing H5LTset_attribute_char PASSED +Testing H5LTget_attribute_char PASSED +Testing H5LTset_attribute_short PASSED +Testing H5LTget_attribute_short PASSED +Testing H5LTset_attribute_int PASSED +Testing H5LTget_attribute_int PASSED +Testing H5LTset_attribute_long PASSED +Testing H5LTget_attribute_long PASSED +Testing H5LTset_attribute_uchar PASSED +Testing H5LTget_attribute_uchar PASSED +Testing H5LTset_attribute_ushort PASSED +Testing H5LTget_attribute_ushort PASSED +Testing H5LTset_attribute_uint PASSED +Testing H5LTget_attribute_uint PASSED +Testing H5LTset_attribute_ulong PASSED +Testing H5LTget_attribute_ulong PASSED +Testing H5LTset_attribute_float PASSED +Testing H5LTget_attribute_float PASSED +Testing H5LTset_attribute_double PASSED +Testing H5LTget_attribute_double PASSED +Testing H5LTget_attribute_ndims PASSED +Testing H5LTget_attribute_info PASSED +Testing H5LTpath_valid PASSED +Testing H5LTtext_to_dtype + text for integer types PASSED + text for floating-point types PASSED + text for string types PASSED + text for opaque types PASSED + text for enum types PASSED + text for variable types PASSED + text for array types PASSED + text for compound types PASSED + text for compound type of bug fix PASSED + text for complicated compound types PASSED +0.07user 0.04system 0:00.16elapsed 71%CPU (0avgtext+0avgdata 7128maxresident)k +0inputs+200outputs (0major+9312minor)pagefaults 0swaps + +Finished testing test_lite +============================ diff --git a/build/hl/test/test_lite.o b/build/hl/test/test_lite.o new file mode 100644 index 0000000..6adbb10 Binary files /dev/null and b/build/hl/test/test_lite.o differ diff --git a/build/hl/test/test_lite1.h5 b/build/hl/test/test_lite1.h5 new file mode 100644 index 0000000..57cf31d Binary files /dev/null and b/build/hl/test/test_lite1.h5 differ diff --git a/build/hl/test/test_lite2.h5 b/build/hl/test/test_lite2.h5 new file mode 100644 index 0000000..3367f10 Binary files /dev/null and b/build/hl/test/test_lite2.h5 differ diff --git a/build/hl/test/test_lite3.h5 b/build/hl/test/test_lite3.h5 new file mode 100644 index 0000000..3f7b208 Binary files /dev/null and b/build/hl/test/test_lite3.h5 differ diff --git a/build/hl/test/test_lite4.h5 b/build/hl/test/test_lite4.h5 new file mode 100644 index 0000000..82075af Binary files /dev/null and b/build/hl/test/test_lite4.h5 differ diff --git a/build/hl/test/test_packet b/build/hl/test/test_packet new file mode 100755 index 0000000..739ab4a --- /dev/null +++ b/build/hl/test/test_packet @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_packet - temporary wrapper script for .libs/test_packet +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_packet program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_packet.o test_packet_vlen.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_packet:test_packet:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_packet:test_packet:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_packet:test_packet:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_packet' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_packet.chkexe b/build/hl/test/test_packet.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_packet.chklog b/build/hl/test/test_packet.chklog new file mode 100644 index 0000000..1217337 --- /dev/null +++ b/build/hl/test/test_packet.chklog @@ -0,0 +1,32 @@ +============================ + test_packet Test Log +============================ +Testing packet table +Testing H5PTcreate_fl and H5PTclose PASSED +Testing H5PTopen PASSED +Testing H5PTappend PASSED +Testing H5PTread_packets PASSED +Testing H5PTget_next PASSED +Testing large packet table PASSED +Testing reading/writing non-native packet table PASSED +Testing opaque data PASSED +Testing packet table compression PASSED +Testing error conditions PASSED +Testing packet table with various variable-length datatypes + with vlen of atomic PASSED + with vlen of compound datatypes PASSED + with compound datatype containing vlen datatype PASSED + with vlen datatype of vlen datatype PASSED +Testing H5PTis_varlen PASSED +Testing adding attributes to packet tables PASSED +Testing accessor functions PASSED +Testing packet table with various variable-length datatypes - H5PTcreate_fl + with vlen of atomic PASSED + with vlen of compound datatypes PASSED + with compound datatype containing vlen datatype PASSED + with vlen datatype of vlen datatype PASSED +0.20user 0.03system 0:00.23elapsed 100%CPU (0avgtext+0avgdata 7348maxresident)k +0inputs+1192outputs (0major+14077minor)pagefaults 0swaps + +Finished testing test_packet +============================ diff --git a/build/hl/test/test_packet.o b/build/hl/test/test_packet.o new file mode 100644 index 0000000..2aaca96 Binary files /dev/null and b/build/hl/test/test_packet.o differ diff --git a/build/hl/test/test_packet_compress.h5 b/build/hl/test/test_packet_compress.h5 new file mode 100644 index 0000000..a080c19 Binary files /dev/null and b/build/hl/test/test_packet_compress.h5 differ diff --git a/build/hl/test/test_packet_table.h5 b/build/hl/test/test_packet_table.h5 new file mode 100644 index 0000000..4ff9a2e Binary files /dev/null and b/build/hl/test/test_packet_table.h5 differ diff --git a/build/hl/test/test_packet_table_vlen.h5 b/build/hl/test/test_packet_table_vlen.h5 new file mode 100644 index 0000000..89a8536 Binary files /dev/null and b/build/hl/test/test_packet_table_vlen.h5 differ diff --git a/build/hl/test/test_packet_vlen.o b/build/hl/test/test_packet_vlen.o new file mode 100644 index 0000000..15ca42ae Binary files /dev/null and b/build/hl/test/test_packet_vlen.o differ diff --git a/build/hl/test/test_table b/build/hl/test/test_table new file mode 100755 index 0000000..aa30ff4 --- /dev/null +++ b/build/hl/test/test_table @@ -0,0 +1,228 @@ +#! /bin/sh + +# test_table - temporary wrapper script for .libs/test_table +# Generated by libtool (GNU libtool) 2.4.6 +# +# The test_table program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_table.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "test_table:test_table:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "test_table:test_table:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "test_table:test_table:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'test_table' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/test/test_table.chkexe b/build/hl/test/test_table.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/test/test_table.chklog b/build/hl/test/test_table.chklog new file mode 100644 index 0000000..3d4af26 --- /dev/null +++ b/build/hl/test/test_table.chklog @@ -0,0 +1,48 @@ +============================ + test_table Test Log +============================ +Testing table with file creation mode (read/write in native architecture): +Testing making table PASSED +Testing reading table PASSED +Testing writing records PASSED +Testing reading records PASSED +Testing appending records PASSED +Testing inserting records PASSED +Testing deleting records PASSED +Testing deleting records (differing memory layout) PASSED +Testing adding records PASSED +Testing combining tables PASSED +Testing writing fields by name PASSED +Testing reading fields by name PASSED +Testing writing fields by index PASSED +Testing reading fields by index PASSED +Testing inserting fields PASSED +Testing deleting fields PASSED +Testing getting table info PASSED +Testing getting field info PASSED +Testing table with file open mode (read big-endian data): +Testing reading table PASSED +Testing reading records PASSED +Testing reading fields by name PASSED +Testing reading fields by index PASSED +Testing getting table info PASSED +Testing getting field info PASSED +Testing table with file open mode (read little-endian data): +Testing reading table PASSED +Testing reading records PASSED +Testing reading fields by name PASSED +Testing reading fields by index PASSED +Testing getting table info PASSED +Testing getting field info PASSED +Testing table with file open mode (read Cray data): +Testing reading table PASSED +Testing reading records PASSED +Testing reading fields by name PASSED +Testing reading fields by index PASSED +Testing getting table info PASSED +Testing getting field info PASSED +0.11user 0.05system 0:00.19elapsed 88%CPU (0avgtext+0avgdata 7252maxresident)k +0inputs+272outputs (0major+25234minor)pagefaults 0swaps + +Finished testing test_table +============================ diff --git a/build/hl/test/test_table.h5 b/build/hl/test/test_table.h5 new file mode 100644 index 0000000..adfc02f Binary files /dev/null and b/build/hl/test/test_table.h5 differ diff --git a/build/hl/test/test_table.o b/build/hl/test/test_table.o new file mode 100644 index 0000000..a1eb066 Binary files /dev/null and b/build/hl/test/test_table.o differ diff --git a/build/hl/test/testfl_packet_table_vlen.h5 b/build/hl/test/testfl_packet_table_vlen.h5 new file mode 100644 index 0000000..eaabde6 Binary files /dev/null and b/build/hl/test/testfl_packet_table_vlen.h5 differ diff --git a/build/hl/tools/Makefile b/build/hl/tools/Makefile new file mode 100644 index 0000000..fe01b89 --- /dev/null +++ b/build/hl/tools/Makefile @@ -0,0 +1,1399 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/tools/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tools HDF5 Makefile(.in) +# +VPATH = ../../../hl/tools +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = hl/tools +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +DIST_SUBDIRS = $(SUBDIRS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/tools +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../hl/tools +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# All subdirectories +SUBDIRS = gif2h5 + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/tools/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/tools/gif2h5/.deps/decompress.Po b/build/hl/tools/gif2h5/.deps/decompress.Po new file mode 100644 index 0000000..8f5382f --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/decompress.Po @@ -0,0 +1,204 @@ +decompress.o: ../../../../hl/tools/gif2h5/decompress.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ + /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ + ../../../src/H5pubconf.h ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../../hl/tools/gif2h5/gif.h: + +/usr/include/string.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/gif2hdf.Po b/build/hl/tools/gif2h5/.deps/gif2hdf.Po new file mode 100644 index 0000000..25fefd9 --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/gif2hdf.Po @@ -0,0 +1,218 @@ +gif2hdf.o: ../../../../hl/tools/gif2h5/gif2hdf.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/stdio.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/types.h \ + /usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + ../../../../hl/tools/gif2h5/gif.h ../../../../src/hdf5.h \ + ../../../../src/H5public.h ../../../src/H5pubconf.h \ + ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h ../../../../tools/lib/h5tools.h \ + ../../../../tools/lib/h5tools_error.h ../../../../src/H5Epublic.h \ + ../../../../tools/lib/h5tools_str.h \ + ../../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/stdio.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../../hl/tools/gif2h5/gif.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: + +../../../../tools/lib/h5tools.h: + +../../../../tools/lib/h5tools_error.h: + +../../../../src/H5Epublic.h: + +../../../../tools/lib/h5tools_str.h: + +../../../../tools/lib/h5tools_utils.h: diff --git a/build/hl/tools/gif2h5/.deps/gif2mem.Po b/build/hl/tools/gif2h5/.deps/gif2mem.Po new file mode 100644 index 0000000..4dd1c31 --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/gif2mem.Po @@ -0,0 +1,204 @@ +gif2mem.o: ../../../../hl/tools/gif2h5/gif2mem.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../../hl/tools/gif2h5/gif.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ + ../../../src/H5pubconf.h ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../../hl/tools/gif2h5/gif.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/gifread.Po b/build/hl/tools/gif2h5/.deps/gifread.Po new file mode 100644 index 0000000..c0b75ce --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/gifread.Po @@ -0,0 +1,204 @@ +gifread.o: ../../../../hl/tools/gif2h5/gifread.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ + /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ + ../../../src/H5pubconf.h ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../../hl/tools/gif2h5/gif.h: + +/usr/include/string.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/h52gifgentst.Po b/build/hl/tools/gif2h5/.deps/h52gifgentst.Po new file mode 100644 index 0000000..5e69684 --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/h52gifgentst.Po @@ -0,0 +1,202 @@ +h52gifgentst.o: ../../../../hl/tools/gif2h5/h52gifgentst.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../../src/hdf5.h \ + ../../../../src/H5public.h ../../../src/H5pubconf.h \ + ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: + +../../../../hl/src/H5IMpublic.h: diff --git a/build/hl/tools/gif2h5/.deps/hdf2gif.Po b/build/hl/tools/gif2h5/.deps/hdf2gif.Po new file mode 100644 index 0000000..748a43c --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/hdf2gif.Po @@ -0,0 +1,222 @@ +hdf2gif.o: ../../../../hl/tools/gif2h5/hdf2gif.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/assert.h ../../../../hl/tools/gif2h5/gif.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + ../../../../src/hdf5.h ../../../../src/H5public.h \ + ../../../src/H5pubconf.h ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h \ + ../../../../tools/lib/h5tools.h ../../../../tools/lib/h5tools_error.h \ + ../../../../src/H5Epublic.h ../../../../tools/lib/h5tools_str.h \ + ../../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/assert.h: + +../../../../hl/tools/gif2h5/gif.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: + +../../../../hl/src/H5IMpublic.h: + +../../../../tools/lib/h5tools.h: + +../../../../tools/lib/h5tools_error.h: + +../../../../src/H5Epublic.h: + +../../../../tools/lib/h5tools_str.h: + +../../../../tools/lib/h5tools_utils.h: diff --git a/build/hl/tools/gif2h5/.deps/hdfgifwr.Po b/build/hl/tools/gif2h5/.deps/hdfgifwr.Po new file mode 100644 index 0000000..bd1358e --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/hdfgifwr.Po @@ -0,0 +1,205 @@ +hdfgifwr.o: ../../../../hl/tools/gif2h5/hdfgifwr.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + ../../../../hl/tools/gif2h5/gif.h ../../../../src/hdf5.h \ + ../../../../src/H5public.h ../../../src/H5pubconf.h \ + ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../../../hl/tools/gif2h5/gif.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/writehdf.Po b/build/hl/tools/gif2h5/.deps/writehdf.Po new file mode 100644 index 0000000..a4f14dc --- /dev/null +++ b/build/hl/tools/gif2h5/.deps/writehdf.Po @@ -0,0 +1,207 @@ +writehdf.o: ../../../../hl/tools/gif2h5/writehdf.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../../src/hdf5.h ../../../../src/H5public.h \ + ../../../src/H5pubconf.h ../../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ + ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ + ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ + ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ + ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ + ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ + ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ + ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ + ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ + ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ + ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ + ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ + ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ + ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ + ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../../hl/tools/gif2h5/gif.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../../src/hdf5.h: + +../../../../src/H5public.h: + +../../../src/H5pubconf.h: + +../../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../../src/H5api_adpt.h: + +../../../../src/H5Apublic.h: + +../../../../src/H5Ipublic.h: + +../../../../src/H5Opublic.h: + +../../../../src/H5Lpublic.h: + +../../../../src/H5Tpublic.h: + +../../../../src/H5ACpublic.h: + +../../../../src/H5Cpublic.h: + +../../../../src/H5Dpublic.h: + +../../../../src/H5Epublic.h: + +../../../../src/H5Epubgen.h: + +../../../../src/H5Fpublic.h: + +../../../../src/H5FDpublic.h: + +../../../../src/H5Gpublic.h: + +../../../../src/H5MMpublic.h: + +../../../../src/H5Ppublic.h: + +../../../../src/H5Zpublic.h: + +../../../../src/H5PLpublic.h: + +../../../../src/H5Rpublic.h: + +../../../../src/H5Spublic.h: + +../../../../src/H5FDcore.h: + +../../../../src/H5FDfamily.h: + +../../../../src/H5FDlog.h: + +../../../../src/H5FDmpi.h: + +../../../../src/H5FDmpio.h: + +../../../../src/H5FDmulti.h: + +../../../../src/H5FDsec2.h: + +../../../../src/H5FDstdio.h: + +../../../../src/H5FDdirect.h: + +../../../../hl/src/H5IMpublic.h: diff --git a/build/hl/tools/gif2h5/.libs/gif2h5 b/build/hl/tools/gif2h5/.libs/gif2h5 new file mode 100755 index 0000000..5048eba Binary files /dev/null and b/build/hl/tools/gif2h5/.libs/gif2h5 differ diff --git a/build/hl/tools/gif2h5/.libs/h52gif b/build/hl/tools/gif2h5/.libs/h52gif new file mode 100755 index 0000000..6492e62 Binary files /dev/null and b/build/hl/tools/gif2h5/.libs/h52gif differ diff --git a/build/hl/tools/gif2h5/.libs/h52gifgentst b/build/hl/tools/gif2h5/.libs/h52gifgentst new file mode 100755 index 0000000..39e49c4 Binary files /dev/null and b/build/hl/tools/gif2h5/.libs/h52gifgentst differ diff --git a/build/hl/tools/gif2h5/.libs/lt-gif2h5 b/build/hl/tools/gif2h5/.libs/lt-gif2h5 new file mode 100755 index 0000000..e13c0a9 Binary files /dev/null and b/build/hl/tools/gif2h5/.libs/lt-gif2h5 differ diff --git a/build/hl/tools/gif2h5/.libs/lt-h52gif b/build/hl/tools/gif2h5/.libs/lt-h52gif new file mode 100755 index 0000000..90918be Binary files /dev/null and b/build/hl/tools/gif2h5/.libs/lt-h52gif differ diff --git a/build/hl/tools/gif2h5/Makefile b/build/hl/tools/gif2h5/Makefile new file mode 100644 index 0000000..ace6749 --- /dev/null +++ b/build/hl/tools/gif2h5/Makefile @@ -0,0 +1,1469 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# hl/tools/gif2h5/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + +VPATH = ../../../../hl/tools/gif2h5 +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +bin_PROGRAMS = gif2h5$(EXEEXT) h52gif$(EXEEXT) +noinst_PROGRAMS = h52gifgentst$(EXEEXT) +TESTS = $(TEST_SCRIPT) +subdir = hl/tools/gif2h5 +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h52giftest.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) +am_gif2h5_OBJECTS = gif2hdf.$(OBJEXT) gif2mem.$(OBJEXT) \ + decompress.$(OBJEXT) gifread.$(OBJEXT) writehdf.$(OBJEXT) +gif2h5_OBJECTS = $(am_gif2h5_OBJECTS) +gif2h5_LDADD = $(LDADD) +gif2h5_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +gif2h5_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(gif2h5_LDFLAGS) $(LDFLAGS) -o $@ +am_h52gif_OBJECTS = hdf2gif.$(OBJEXT) hdfgifwr.$(OBJEXT) +h52gif_OBJECTS = $(am_h52gif_OBJECTS) +h52gif_LDADD = $(LDADD) +h52gif_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) +h52gif_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h52gif_LDFLAGS) $(LDFLAGS) -o $@ +am_h52gifgentst_OBJECTS = h52gifgentst.$(OBJEXT) +h52gifgentst_OBJECTS = $(am_h52gifgentst_OBJECTS) +h52gifgentst_LDADD = $(LDADD) +h52gifgentst_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(gif2h5_SOURCES) $(h52gif_SOURCES) $(h52gifgentst_SOURCES) +DIST_SOURCES = $(gif2h5_SOURCES) $(h52gif_SOURCES) \ + $(h52gifgentst_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h52giftest.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib -I$(top_srcdir)/hl/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5 +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/tools/gif2h5 +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../../hl/tools/gif2h5 +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../../ +top_builddir = ../../.. +top_srcdir = ../../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.gif + +# These are our main targets, the tools +TEST_SCRIPT = h52giftest.sh +check_SCRIPTS = $(TEST_SCRIPT) + +# Add h52gif and gif2h5 specific linker flags here +h52gif_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +gif2h5_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +gif2h5_SOURCES = gif2hdf.c gif2mem.c decompress.c gifread.c writehdf.c +h52gif_SOURCES = hdf2gif.c hdfgifwr.c +h52gifgentst_SOURCES = h52gifgentst.c + +# Programs all depend on the hdf5 library, the tools library, and the HL +# library. +LDADD = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/tools/gif2h5/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign hl/tools/gif2h5/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h52giftest.sh: $(top_builddir)/config.status $(srcdir)/h52giftest.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +gif2h5$(EXEEXT): $(gif2h5_OBJECTS) $(gif2h5_DEPENDENCIES) $(EXTRA_gif2h5_DEPENDENCIES) + @rm -f gif2h5$(EXEEXT) + $(AM_V_CCLD)$(gif2h5_LINK) $(gif2h5_OBJECTS) $(gif2h5_LDADD) $(LIBS) + +h52gif$(EXEEXT): $(h52gif_OBJECTS) $(h52gif_DEPENDENCIES) $(EXTRA_h52gif_DEPENDENCIES) + @rm -f h52gif$(EXEEXT) + $(AM_V_CCLD)$(h52gif_LINK) $(h52gif_OBJECTS) $(h52gif_LDADD) $(LIBS) + +h52gifgentst$(EXEEXT): $(h52gifgentst_OBJECTS) $(h52gifgentst_DEPENDENCIES) $(EXTRA_h52gifgentst_DEPENDENCIES) + @rm -f h52gifgentst$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h52gifgentst_OBJECTS) $(h52gifgentst_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/decompress.Po +include ./$(DEPDIR)/gif2hdf.Po +include ./$(DEPDIR)/gif2mem.Po +include ./$(DEPDIR)/gifread.Po +include ./$(DEPDIR)/h52gifgentst.Po +include ./$(DEPDIR)/hdf2gif.Po +include ./$(DEPDIR)/hdfgifwr.Po +include ./$(DEPDIR)/writehdf.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/hl/tools/gif2h5/decompress.o b/build/hl/tools/gif2h5/decompress.o new file mode 100644 index 0000000..13dfaee Binary files /dev/null and b/build/hl/tools/gif2h5/decompress.o differ diff --git a/build/hl/tools/gif2h5/gif2h5 b/build/hl/tools/gif2h5/gif2h5 new file mode 100755 index 0000000..2a5a927 --- /dev/null +++ b/build/hl/tools/gif2h5/gif2h5 @@ -0,0 +1,228 @@ +#! /bin/sh + +# gif2h5 - temporary wrapper script for .libs/gif2h5 +# Generated by libtool (GNU libtool) 2.4.6 +# +# The gif2h5 program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file gif2hdf.o gif2mem.o decompress.o gifread.o writehdf.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "gif2h5:gif2h5:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "gif2h5:gif2h5:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "gif2h5:gif2h5:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'gif2h5' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/tools/gif2h5/gif2hdf.o b/build/hl/tools/gif2h5/gif2hdf.o new file mode 100644 index 0000000..634238c Binary files /dev/null and b/build/hl/tools/gif2h5/gif2hdf.o differ diff --git a/build/hl/tools/gif2h5/gif2mem.o b/build/hl/tools/gif2h5/gif2mem.o new file mode 100644 index 0000000..b15d6c9 Binary files /dev/null and b/build/hl/tools/gif2h5/gif2mem.o differ diff --git a/build/hl/tools/gif2h5/gifread.o b/build/hl/tools/gif2h5/gifread.o new file mode 100644 index 0000000..3f2c95f Binary files /dev/null and b/build/hl/tools/gif2h5/gifread.o differ diff --git a/build/hl/tools/gif2h5/h52gif b/build/hl/tools/gif2h5/h52gif new file mode 100755 index 0000000..3393356 --- /dev/null +++ b/build/hl/tools/gif2h5/h52gif @@ -0,0 +1,228 @@ +#! /bin/sh + +# h52gif - temporary wrapper script for .libs/h52gif +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h52gif program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file hdf2gif.o hdfgifwr.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h52gif:h52gif:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h52gif:h52gif:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h52gif:h52gif:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h52gif' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/tools/gif2h5/h52gifgentst b/build/hl/tools/gif2h5/h52gifgentst new file mode 100755 index 0000000..07aae7a --- /dev/null +++ b/build/hl/tools/gif2h5/h52gifgentst @@ -0,0 +1,228 @@ +#! /bin/sh + +# h52gifgentst - temporary wrapper script for .libs/h52gifgentst +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h52gifgentst program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h52gifgentst.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h52gifgentst:h52gifgentst:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h52gifgentst:h52gifgentst:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h52gifgentst:h52gifgentst:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h52gifgentst' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/hl/tools/gif2h5/h52gifgentst.o b/build/hl/tools/gif2h5/h52gifgentst.o new file mode 100644 index 0000000..755e6b7 Binary files /dev/null and b/build/hl/tools/gif2h5/h52gifgentst.o differ diff --git a/build/hl/tools/gif2h5/h52giftest.sh b/build/hl/tools/gif2h5/h52giftest.sh new file mode 100644 index 0000000..133f574 --- /dev/null +++ b/build/hl/tools/gif2h5/h52giftest.sh @@ -0,0 +1,96 @@ +#!/bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF Utilities Test script + + +TESTFILE1="$srcdir/testfiles/h52giftst.h5" +TESTFILE2="$srcdir/testfiles/image1.gif" +TESTFILE3="$srcdir/testfiles/ex_image2.h5" + +# initialize errors variable +errors=0 + +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + + + +# Verify the test runs with success (return code is 0) +TOOLTEST() +{ + # for now, discard any error messages generated. + $RUNSERIAL $* > /dev/null 2>&1 + + RET=$? + if [ $RET = 0 ] ; then + echo " PASSED" + else + echo "*FAILED*" + errors="` expr $errors + 1 `"; + fi + +} + +# Verify the test runs with failure (return code is not 0) +# Use for testing if tool can handle error conditions like +# illegal input, bad arguments, exeeding limits, ... +TOOLTESTFAIL() +{ + # for now, discard any error messages generated. + $RUNSERIAL $* > /dev/null 2>&1 + + RET=$? + if [ $RET != 0 ] ; then + echo " PASSED" + else + echo "*FAILED*" + errors="` expr $errors + 1 `"; + fi +} + + +# Positive tests for gif2h5 +echo "**validate the gif2h5 tool processes input correctly..." +TESTING "./gif2h5 image1.gif image1.h5" +TOOLTEST ./gif2h5 $TESTFILE2 image1.h5 +echo "" + +# Positive tests for h52gif +echo "**validate the h52gif tool processes input correctly..." +TESTING "./h52gif h52giftst.h5 image1.gif -i image" +TOOLTEST ./h52gif $TESTFILE1 image1.gif -i image +echo "" + +# Negative tests. +echo "**verify the the h52gif tool handle error conditions correctly..." +# nonexisting dataset name +TESTING "./h52gif h52giftst.h5 image.gif -i nosuch_image" +TOOLTESTFAIL "./h52gif $TESTFILE1 image.gif -i nosuch_image" +# this test should have failed but it did not. Comment it out for now. +#TESTING "./h52gif h52giftst.h5 image.gif -i palette" +#TOOLTESTFAIL "./h52gif $TESTFILE1 image.gif -i palette" +TESTING "./h52gif h52giftst.h5 image24.gif -i image24bitpixel" +TOOLTESTFAIL "./h52gif $TESTFILE3 image24.gif -i image24bitpixel" +echo "" + +# all done. summarize results. +if test $errors -eq 0 ; then + echo "All gif2h5 and h52gif tests passed." + exit 0 +else + echo "Some gif2h5 or h52gif tests failed with $errors errors." + exit 1 +fi diff --git a/build/hl/tools/gif2h5/h52giftest.sh.chkexe b/build/hl/tools/gif2h5/h52giftest.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/tools/gif2h5/h52giftest.sh.chklog b/build/hl/tools/gif2h5/h52giftest.sh.chklog new file mode 100644 index 0000000..d2b5ec9 --- /dev/null +++ b/build/hl/tools/gif2h5/h52giftest.sh.chklog @@ -0,0 +1,19 @@ +============================ +h52giftest.sh Test Log +============================ +**validate the gif2h5 tool processes input correctly... +Testing ./gif2h5 image1.gif image1.h5 PASSED + +**validate the h52gif tool processes input correctly... +Testing ./h52gif h52giftst.h5 image1.gif -i image PASSED + +**verify the the h52gif tool handle error conditions correctly... +Testing ./h52gif h52giftst.h5 image.gif -i nosuch_image PASSED +Testing ./h52gif h52giftst.h5 image24.gif -i image24bitpixel PASSED + +All gif2h5 and h52gif tests passed. +0.14user 0.09system 0:00.27elapsed 84%CPU (0avgtext+0avgdata 7600maxresident)k +0inputs+1216outputs (0major+32332minor)pagefaults 0swaps + +Finished testing h52giftest.sh +============================ diff --git a/build/hl/tools/gif2h5/hdf2gif.o b/build/hl/tools/gif2h5/hdf2gif.o new file mode 100644 index 0000000..7e8f849 Binary files /dev/null and b/build/hl/tools/gif2h5/hdf2gif.o differ diff --git a/build/hl/tools/gif2h5/hdfgifwr.o b/build/hl/tools/gif2h5/hdfgifwr.o new file mode 100644 index 0000000..a5c3a63 Binary files /dev/null and b/build/hl/tools/gif2h5/hdfgifwr.o differ diff --git a/build/hl/tools/gif2h5/image.gif b/build/hl/tools/gif2h5/image.gif new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/tools/gif2h5/image1.gif b/build/hl/tools/gif2h5/image1.gif new file mode 100644 index 0000000..b90b23a Binary files /dev/null and b/build/hl/tools/gif2h5/image1.gif differ diff --git a/build/hl/tools/gif2h5/image1.h5 b/build/hl/tools/gif2h5/image1.h5 new file mode 100644 index 0000000..b78b42e Binary files /dev/null and b/build/hl/tools/gif2h5/image1.h5 differ diff --git a/build/hl/tools/gif2h5/image24.gif b/build/hl/tools/gif2h5/image24.gif new file mode 100644 index 0000000..e69de29 diff --git a/build/hl/tools/gif2h5/writehdf.o b/build/hl/tools/gif2h5/writehdf.o new file mode 100644 index 0000000..4f6f37e Binary files /dev/null and b/build/hl/tools/gif2h5/writehdf.o differ diff --git a/build/libtool b/build/libtool new file mode 100644 index 0000000..9db894a --- /dev/null +++ b/build/libtool @@ -0,0 +1,11957 @@ +#! /bin/sh +# Generated automatically by config.status (hdf5) 1.8.21-pre1 +# Libtool was configured on host jelly: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 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. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# The names of the tagged configurations supported by this script. +available_tags='CXX FC ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: ${LT_SYS_LIBRARY_PATH=""} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=2.4.6 +macro_revision=2.4.6 + +# Whether or not to build shared libraries. +build_libtool_libs=yes + +# Whether or not to build static libraries. +build_old_libs=yes + +# What type of objects to build. +pic_mode=default + +# Whether or not to optimize for fast installation. +fast_install=yes + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec= + +# Shell to use when invoking shell scripts. +SHELL="/bin/sh" + +# An echo program that protects backslashes. +ECHO="printf %s\\n" + +# The PATH separator for the build system. +PATH_SEPARATOR=":" + +# The host system. +host_alias= +host=x86_64-unknown-linux-gnu +host_os=linux-gnu + +# The build system. +build_alias= +build=x86_64-unknown-linux-gnu +build_os=linux-gnu + +# A sed program that does not truncate output. +SED="/usr/bin/sed" + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP="/usr/bin/grep" + +# An ERE matcher. +EGREP="/usr/bin/grep -E" + +# A literal string matcher. +FGREP="/usr/bin/grep -F" + +# A BSD- or MS-compatible name lister. +NM="/usr/bin/nm -B" + +# Whether we need soft or hard links. +LN_S="ln -s" + +# What is the maximum length of a command? +max_cmd_len=1572864 + +# Object file suffix (normally "o"). +objext=o + +# Executable file suffix (normally ""). +exeext= + +# whether the shell understands "unset". +lt_unset=unset + +# turn spaces into newlines. +SP2NL="tr \\040 \\012" + +# turn newlines into spaces. +NL2SP="tr \\015\\012 \\040\\040" + +# convert $build file names to $host format. +to_host_file_cmd=func_convert_file_noop + +# convert $build files to toolchain format. +to_tool_file_cmd=func_convert_file_noop + +# An object symbol dumper. +OBJDUMP="objdump" + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method="pass_all" + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd="\$MAGIC_CMD" + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob="" + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob="no" + +# DLL creation program. +DLLTOOL="false" + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd="printf %s\\n" + +# The archiver. +AR="ar" + +# Flags to create an archive. +AR_FLAGS="cru" + +# How to feed a file listing to the archiver. +archiver_list_spec="@" + +# A symbol stripping program. +STRIP="strip" + +# Commands used to install an old-style archive. +RANLIB="ranlib" +old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$tool_oldlib" +old_postuninstall_cmds="" + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=no + +# A C compiler. +LTCC="gcc" + +# LTCC compiler flags. +LTCFLAGS="" + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p' | sed '/ __gnu_lto/d'" + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import="" + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p'" + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(lib.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"lib\\1\", (void *) \\&\\1},/p'" + +# The name lister interface. +nm_interface="BSD nm" + +# Specify filename containing input files for $NM. +nm_file_list_spec="@" + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot= + +# Command to truncate a binary pipe. +lt_truncate_bin="/usr/bin/dd bs=4096 count=1" + +# The name of the directory that contains temporary libtool files. +objdir=.libs + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=file + +# Must we lock files when doing compilation? +need_locks="no" + +# Manifest tool. +MANIFEST_TOOL=":" + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL="" + +# Tool to change global to local symbols on Mac OS X. +NMEDIT="" + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO="" + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL="" + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64="" + +# Old archive suffix (normally "a"). +libext=a + +# Shared library suffix (normally ".so"). +shrext_cmds=".so" + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds="" + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + +# Do we need the "lib" prefix for modules? +need_lib_prefix=no + +# Do we need a version for libraries? +need_version=no + +# Library versioning type. +version_type=linux + +# Shared library runtime path variable. +runpath_var=LD_RUN_PATH + +# Shared library path variable. +shlibpath_var=LD_LIBRARY_PATH + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=no + +# Format of library name prefix. +libname_spec="lib\$name" + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec="\$libname\$release\$shared_ext\$versuffix \$libname\$release\$shared_ext\$major \$libname\$shared_ext" + +# The coded name of the library, if different from the real name. +soname_spec="\$libname\$release\$shared_ext\$major" + +# Permission mode override for installation of shared libraries. +install_override_mode="" + +# Command to use after installation of a shared archive. +postinstall_cmds="" + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds="" + +# Commands used to finish a libtool library installation in a directory. +finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval="" + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=yes + +# Compile-time system search path for libraries. +sys_lib_search_path_spec="/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib " + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql " + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path="" + +# Whether dlopen is supported. +dlopen_support=yes + +# Whether dlopen of programs is supported. +dlopen_self=yes + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=no + +# Commands to strip libraries. +old_striplib="strip --strip-debug" +striplib="strip --strip-unneeded" + + +# The linker used to build libraries. +LD="/usr/bin/ld -m elf_x86_64" + +# How to create reloadable object files. +reload_flag=" -r" +reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" + +# Commands used to build an old-style archive. +old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" + +# A language specific compiler. +CC="gcc" + +# Is the compiler the GNU compiler? +with_gcc=yes + +# Compiler flag to turn off builtin functions. +no_builtin_flag=" -fno-builtin" + +# Additional compiler flags for building library objects. +pic_flag=" -fPIC -DPIC" + +# How to pass a linker flag through the compiler. +wl="-Wl," + +# Compiler flag to prevent dynamic linking. +link_static_flag="-static" + +# Does compiler simultaneously support -c and -o options? +compiler_c_o="yes" + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=no + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=no + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec="\$wl--export-dynamic" + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec="\$wl--whole-archive\$convenience \$wl--no-whole-archive" + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object="no" + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds="" + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds="" + +# Commands used to build a shared archive. +archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname -o \$lib" +archive_expsym_cmds="echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ + cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ + echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ + \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname \$wl-version-script \$wl\$output_objdir/\$libname.ver -o \$lib" + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds="" +module_expsym_cmds="" + +# Whether we are building with GNU ld or not. +with_gnu_ld="yes" + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag="" + +# Flag that enforces no undefined symbols. +no_undefined_flag="" + +# Flag to hardcode $libdir into a binary during linking. +# This must work even if $libdir does not exist +hardcode_libdir_flag_spec="\$wl-rpath \$wl\$libdir" + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator="" + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=no + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting $shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=no + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=no + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=unsupported + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=no + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=no + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=unknown + +# Set to "yes" if exported symbols are required. +always_export_symbols=no + +# The commands to list exported symbols. +export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" + +# Symbols that must always be exported. +include_expsyms="" + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds="" + +# Commands necessary for finishing linking programs. +postlink_cmds="" + +# Specify filename containing input files. +file_list_spec="" + +# How to hardcode a shared library path into an executable. +hardcode_action=immediate + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs="" + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects="" +postdep_objects="" +predeps="" +postdeps="" + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path="" + +# ### END LIBTOOL CONFIG + + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 + +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996-2015 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. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +PROGRAM=libtool +PACKAGE=libtool +VERSION=2.4.6 +package_revision=2.4.6 + + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 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. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac +fi + +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" + fi" +done + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" + +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + + +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. + +: ${CP="cp -f"} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} + + +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## + +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' + +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" + + +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: + +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath=$0 + +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` + +# Make sure we have an absolute progpath for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` + progdir=`cd "$progdir" && pwd` + progpath=$progdir/$progname + ;; + *) + _G_IFS=$IFS + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS=$_G_IFS + test -x "$progdir/$progname" && break + done + IFS=$_G_IFS + test -n "$progdir" || progdir=`pwd` + progpath=$progdir/$progname + ;; +esac + + +## ----------------- ## +## Standard options. ## +## ----------------- ## + +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. + +opt_dry_run=false +opt_quiet=false +opt_verbose=false + +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= + +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue + +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all + + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: +} + + +## ----------------- ## +## Function library. ## +## ----------------- ## + +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. + + +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. + + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +eval 'func_dirname () +{ + $debug_cmd + + '"$_d"' +}' + + +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () +{ + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $debug_cmd + + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= + + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then + + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$_G_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + _G_dir_list=$_G_directory_path:$_G_dir_list + + # If the last portion added has no slash in it, the list is done + case $_G_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` + done + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` + + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$_G_dir" 2>/dev/null || : + done + IFS=$func_mkdir_p_IFS + + # Bail out if we (or some other process) failed to create a directory. + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" + fi +} + + +# func_mktempdir [BASENAME] +# ------------------------- +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, BASENAME is the basename for that directory. +func_mktempdir () +{ + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} + + if test : = "$opt_dry_run"; then + # Return a directory name, but don't create it in dry-run mode + _G_tmpdir=$_G_template-$$ + else + + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + + +# func_normal_abspath PATH +# ------------------------ +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +func_normal_abspath () +{ + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + + +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () +{ + $debug_cmd + + $opt_quiet || func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + + +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () +{ + $debug_cmd + + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. + + : +} + + +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. +func_quote_for_eval () +{ + $debug_cmd + + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done +} + + +# func_quote_for_expand ARG +# ------------------------- +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + $debug_cmd + + case $1 in + *[\\\`\"]*) + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; + *) + _G_arg=$1 ;; + esac + + case $_G_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_arg=\"$_G_arg\" + ;; + esac + + func_quote_for_expand_result=$_G_arg +} + + +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_tr_sh +# ---------- +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $debug_cmd + + $opt_verbose && func_echo "$*" + + : +} + + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 +} + + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 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. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd + + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} + + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} + + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result +} + + +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () +{ + $debug_cmd + + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result +} + + +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () +{ + $debug_cmd + + func_parse_options_result= + + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift + + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break + + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; + + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result +} + + +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () +{ + $debug_cmd + + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + func_run_hooks func_validate_options ${1+"$@"} + + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result +} + + + +## ----------------- ## +## Helper functions. ## +## ----------------- ## + +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + + +# func_help +# --------- +# Echo long help message to standard output and exit. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message" + exit 0 +} + + +# func_missing_arg ARGNAME +# ------------------------ +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $debug_cmd + + func_error "Missing argument for '$1'." + exit_cmd=exit +} + + +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () +{ + $debug_cmd + + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} + + +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} + + +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () +{ + $debug_cmd + + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + + exit $? +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: + +# Set a version string. +scriptversion='(GNU libtool) 2.4.6' + + +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () +{ + $debug_cmd + + $warning_func ${1+"$@"} +} + + +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" + +# Additional text appended to 'usage_message' in response to '--help'. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message + +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname (GNU libtool) 2.4.6 + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} + + +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi + + +# func_fatal_configuration ARG... +# ------------------------------- +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." +} + + +# func_config +# ----------- +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + + +# func_features +# ------------- +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test yes = "$build_libtool_libs"; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test yes = "$build_old_libs"; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + + +# func_enable_tag TAGNAME +# ----------------------- +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname=$1 + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + + +# func_check_version_match +# ------------------------ +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () +{ + $debug_mode + + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false + + nonopt= + preserve_args= + + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + esac + + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result +} +func_add_hook func_options_prep libtool_options_prep + + +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd + + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options + + + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift + fi + + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } + + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result +} +func_add_hook func_validate_options libtool_validate_options + + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift + + + +## ----------- ## +## Main. ## +## ----------- ## + +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if 'file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case $lalib_p_line in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test yes = "$lalib_p" +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $debug_cmd + + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# 'FILE.' does not work on cygwin managed mounts. +func_source () +{ + $debug_cmd + + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case $lt_sysroot:$1 in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result='='$func_stripname_result + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $debug_cmd + + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with '--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' + else + write_lobj=none + fi + + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $debug_cmd + + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result= + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result"; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $debug_cmd + + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $debug_cmd + + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $debug_cmd + + if test -z "$2" && test -n "$1"; then + func_error "Could not determine host file name corresponding to" + func_error " '$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result=$1 + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $debug_cmd + + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " '$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result=$3 + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $debug_cmd + + case $4 in + $1 ) func_to_host_path_result=$3$func_to_host_path_result + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via '$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $debug_cmd + + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $debug_cmd + + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result=$1 +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result=$func_convert_core_msys_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via '$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $debug_cmd + + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd=func_convert_path_$func_stripname_result + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $debug_cmd + + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result=$1 +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_msys_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + +# func_mode_compile arg... +func_mode_compile () +{ + $debug_cmd + + # Get the compilation command and the source file. + base_compile= + srcfile=$nonopt # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg=$arg + arg_mode=normal + ;; + + target ) + libobj=$arg + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify '-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs=$IFS; IFS=, + for arg in $args; do + IFS=$save_ifs + func_append_quoted lastarg "$arg" + done + IFS=$save_ifs + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg=$srcfile + srcfile=$arg + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with '-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj=$func_basename_result + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from '$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name '$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test yes = "$build_old_libs"; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test yes = "$need_locks"; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test warn = "$need_locks"; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test yes = "$build_libtool_libs"; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test no != "$pic_mode"; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test yes = "$suppress_opt"; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test yes = "$compiler_c_o"; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test no != "$need_locks"; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a 'standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to '-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the '--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the 'install' or 'cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with '-') are ignored. + +Every other argument is treated as a filename. Files ending in '.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. + +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode '$opt_mode'" + ;; + esac + + echo + $ECHO "Try '$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test : = "$opt_help"; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + $SED '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $debug_cmd + + # The first argument is the command name. + cmd=$nonopt + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "'$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "'$file' was not linked with '-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir=$func_dirname_result + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir=$func_dirname_result + ;; + + *) + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir=$absdir + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic=$magic + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file=$progdir/$program + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file=$progdir/$program + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd=\$cmd$args + fi +} + +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $debug_cmd + + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "'$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument '$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and '=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_quiet && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the '$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the '$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the '$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $debug_cmd + + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac + then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=false + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=: ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the '$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir=$func_dirname_result + destname=$func_basename_result + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "'$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "'$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir=$func_dirname_result + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking '$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname=$1 + shift + + srcname=$realname + test -n "$relink_command" && srcname=${realname}T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme=$stripme + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try 'ln -sf' first, because the 'ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib=$destdir/$realname + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name=$func_basename_result + instname=$dir/${name}i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest=$destfile + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to '$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test yes = "$build_old_libs"; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext= + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=.exe + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script '$wrapper'" + + finalize=: + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test no = "$fast_install" && test -n "$relink_command"; then + $opt_dry_run || { + if $finalize; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file=$func_basename_result + outputname=$tmpdir/$file + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_quiet || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink '$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file=$outputname + else + func_warning "cannot relink '$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name=$func_basename_result + + # Set up the ranlib parameters. + oldlib=$destdir/$name + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run '$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test install = "$opt_mode" && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms=${my_outputname}S.c + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist=$output_objdir/$my_outputname.nm + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* External symbol declarations for the compiler. */\ +" + + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols=$output_objdir/$outputname.exp + $opt_dry_run || { + $RM $export_symbols + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from '$dlprefile'" + func_basename "$dlprefile" + name=$func_basename_result + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename= + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname"; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename=$func_basename_result + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename"; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + $my_pic_p && pic_flag_for_symtable=" $pic_flag" + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' + + # Transform the symbol file into the correct name. + symfileobj=$output_objdir/${my_outputname}S.$objext + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for '$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $debug_cmd + + win32_libid_type=unknown + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s|.*|import| + p + q + } + }'` + ;; + esac + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $debug_cmd + + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $debug_cmd + + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1"; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result= + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test yes = "$lock_old_archive_extraction"; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $debug_cmd + + my_gentop=$1; shift + my_oldlibs=${1+"$@"} + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib=$func_basename_result + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" + cd "$darwin_curdir" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result=$my_oldobjs +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory where it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test yes = "$fast_install"; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + \$ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* declarations of non-ANSI functions */ +#if defined __MINGW32__ +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined __CYGWIN__ +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined other_platform || defined ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined _MSC_VER +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +#elif defined __MINGW32__ +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined __CYGWIN__ +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined other platforms ... */ +#endif + +#if defined PATH_MAX +# define LT_PATHMAX PATH_MAX +#elif defined MAXPATHLEN +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free (stale); stale = 0; } \ +} while (0) + +#if defined LT_DEBUGWRAPPER +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + size_t tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined HAVE_DOS_BASED_FILE_SYSTEM + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined HAVE_DOS_BASED_FILE_SYSTEM + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = (size_t) (q - p); + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (STREQ (str, pat)) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + size_t len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + size_t orig_value_len = strlen (orig_value); + size_t add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[--len] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $debug_cmd + + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $debug_cmd + + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # what system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll that has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + os2dllname= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=false + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module=$wl-single_module + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg=$1 + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir=$arg + prev= + continue + ;; + dlfiles|dlprefiles) + $preload || { + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=: + } + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test no = "$dlself"; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test dlprefiles = "$prev"; then + dlself=yes + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test dlfiles = "$prev"; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols=$arg + test -f "$arg" \ + || func_fatal_error "symbol file '$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex=$arg + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + if test none != "$pic_object"; then + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + fi + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file '$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; + precious_regex) + precious_files_regex=$arg + prev= + continue + ;; + release) + release=-$arg + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test rpath = "$prev"; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds=$arg + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg=$arg + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "'-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test X-export-symbols = "X$arg"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between '-L' and '$1'" + else + func_fatal_error "need path for '-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test X-lc = "X$arg" || test X-lm = "X$arg"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test X-lc = "X$arg" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc due to us having libc/libc_r. + test X-lc = "X$arg" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test X-lc = "X$arg" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test X-lc = "X$arg" && continue + ;; + esac + elif test X-lc_r = "X$arg"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -mllvm) + prev=mllvm + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module=$wl-multi_module + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -os2dllname) + prev=os2dllname + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -stdlib=* select c++ std lib with clang + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + test none = "$pic_object" || { + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + } + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test dlfiles = "$prev"; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test dlprefiles = "$prev"; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the '$prevarg' option requires an argument" + + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname=$func_basename_result + libobjs_save=$libobjs + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + + func_dirname "$output" "/" "" + output_objdir=$func_dirname_result$objdir + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test lib = "$linkmode"; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=false + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test lib,link = "$linkmode,$pass"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs=$tmp_deplibs + fi + + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs + deplibs= + fi + if test prog = "$linkmode"; then + case $pass in + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; + link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + esac + fi + if test lib,dlpreopen = "$linkmode,$pass"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs=$dlprefiles + fi + if test dlopen = "$pass"; then + # Collect dlpreopened libraries + save_deplibs=$deplibs + deplibs= + fi + + for deplib in $libs; do + lib= + found=false + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test lib = "$linkmode"; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib=$searchdir/lib$name$search_ext + if test -f "$lib"; then + if test .la = "$search_ext"; then + found=: + else + found=false + fi + break 2 + fi + done + done + if $found; then + # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll=$l + done + if test "X$ll" = "X$old_library"; then # only static version available + found=false + func_dirname "$lib" "" "." + ladir=$func_dirname_result + lib=$ladir/$old_library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + ;; # -l + *.ltframework) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test conv = "$pass" && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + if test scan = "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "'-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test link = "$pass"; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=false + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=: + fi + ;; + pass_all) + valid_a_lib=: + ;; + esac + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + fi + ;; + esac + continue + ;; + prog) + if test link != "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=: + continue + ;; + esac # case $deplib + + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "'$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir=$func_dirname_result + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test conv = "$pass"; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" + fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib=$l + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + + # This library was specified with -dlopen. + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" + if test -z "$dlname" || + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of '$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir=$ladir + fi + ;; + esac + func_basename "$lib" + laname=$func_basename_result + + # Find the relevant object directory and library name. + if test yes = "$installed"; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir + else + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir + fi + test yes = "$hardcode_automatic" && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir=$ladir + absdir=$abs_ladir + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" + fi + case $host in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test lib = "$linkmode"; then + deplibs="$dir/$old_library $deplibs" + elif test prog,link = "$linkmode,$pass"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test prog = "$linkmode" && test link != "$pass"; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if $linkalldeplibs; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test prog,link = "$linkmode,$pass"; then + if test -n "$library_names" && + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then + # Make sure the rpath contains only unique directories. + case $temp_rpath: in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test built = "$use_static_libs" && test yes = "$installed"; then + use_static_libs=no + fi + if test -n "$library_names" && + { test no = "$use_static_libs" || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc* | *os2*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test no = "$installed"; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule= + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule=$dlpremoduletest + break + fi + done + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then + echo + if test prog = "$linkmode"; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname=$1 + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname=$dlname + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc* | *os2*) + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + esac + eval soname=\"$soname_spec\" + else + soname=$realname + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot=$soname + func_basename "$soroot" + soname=$func_basename_result + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from '$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for '$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test prog = "$linkmode" || test relink != "$opt_mode"; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test no = "$hardcode_direct"; then + add=$dir/$linklib + case $host in + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir=-L$dir ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we cannot + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library"; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add=$dir/$old_library + fi + elif test -n "$old_library"; then + add=$dir/$old_library + fi + fi + esac + elif test no = "$hardcode_minus_L"; then + case $host in + *-*-sunos*) add_shlibpath=$dir ;; + esac + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + relink) + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test yes != "$lib_linked"; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test prog = "$linkmode"; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test prog = "$linkmode" || test relink = "$opt_mode"; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add=-l$name + elif test yes = "$hardcode_automatic"; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib + else + add=$libdir/$linklib + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir=-L$libdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + fi + + if test prog = "$linkmode"; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test prog = "$linkmode"; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test yes = "$build_libtool_libs"; then + # Not a shared library + if test pass_all != "$deplibs_check_method"; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system cannot link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test yes = "$module"; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test lib = "$linkmode"; then + if test -n "$dependency_libs" && + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs=$temp_deplibs + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test no != "$link_all_deplibs"; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path=$deplib ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" + path= + fi + fi + ;; + *) + path=-L$absdir/$objdir + ;; + esac + else + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "'$deplib' seems to be moved" + + path=-L$absdir + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test link = "$pass"; then + if test prog = "$linkmode"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test dlopen != "$pass"; then + test conv = "$pass" || { + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + } + + if test prog,link = "$linkmode,$pass"; then + vars="compile_deplibs finalize_deplibs" + else + vars=deplibs + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i= + ;; + esac + if test -n "$i"; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test prog = "$linkmode"; then + dlfiles=$newdlfiles + fi + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "'-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "'-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs=$output + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form 'libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" + + if test no != "$need_lib_prefix"; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" + + install_libdir=$1 + + oldlibs= + if test -z "$rpath"; then + if test yes = "$build_libtool_libs"; then + # Building a libtool convenience library. + # Some compilers have problems with a '.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "'-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs=$IFS; IFS=: + set dummy $vinfo 0 0 0 + shift + IFS=$save_ifs + + test -n "$7" && \ + func_fatal_help "too many parameters to '-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major=$1 + number_minor=$2 + number_revision=$3 + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # that has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|freebsd-elf|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_minor + lt_irix_increment=no + ;; + esac + ;; + no) + current=$1 + revision=$2 + age=$3 + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac + ;; + + freebsd-aout) + major=.$current + versuffix=.$current.$revision + ;; + + freebsd-elf) + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + irix | nonstopux) + if test no = "$lt_irix_increment"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring=$verstring_prefix$major.$revision + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test 0 -ne "$loop"; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring_prefix$major.$iface:$verstring + done + + # Before this point, $major must not contain '.'. + major=.$major + versuffix=$major.$revision + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision + + # Add in all the interfaces that we are compatible with. + loop=$age + while test 0 -ne "$loop"; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring:$iface.0 + done + + # Make executables depend on our current version. + func_append verstring ":$current.0" + ;; + + qnx) + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current + ;; + + sunos) + major=.$current + versuffix=.$current.$revision + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 file systems. + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + + *) + func_fatal_configuration "unknown library version type '$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring=0.0 + ;; + esac + if test no = "$need_version"; then + versuffix= + else + versuffix=.0.0 + fi + fi + + # Remove version info from name if versioning should be avoided + if test yes,no = "$avoid_version,$need_version"; then + major= + versuffix= + verstring= + fi + + # Check to see if the archive will have undefined symbols. + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi + fi + else + # Don't allow undefined symbols. + allow_undefined_flag=$no_undefined_flag + fi + + fi + + func_generate_dlsyms "$libname" "$libname" : + func_append libobjs " $symfileobj" + test " " = "$libobjs" && libobjs= + + if test relink != "$opt_mode"; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles=$dlfiles + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles=$dlprefiles + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test yes = "$build_libtool_libs"; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test yes = "$build_libtool_need_lc"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release= + versuffix= + major= + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib=$potent_lib + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib= + ;; + esac + fi + if test -n "$a_deplib"; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib=$potent_lib # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs= + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test none = "$deplibs_check_method"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test yes = "$droppeddeps"; then + if test yes = "$module"; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test no = "$allow_undefined"; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs=$new_libs + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test yes = "$hardcode_into_libs"; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname=$1 + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname=$realname + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib=$output_objdir/$realname + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + func_dll_def_p "$export_symbols" || { + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols=$export_symbols + export_symbols= + always_export_symbols=yes + } + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs=$IFS; IFS='~' + for cmd1 in $cmds; do + IFS=$save_ifs + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test yes = "$try_normal_branch" \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=$output_objdir/$output_la.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs=$tmp_deplibs + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test yes = "$compiler_needs_object" && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test : != "$skipped_export" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test yes = "$compiler_needs_object"; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-$k.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test -z "$objlist" || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test 1 -eq "$k"; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-$k.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-$k.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + } + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs=$IFS; IFS='~' + for cmd in $concat_cmds; do + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + ${skipped_export-false} && { + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + } + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs=$IFS; IFS='~' + for cmd in $cmds; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test yes = "$module" || test yes = "$export_dynamic"; then + # On all known operating systems, these are identical. + dlname=$soname + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "'-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object '$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj=$output + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags + else + gentop=$output_objdir/${obj}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects + + # Create the old-style object. + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs + + output=$obj + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + test yes = "$build_libtool_libs" || { + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + } + + if test -n "$pic_flag" || test default != "$pic_mode"; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output=$libobj + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "'-release' is ignored for programs" + + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test CXX = "$tagname"; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs=$new_libs + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath=$rpath + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath=$rpath + + if test -n "$libobjs" && test yes = "$build_old_libs"; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" false + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=: + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=false + ;; + *cygwin* | *mingw* ) + test yes = "$build_libtool_libs" || wrappers_required=false + ;; + *) + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false + fi + ;; + esac + $wrappers_required || { + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command=$compile_command$compile_rpath + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' + fi + + exit $exit_status + } + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test yes = "$no_install"; then + # We don't need to create a wrapper script. + link_command=$compile_var$compile_command$compile_rpath + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host"; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience + build_libtool_libs=no + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) + oldobjs="$old_deplibs $non_pic_objects" + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac + + if test -n "$addlibs"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase=$func_basename_result + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj"; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test -z "$oldobjs"; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test yes = "$build_old_libs" && old_library=$libname.$libext + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test yes = "$hardcode_automatic"; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test yes = "$installed"; then + if test -z "$install_libdir"; then + break + fi + output=$output_objdir/${outputname}i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name=$func_basename_result + func_resolve_sysroot "$deplib" + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs=$newdependency_libs + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles=$newdlprefiles + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles=$newdlprefiles + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test -n "$bindir"; then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result/$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test no,yes = "$installed,$need_relink"; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $debug_cmd + + RM=$nonopt + files= + rmforce=false + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=: ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir + else + odir=$dir/$objdir + fi + func_basename "$file" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir + + # Remember odir for removal later, being careful to avoid duplicates + if test clean = "$opt_mode"; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif $rmforce; then + continue + fi + + rmfiles=$file + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case $opt_mode in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && test none != "$pic_object"; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && test none != "$non_pic_object"; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test clean = "$opt_mode"; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the $objdir's in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi + +test -z "$opt_mode" && { + help=$generic_help + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode '$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# where we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD="" + +# How to create reloadable object files. +reload_flag=" -r" +reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" + +# Commands used to build an old-style archive. +old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" + +# A language specific compiler. +CC="" + +# Is the compiler the GNU compiler? +with_gcc= + +# Compiler flag to turn off builtin functions. +no_builtin_flag="" + +# Additional compiler flags for building library objects. +pic_flag="" + +# How to pass a linker flag through the compiler. +wl="" + +# Compiler flag to prevent dynamic linking. +link_static_flag="" + +# Does compiler simultaneously support -c and -o options? +compiler_c_o="" + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=no + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=no + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec="" + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec="" + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object="no" + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds="" + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds="" + +# Commands used to build a shared archive. +archive_cmds="" +archive_expsym_cmds="" + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds="" +module_expsym_cmds="" + +# Whether we are building with GNU ld or not. +with_gnu_ld="" + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag="" + +# Flag that enforces no undefined symbols. +no_undefined_flag="" + +# Flag to hardcode $libdir into a binary during linking. +# This must work even if $libdir does not exist +hardcode_libdir_flag_spec="" + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator="" + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=no + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting $shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=no + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=no + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=unsupported + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=no + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=no + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=unknown + +# Set to "yes" if exported symbols are required. +always_export_symbols=no + +# The commands to list exported symbols. +export_symbols_cmds="" + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms="" + +# Symbols that must always be exported. +include_expsyms="" + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds="" + +# Commands necessary for finishing linking programs. +postlink_cmds="" + +# Specify filename containing input files. +file_list_spec="" + +# How to hardcode a shared library path into an executable. +hardcode_action= + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs="" + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects="" +postdep_objects="" +predeps="" +postdeps="" + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path="" + +# ### END LIBTOOL TAG CONFIG: CXX + +# ### BEGIN LIBTOOL TAG CONFIG: FC + +# The linker used to build libraries. +LD="" + +# How to create reloadable object files. +reload_flag=" -r" +reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" + +# Commands used to build an old-style archive. +old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" + +# A language specific compiler. +CC="" + +# Is the compiler the GNU compiler? +with_gcc= + +# Compiler flag to turn off builtin functions. +no_builtin_flag="" + +# Additional compiler flags for building library objects. +pic_flag="" + +# How to pass a linker flag through the compiler. +wl="" + +# Compiler flag to prevent dynamic linking. +link_static_flag="" + +# Does compiler simultaneously support -c and -o options? +compiler_c_o="" + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=no + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=no + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec="" + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec="" + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object="" + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds="" + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds="" + +# Commands used to build a shared archive. +archive_cmds="" +archive_expsym_cmds="" + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds="" +module_expsym_cmds="" + +# Whether we are building with GNU ld or not. +with_gnu_ld="" + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag="" + +# Flag that enforces no undefined symbols. +no_undefined_flag="" + +# Flag to hardcode $libdir into a binary during linking. +# This must work even if $libdir does not exist +hardcode_libdir_flag_spec="" + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator="" + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=no + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting $shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=no + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=no + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var= + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=no + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=no + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=unknown + +# Set to "yes" if exported symbols are required. +always_export_symbols=no + +# The commands to list exported symbols. +export_symbols_cmds="" + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms="" + +# Symbols that must always be exported. +include_expsyms="" + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds="" + +# Commands necessary for finishing linking programs. +postlink_cmds="" + +# Specify filename containing input files. +file_list_spec="" + +# How to hardcode a shared library path into an executable. +hardcode_action= + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs="" + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects="" +postdep_objects="" +predeps="" +postdeps="" + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path="" + +# ### END LIBTOOL TAG CONFIG: FC diff --git a/build/makecheck.out b/build/makecheck.out new file mode 100644 index 0000000..9ad4459 --- /dev/null +++ b/build/makecheck.out @@ -0,0 +1,12131 @@ +Making check in src +gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[1]: warning: -jN forced in submake: disabling jobserver mode. + CC H5.lo + CC H5system.lo + CC H5trace.lo + CC H5A.lo + CC H5Abtree2.lo + CC H5Adense.lo + CC H5Adeprec.lo + CC H5Aint.lo +../../src/H5trace.c: In function ‘H5_trace’: +../../src/H5trace.c:157:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(HDfabs(first_time.etime) < 0.0000000001F) + ^ +../../src/H5system.c: In function ‘HDfprintf’: +../../src/H5system.c:275:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf (stream, format_templ, x); + ^ +../../src/H5system.c:278:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf (stream, format_templ, x); + ^ +../../src/H5system.c:281:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf (stream, format_templ, x); + ^ +../../src/H5system.c:284:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf (stream, format_templ, x); + ^ +../../src/H5system.c:294:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:297:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:300:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:303:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:314:25: warning: implicit conversion from ‘float’ to ‘double’ when passing argument to function [-Wdouble-promotion] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:314:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] +../../src/H5system.c:317:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:325:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:362:29: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:374:29: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + fprintf(stream, format_templ, "UNDEF"); + ^ +../../src/H5system.c:382:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:390:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, x); + ^ +../../src/H5system.c:396:21: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + n = fprintf(stream, format_templ, nout); + ^ +../../src/H5trace.c:2310:29: warning: conversion to ‘hssize_t’ from ‘long unsigned int’ may change the sign of the result [-Wsign-conversion] + asize[argno] = iul; + ^ +../../src/H5trace.c:2334:29: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] + asize[argno] = iull; + ^ +../../src/H5Aint.c: In function ‘H5A_create’: +../../src/H5Aint.c:200:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Aprivate.h:25, + from ../../src/H5Apkg.h:37, + from ../../src/H5Aint.c:37: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Aint.c: In function ‘H5A_write’: +../../src/H5Aint.c:532:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Aprivate.h:25, + from ../../src/H5Apkg.h:37, + from ../../src/H5Aint.c:37: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Aint.c: In function ‘H5A_read’: +../../src/H5Aint.c:649:25: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Aprivate.h:25, + from ../../src/H5Apkg.h:37, + from ../../src/H5Aint.c:37: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +In file included from ../../src/H5Aint.c:36:0: +../../src/H5Aint.c: In function ‘H5A_attr_copy_file’: +../../src/H5Sprivate.h:170:71: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + #define H5S_GET_EXTENT_NPOINTS(S) (H5S_get_simple_extent_npoints(S)) + ^ +../../src/H5private.h:1485:34: note: in definition of macro ‘ASSIGN_TO_SAME_SIZE_SIGNED_TO_UNSIGNED’ + srctype _tmp_src = (srctype)(src); \ + ^ +../../src/H5private.h:2083:28: note: in expansion of macro ‘ASSIGN_hssize_t_TO_size_t’ + #define H5_GLUE4(w,x,y,z) w##x##y##z + ^ +../../src/H5Aint.c:2020:5: note: in expansion of macro ‘H5_CHECKED_ASSIGN’ + H5_CHECKED_ASSIGN(attr_dst->shared->data_size, size_t, H5S_GET_EXTENT_NPOINTS(attr_dst->shared->ds) * H5T_get_size(attr_dst->shared->dt), hssize_t); + ^ +../../src/H5Aint.c:2020:60: note: in expansion of macro ‘H5S_GET_EXTENT_NPOINTS’ + H5_CHECKED_ASSIGN(attr_dst->shared->data_size, size_t, H5S_GET_EXTENT_NPOINTS(attr_dst->shared->ds) * H5T_get_size(attr_dst->shared->dt), hssize_t); + ^ +In file included from ../../src/H5Aint.c:39:0: +../../src/H5Eprivate.h:76:40: warning: assignment makes pointer from integer without a cast [enabled by default] + #define HGOTO_DONE(ret_val) {ret_value = ret_val; goto done;} + ^ +../../src/H5Eprivate.h:67:4: note: in expansion of macro ‘HGOTO_DONE’ + HGOTO_DONE(ret_val) \ + ^ +../../src/H5Aint.c:2102:21: note: in expansion of macro ‘HGOTO_ERROR’ + HGOTO_ERROR(H5E_ATTR, H5E_CANTALLOC, FAIL, "memory allocation failed") + ^ + CC H5Atest.lo + CC H5AC.lo + CC H5B.lo + CC H5Bcache.lo + CC H5Bdbg.lo + CC H5B2.lo + CC H5B2cache.lo + CC H5B2dbg.lo +../../src/H5B.c: In function ‘H5B_shared_new’: +../../src/H5B.c:1749:30: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + shared->nkey = H5FL_SEQ_FREE(size_t, shared->nkey); + ^ +../../src/H5B.c: In function ‘H5B_shared_free’: +../../src/H5B.c:1780:18: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + shared->nkey = H5FL_SEQ_FREE(size_t, shared->nkey); + ^ +../../src/H5B.c: In function ‘H5B_copy’: +../../src/H5B.c:1848:22: warning: request for implicit conversion from ‘void *’ to ‘haddr_t *’ not permitted in C++ [-Wc++-compat] + new_node->child = H5FL_SEQ_FREE(haddr_t, new_node->child); + ^ +../../src/H5B.c: In function ‘H5B_node_dest’: +../../src/H5B.c:2095:15: warning: request for implicit conversion from ‘void *’ to ‘haddr_t *’ not permitted in C++ [-Wc++-compat] + bt->child = H5FL_SEQ_FREE(haddr_t, bt->child); + ^ +../../src/H5B2cache.c: In function ‘H5B2__cache_internal_load’: +../../src/H5B2cache.c:551:27: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] + internal->nrec = udata->nrec; + ^ +../../src/H5B2cache.c:552:28: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] + internal->depth = udata->depth; + ^ +In file included from ../../src/H5B2private.h:32:0, + from ../../src/H5B2pkg.h:30, + from ../../src/H5B2cache.c:36: +../../src/H5Fprivate.h:149:20: warning: conversion to ‘uint16_t’ from ‘int’ may alter its value [-Wconversion] + n = (n << 8) | *(--p); \ + ^ +../../src/H5Fprivate.h:181:41: note: in expansion of macro ‘DECODE_VAR’ + # define UINT64DECODE_VAR(p, n, l) DECODE_VAR(p, n, l) + ^ +../../src/H5B2cache.c:571:9: note: in expansion of macro ‘UINT64DECODE_VAR’ + UINT64DECODE_VAR(p, int_node_ptr->node_nrec, udata->hdr->max_nrec_size); + ^ +../../src/H5B2cache.c: In function ‘H5B2__cache_leaf_load’: +../../src/H5B2cache.c:889:23: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] + leaf->nrec = udata->nrec; + ^ + CC H5B2hdr.lo + CC H5B2int.lo + CC H5B2stat.lo + CC H5B2test.lo + CC H5C.lo + CC H5D.lo + CC H5Dbtree.lo + CC H5Dchunk.lo +../../src/H5B2hdr.c: In function ‘H5B2_hdr_free’: +../../src/H5B2hdr.c:523:22: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + hdr->nat_off = H5FL_SEQ_FREE(size_t, hdr->nat_off); + ^ +../../src/H5B2hdr.c:540:24: warning: request for implicit conversion from ‘void *’ to ‘struct H5B2_node_info_t *’ not permitted in C++ [-Wc++-compat] + hdr->node_info = H5FL_SEQ_FREE(H5B2_node_info_t, hdr->node_info); + ^ +../../src/H5B2test.c: In function ‘H5B2_get_node_depth_test’: +../../src/H5B2test.c:534:22: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + ret_value = ninfo.depth; + ^ +../../src/H5C.c:283:1: warning: ‘H5C_epoch_marker_notify’ defined but not used [-Wunused-function] + H5C_epoch_marker_notify(H5C_notify_action_t H5_ATTR_UNUSED action, + ^ + CC H5Dcompact.lo + CC H5Dcontig.lo + CC H5Ddbg.lo +../../src/H5Dchunk.c: In function ‘H5D__chunk_io_init’: +../../src/H5Dchunk.c:956:60: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if((file_space_normalized = H5S_hyper_normalize_offset((H5S_t *)file_space, old_offset)) < 0) + ^ +../../src/H5Dchunk.c:1194:41: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5S_hyper_denormalize_offset((H5S_t *)file_space, old_offset) < 0) + ^ +../../src/H5Dchunk.c: In function ‘H5D__create_chunk_map_single’: +../../src/H5Dchunk.c:1414:26: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + chunk_info->mspace = (H5S_t *)fm->mem_space; + ^ +../../src/H5Dchunk.c: In function ‘H5D__create_chunk_file_map_hyper’: +../../src/H5Dchunk.c:1481:46: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(TRUE == H5S_hyper_intersect_block((H5S_t *)fm->file_space, coords, end)) { + ^ +../../src/H5Dchunk.c: In function ‘H5D__create_chunk_mem_map_hyper’: +../../src/H5Dchunk.c:1648:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + chunk_info->mspace = (H5S_t *)fm->mem_space; + ^ +../../src/H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../../src/H5Dchunk.c:3563:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + (void *)pline, (H5MM_free_t)H5D__chunk_xfree, (void *)pline, + ^ +../../src/H5Dchunk.c:3563:63: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + (void *)pline, (H5MM_free_t)H5D__chunk_xfree, (void *)pline, + ^ +../../src/H5Dchunk.c: In function ‘H5D__chunk_prune_fill’: +../../src/H5Dchunk.c:4007:20: warning: size of ‘chunk_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t chunk_iter; /* Memory selection iteration info */ + ^ +../../src/H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../../src/H5Dchunk.c:4848:35: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] + H5D_shared_t *shared_fo = udata->cpy_info->shared_fo; + ^ +../../src/H5Dchunk.c: In function ‘H5D__chunk_copy’: +../../src/H5Dchunk.c:5095:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dchunk.c:55: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dchunk.c:5103:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dchunk.c:55: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dchunk.c: In function ‘H5D__chunk_dest’: +../../src/H5Dchunk.c:5460:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_rdcc_ent_t **’ not permitted in C++ [-Wc++-compat] + rdcc->slot = H5FL_SEQ_FREE(H5D_rdcc_ent_ptr_t, rdcc->slot); + ^ +../../src/H5Dcompact.c: In function ‘H5D__compact_copy’: +../../src/H5Dcompact.c:410:34: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] + H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ + ^ + CC H5Ddeprec.lo +../../src/H5Dcontig.c: In function ‘H5D__contig_copy’: +../../src/H5Dcontig.c:1301:34: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] + H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ + ^ + CC H5Defl.lo + CC H5Dfill.lo + CC H5Dint.lo + CC H5Dio.lo + CC H5Dlayout.lo +In file included from ../../src/H5Cprivate.h:35:0, + from ../../src/H5ACprivate.h:33, + from ../../src/H5Oprivate.h:36, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Defl.c:30: +../../src/H5Defl.c: In function ‘H5D__efl_read’: +../../src/H5Defl.c:291:49: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] + if(H5F_OVERFLOW_HSIZET2OFFT(efl->slot[u].offset + skip)) + ^ +../../src/H5Fprivate.h:344:16: note: in definition of macro ‘H5F_OVERFLOW_HSIZET2OFFT’ + ((hsize_t)(X)>=(hsize_t)((hsize_t)1<<(8*sizeof(off_t)-1))) + ^ +In file included from ../../src/H5Defl.c:29:0: +../../src/H5Defl.c:297:46: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] + if(HDlseek(fd, (HDoff_t)(efl->slot[u].offset + skip), SEEK_SET) < 0) + ^ +../../src/H5private.h:975:37: note: in definition of macro ‘HDlseek’ + #define HDlseek(F,O,W) lseek(F,O,W) + ^ +In file included from ../../src/H5Cprivate.h:35:0, + from ../../src/H5ACprivate.h:33, + from ../../src/H5Oprivate.h:36, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Defl.c:30: +../../src/H5Defl.c: In function ‘H5D__efl_write’: +../../src/H5Defl.c:383:49: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] + if(H5F_OVERFLOW_HSIZET2OFFT(efl->slot[u].offset + skip)) + ^ +../../src/H5Fprivate.h:344:16: note: in definition of macro ‘H5F_OVERFLOW_HSIZET2OFFT’ + ((hsize_t)(X)>=(hsize_t)((hsize_t)1<<(8*sizeof(off_t)-1))) + ^ +In file included from ../../src/H5Defl.c:29:0: +../../src/H5Defl.c:393:46: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] + if(HDlseek(fd, (HDoff_t)(efl->slot[u].offset + skip), SEEK_SET) < 0) + ^ +../../src/H5private.h:975:37: note: in definition of macro ‘HDlseek’ + #define HDlseek(F,O,W) lseek(F,O,W) + ^ + CC H5Dmpio.lo +../../src/H5Dint.c: In function ‘H5D__init_type’: +../../src/H5Dint.c:636:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dint.c:28: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dint.c:664:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + dset->shared->type = (H5T_t *)type; /* (Cast away const OK - QAK) */ + ^ + CC H5Doh.lo +../../src/H5Dfill.c: In function ‘H5D__fill’: +../../src/H5Dfill.c:232:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dfill.c:35: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dfill.c:235:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dfill.c:35: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dfill.c:246:28: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t mem_iter; /* Memory selection iteration info */ + ^ +../../src/H5Dfill.c: In function ‘H5D__fill_init’: +../../src/H5Dfill.c:405:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Dpkg.h:30, + from ../../src/H5Dfill.c:35: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Dio.c: In function ‘H5Dread’: +../../src/H5Dio.c:198:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + for(u = 0; u < ndims; u++) { + ^ +../../src/H5Dio.c: In function ‘H5D__pre_write’: +../../src/H5Dio.c:381:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + for(u = 0; u < ndims; u++) { + ^ +../../src/H5Dio.c: In function ‘H5D__read’: +../../src/H5Dio.c:428:21: warning: size of ‘fm’ is 2864 bytes [-Wlarger-than=] + H5D_chunk_map_t fm; /* Chunk file<->memory mapping */ + ^ +../../src/H5Dio.c:475:5: warning: implicit declaration of function ‘H5T_patch_vlen_file’ [-Wimplicit-function-declaration] + H5T_patch_vlen_file(dataset->shared->type, dataset->oloc.file); + ^ +../../src/H5Dio.c:475:5: warning: nested extern declaration of ‘H5T_patch_vlen_file’ [-Wnested-externs] +../../src/H5Dio.c:532:66: warning: to be safe all intermediate pointers in cast from ‘void **’ to ‘const void **’ must be ‘const’ qualified [-Wcast-qual] + (unsigned)H5S_GET_EXTENT_NDIMS(file_space), buf, (const void **)&adj_buf, type_info.dst_type_size) < 0) + ^ +../../src/H5Dio.c: In function ‘H5D__write’: +../../src/H5Dio.c:647:21: warning: size of ‘fm’ is 2864 bytes [-Wlarger-than=] + H5D_chunk_map_t fm; /* Chunk file<->memory mapping */ + ^ +../../src/H5Dio.c:789:66: warning: to be safe all intermediate pointers in cast from ‘void **’ to ‘const void **’ must be ‘const’ qualified [-Wcast-qual] + (unsigned)H5S_GET_EXTENT_NDIMS(file_space), buf, (const void **)&adj_buf, type_info.src_type_size) < 0) + ^ + CC H5Dscatgath.lo + CC H5Dselect.lo + CC H5Dtest.lo + CC H5E.lo + CC H5Edeprec.lo + CC H5F.lo +../../src/H5Dselect.c: In function ‘H5D__select_io’: +../../src/H5Dselect.c:87:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t mem_iter; /* Memory selection iteration info */ + ^ +../../src/H5Dselect.c:89:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t file_iter; /* File selection iteration info */ + ^ +../../src/H5Dselect.c:91:13: warning: size of ‘_mem_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _mem_off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets in memory */ + ^ +../../src/H5Dselect.c:93:13: warning: size of ‘_file_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _file_off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets in the file */ + ^ +../../src/H5Dselect.c:95:12: warning: size of ‘_mem_len’ is 8192 bytes [-Wlarger-than=] + size_t _mem_len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths in memory */ + ^ +../../src/H5Dselect.c:97:12: warning: size of ‘_file_len’ is 8192 bytes [-Wlarger-than=] + size_t _file_len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths in the file */ + ^ +../../src/H5Dselect.c:240:18: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + file_len = H5FL_SEQ_FREE(size_t, file_len); + ^ +../../src/H5Dselect.c:242:18: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + file_off = H5FL_SEQ_FREE(hsize_t, file_off); + ^ +../../src/H5Dselect.c:244:17: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + mem_len = H5FL_SEQ_FREE(size_t, mem_len); + ^ +../../src/H5Dselect.c:246:17: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + mem_off = H5FL_SEQ_FREE(hsize_t, mem_off); + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatter_file’: +../../src/H5Dscatgath.c:98:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Dscatgath.c:103:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] + size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Dscatgath.c:162:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + len = H5FL_SEQ_FREE(size_t, len); + ^ +../../src/H5Dscatgath.c:164:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + off = H5FL_SEQ_FREE(hsize_t, off); + ^ +../../src/H5Dscatgath.c: In function ‘H5D__gather_file’: +../../src/H5Dscatgath.c:197:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Dscatgath.c:202:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] + size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Dscatgath.c:263:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + len = H5FL_SEQ_FREE(size_t, len); + ^ +../../src/H5Dscatgath.c:265:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + off = H5FL_SEQ_FREE(hsize_t, off); + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatter_mem’: +../../src/H5Dscatgath.c:293:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Dscatgath.c:295:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] + size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Dscatgath.c:348:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + len = H5FL_SEQ_FREE(size_t, len); + ^ +../../src/H5Dscatgath.c:350:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + off = H5FL_SEQ_FREE(hsize_t, off); + ^ +../../src/H5Dscatgath.c: In function ‘H5D__gather_mem’: +../../src/H5Dscatgath.c:380:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Dscatgath.c:382:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] + size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Dscatgath.c:435:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + len = H5FL_SEQ_FREE(size_t, len); + ^ +../../src/H5Dscatgath.c:437:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + off = H5FL_SEQ_FREE(hsize_t, off); + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatgath_read’: +../../src/H5Dscatgath.c:461:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t mem_iter; /*memory selection iteration info*/ + ^ +../../src/H5Dscatgath.c:463:20: warning: size of ‘bkg_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t bkg_iter; /*background iteration info*/ + ^ +../../src/H5Dscatgath.c:465:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t file_iter; /*file selection iteration info*/ + ^ +../../src/H5Dselect.c:84:1: warning: stack usage is 37424 bytes [-Wstack-usage=] + H5D__select_io(const H5D_io_info_t *io_info, size_t elmt_size, + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatgath_write’: +../../src/H5Dscatgath.c:593:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t mem_iter; /*memory selection iteration info*/ + ^ +../../src/H5Dscatgath.c:595:20: warning: size of ‘bkg_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t bkg_iter; /*background iteration info*/ + ^ +../../src/H5Dscatgath.c:597:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t file_iter; /*file selection iteration info*/ + ^ +../../src/H5Dselect.c:249:1: warning: the frame size of 37384 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* end H5D__select_io() */ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__compound_opt_read’: +../../src/H5Dscatgath.c:745:16: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] + hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Dscatgath.c:747:16: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] + size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Dscatgath.c:829:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] + len = H5FL_SEQ_FREE(size_t, len); + ^ +../../src/H5Dscatgath.c:831:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] + off = H5FL_SEQ_FREE(hsize_t, off); + ^ +../../src/H5Dscatgath.c: In function ‘H5Dscatter’: +../../src/H5Dscatgath.c:924:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter; /* Selection iteration info*/ + ^ +../../src/H5Dscatgath.c: In function ‘H5Dgather’: +../../src/H5Dscatgath.c:1024:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter; /* Selection iteration info*/ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatter_file’: +../../src/H5Dscatgath.c:93:1: warning: stack usage is 16720 bytes [-Wstack-usage=] + H5D__scatter_file(const H5D_io_info_t *_io_info, + ^ +../../src/H5Dscatgath.c:167:1: warning: the frame size of 16680 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* H5D__scatter_file() */ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__gather_file’: +../../src/H5Dscatgath.c:192:1: warning: stack usage is 16736 bytes [-Wstack-usage=] + H5D__gather_file(const H5D_io_info_t *_io_info, + ^ +../../src/H5Dscatgath.c:268:1: warning: the frame size of 16696 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* H5D__gather_file() */ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__scatter_mem’: +../../src/H5Dscatgath.c:287:1: warning: stack usage is 16560 bytes [-Wstack-usage=] + H5D__scatter_mem (const void *_tscat_buf, const H5S_t *space, + ^ +../../src/H5Dscatgath.c:353:1: warning: the frame size of 16512 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* H5D__scatter_mem() */ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__gather_mem’: +../../src/H5Dscatgath.c:374:1: warning: stack usage is 16560 bytes [-Wstack-usage=] + H5D__gather_mem(const void *_buf, const H5S_t *space, + ^ +../../src/H5Dscatgath.c:440:1: warning: the frame size of 16512 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* H5D__gather_mem() */ + ^ +../../src/H5Dscatgath.c: In function ‘H5D__compound_opt_read’: +../../src/H5Dscatgath.c:739:1: warning: stack usage is 16624 bytes [-Wstack-usage=] + H5D__compound_opt_read(size_t nelmts, const H5S_t *space, + ^ +../../src/H5Dscatgath.c:834:1: warning: the frame size of 16576 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* end H5D__compound_opt_read() */ + ^ + CC H5Fint.lo + CC H5Faccum.lo + CC H5Fcwfs.lo + CC H5Fdbg.lo +../../src/H5E.c: In function ‘H5Epush2’: +../../src/H5E.c:1389:5: warning: function might be possible candidate for ‘gnu_printf’ format attribute [-Wsuggest-attribute=format] + if(HDvasprintf(&tmp, fmt, ap) < 0) + ^ + CC H5Fefc.lo + CC H5Ffake.lo +../../src/H5Fint.c: In function ‘H5F_build_actual_name’: +../../src/H5Fint.c:1581:18: warning: size of ‘realname’ is 4096 bytes [-Wlarger-than=] + char realname[PATH_MAX]; /* Fully resolved path name of file */ + ^ + CC H5Fio.lo + CC H5Fmount.lo + CC H5Fmpi.lo + CC H5Fquery.lo + CC H5Fsfile.lo + CC H5Fsuper.lo + CC H5Fsuper_cache.lo + CC H5Ftest.lo + CC H5FD.lo + CC H5FDcore.lo +../../src/H5Fsuper_cache.c: In function ‘H5F_sblock_load’: +../../src/H5Fsuper_cache.c:280:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->base_addr/*out*/); + ^ +../../src/H5Fsuper_cache.c:281:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->ext_addr/*out*/); + ^ +../../src/H5Fsuper_cache.c:282:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &stored_eoa/*out*/); + ^ +../../src/H5Fsuper_cache.c:283:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->driver_addr/*out*/); + ^ +../../src/H5Fsuper_cache.c:291:30: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + if(H5G_ent_decode(f, (const uint8_t **)&p, sblock->root_ent) < 0) + ^ +../../src/H5Fsuper_cache.c:412:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->base_addr/*out*/); + ^ +../../src/H5Fsuper_cache.c:413:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->ext_addr/*out*/); + ^ +../../src/H5Fsuper_cache.c:414:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &stored_eoa/*out*/); + ^ +../../src/H5Fsuper_cache.c:415:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&p, &sblock->root_addr/*out*/); + ^ + CC H5FDdirect.lo + CC H5FDfamily.lo + CC H5FDint.lo + CC H5FDlog.lo + CC H5FDmpi.lo + CC H5FDmpio.lo +In file included from ../../src/H5FDdirect.c:30:0: +../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] + static int H5_interface_initialize_g = 0; + ^ +../../src/H5FDdirect.c:24:33: warning: ‘H5FD_direct_init_interface’ declared ‘static’ but never defined [-Wunused-function] + #define H5_INTERFACE_INIT_FUNC H5FD_direct_init_interface + ^ +../../src/H5private.h:1820:18: note: in expansion of macro ‘H5_INTERFACE_INIT_FUNC’ + static herr_t H5_INTERFACE_INIT_FUNC(void); + ^ + CC H5FDmulti.lo +../../src/H5FDfamily.c: In function ‘H5FD_family_open’: +../../src/H5FDfamily.c:647:11: warning: size of ‘memb_name’ is 4096 bytes [-Wlarger-than=] + char memb_name[4096], temp[4096]; + ^ +../../src/H5FDfamily.c:647:28: warning: size of ‘temp’ is 4096 bytes [-Wlarger-than=] + char memb_name[4096], temp[4096]; + ^ +../../src/H5FDfamily.c:709:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + HDsnprintf(memb_name, sizeof(memb_name), name, 0); + ^ +../../src/H5FDfamily.c:709:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] +../../src/H5FDfamily.c:710:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + HDsnprintf(temp, sizeof(temp), name, 1); + ^ +../../src/H5FDfamily.c:710:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] +../../src/H5FDfamily.c:716:9: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + HDsnprintf(memb_name, sizeof(memb_name), name, file->nmembs); + ^ +../../src/H5FDfamily.c:716:9: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] +../../src/H5FDfamily.c: In function ‘H5FD_family_cmp’: +../../src/H5FDfamily.c:868:1: warning: label ‘done’ defined but not used [-Wunused-label] + done: + ^ +../../src/H5FDfamily.c: In function ‘H5FD_family_set_eoa’: +../../src/H5FDfamily.c:968:11: warning: size of ‘memb_name’ is 4096 bytes [-Wlarger-than=] + char memb_name[4096]; + ^ +../../src/H5FDfamily.c:991:13: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + HDsnprintf(memb_name, sizeof(memb_name), file->name, u); + ^ +../../src/H5FDfamily.c:991:13: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] +../../src/H5FDlog.c: In function ‘H5Pset_fapl_log’: +../../src/H5FDlog.c:324:18: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + fa.logfile = (char *)logfile; + ^ + CC H5FDsec2.lo + CC H5FDspace.lo +../../src/H5FDfamily.c: In function ‘H5FD_family_open’: +../../src/H5FDfamily.c:642:1: warning: stack usage is 8400 bytes [-Wstack-usage=] + H5FD_family_open(const char *name, unsigned flags, hid_t fapl_id, + ^ + CC H5FDstdio.lo +In file included from ../../src/H5FDmpio.c:26:0: +../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] + static int H5_interface_initialize_g = 0; + ^ +../../src/H5FDmpio.c:23:33: warning: ‘H5FD_mpio_init_interface’ declared ‘static’ but never defined [-Wunused-function] + #define H5_INTERFACE_INIT_FUNC H5FD_mpio_init_interface + ^ +../../src/H5private.h:1820:18: note: in expansion of macro ‘H5_INTERFACE_INIT_FUNC’ + static herr_t H5_INTERFACE_INIT_FUNC(void); + ^ +../../src/H5FDmulti.c: In function ‘H5FD_multi_read’: +../../src/H5FDmulti.c:1620:55: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] + H5FD_multi_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, + ^ +../../src/H5FDmulti.c: In function ‘H5FD_multi_write’: +../../src/H5FDmulti.c:1671:56: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] + H5FD_multi_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, + ^ +../../src/H5FDmulti.c: In function ‘compute_next’: +../../src/H5FDmulti.c:50:16: warning: declaration of ‘_unmapped’ shadows a previous local [-Wshadow] + H5FD_mem_t _unmapped, LOOPVAR; \ + ^ +../../src/H5FDmulti.c:1845:2: note: in expansion of macro ‘UNIQUE_MEMBERS’ + UNIQUE_MEMBERS(file->fa.memb_map, mt2) { + ^ +../../src/H5FDmulti.c:50:16: warning: shadowed declaration is here [-Wshadow] + H5FD_mem_t _unmapped, LOOPVAR; \ + ^ +../../src/H5FDmulti.c:1844:5: note: in expansion of macro ‘UNIQUE_MEMBERS’ + UNIQUE_MEMBERS(file->fa.memb_map, mt1) { + ^ +../../src/H5FDmulti.c:51:13: warning: declaration of ‘_seen’ shadows a previous local [-Wshadow] + hbool_t _seen[H5FD_MEM_NTYPES]; \ + ^ +../../src/H5FDmulti.c:1845:2: note: in expansion of macro ‘UNIQUE_MEMBERS’ + UNIQUE_MEMBERS(file->fa.memb_map, mt2) { + ^ +../../src/H5FDmulti.c:51:13: warning: shadowed declaration is here [-Wshadow] + hbool_t _seen[H5FD_MEM_NTYPES]; \ + ^ +../../src/H5FDmulti.c:1844:5: note: in expansion of macro ‘UNIQUE_MEMBERS’ + UNIQUE_MEMBERS(file->fa.memb_map, mt1) { + ^ +../../src/H5FDmulti.c: In function ‘open_members’: +../../src/H5FDmulti.c:1894:2: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] + sprintf(tmp, file->fa.memb_name[mt], file->name); + ^ + CC H5FL.lo + CC H5FO.lo + CC H5FS.lo + CC H5FScache.lo + CC H5FSdbg.lo + CC H5FSsection.lo +../../src/H5FS.c: In function ‘H5FS_new’: +../../src/H5FS.c:538:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + fspace->nclasses = nclasses; + ^ +In file included from ../../src/H5FS.c:36:0: +../../src/H5FSpkg.h:77:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + H5F_SIZEOF_SIZE(f) /* Allocated size of serialized free space sections */ \ + ^ +../../src/H5FS.c:564:24: note: in expansion of macro ‘H5FS_HEADER_SIZE’ + fspace->hdr_size = H5FS_HEADER_SIZE(f); + ^ +../../src/H5FS.c: In function ‘H5FS_sinfo_dest’: +../../src/H5FS.c:890:17: warning: request for implicit conversion from ‘void *’ to ‘struct H5FS_bin_t *’ not permitted in C++ [-Wc++-compat] + sinfo->bins = H5FL_SEQ_FREE(H5FS_bin_t, sinfo->bins); + ^ + CC H5FSstat.lo + CC H5FStest.lo + CC H5G.lo +../../src/H5FSsection.c: In function ‘H5FS_sinfo_new’: +../../src/H5FSsection.c:145:31: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + sinfo->sect_prefix_size = (size_t)H5FS_SINFO_PREFIX_SIZE(f); + ^ +../../src/H5FSsection.c:176:25: warning: request for implicit conversion from ‘void *’ to ‘struct H5FS_bin_t *’ not permitted in C++ [-Wc++-compat] + sinfo->bins = H5FL_SEQ_FREE(H5FS_bin_t, sinfo->bins); + ^ +../../src/H5FSsection.c: In function ‘H5FS_sect_try_shrink_eoa’: +../../src/H5FSsection.c:2336:5: warning: passing argument 1 of ‘H5FS_sinfo_lock’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(H5FS_sinfo_lock(f, dxpl_id, fspace, H5AC_WRITE) < 0) + ^ +../../src/H5FSsection.c:205:1: note: expected ‘struct H5F_t *’ but argument is of type ‘const struct H5F_t *’ + H5FS_sinfo_lock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, H5AC_protect_t accmode) + ^ +../../src/H5FSsection.c:2336:5: warning: passing argument 3 of ‘H5FS_sinfo_lock’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(H5FS_sinfo_lock(f, dxpl_id, fspace, H5AC_WRITE) < 0) + ^ +../../src/H5FSsection.c:205:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ + H5FS_sinfo_lock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, H5AC_protect_t accmode) + ^ +../../src/H5FSsection.c:2360:7: warning: passing argument 1 of ‘H5FS_sect_remove_real’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(H5FS_sect_remove_real(fspace, tmp_sect) < 0) + ^ +../../src/H5FSsection.c:857:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ + H5FS_sect_remove_real(H5FS_t *fspace, H5FS_section_info_t *sect) + ^ +../../src/H5FSsection.c:2374:5: warning: passing argument 1 of ‘H5FS_sinfo_unlock’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(sinfo_valid && H5FS_sinfo_unlock(f, dxpl_id, fspace, section_removed) < 0) + ^ +../../src/H5FSsection.c:311:1: note: expected ‘struct H5F_t *’ but argument is of type ‘const struct H5F_t *’ + H5FS_sinfo_unlock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, hbool_t modified) + ^ +../../src/H5FSsection.c:2374:5: warning: passing argument 3 of ‘H5FS_sinfo_unlock’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(sinfo_valid && H5FS_sinfo_unlock(f, dxpl_id, fspace, section_removed) < 0) + ^ +../../src/H5FSsection.c:311:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ + H5FS_sinfo_unlock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, hbool_t modified) + ^ + CC H5Gbtree2.lo +../../src/H5FSstat.c: In function ‘H5FS_stat_info’: +../../src/H5FSstat.c:97:23: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + stats->hdr_size = (size_t)H5FS_HEADER_SIZE(f); + ^ + CC H5Gcache.lo + CC H5Gcompact.lo + CC H5Gdense.lo + CC H5Gdeprec.lo + CC H5Gent.lo + CC H5Gint.lo +../../src/H5Gdense.c: In function ‘H5G__dense_create’: +../../src/H5Gdense.c:323:30: warning: conversion to ‘uint32_t’ from ‘size_t’ may alter its value [-Wconversion] + bt2_cparam.rrec_size = 4 + /* Name's hash value */ + ^ +../../src/H5Gdense.c:343:34: warning: conversion to ‘uint32_t’ from ‘size_t’ may alter its value [-Wconversion] + bt2_cparam.rrec_size = 8 + /* Creation order value */ + ^ +In file included from ../../src/H5Gpkg.h:30:0, + from ../../src/H5Gcache.c:37: +../../src/H5Gcache.c: In function ‘H5G_node_load’: +../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + 4 + /*reserved */ \ + ^ +../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ + + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ + ^ +../../src/H5Gcache.c:140:22: note: in expansion of macro ‘H5G_NODE_SIZE’ + sym->node_size = H5G_NODE_SIZE(f); + ^ +../../src/H5Gent.c: In function ‘H5G__ent_copy’: +../../src/H5Gent.c:343:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + H5G__ent_reset((H5G_entry_t *)src); + ^ + CC H5Glink.lo + CC H5Gloc.lo + CC H5Gname.lo + CC H5Gnode.lo + CC H5Gobj.lo + CC H5Goh.lo + CC H5Groot.lo +../../src/H5Gname.c: In function ‘H5G_name_copy’: +../../src/H5Gname.c:535:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + H5G_name_reset((H5G_name_t *)src); + ^ +../../src/H5Gloc.c: In function ‘H5G__loc_insert’: +../../src/H5Gloc.c:578:16: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + lnk.name = (char *)name; + ^ +../../src/H5Gloc.c: In function ‘H5G_loc_set_comment_cb’: +../../src/H5Gloc.c:791:14: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + comment.s = (char *)udata->comment; + ^ +../../src/H5Gnode.c: In function ‘H5G__node_free’: +../../src/H5Gnode.c:292:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5G_entry_t *’ not permitted in C++ [-Wc++-compat] + sym->entry = H5FL_SEQ_FREE(H5G_entry_t, sym->entry); + ^ +In file included from ../../src/H5Gpkg.h:30:0, + from ../../src/H5Gnode.c:43: +../../src/H5Gnode.c: In function ‘H5G_node_create’: +../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + 4 + /*reserved */ \ + ^ +../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ + + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ + ^ +../../src/H5Gnode.c:337:22: note: in expansion of macro ‘H5G_NODE_SIZE’ + sym->node_size = H5G_NODE_SIZE(f); + ^ +../../src/H5Gnode.c:360:28: warning: request for implicit conversion from ‘void *’ to ‘struct H5G_entry_t *’ not permitted in C++ [-Wc++-compat] + sym->entry = H5FL_SEQ_FREE(H5G_entry_t, sym->entry); + ^ +../../src/H5Gnode.c: In function ‘H5G_node_insert’: +../../src/H5Gnode.c:643:13: warning: enum conversion in assignment is invalid in C++ [-Wc++-compat] + HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name") + ^ +../../src/H5Gnode.c:698:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + idx -= H5F_SYM_LEAF_K(f); + ^ +../../src/H5Gnode.c:698:17: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + idx -= H5F_SYM_LEAF_K(f); + ^ +../../src/H5Gnode.c: In function ‘H5G_node_remove’: +../../src/H5Gnode.c:805:19: warning: request for implicit conversion from ‘void *’ to ‘const char *’ not permitted in C++ [-Wc++-compat] + if((s = H5HL_offset_into(udata->common.heap, sn->entry[idx].name_off)) == NULL) + ^ +../../src/H5Gnode.c:806:17: warning: enum conversion in assignment is invalid in C++ [-Wc++-compat] + HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name") + ^ +../../src/H5Gnode.c: In function ‘H5G__node_copy’: +../../src/H5Gnode.c:1271:28: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + grp_loc.oloc = (H5O_loc_t *)src_oloc; + ^ +In file included from ../../src/H5Gpkg.h:30:0, + from ../../src/H5Gnode.c:43: +../../src/H5Gnode.c: In function ‘H5G__node_iterate_size’: +../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + 4 + /*reserved */ \ + ^ +../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ + + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ + ^ +../../src/H5Gnode.c:1460:19: note: in expansion of macro ‘H5G_NODE_SIZE’ + *stab_size += H5G_NODE_SIZE(f); + ^ +../../src/H5Gobj.c: In function ‘H5G__obj_create_real’: +../../src/H5Gobj.c:270:67: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_create(oloc, H5O_LINFO_ID, 0, H5O_UPDATE_TIME, (void *)linfo, dxpl_id) < 0) + ^ +../../src/H5Gobj.c:275:73: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_create(oloc, H5O_GINFO_ID, H5O_MSG_FLAG_CONSTANT, 0, (void *)ginfo, dxpl_id) < 0) + ^ +../../src/H5Gobj.c:281:77: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_create(oloc, H5O_PLINE_ID, H5O_MSG_FLAG_CONSTANT, 0, (void *)pline, dxpl_id) < 0) + ^ +../../src/H5Gobj.c: In function ‘H5G_obj_stab_to_new_cb’: +../../src/H5Gobj.c:431:51: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5G_obj_insert(udata->grp_oloc, lnk->name, (H5O_link_t *)lnk, FALSE, + ^ + CC H5Gstab.lo + CC H5Gtest.lo + CC H5Gtraverse.lo + CC H5HF.lo + CC H5HFbtree2.lo + CC H5HFcache.lo + CC H5HFdbg.lo + CC H5HFdblock.lo +../../src/H5Gtraverse.c: In function ‘H5G_traverse_real’: +../../src/H5Gtraverse.c:741:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_reset(H5O_GINFO_ID, (void *)ginfo) < 0) + ^ +../../src/H5Gtraverse.c:745:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_reset(H5O_LINFO_ID, (void *)linfo) < 0) + ^ +../../src/H5Gtraverse.c:749:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_reset(H5O_PLINE_ID, (void *)pline) < 0) + ^ +In file included from ../../src/H5HF.c:39:0: +../../src/H5HF.c: In function ‘H5HF_op_write’: +../../src/H5HF.c:128:14: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + HDmemcpy((void *)obj, op_data, obj_len); /* Casting away const OK -QAK */ + ^ +../../src/H5private.h:1003:47: note: in definition of macro ‘HDmemcpy’ + #define HDmemcpy(X,Y,Z) memcpy((char*)(X),(const char*)(Y),Z) + ^ +../../src/H5HF.c: In function ‘H5HF_insert’: +../../src/H5HF.c:373:49: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5HF_huge_insert(hdr, dxpl_id, size, (void *)obj, id) < 0) + ^ +../../src/H5HFcache.c: In function ‘H5HF_cache_hdr_flush’: +../../src/H5HFcache.c:501:20: warning: conversion to ‘uint8_t’ from ‘int’ may alter its value [-Wconversion] + heap_flags |= (hdr->huge_ids_wrapped ? H5HF_HDR_FLAGS_HUGE_ID_WRAPPED : 0); + ^ +../../src/H5HFcache.c:502:20: warning: conversion to ‘uint8_t’ from ‘int’ may alter its value [-Wconversion] + heap_flags |= (hdr->checksum_dblocks ? H5HF_HDR_FLAGS_CHECKSUM_DBLOCKS : 0); + ^ +../../src/H5HFcache.c: In function ‘H5HF_cache_iblock_load’: +../../src/H5HFcache.c:706:25: warning: size of ‘iblock_buf’ is 4096 bytes [-Wlarger-than=] + uint8_t iblock_buf[H5HF_IBLOCK_BUF_SIZE]; /* Buffer for indirect block */ + ^ +In file included from ../../src/H5HFcache.c:38:0: +../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ + ^ +../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ + + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ + ^ +../../src/H5HFcache.c:747:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFcache.c:747:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFcache.c: In function ‘H5HF_cache_iblock_flush’: +../../src/H5HFcache.c:904:17: warning: size of ‘iblock_buf’ is 4096 bytes [-Wlarger-than=] + uint8_t iblock_buf[H5HF_IBLOCK_BUF_SIZE]; /* Buffer for indirect block */ + ^ +../../src/H5HFcache.c:987:21: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + max_child = u; + ^ +In file included from ../../src/H5HFcache.c:35:0: +../../src/H5HFcache.c: In function ‘H5HF_cache_dblock_load’: +../../src/H5HFcache.c:1347:18: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + HDmemset((uint8_t *)p - H5HF_SIZEOF_CHKSUM, 0, (size_t)H5HF_SIZEOF_CHKSUM); + ^ +../../src/H5private.h:1009:39: note: in definition of macro ‘HDmemset’ + #define HDmemset(X,C,Z) memset(X,C,Z) + ^ +In file included from ../../src/H5HFdblock.c:37:0: +../../src/H5HFdblock.c: In function ‘H5HF_man_dblock_create’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFdblock.c:141:33: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + free_space = dblock->size - H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFpkg.h:113:5: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFdblock.c:169:70: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + if(NULL == (sec_node = H5HF_sect_single_new((dblock->block_off + H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr)), + ^ +../../src/H5HFdblock.c: In function ‘H5HF_man_dblock_new’: +../../src/H5HFdblock.c:361:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if((min_dblock_size - request) < H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr)) + ^ +In file included from ../../src/H5HFdbg.c:38:0: +../../src/H5HFdbg.c: In function ‘H5HF_dblock_debug’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFdbg.c:481:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + blk_prefix_size = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ + CC H5HFdtable.lo + CC H5HFhdr.lo + CC H5HFhuge.lo + CC H5HFiblock.lo + CC H5HFiter.lo + CC H5HFman.lo + CC H5HFsection.lo + CC H5HFspace.lo +../../src/H5HFsection.c: In function ‘H5HF_sect_single_dblock_info’: +../../src/H5HFsection.c:649:53: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] + H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr, hid_t dxpl_id, + ^ +In file included from ../../src/H5HFsection.c:33:0: +../../src/H5HFsection.c: In function ‘H5HF_sect_single_full_dblock’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFsection.c:772:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFsection.c: In function ‘H5HF_sect_single_can_shrink’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFsection.c:1032:27: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../../src/H5HFsection.c:1198:78: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + status = H5HF_sect_single_dblock_info(iblock->hdr, H5AC_dxpl_id, (H5HF_free_section_t *)sect, &dblock_addr, &dblock_size); + ^ +In file included from ../../src/H5HFsection.c:33:0: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFsection.c:1207:31: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(iblock->hdr); + ^ +../../src/H5HFsection.c: In function ‘H5HF_sect_row_init_cls’: +../../src/H5HFsection.c:46:9: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + 2 /* # of entries */ \ + ^ +../../src/H5HFsection.c:1567:28: note: in expansion of macro ‘H5HF_SECT_INDIRECT_SERIAL_SIZE’ + cls->serial_size = H5HF_SECT_INDIRECT_SERIAL_SIZE(hdr); + ^ +../../src/H5HFsection.c: In function ‘H5HF_sect_indirect_init_cls’: +../../src/H5HFsection.c:46:9: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + 2 /* # of entries */ \ + ^ +../../src/H5HFsection.c:2183:24: note: in expansion of macro ‘H5HF_SECT_INDIRECT_SERIAL_SIZE’ + cls->serial_size = H5HF_SECT_INDIRECT_SERIAL_SIZE(hdr); + ^ +In file included from ../../src/H5HFsection.c:33:0: +../../src/H5HFsection.c: In function ‘H5HF_sect_indirect_init_rows’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFsection.c:2476:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFman.c: In function ‘H5HF_man_write’: +../../src/H5HFman.c:430:58: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5HF_man_op_real(hdr, dxpl_id, id, H5HF_op_write, (void *)obj, H5HF_OP_MODIFY) < 0) + ^ +../../src/H5HFiblock.c: In function ‘H5HF_iblock_unpin’: +../../src/H5HFiblock.c:214:13: warning: negative integer implicitly converted to unsigned type [-Wsign-conversion] + iblock->hdr->root_iblock_flags &= ~(H5HF_ROOT_IBLOCK_PINNED); + ^ +In file included from ../../src/H5HFiblock.c:37:0: +../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_root_double’: +../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ + ^ +../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ + + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ + ^ +../../src/H5HFiblock.c:590:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFiblock.c:590:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFhuge.c: In function ‘H5HF_huge_bt2_create’: +../../src/H5HFhuge.c:125:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ + ^ +../../src/H5HFhuge.c:132:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ + ^ +../../src/H5HFhuge.c:139:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of filtered object */ + ^ +../../src/H5HFhuge.c:147:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ + ^ +../../src/H5HFiblock.c:629:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + unsigned row = u / hdr->man_dtable.cparam.width; /* Row for current entry */ + ^ +../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_root_halve’: +../../src/H5HFiblock.c:731:19: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + new_nrows = 1 << (1 + H5VM_log2_gen((uint64_t)max_child_row)); + ^ +In file included from ../../src/H5HFiblock.c:37:0: +../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ + ^ +../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ + + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ + ^ +../../src/H5HFiblock.c:759:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFiblock.c:759:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +In file included from ../../src/H5HFhdr.c:34:0: +../../src/H5HFhdr.c: In function ‘H5HF_hdr_finish_init_phase1’: +../../src/H5HFhdr.c:224:45: warning: conversion to ‘uint8_t’ from ‘unsigned int’ may alter its value [-Wconversion] + hdr->heap_len_size = MIN(hdr->man_dtable.max_dir_blk_off_size, + ^ +../../src/H5private.h:319:35: note: in definition of macro ‘MIN’ + #define MIN(a,b) (((a)<(b)) ? (a) : (b)) + ^ +../../src/H5HFhdr.c:225:32: warning: conversion to ‘uint8_t’ from ‘unsigned int’ may alter its value [-Wconversion] + H5VM_limit_enc_size((uint64_t)hdr->max_man_size)); + ^ +../../src/H5private.h:319:41: note: in definition of macro ‘MIN’ + #define MIN(a,b) (((a)<(b)) ? (a) : (b)) + ^ +In file included from ../../src/H5HFhdr.c:36:0: +../../src/H5HFhdr.c: In function ‘H5HF_hdr_finish_init_phase2’: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFhdr.c:262:21: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_create’: +../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ + ^ +../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ + + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ + ^ +../../src/H5HFiblock.c:1028:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFiblock.c:1028:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ + iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); + ^ +../../src/H5HFhdr.c: In function ‘H5HF_hdr_create’: +../../src/H5HFhdr.c:433:52: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + if(0 == (hdr->filter_len = H5O_msg_raw_size(hdr->f, H5O_PLINE_ID, FALSE, &(hdr->pline)))) + ^ +../../src/H5HFhdr.c:439:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + 4 /* Size of filter mask for filtered root direct block */ + ^ +In file included from ../../src/H5HFhdr.c:36:0: +../../src/H5HFpkg.h:103:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + H5HF_DTABLE_INFO_SIZE(h) /* Size of managed obj. doubling-table info */ \ + ^ +../../src/H5HFhdr.c:444:26: note: in expansion of macro ‘H5HF_HEADER_SIZE’ + hdr->heap_size = H5HF_HEADER_SIZE(hdr); + ^ +../../src/H5HFhdr.c:466:21: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + hdr->sizeof_size; /* Size of de-filtered object in memory */ + ^ +../../src/H5HFhdr.c:470:21: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + hdr->sizeof_size; /* Length of object */ + ^ +../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_unprotect’: +../../src/H5HFiblock.c:1281:13: warning: negative integer implicitly converted to unsigned type [-Wsign-conversion] + iblock->hdr->root_iblock_flags &= ~(H5HF_ROOT_IBLOCK_PROTECTED); + ^ +In file included from ../../src/H5HFhdr.c:36:0: +../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + + (h)->heap_off_size /* Offset of the block in the heap */ \ + ^ +../../src/H5HFhdr.c:492:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ + dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); + ^ +../../src/H5HFhdr.c: In function ‘H5HF_hdr_adj_free’: +../../src/H5HFhdr.c:761:5: warning: conversion to ‘long long unsigned int’ from ‘ssize_t’ may change the sign of the result [-Wsign-conversion] + hdr->total_man_free += amt; + ^ +../../src/H5HFhdr.c: In function ‘H5HF_hdr_adjust_heap’: +../../src/H5HFhdr.c:801:5: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + hdr->total_man_free += extra_free; + ^ +../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_dest’: +../../src/H5HFiblock.c:1723:22: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_ent_t *’ not permitted in C++ [-Wc++-compat] + iblock->ents = H5FL_SEQ_FREE(H5HF_indirect_ent_t, iblock->ents); + ^ +../../src/H5HFiblock.c:1725:27: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_filt_ent_t *’ not permitted in C++ [-Wc++-compat] + iblock->filt_ents = H5FL_SEQ_FREE(H5HF_indirect_filt_ent_t, iblock->filt_ents); + ^ +../../src/H5HFiblock.c:1727:31: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_t **’ not permitted in C++ [-Wc++-compat] + iblock->child_iblocks = H5FL_SEQ_FREE(H5HF_indirect_ptr_t, iblock->child_iblocks); + ^ +../../src/H5HFhdr.c: In function ‘H5HF_hdr_reverse_iter’: +../../src/H5HFhdr.c:1243:9: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + tmp_entry = curr_entry; + ^ +../../src/H5HFhdr.c:1278:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + curr_entry = tmp_entry; + ^ + CC H5HFstat.lo + CC H5HFtest.lo + CC H5HFtiny.lo + CC H5HG.lo + CC H5HGcache.lo + CC H5HGdbg.lo + CC H5HGquery.lo +../../src/H5HGcache.c: In function ‘H5HG_load’: +../../src/H5HGcache.c:184:70: warning: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Wsign-conversion] + heap->obj[0].size = ((const uint8_t *)heap->chunk + heap->size) - p; + ^ +In file included from ../../src/H5HG.c:51:0: +../../src/H5HG.c: In function ‘H5HG_create’: +../../src/H5HGpkg.h:78:38: warning: conversion to ‘long unsigned int’ from ‘long int’ may change the sign of the result [-Wsign-conversion] + #define H5HG_ALIGN(X) (H5HG_ALIGNMENT*(((X)+H5HG_ALIGNMENT-1)/H5HG_ALIGNMENT)) + ^ +../../src/H5HG.c:183:9: note: in expansion of macro ‘H5HG_ALIGN’ + n = H5HG_ALIGN(p - heap->chunk) - (size_t)(p - heap->chunk); + ^ +../../src/H5HG.c: In function ‘H5HG_free’: +../../src/H5HG.c:842:19: warning: request for implicit conversion from ‘void *’ to ‘struct H5HG_obj_t *’ not permitted in C++ [-Wc++-compat] + heap->obj = H5FL_SEQ_FREE(H5HG_obj_t, heap->obj); + ^ +../../src/H5HFtiny.c: In function ‘H5HF_tiny_insert’: +../../src/H5HFtiny.c:170:55: warning: conversion to ‘uint8_t’ from ‘size_t’ may alter its value [-Wconversion] + *id++ = H5HF_ID_VERS_CURR | H5HF_ID_TYPE_TINY | + ^ +../../src/H5HFtiny.c:174:55: warning: conversion to ‘uint8_t’ from ‘size_t’ may alter its value [-Wconversion] + *id++ = H5HF_ID_VERS_CURR | H5HF_ID_TYPE_TINY | + ^ +../../src/H5HFtiny.c: In function ‘H5HF_tiny_get_obj_len’: +../../src/H5HFtiny.c:230:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); + ^ +../../src/H5HFtiny.c: In function ‘H5HF_tiny_op_real’: +../../src/H5HFtiny.c:281:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); + ^ +../../src/H5HFtest.c: In function ‘H5HF_get_cparam_test’: +../../src/H5HFtest.c:97:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + else if(fh->hdr->id_len == (1 + fh->hdr->sizeof_size + fh->hdr->sizeof_addr)) + ^ +../../src/H5HFtest.c:100:33: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] + cparam->id_len = fh->hdr->id_len; + ^ +../../src/H5HFtiny.c: In function ‘H5HF_tiny_remove’: +../../src/H5HFtiny.c:406:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); + ^ + CC H5HL.lo + CC H5HLcache.lo + CC H5HLdbg.lo + CC H5HLint.lo + CC H5HP.lo + CC H5I.lo + CC H5Itest.lo + CC H5L.lo +../../src/H5HP.c: In function ‘H5HP_create’: +../../src/H5HP.c:382:32: warning: request for implicit conversion from ‘void *’ to ‘struct H5HP_ent_t *’ not permitted in C++ [-Wc++-compat] + new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); + ^ +../../src/H5HP.c: In function ‘H5HP_decr’: +../../src/H5HP.c:849:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + heap->heap[obj_loc].val-=amt; + ^ +../../src/H5HP.c:849:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + heap->heap[obj_loc].val-=amt; + ^ +../../src/H5HP.c: In function ‘H5HP_close’: +../../src/H5HP.c:911:16: warning: request for implicit conversion from ‘void *’ to ‘struct H5HP_ent_t *’ not permitted in C++ [-Wc++-compat] + heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, heap->heap); + ^ +In file included from ../../src/H5private.h:48:0, + from ../../src/H5I.c:42: +../../src/H5I.c: In function ‘H5Inmembers’: +../../src/H5private.h:1467:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + assert(_tmp_src == _tmp_dst); \ + ^ +../../src/H5overflow.h:286:9: note: in expansion of macro ‘ASSIGN_TO_LARGER_SIZE_SIGNED_TO_UNSIGNED’ + ASSIGN_TO_LARGER_SIZE_SIGNED_TO_UNSIGNED(dst, dsttype, src, srctype) + ^ +../../src/H5private.h:2083:28: note: in expansion of macro ‘ASSIGN_int_TO_hsize_t’ + #define H5_GLUE4(w,x,y,z) w##x##y##z + ^ +../../src/H5private.h:1502:5: note: in expansion of macro ‘H5_GLUE4’ + H5_GLUE4(ASSIGN_,srctype,_TO_,dsttype)(dst,dsttype,src,srctype)\ + ^ +../../src/H5I.c:463:9: note: in expansion of macro ‘H5_CHECKED_ASSIGN’ + H5_CHECKED_ASSIGN(*num_members, hsize_t, members, int); + ^ +../../src/H5I.c: In function ‘H5I__clear_type_cb’: +../../src/H5I.c:653:81: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(udata->type_ptr->cls->free_func && (udata->type_ptr->cls->free_func)((void *)id->obj_ptr) < 0) { + ^ +In file included from ../../src/H5I.c:45:0: +../../src/H5I.c: In function ‘H5I__destroy_type’: +../../src/H5I.c:758:48: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + type_ptr->cls = H5FL_FREE(H5I_class_t, (void *)type_ptr->cls); + ^ +../../src/H5FLprivate.h:130:65: note: in definition of macro ‘H5FL_FREE’ + #define H5FL_FREE(t,obj) (t *)H5FL_reg_free(&(H5FL_REG_NAME(t)),obj) + ^ +../../src/H5I.c: In function ‘H5I_subst’: +../../src/H5I.c:985:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + ret_value = (void *)id_ptr->obj_ptr; + ^ +../../src/H5I.c: In function ‘H5I_object’: +../../src/H5I.c:1020:21: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + ret_value = (void *)id_ptr->obj_ptr; + ^ +../../src/H5I.c: In function ‘H5I_object_verify’: +../../src/H5I.c:1095:21: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + ret_value = (void *)id_ptr->obj_ptr; + ^ +../../src/H5I.c: In function ‘H5I__remove_common’: +../../src/H5I.c:1269:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + ret_value = (void *)curr_id->obj_ptr; + ^ +../../src/H5I.c: In function ‘H5I_dec_ref’: +../../src/H5I.c:1443:68: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(!type_ptr->cls->free_func || (type_ptr->cls->free_func)((void *)id_ptr->obj_ptr) >= 0) { + ^ +../../src/H5I.c: In function ‘H5I__iterate_cb’: +../../src/H5I.c:2102:42: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + cb_ret_val = (*udata->user_func)((void *)item->obj_ptr, item->id, udata->user_udata); + ^ + CC H5Lexternal.lo + CC H5MF.lo + CC H5MFaggr.lo + CC H5MFdbg.lo +../../src/H5L.c: In function ‘H5L_link_cb’: +../../src/H5L.c:1716:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + udata->lnk->name = (char *)name; + ^ +../../src/H5L.c: In function ‘H5L_move_dest_cb’: +../../src/H5L.c:2437:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + udata->lnk->name = (char *)name; + ^ +../../src/H5L.c: In function ‘H5L_move_cb’: +../../src/H5L.c:2580:13: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [enabled by default] + dst_name_r = H5RS_wrap(udata->dst_name); + ^ +In file included from ../../src/H5Gprivate.h:35:0, + from ../../src/H5Tprivate.h:28, + from ../../src/H5Oprivate.h:39, + from ../../src/H5Dprivate.h:25, + from ../../src/H5L.c:28: +../../src/H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + H5_DLL H5RS_str_t *H5RS_wrap(char *s); + ^ +../../src/H5L.c: In function ‘H5L_link_copy_file’: +../../src/H5L.c:3015:28: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + lnk_grp_loc.oloc = (H5O_loc_t *)src_oloc; /* Casting away const OK -QAK */ + ^ + CC H5MFsection.lo + CC H5MM.lo +../../src/H5MFaggr.c: In function ‘H5MF_aggr_try_extend’: +../../src/H5MFaggr.c:431:49: warning: conversion to ‘float’ from ‘hsize_t’ may alter its value [-Wconversion] + if(extra_requested <= (EXTEND_THRESHOLD * aggr->size)) { + ^ + CC H5MP.lo + CC H5MPtest.lo + CC H5O.lo + CC H5Oainfo.lo + CC H5Oalloc.lo + CC H5Oattr.lo + CC H5Oattribute.lo + CC H5Obogus.lo +../../src/H5Oalloc.c: In function ‘H5O_alloc_new_chunk’: +../../src/H5Oalloc.c:953:75: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + if(NULL == (chk_proxy = H5O_chunk_protect(f, dxpl_id, oh, chunkno - 1))) + ^ +../../src/H5Oalloc.c:971:21: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + curr_msg->chunkno = chunkno; + ^ +../../src/H5Oalloc.c:992:37: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + null_msg->chunkno = chunkno - 1; + ^ +../../src/H5Oalloc.c:1027:9: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + oh->mesg[found_other.msgno].chunkno = chunkno; + ^ +../../src/H5Oalloc.c:1079:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + oh->mesg[idx].chunkno = chunkno; + ^ +../../src/H5Oalloc.c:1082:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + if(H5O_chunk_add(f, dxpl_id, oh, chunkno) < 0) + ^ +../../src/H5Oalloc.c:1090:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cont->chunkno = chunkno; + ^ + CC H5Obtreek.lo + CC H5Ocache.lo + CC H5Ochunk.lo + CC H5Ocont.lo +../../src/H5Ocache.c: In function ‘H5O_cache_chk_load’: +../../src/H5Ocache.c:726:49: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + chk_proxy->chunkno = udata->oh->nchunks - 1; + ^ + CC H5Ocopy.lo +../../src/H5Ocache.c: In function ‘H5O_chunk_deserialize’: +../../src/H5Ocache.c:1062:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + chunkno = oh->nchunks++; + ^ +../../src/H5Ocache.c:1184:36: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + oh->mesg[mesgno].raw = (uint8_t *)p; /* Casting away const OK - QAK */ + ^ +../../src/H5Ocache.c:1292:57: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cont->chunkno = udata->cont_msg_info->nmsgs + 1; /*the next continuation message/chunk */ + ^ +../../src/H5Ocache.c: In function ‘H5O_chunk_serialize’: +../../src/H5Ocache.c:1388:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if(H5O_msg_flush((H5F_t *)f, oh, curr_msg) < 0) + ^ + CC H5Odbg.lo + CC H5Odrvinfo.lo + CC H5Odtype.lo + CC H5Oefl.lo + CC H5Ofill.lo + CC H5Oginfo.lo + CC H5Olayout.lo +../../src/H5Odtype.c: In function ‘H5O_dtype_copy’: +../../src/H5Odtype.c:1191:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Odtype.c:18: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../../src/H5Odtype.c:1536:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Odtype.c:18: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Oefl.c: In function ‘H5O_efl_decode’: +../../src/H5Oefl.c:155:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + if(*s == (char)NULL) + ^ +In file included from ../../src/H5Cprivate.h:35:0, + from ../../src/H5ACprivate.h:33, + from ../../src/H5Oprivate.h:36, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Ofill.c:24: +../../src/H5Ofill.c: In function ‘H5O_fill_new_decode’: +../../src/H5Fprivate.h:130:37: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + (i) |= ((int32_t)(((*(p) & 0xff) << 24) | \ + ^ +../../src/H5Ofill.c:218:13: note: in expansion of macro ‘INT32DECODE’ + INT32DECODE(p, fill->size); + ^ + CC H5Olinfo.lo + CC H5Olink.lo + CC H5Omessage.lo + CC H5Omtime.lo + CC H5Oname.lo + CC H5Opline.lo + CC H5Orefcount.lo + CC H5Osdspace.lo +../../src/H5Omtime.c: In function ‘H5O_mtime_decode’: +../../src/H5Omtime.c:182:5: warning: "_MSC_VER" is not defined [-Wundef] + #if _MSC_VER >= 1900 /* VS 2015 */ + ^ + CC H5Oshared.lo + CC H5Ostab.lo + CC H5Oshmesg.lo + CC H5Otest.lo + CC H5Ounknown.lo + CC H5P.lo + CC H5Pacpl.lo + CC H5Pdapl.lo + CC H5Pdcpl.lo + CC H5Pdeprec.lo + CC H5Pdxpl.lo + CC H5Pfapl.lo + CC H5Pfcpl.lo + CC H5Pfmpl.lo +../../src/H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../../src/H5Pdcpl.c:1563:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Pdcpl.c:37: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ + CC H5Pgcpl.lo + CC H5Pint.lo + CC H5Plapl.lo + CC H5Plcpl.lo + CC H5Pocpl.lo + CC H5Pocpypl.lo + CC H5Pstrcpl.lo + CC H5Ptest.lo + CC H5PL.lo + CC H5R.lo +../../src/H5Pocpl.c: In function ‘H5Pget_filter_by_id2’: +../../src/H5Pocpl.c:1060:30: warning: unused variable ‘filter’ [-Wunused-variable] + const H5Z_filter_info_t *filter; /* Pointer to filter information */ + ^ +../../src/H5Pocpl.c:1059:21: warning: unused variable ‘pline’ [-Wunused-variable] + H5O_pline_t pline; /* Filter pipeline */ + ^ + CC H5Rdeprec.lo + CC H5RC.lo +../../src/H5PL.c: In function ‘H5PL__open’: +../../src/H5PL.c:878:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] + if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC(handle, "H5PLget_plugin_info"))) { + ^ +../../src/H5PL.c: In function ‘H5PL__search_table’: +../../src/H5PL.c:961:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] + if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PLget_plugin_info"))) + ^ + CC H5RS.lo + CC H5S.lo + CC H5Sall.lo + CC H5Sdbg.lo + CC H5Shyper.lo + CC H5Smpio.lo + CC H5Snone.lo + CC H5Spoint.lo + CC H5Sselect.lo +../../src/H5Shyper.c: In function ‘H5S_hyper_serialize’: +../../src/H5Shyper.c:2134:18: warning: declaration of ‘u’ shadows a previous local [-Wshadow] + unsigned u; /* Local counting variable */ + ^ +../../src/H5Shyper.c:2086:14: warning: shadowed declaration is here [-Wshadow] + unsigned u; /* Local index variable */ + ^ +../../src/H5Shyper.c:2220:13: warning: conversion to ‘uint32_t’ from ‘long unsigned int’ may alter its value [-Wconversion] + len += (size_t)(8 * space->extent.rank * block_count); + ^ + CC H5Stest.lo + CC H5SL.lo +../../src/H5Spoint.c: In function ‘H5S_point_bounds’: +../../src/H5Spoint.c:1122:63: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + if(start[u] > (node->pnt[u] + space->select.offset[u])) + ^ +../../src/H5Spoint.c:1123:63: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + start[u] = node->pnt[u] + space->select.offset[u]; + ^ +../../src/H5Spoint.c:1124:61: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + if(end[u] < (node->pnt[u] + space->select.offset[u])) + ^ +../../src/H5Spoint.c:1125:61: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + end[u] = node->pnt[u] + space->select.offset[u]; + ^ +../../src/H5Spoint.c: In function ‘H5S_point_get_seq_list’: +../../src/H5Spoint.c:1671:56: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + loc += (node->pnt[i] + space->select.offset[i]) * acc; + ^ + CC H5SM.lo + CC H5SMbtree2.lo +../../src/H5Sselect.c: In function ‘H5S_select_iterate’: +../../src/H5Sselect.c:1215:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter; /* Selection iteration info */ + ^ +../../src/H5Sselect.c:1261:17: warning: size of ‘off’ is 8192 bytes [-Wlarger-than=] + hsize_t off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Sselect.c:1262:16: warning: size of ‘len’ is 8192 bytes [-Wlarger-than=] + size_t len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ +../../src/H5Sselect.c: In function ‘H5S_select_shape_same’: +../../src/H5Sselect.c:1434:20: warning: size of ‘iter_a’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter_a; /* Selection a iteration info */ + ^ +../../src/H5Sselect.c:1435:20: warning: size of ‘iter_b’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter_b; /* Selection b iteration info */ + ^ +../../src/H5Sselect.c: In function ‘H5S_select_fill’: +../../src/H5Sselect.c:2003:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] + H5S_sel_iter_t iter; /* Selection iteration info */ + ^ +../../src/H5Sselect.c:2031:17: warning: size of ‘off’ is 8192 bytes [-Wlarger-than=] + hsize_t off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ + ^ +../../src/H5Sselect.c:2032:16: warning: size of ‘len’ is 8192 bytes [-Wlarger-than=] + size_t len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ + ^ + CC H5SMcache.lo +../../src/H5SL.c: In function ‘H5SL_release_common’: +../../src/H5SL.c:838:36: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + (void)(op)(node->item, (void *)node->key, op_data); + ^ +../../src/H5Sselect.c: In function ‘H5S_select_iterate’: +../../src/H5Sselect.c:1212:1: warning: stack usage is 19392 bytes [-Wstack-usage=] + H5S_select_iterate(void *buf, const H5T_t *type, const H5S_t *space, + ^ +../../src/H5Sselect.c:1333:1: warning: the frame size of 19336 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* end H5S_select_iterate() */ + ^ +../../src/H5SL.c: In function ‘H5SL_remove_first’: +../../src/H5SL.c:1233:30: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + size_t level = slist->curr_level; /* Skip list level */ + ^ +../../src/H5Sselect.c: In function ‘H5S_select_fill’: +../../src/H5Sselect.c:2001:1: warning: stack usage is 18784 bytes [-Wstack-usage=] + H5S_select_fill(const void *fill, size_t fill_size, const H5S_t *space, void *_buf) + ^ +../../src/H5Sselect.c:2063:1: warning: the frame size of 18736 bytes is larger than 16384 bytes [-Wframe-larger-than=] + } /* H5S_select_fill() */ + ^ + CC H5SMmessage.lo +../../src/H5SL.c: In function ‘H5SL_iterate’: +../../src/H5SL.c:2148:46: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if((ret_value = (op)(node->item, (void *)node->key, op_data)) != 0) + ^ +../../src/H5SL.c: In function ‘H5SL_try_free_safe’: +../../src/H5SL.c:2307:44: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] + if((op_ret = (op)(node->item , (void *)node->key, op_data)) < 0) + ^ + CC H5SMtest.lo + CC H5ST.lo + CC H5T.lo + CC H5Tarray.lo + CC H5Tbit.lo + CC H5Tcommit.lo + CC H5Tcompound.lo + CC H5Tconv.lo +../../src/H5T.c: In function ‘H5T_path_find’: +../../src/H5T.c:4456:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + ^ +../../src/H5T.c:3097:1: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5T_copy(H5T_t *old_dt, H5T_copy_t method) + ^ +../../src/H5T.c:4458:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + ^ +../../src/H5T.c:3097:1: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5T_copy(H5T_t *old_dt, H5T_copy_t method) + ^ +../../src/H5T.c: At top level: +../../src/H5T.c:5460:1: warning: no previous prototype for ‘H5T_patch_vlen_file’ [-Wmissing-prototypes] + H5T_patch_vlen_file(H5T_t *dt, H5F_t *f) + ^ + CC H5Tcset.lo +../../src/H5Tcompound.c: In function ‘H5T__insert’: +../../src/H5Tcompound.c:482:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + ^ +In file included from ../../src/H5Tpkg.h:37:0, + from ../../src/H5Tcompound.c:36: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ + CC H5Tdbg.lo + CC H5Tdeprec.lo + CC H5Tenum.lo + CC H5Tfields.lo + CC H5Tfixed.lo + CC H5Tfloat.lo +../../src/H5Tdbg.c: In function ‘H5T_debug’: +../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dt->shared->type) { + ^ +../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:247:2: warning: enumeration value ‘H5T_ORDER_ERROR’ not handled in switch [-Wswitch-enum] + switch(dt->shared->u.atomic.order) { + ^ +../../src/H5Tdbg.c:247:2: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:279:17: warning: enumeration value ‘H5T_SGN_ERROR’ not handled in switch [-Wswitch-enum] + switch(dt->shared->u.atomic.u.i.sign) { + ^ +../../src/H5Tdbg.c:279:17: warning: enumeration value ‘H5T_NSGN’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:298:17: warning: enumeration value ‘H5T_NORM_ERROR’ not handled in switch [-Wswitch-enum] + switch(dt->shared->u.atomic.u.f.norm) { + ^ +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dt->shared->type) { + ^ +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_COMPOUND’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Tdbg.c:351:9: warning: enumeration value ‘H5T_LOC_BADLOC’ not handled in switch [-Wswitch-enum] + switch(dt->shared->u.vlen.loc) { + ^ +../../src/H5Tdbg.c:351:9: warning: enumeration value ‘H5T_LOC_MAXLOC’ not handled in switch [-Wswitch-enum] +../../src/H5Tconv.c: In function ‘H5T__conv_float_ullong’: +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c: In function ‘H5T__conv_double_ullong’: +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c: In function ‘H5T__conv_ldouble_ullong’: +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] + } else if (*(S) != (ST)((DT)(*(S)))) { \ + ^ +../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ + #define H5_GLUE(x,y) x##y + ^ +../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ + H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) + ^ +../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ + H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ + H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ + H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ + ^ +../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ + H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ + ^ +../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ + H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); + ^ +../../src/H5Tconv.c: In function ‘H5T__conv_f_i’: +../../src/H5Tconv.c:8915:24: warning: cast from function call of type ‘double’ to non-matching type ‘long unsigned int’ [-Wbad-function-cast] + buf_size = (size_t)HDpow((double)2.0f, (double)src.u.f.esize) / 8 + 1; + ^ +../../src/H5Tconv.c:8991:38: warning: conversion to ‘hssize_t’ from ‘uint64_t’ may change the sign of the result [-Wsign-conversion] + sign = H5T__bit_get_d(s, src.u.f.sign, (size_t)1); + ^ +../../src/H5Tconv.c:9118:38: warning: conversion to ‘hssize_t’ from ‘uint64_t’ may change the sign of the result [-Wsign-conversion] + expo = H5T__bit_get_d(s, src.u.f.epos, src.u.f.esize); + ^ +../../src/H5Tconv.c:9125:21: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + expo -= (src.u.f.ebias-1); + ^ +../../src/H5Tconv.c:9125:26: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] + expo -= (src.u.f.ebias-1); + ^ +../../src/H5Tconv.c:9127:21: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + expo -= src.u.f.ebias; + ^ +../../src/H5Tconv.c:9127:26: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] + expo -= src.u.f.ebias; + ^ +../../src/H5Tconv.c:9157:17: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] + H5T__bit_shift(int_buf, (ssize_t)(expo-src.u.f.msize), (size_t)0, buf_size * 8); + ^ +../../src/H5Tconv.c:9362:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + sp += direction * buf_stride; + ^ +../../src/H5Tconv.c:9363:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dp += direction * buf_stride; + ^ +../../src/H5Tconv.c:9365:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + sp += direction * src_p->shared->size; + ^ +../../src/H5Tconv.c:9366:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dp += direction * dst_p->shared->size; + ^ +../../src/H5Tconv.c: In function ‘H5T__conv_i_f’: +../../src/H5Tconv.c:9712:28: warning: cast from function call of type ‘double’ to non-matching type ‘long long unsigned int’ [-Wbad-function-cast] + expo_max = (hsize_t)HDpow((double)2.0f, (double)dst.u.f.esize) - 1; + ^ +../../src/H5Tconv.c:9791:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + sp += direction * buf_stride; + ^ +../../src/H5Tconv.c:9792:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dp += direction * buf_stride; + ^ +../../src/H5Tconv.c:9794:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + sp += direction * src_p->shared->size; + ^ +../../src/H5Tconv.c:9795:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dp += direction * dst_p->shared->size; + ^ +In file included from ../../src/H5Tconv.c:31:0: +../../src/H5Tconv.c: At top level: +../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] + static int H5_interface_initialize_g = 0; + ^ +../../src/H5Tconv.c:983:1: warning: ‘H5T_init_conv_interface’ defined but not used [-Wunused-function] + H5T_init_conv_interface(void) + ^ +../../src/H5Tenum.c: In function ‘H5T__enum_create’: +../../src/H5Tenum.c:134:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + ^ +In file included from ../../src/H5Tpkg.h:37:0, + from ../../src/H5Tenum.c:29: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Tenum.c: In function ‘H5T_enum_nameof’: +../../src/H5Tenum.c:435:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + ^ +In file included from ../../src/H5Tpkg.h:37:0, + from ../../src/H5Tenum.c:29: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Tenum.c: In function ‘H5T_enum_valueof’: +../../src/H5Tenum.c:574:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + ^ +In file included from ../../src/H5Tpkg.h:37:0, + from ../../src/H5Tenum.c:29: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Tfixed.c: In function ‘H5Tget_sign’: +../../src/H5Tfixed.c:80:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tfixed.c: In function ‘H5Tset_sign’: +../../src/H5Tfixed.c:159:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ + CC H5Tinit.lo + CC H5Tnative.lo + CC H5Toffset.lo + CC H5Toh.lo + CC H5Topaque.lo + CC H5Torder.lo + CC H5Tpad.lo +../../src/H5Topaque.c: In function ‘H5Tset_tag’: +../../src/H5Topaque.c:78:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Topaque.c: In function ‘H5Tget_tag’: +../../src/H5Topaque.c:125:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tpad.c: In function ‘H5Tget_pad’: +../../src/H5Tpad.c:81:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tpad.c: In function ‘H5Tset_pad’: +../../src/H5Tpad.c:125:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ + CC H5Tprecis.lo + CC H5Tstrpad.lo + CC H5Tvisit.lo + CC H5Tvlen.lo + CC H5TS.lo + CC H5VM.lo + CC H5WB.lo +../../src/H5Tstrpad.c: In function ‘H5Tget_strpad’: +../../src/H5Tstrpad.c:84:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tstrpad.c: In function ‘H5Tset_strpad’: +../../src/H5Tstrpad.c:141:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tvlen.c: In function ‘H5Tvlen_create’: +../../src/H5Tvlen.c:114:22: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if(NULL == (base = H5I_object_verify(base_id, H5I_DATATYPE))) + ^ +../../src/H5Tvlen.c: In function ‘H5T__vlen_create’: +../../src/H5Tvlen.c:166:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] + if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + ^ +In file included from ../../src/H5Oprivate.h:39:0, + from ../../src/H5Dprivate.h:25, + from ../../src/H5Tvlen.c:26: +../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ + H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + ^ +../../src/H5Tvlen.c: In function ‘H5T__vlen_set_loc’: +../../src/H5Tvlen.c:268:59: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dt->shared->size = 4 + H5F_SIZEOF_ADDR(f) + 4; + ^ +../../src/H5Tvlen.c:220:9: warning: enumeration value ‘H5T_LOC_MAXLOC’ not handled in switch [-Wswitch-enum] + switch(loc) { + ^ +../../src/H5Tprecis.c: In function ‘H5Tget_precision’: +../../src/H5Tprecis.c:88:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tprecis.c: In function ‘H5Tset_precision’: +../../src/H5Tprecis.c:177:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) + ^ +../../src/H5Tvlen.c: In function ‘H5T_vlen_str_mem_write’: +../../src/H5Tvlen.c:717:20: warning: request for implicit conversion from ‘void *’ to ‘char *’ not permitted in C++ [-Wc++-compat] + if(NULL==(t=(vl_alloc_info->alloc_func)((seq_len+1)*base_size,vl_alloc_info->alloc_info))) + ^ +../../src/H5Tvlen.c:721:20: warning: request for implicit conversion from ‘void *’ to ‘char *’ not permitted in C++ [-Wc++-compat] + if(NULL==(t=H5MM_malloc((seq_len+1)*base_size))) + ^ +../../src/H5Tprecis.c: In function ‘H5T_set_precision’: +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch (dt->shared->type) { + ^ +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_COMPOUND’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] +../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_isnull’: +../../src/H5Tvlen.c:845:23: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f,(const uint8_t **)&vl,&addr); + ^ +../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_read’: +../../src/H5Tvlen.c:882:23: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f,(const uint8_t **)&vl,&(hobjid.addr)); + ^ +../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_write’: +../../src/H5Tvlen.c:935:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&bg, &(bg_hobjid.addr)); + ^ +../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_setnull’: +../../src/H5Tvlen.c:997:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] + H5F_addr_decode(f, (const uint8_t **)&bg, &(bg_hobjid.addr)); + ^ +../../src/H5Tvlen.c: In function ‘H5T_vlen_reclaim_recurse’: +../../src/H5Tvisit.c: In function ‘H5T__visit’: +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dt->shared->type) { + ^ +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dt->shared->type) { + ^ +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_INTEGER’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_FLOAT’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_INTEGER’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_FLOAT’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Tvlen.c: In function ‘H5T_vlen_reclaim’: +../../src/H5Tvlen.c:1168:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] + if(NULL == (dt = H5I_object_verify(type_id, H5I_DATATYPE))) + ^ +In file included from ../../src/H5private.h:48:0, + from ../../src/H5VM.c:20: +../../src/H5VM.c: In function ‘H5VM_hyper_disjointp’: +../../src/H5VM.c:419:23: warning: comparison is always true due to limited range of data type [-Wtype-limits] + HDassert(size1[u] < HSIZET_MAX); + ^ +../../src/H5VM.c:419:9: note: in expansion of macro ‘HDassert’ + HDassert(size1[u] < HSIZET_MAX); + ^ +../../src/H5VM.c:420:23: warning: comparison is always true due to limited range of data type [-Wtype-limits] + HDassert(size2[u] < HSIZET_MAX); + ^ +../../src/H5VM.c:420:9: note: in expansion of macro ‘HDassert’ + HDassert(size2[u] < HSIZET_MAX); + ^ + CC H5Z.lo + CC H5Zdeflate.lo + CC H5Zfletcher32.lo + CC H5Znbit.lo + CC H5Zshuffle.lo + CC H5Zszip.lo + CC H5Zscaleoffset.lo +../../src/H5Znbit.c: In function ‘H5Z_calc_parms_array’: +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_base_class) { + ^ +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c: In function ‘H5Z_calc_parms_compound’: +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_member_class) { + ^ +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c: In function ‘H5Z_set_parms_nooptype’: +../../src/H5Znbit.c:406:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_size; + ^ +../../src/H5Znbit.c: In function ‘H5Z_set_parms_atomic’: +../../src/H5Znbit.c:448:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_size; + ^ +../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_ERROR’ not handled in switch [-Wswitch-enum] + switch(dtype_order) { + ^ +../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_VAX’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_NONE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:477:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + if(dtype_precision > dtype_size * 8 || (dtype_precision + dtype_offset) > dtype_size * 8 + ^ +../../src/H5Znbit.c:482:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_precision; + ^ +../../src/H5Znbit.c:485:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + cd_values[cd_values_index++] = dtype_offset; + ^ +../../src/H5Znbit.c: In function ‘H5Z_set_parms_array’: +../../src/H5Znbit.c:534:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++]=dtype_size; + ^ +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_base_class) { + ^ +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c: In function ‘H5Z_set_parms_compound’: +../../src/H5Znbit.c:624:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_size; + ^ +../../src/H5Znbit.c:631:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + cd_values[cd_values_index++] = nmembers; + ^ +../../src/H5Znbit.c:647:9: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_member_offset; + ^ +../../src/H5Znbit.c:688:77: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[cd_values_index++] = dtype_next_member_offset - dtype_member_offset; + ^ +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_member_class) { + ^ +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c: In function ‘H5Z_set_local_nbit’: +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_class) { + ^ +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] + switch(dtype_class) { + ^ +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] +../../src/H5Znbit.c:835:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[0] = cd_values_actual_nparms; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_byte’: +../../src/H5Znbit.c:970:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + data[data_offset + k] = + ^ +../../src/H5Znbit.c:971:58: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)) << uchar_offset; + ^ +../../src/H5Znbit.c:974:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + data[data_offset + k] = + ^ +../../src/H5Znbit.c:975:59: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)) << uchar_offset; + ^ +../../src/H5Znbit.c:981:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + data[data_offset + k] |= + ^ +../../src/H5Znbit.c:981:29: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + data[data_offset + k] |= + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_nooptype’: +../../src/H5Znbit.c:1000:72: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + data[data_offset + i] = ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)); + ^ +../../src/H5Znbit.c:1000:58: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + data[data_offset + i] = ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)); + ^ +../../src/H5Znbit.c:1001:18: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dat_len -= *buf_len; + ^ +../../src/H5Znbit.c:1006:42: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + data[data_offset + i] |= ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)); + ^ +../../src/H5Znbit.c:1006:29: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + data[data_offset + i] |= ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)); + ^ +../../src/H5Znbit.c:1007:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + *buf_len -= dat_len; + ^ +../../src/H5Znbit.c:1007:16: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + *buf_len -= dat_len; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_atomic’: +../../src/H5Znbit.c:1019:26: warning: conversion to ‘int’ from ‘size_t’ may alter its value [-Wconversion] + datatype_len = p.size * 8; + ^ +../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress_one_array’: +../../src/H5Znbit.c:1064:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1065:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1066:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1069:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c:1069:68: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c:1072:27: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + n = total_size / p.size; + ^ +../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress_one_compound’: +../../src/H5Znbit.c:1138:30: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1139:34: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1140:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1143:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c:1143:71: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress’: +../../src/H5Znbit.c:1198:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[5]; + ^ +../../src/H5Znbit.c:1199:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[6]; + ^ +../../src/H5Znbit.c:1200:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[7]; + ^ +../../src/H5Znbit.c:1203:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c:1203:68: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] + if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_byte’: +../../src/H5Znbit.c:1243:4: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] + val = data[data_offset + k]; + ^ +../../src/H5Znbit.c:1249:14: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + val >>= 8 - dat_len; + ^ +../../src/H5Znbit.c:1254:11: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + val >>= p.offset % 8; + ^ +../../src/H5Znbit.c:1259:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + buffer[*j] |= (val & ~(~0 << dat_len)) << (*buf_len - dat_len); + ^ +../../src/H5Znbit.c:1262:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); + ^ +../../src/H5Znbit.c:1267:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_nooptype’: +../../src/H5Znbit.c:1284:40: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); + ^ +../../src/H5Znbit.c:1284:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); + ^ +../../src/H5Znbit.c:1285:18: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + dat_len -= *buf_len; + ^ +../../src/H5Znbit.c:1289:49: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); + ^ +../../src/H5Znbit.c:1289:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); + ^ +../../src/H5Znbit.c:1290:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] + *buf_len -= dat_len; + ^ +../../src/H5Znbit.c:1290:16: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + *buf_len -= dat_len; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_atomic’: +../../src/H5Znbit.c:1301:26: warning: conversion to ‘int’ from ‘size_t’ may alter its value [-Wconversion] + datatype_len = p.size * 8; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_array’: +../../src/H5Znbit.c:1342:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1343:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1344:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1345:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + n = total_size/p.size; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_compound’: +../../src/H5Znbit.c:1395:30: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1396:34: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[parms_index++]; + ^ +../../src/H5Znbit.c:1397:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[parms_index++]; + ^ +../../src/H5Znbit.c: In function ‘H5Z_nbit_compress’: +../../src/H5Znbit.c:1440:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.order = parms[5]; + ^ +../../src/H5Znbit.c:1441:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.precision = parms[6]; + ^ +../../src/H5Znbit.c:1442:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] + p.offset = parms[7]; + ^ + CC H5Ztrans.lo +../../src/H5Zscaleoffset.c: In function ‘H5Z_set_local_scaleoffset’: +../../src/H5Zscaleoffset.c:938:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + cd_values[H5Z_SCALEOFFSET_PARM_SIZE] = dtype_size; + ^ +../../src/H5Zscaleoffset.c:967:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] + switch(dtype_order) { + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_filter_scaleoffset’: +../../src/H5Zscaleoffset.c:1063:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] + switch(H5T_native_order_g) { + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_convert’: +../../src/H5Zscaleoffset.c:1326:48: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + for(i = 0; i < d_nelmts * dtype_size; i += dtype_size) + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_precompress_fd’: +../../src/H5Zscaleoffset.c:393:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:393:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:398:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:398:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:403:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:403:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:559:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:559:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:559:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:486:37: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:486:63: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:485:50: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:494:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:494:64: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:493:51: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:502:43: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:502:69: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:501:56: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:393:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:393:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:398:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:398:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:403:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:403:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ + ^ +../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ + H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:566:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:566:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:566:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:514:34: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:514:60: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:513:47: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:518:35: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:518:61: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:517:48: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:522:40: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:522:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:521:53: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(float, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:559:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:485:50: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:493:51: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:501:56: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ + H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:566:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:513:47: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:517:48: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c:521:53: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ + ^ +../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ + H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ + H5Z_scaleoffset_precompress_3(double, data, d_nelmts, + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_postdecompress_fd’: +../../src/H5Zscaleoffset.c:627:76: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + filval : (double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:627:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] + filval : (double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:631:77: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + filval : (double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:631:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] + filval : (double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:635:82: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + filval : (double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:635:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] + filval : (double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ + H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:645:74: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i] = (type)((double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ + H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:648:75: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i] = (type)((double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ + H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c:651:80: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + buf[i] = (type)((double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ + ^ +../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ + H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ + ^ +../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ + H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_decompress_one_atomic’: +../../src/H5Zscaleoffset.c:1598:23: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + dtype_len = p.size * 8; + ^ +../../src/H5Zscaleoffset.c:1601:28: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + begin_i = p.size - 1 - (dtype_len - p.minbits) / 8; + ^ +../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_compress_one_atomic’: +../../src/H5Zscaleoffset.c:1681:23: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + dtype_len = p.size * 8; + ^ +../../src/H5Zscaleoffset.c:1684:28: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] + begin_i = p.size - 1 - (dtype_len - p.minbits) / 8; + ^ +../../src/H5Ztrans.c: In function ‘H5Z_parse_term’: +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] + switch (current->tok_type) { + ^ +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_INTEGER’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_FLOAT’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_SYMBOL’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_PLUS’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_MINUS’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_LPAREN’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c: In function ‘H5Z_parse_factor’: +../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] + switch (current->tok_type) { + ^ +../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_MULT’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_DIVIDE’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c: In function ‘H5Z_xform_eval_full’: +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1092:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1096:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1100:45: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *pl = *pl OP *pr; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ + H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = *p OP tree_val; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1104:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ + *p = tree_val OP *p; \ + ^ +../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ + H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) + ^ +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] + switch (tree->type) { + ^ +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_INTEGER’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_FLOAT’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_SYMBOL’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_LPAREN’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_RPAREN’ not handled in switch [-Wswitch-enum] +../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_END’ not handled in switch [-Wswitch-enum] + CCLD libhdf5.la +gmake -j 8 check-TESTS +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Nothing to be done for `_exec_check-s'. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +gmake[1]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' +Making check in test +gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[1]: warning: -jN forced in submake: disabling jobserver mode. + CCLD testhdf5 + CCLD lheap + CCLD ohdr + CCLD stab + CCLD gheap + CCLD cache + CCLD cache_api + CCLD pool + CCLD accum + CCLD hyperslab + CCLD istore + CCLD bittests + CCLD dt_arith + CCLD dtypes + CCLD dsets + CCLD cmpd_dset + CCLD filter_fail + CCLD extend + CCLD external + CCLD efc + CCLD objcopy + CCLD links + CCLD unlink + CCLD big + CCLD mtime + CCLD fillval + CCLD mount + CCLD flush1 + CCLD flush2 + CCLD app_ref + CCLD enum + CCLD set_extent + CCLD ttsafe + CCLD getname + CCLD vfd + CCLD ntypes + CCLD dangle + CCLD dtransform + CCLD reserved + CCLD cross_read + CCLD freespace + CCLD mf + CCLD btree2 + CCLD fheap + CCLD file_image + CCLD unregister + CCLD error_test + CCLD err_compat + CCLD tcheck_version + CCLD testmeta + CCLD links_env + CCLD plugin +gmake -j 8 testhdf5 lheap ohdr stab gheap cache cache_api pool accum hyperslab istore bittests dt_arith dtypes dsets cmpd_dset filter_fail extend external efc objcopy links unlink big mtime fillval mount flush1 flush2 app_ref enum set_extent ttsafe getname vfd ntypes dangle dtransform reserved cross_read freespace mf btree2 fheap file_image unregister error_test err_compat tcheck_version testmeta links_env plugin testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_plugin.sh +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. +gmake[2]: `testhdf5' is up to date. +gmake[2]: `lheap' is up to date. +gmake[2]: `ohdr' is up to date. +gmake[2]: `stab' is up to date. +gmake[2]: `gheap' is up to date. +gmake[2]: `cache' is up to date. +gmake[2]: `cache_api' is up to date. +gmake[2]: `pool' is up to date. +gmake[2]: `accum' is up to date. +gmake[2]: `hyperslab' is up to date. +gmake[2]: `istore' is up to date. +gmake[2]: `bittests' is up to date. +gmake[2]: `dt_arith' is up to date. +gmake[2]: `dtypes' is up to date. +gmake[2]: `dsets' is up to date. +gmake[2]: `cmpd_dset' is up to date. +gmake[2]: `filter_fail' is up to date. +gmake[2]: `extend' is up to date. +gmake[2]: `external' is up to date. +gmake[2]: `efc' is up to date. +gmake[2]: `objcopy' is up to date. +gmake[2]: `links' is up to date. +gmake[2]: `unlink' is up to date. +gmake[2]: `big' is up to date. +gmake[2]: `mtime' is up to date. +gmake[2]: `fillval' is up to date. +gmake[2]: `mount' is up to date. +gmake[2]: `flush1' is up to date. +gmake[2]: `flush2' is up to date. +gmake[2]: `app_ref' is up to date. +gmake[2]: `enum' is up to date. +gmake[2]: `set_extent' is up to date. +gmake[2]: `ttsafe' is up to date. +gmake[2]: `getname' is up to date. +gmake[2]: `vfd' is up to date. +gmake[2]: `ntypes' is up to date. +gmake[2]: `dangle' is up to date. +gmake[2]: `dtransform' is up to date. +gmake[2]: `reserved' is up to date. +gmake[2]: `cross_read' is up to date. +gmake[2]: `freespace' is up to date. +gmake[2]: `mf' is up to date. +gmake[2]: `btree2' is up to date. +gmake[2]: `fheap' is up to date. +gmake[2]: `file_image' is up to date. +gmake[2]: `unregister' is up to date. +gmake[2]: `error_test' is up to date. +gmake[2]: `err_compat' is up to date. +gmake[2]: `tcheck_version' is up to date. +gmake[2]: `testmeta' is up to date. +gmake[2]: `links_env' is up to date. +gmake[2]: `plugin' is up to date. +gmake[2]: `testerror.sh' is up to date. +gmake[2]: `testlibinfo.sh' is up to date. +gmake[2]: `testcheck_version.sh' is up to date. +gmake[2]: `testlinks_env.sh' is up to date. +gmake[2]: `test_plugin.sh' is up to date. +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake -j 8 check-TESTS +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in test begin Mon May 14 21:09:20 CDT 2018=== +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing testhdf5 +============================ +============================ +============================ +============================ +Testing lheap +============================ +============================ +Testing ohdr +============================ +Testing stab +Testing gheap +Testing cache +Testing cache_api +Testing pool +============================ + lheap Test Log +============================ +Testing local heap write PASSED +Testing local heap read PASSED +Testing opening pre-created file with non-default sizes PASSED +All local heap tests passed. +0.04user 0.02system 0:00.12elapsed 60%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+144outputs (0major+8917minor)pagefaults 0swaps + +Finished testing lheap +============================ +============================ + cache_api Test Log +============================ +Testing MDC/FAPL related API calls PASSED +Testing MDC/FILE related API calls PASSED +Testing MDC API smoke check -SKIP- + Long tests disabled. +Testing MDC/FAPL related API input errors PASSED +Testing MDC/FILE related API input errors PASSED +0.04user 0.03system 0:00.12elapsed 65%CPU (0avgtext+0avgdata 7164maxresident)k +0inputs+584outputs (0major+8767minor)pagefaults 0swaps + +Finished testing cache_api +============================ +============================ +============================ +Testing accum +Testing hyperslab +============================ + ohdr Test Log +============================ +Using default file format: +Testing object header continuation block PASSED +Testing object header creation PASSED +Testing message creation PASSED +Testing message modification PASSED +Testing object header overflow in memory PASSED +Testing close & re-open object header PASSED +Testing object header overflow on disk PASSED +Testing message deletion PASSED +Testing constant message handling PASSED +Testing object header closing PASSED +Testing locking messages PASSED +Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Testing object header creation in cache PASSED +Using new file format: +Testing object header continuation block PASSED +Testing object header creation PASSED +Testing message creation PASSED +Testing message modification PASSED +Testing object header overflow in memory PASSED +Testing close & re-open object header PASSED +Testing object header overflow on disk PASSED +Testing message deletion PASSED +Testing constant message handling PASSED +Testing object header closing PASSED +Testing locking messages PASSED +Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Testing object header creation in cache PASSED +All object header tests passed. +0.09user 0.03system 0:00.17elapsed 72%CPU (0avgtext+0avgdata 7056maxresident)k +0inputs+872outputs (0major+9191minor)pagefaults 0swaps + +Finished testing ohdr +============================ +============================ +Testing istore +============================ + accum Test Log +============================ +Testing the metadata accumulator +Testing simple write/read to/from metadata accumulator PASSED +Testing simple write/read to/from before metadata accumulator PASSED +Testing simple write/read to/from after metadata accumulator PASSED +Testing overlapping write to metadata accumulator PASSED +Testing overlapping write to partially clean metadata accumulator PASSED +Testing overlapping write to accumulator larger then accum_size PASSED +Testing non-overlapping write to accumulator larger then accum_size PASSED +Testing accumulator adjustments after append/prepend of data PASSED +Testing reading data from both accumulator and disk PASSED +Testing simple freeing metadata accumulator PASSED +Testing large metadata I/O operations PASSED +Testing random writes to accumulator PASSED +All metadata accumulator tests passed. +0.10user 0.08system 0:00.23elapsed 83%CPU (0avgtext+0avgdata 24972maxresident)k +0inputs+13488outputs (0major+16017minor)pagefaults 0swaps + +Finished testing accum +============================ +============================ +Testing bittests +============================ + bittests Test Log +============================ +Testing bit search operations PASSED +Testing bit set operations PASSED +Testing bit clear operations PASSED +Testing bit copy operations PASSED +Testing bit shift operations PASSED +Testing bit increment operations PASSED +Testing bit decrement operations PASSED +Testing bit negate operations PASSED +All bit tests passed. +0.26user 0.02system 0:00.28elapsed 101%CPU (0avgtext+0avgdata 6908maxresident)k +0inputs+64outputs (0major+8248minor)pagefaults 0swaps + +Finished testing bittests +============================ +============================ +Testing dt_arith +============================ + stab Test Log +============================ +Testing miscellaneous group tests PASSED +Testing long names PASSED +Testing large directories PASSED +Testing miscellaneous group tests (w/new group format) PASSED +Testing long names (w/new group format) PASSED +Testing large directories (w/new group format) PASSED +Testing group lifecycle PASSED +Testing long link names in compact groups PASSED +Testing reading old groups PASSED +Testing group without compact form PASSED +Testing setting root group creation properties PASSED +Testing old API routines PASSED +Testing corrupt symbol table message PASSED +All symbol table tests passed. +0.48user 0.05system 0:00.72elapsed 74%CPU (0avgtext+0avgdata 15068maxresident)k +0inputs+11496outputs (0major+11872minor)pagefaults 0swaps + +Finished testing stab +============================ +============================ +Testing dtypes +============================ + dtypes Test Log +============================ +Testing non-aligned conversions (ALIGNMENT=1).... +Testing H5Tget_class() PASSED +Testing H5Tcopy() PASSED +Testing H5Tdetect_class() PASSED +Testing compound datatypes PASSED +Testing query functions of compound and enumeration types PASSED +Testing transient datatypes PASSED +Testing named datatypes PASSED +Testing functions of encoding and decoding datatypes PASSED +Testing encoding datatypes with the 'use the latest format' flag PASSED +Testing exceptions for int <-> float conversions PASSED +Testing indirectly reopening committed datatypes PASSED +Testing indirectly reopening recursively committed datatypes including file reopening PASSED +Testing deleting objects that use named datatypes PASSED +Testing deleting objects that use named datatypes PASSED +Testing H5Tset/get_order for compound type PASSED +Testing string type creation using H5Tcreate PASSED +Testing deprected API routines for datatypes PASSED +Testing string conversions PASSED +Testing random string conversion speed PASSED +Testing some type functions for string PASSED +Testing compound element reordering PASSED +Testing compound subset conversions PASSED +Testing compound element shrinking & reordering PASSED +Testing optimized struct converter PASSED +Testing compound element growing PASSED +Testing compound element insertion PASSED +Testing packing compound datatypes PASSED +Testing compound datatype with VL string PASSED +Testing array datatype of compound type with VL string PASSED +Testing registering type conversion routine with compound conversions PASSED +Testing adjust size of compound datatypes PASSED +Testing compound datatypes of boundary size with latest format PASSED +Testing unaligned VL strings in compound PASSED +Testing compound subset conversion with extra space in source PASSED +Testing visibility of internally registered type ids PASSED +Testing that H5Tpack removes trailing bytes PASSED +Testing accessing objects with compound datatypes that have no fields PASSED +Testing random enum conversion O(N) PASSED +Testing random enum conversion O(N log N) PASSED +Testing non-native enumeration type conversion PASSED +Testing bitfield conversions PASSED +Testing some type functions for bitfield PASSED +Testing opaque datatypes PASSED +Testing H5Tset/get_order PASSED +Testing string conversion between ASCII and UTF PASSED +All datatype tests passed. +0.40user 0.06system 0:00.56elapsed 82%CPU (0avgtext+0avgdata 25384maxresident)k +0inputs+1096outputs (0major+20170minor)pagefaults 0swaps + +Finished testing dtypes +============================ +============================ +Testing dsets +============================ + hyperslab Test Log +============================ +Test sizes: SMALL MEDIUM +Testing hyperslab fill 11 variable hyperslab PASSED +Testing hyperslab fill 11x10 variable hyperslab PASSED +Testing hyperslab fill 3x5x5 variable hyperslab PASSED +Testing hyperslab fill 113 variable hyperslab PASSED +Testing hyperslab fill 15x11 variable hyperslab PASSED +Testing hyperslab fill 5x7x7 variable hyperslab PASSED +Testing hyperslab copy 11 variable source PASSED +Testing hyperslab copy 11 variable destination PASSED +Testing hyperslab copy 11 sync source & dest PASSED +Testing hyperslab copy 179 variable source PASSED +Testing hyperslab copy 179 variable destination PASSED +Testing hyperslab copy 179 sync source & dest PASSED +Testing hyperslab copy 11x10 variable source PASSED +Testing hyperslab copy 11x10 variable destination PASSED +Testing hyperslab copy 11x10 sync source & dest PASSED +Testing hyperslab copy 13x19 variable source PASSED +Testing hyperslab copy 13x19 variable destination PASSED +Testing hyperslab copy 13x19 sync source & dest PASSED +Testing hyperslab copy 73x67 variable source PASSED +Testing hyperslab copy 73x67 variable destination PASSED +Testing hyperslab copy 73x67 sync source & dest PASSED +Testing hyperslab copy 3x5x5 variable source PASSED +Testing hyperslab copy 3x5x5 variable destination PASSED +Testing hyperslab copy 3x5x5 sync source & dest PASSED +Testing hyperslab copy 7x9x5 variable source PASSED +Testing hyperslab copy 7x9x5 variable destination PASSED +Testing hyperslab copy 7x9x5 sync source & dest PASSED +Testing multi-byte fill value PASSED +Testing multi-byte fill value PASSED +Testing endian conversion by stride PASSED +Testing 2d transpose by stride 9x9d PASSED +Testing 2d transpose by stride 3x11d PASSED +Testing endian conversion by stride PASSED +Testing 2d transpose by stride 1200x1200d PASSED +Testing 2d transpose by stride 800x1800d PASSED +Testing image sampling 10x20 to 5x10 PASSED +Testing image sampling 5x10 to 10x20 PASSED +Testing image sampling 960x1280 to 480x640 PASSED +Testing image sampling 480x640 to 960x1280 PASSED +Testing array filling 1-9 elements PASSED +Testing array filling 9-257 elements PASSED +Testing array offset 13x 11x 7 elements PASSED +Testing array offset 347x 193x 71 elements PASSED +All hyperslab tests passed. +0.95user 0.23system 0:01.18elapsed 100%CPU (0avgtext+0avgdata 49280maxresident)k +0inputs+45072outputs (0major+24810minor)pagefaults 0swaps + +Finished testing hyperslab +============================ +============================ +Testing cmpd_dset +============================ + istore Test Log +============================ +Test sizes: SMALL MEDIUM LARGE +Testing istore create PASSED +Testing istore extend: 10 PASSED +Testing istore extend: 10x10 PASSED +Testing istore extend: 10x10x10 PASSED +Testing istore extend: 10000 PASSED +Testing istore extend: 2500x10 PASSED +Testing istore extend: 10x400x10 PASSED +Testing istore sparse: 5 PASSED +Testing istore sparse: 3x4 PASSED +Testing istore sparse: 2x3x4 PASSED +Testing istore sparse: 30 PASSED +Testing istore sparse: 7x3 PASSED +Testing istore sparse: 4x2x3 PASSED +Testing istore sparse: 50x50x50 PASSED +All i-store tests passed. +0.47user 0.69system 0:01.16elapsed 100%CPU (0avgtext+0avgdata 11660maxresident)k +0inputs+2093024outputs (0major+10754minor)pagefaults 0swaps + +Finished testing istore +============================ +============================ +Testing filter_fail +============================ + filter_fail Test Log +============================ +Testing data writing when a mandatory filter fails and chunk cache is enabled PASSED +Testing data reading when a mandatory filter fails PASSED +Testing data writing when a mandatory filter fails and chunk cache is disabled PASSED +Testing data reading when a mandatory filter fails PASSED +0.03user 0.02system 0:00.05elapsed 105%CPU (0avgtext+0avgdata 7016maxresident)k +0inputs+152outputs (0major+8904minor)pagefaults 0swaps + +Finished testing filter_fail +============================ +============================ +Testing extend +============================ + extend Test Log +============================ +Testing extendible dataset with incr. allocation PASSED +Testing extendible dataset with incr. allocation w/deprec. symbols PASSED +Testing extendible dataset with early allocation PASSED +Testing extendible dataset with early allocation w/deprec. symbols PASSED +All extend tests passed. +0.06user 0.02system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+8016outputs (0major+9214minor)pagefaults 0swaps + +Finished testing extend +============================ +============================ +Testing external +============================ + external Test Log +============================ +Testing with the default file format: +Testing fixed-size data space, exact storage PASSED +Testing external storage is too small PASSED +Testing extendible dataspace, exact external size PASSED +Testing extendible dataspace, external storage is too small PASSED +Testing unlimited dataspace, unlimited external storage PASSED +Testing multiple external files PASSED +Testing external file following unlimited file PASSED +Testing address overflow in external files PASSED +Testing read external dataset PASSED +Testing write external dataset PASSED +Testing absolute filenames for external file PASSED +Testing filenames relative to current directory for external file PASSED +Testing filenames relative to HDF5 file for external file PASSED +Testing prefix in HDF5_EXTFILE_PREFIX PASSED + +Testing with the latest file format: +Testing fixed-size data space, exact storage PASSED +Testing external storage is too small PASSED +Testing extendible dataspace, exact external size PASSED +Testing extendible dataspace, external storage is too small PASSED +Testing unlimited dataspace, unlimited external storage PASSED +Testing multiple external files PASSED +Testing external file following unlimited file PASSED +Testing address overflow in external files PASSED +Testing read external dataset PASSED +Testing write external dataset PASSED +Testing absolute filenames for external file PASSED +Testing filenames relative to current directory for external file PASSED +Testing filenames relative to HDF5 file for external file PASSED +Testing prefix in HDF5_EXTFILE_PREFIX PASSED +All external storage tests passed. +0.06user 0.04system 0:00.27elapsed 39%CPU (0avgtext+0avgdata 7076maxresident)k +0inputs+1168outputs (0major+9179minor)pagefaults 0swaps + +Finished testing external +============================ +============================ +Testing efc +============================ + pool Test Log +============================ +Testing memory pool creation PASSED +Testing closing pool with blocks still allocated in one page PASSED +Testing allocating first block in pool PASSED +Testing allocating large first block in pool PASSED +Testing splitting block in pool PASSED +Testing allocating many small blocks PASSED +Testing allocate normal-sized block in new page PASSED +Testing allocate large-sized block in new page PASSED +Testing allocate many random sized blocks PASSED +All memory pool tests passed. +2.16user 0.04system 0:02.21elapsed 100%CPU (0avgtext+0avgdata 37032maxresident)k +0inputs+136outputs (0major+25585minor)pagefaults 0swaps + +Finished testing pool +============================ +============================ +Testing objcopy +============================ + cmpd_dset Test Log +============================ +Testing compound dataset: +Testing basic compound write PASSED +Testing basic compound read PASSED +Testing reversal of struct members PASSED +Testing subset struct read PASSED +Testing partially initialized superset read PASSED +Testing partially initialized superset optimized read PASSED +Testing partially initialized superset write PASSED +Testing explicit data space PASSED +Testing hyperslab partial read to array PASSED +Testing hyperslab partial read to another hyperslab PASSED +Testing hyperslab to hyperslab part initialized read PASSED +Testing hyperslab part initialized write PASSED +Testing the optimization of when the source type is a subset of the dest: +Testing writing data to contiguous and chunked datasets PASSED +Testing rewriting data with a subset of original data type PASSED +Testing reading data with a subset of original data type PASSED +Testing the optimization of when the dest type is a subset of the source: +Testing writing data to contiguous and chunked datasets PASSED +Testing rewriting data with a subset of original data type PASSED +Testing reading data with a subset of original data type PASSED +Testing that compound types can be packed out of order: +Without extra space at the end of compound... +Testing random member insertion with empty compound subtype PASSED +Testing random member insertion with full compound subtype PASSED +Testing reverse member insertion with empty compound subtype PASSED +Testing reverse member insertion with full compound subtype PASSED +Testing forward member insertion with empty compound subtype PASSED +Testing forward member insertion with full compound subtype PASSED +With extra space at the end of compound... +Testing random member insertion with empty compound subtype PASSED +Testing random member insertion with full compound subtype PASSED +Testing reverse member insertion with empty compound subtype PASSED +Testing reverse member insertion with full compound subtype PASSED +Testing forward member insertion with empty compound subtype PASSED +Testing forward member insertion with full compound subtype PASSED +Testing compound member ordering: +Testing that compound member insertion order is preserved PASSED +All compound dataset tests passed. +0.28user 0.71system 0:01.04elapsed 96%CPU (0avgtext+0avgdata 156292maxresident)k +0inputs+329472outputs (0major+71472minor)pagefaults 0swaps + +Finished testing cmpd_dset +============================ +============================ +Testing links +============================ + dt_arith Test Log +============================ +Testing non-aligned conversions (ALIGNMENT=1).... +Testing query functions of compiler conversion PASSED +Testing user-define and query functions of floating-point types PASSED +Testing user-define and query functions of integer types PASSED +Floating-point overflow cases will be tested. +Testing noop float -> float conversions PASSED +Testing noop double -> double conversions PASSED +Testing noop long double -> long double conversions PASSED +Testing hard normalized float -> double conversions PASSED +Testing hard normalized double -> float conversions PASSED +Testing hard normalized float -> long double conversions PASSED +Testing hard normalized double -> long double conversions PASSED +Testing hard normalized long double -> float conversions PASSED +Testing hard normalized long double -> double conversions PASSED +Testing hard denormalized float -> double conversions PASSED +Testing hard denormalized double -> float conversions PASSED +Testing hard denormalized float -> long double conversions PASSED +Testing hard denormalized double -> long double conversions PASSED +Testing hard denormalized long double -> float conversions PASSED +Testing hard denormalized long double -> double conversions PASSED +Testing hard special float -> double conversions PASSED +Testing hard special double -> float conversions PASSED +Testing hard special float -> long double conversions PASSED +Testing hard special double -> long double conversions PASSED +Testing hard special long double -> float conversions PASSED +Testing hard special long double -> double conversions PASSED +Testing hard signed char -> unsigned char conversions PASSED +Testing hard signed char -> short conversions PASSED +Testing hard signed char -> unsigned short conversions PASSED +Testing hard signed char -> int conversions PASSED +Testing hard signed char -> unsigned int conversions PASSED +Testing hard signed char -> long conversions PASSED +Testing hard signed char -> unsigned long conversions PASSED +Testing hard unsigned char -> signed char conversions PASSED +Testing hard unsigned char -> short conversions PASSED +Testing hard unsigned char -> unsigned short conversions PASSED +Testing hard unsigned char -> int conversions PASSED +Testing hard unsigned char -> unsigned int conversions PASSED +Testing hard unsigned char -> long conversions PASSED +Testing hard unsigned char -> unsigned long conversions PASSED +Testing hard short -> signed char conversions PASSED +Testing hard short -> unsigned char conversions PASSED +Testing hard short -> unsigned short conversions PASSED +Testing hard short -> int conversions PASSED +Testing hard short -> unsigned int conversions PASSED +Testing hard short -> long conversions PASSED +Testing hard short -> unsigned long conversions PASSED +Testing hard unsigned short -> signed char conversions PASSED +Testing hard unsigned short -> unsigned char conversions PASSED +Testing hard unsigned short -> short conversions PASSED +Testing hard unsigned short -> int conversions PASSED +Testing hard unsigned short -> unsigned int conversions PASSED +Testing hard unsigned short -> long conversions PASSED +Testing hard unsigned short -> unsigned long conversions PASSED +Testing hard int -> signed char conversions PASSED +Testing hard int -> unsigned char conversions PASSED +Testing hard int -> short conversions PASSED +Testing hard int -> unsigned short conversions PASSED +Testing hard int -> unsigned int conversions PASSED +Testing hard int -> long conversions PASSED +Testing hard int -> unsigned long conversions PASSED +Testing hard unsigned int -> signed char conversions PASSED +Testing hard unsigned int -> unsigned char conversions PASSED +Testing hard unsigned int -> short conversions PASSED +Testing hard unsigned int -> unsigned short conversions PASSED +Testing hard unsigned int -> int conversions PASSED +Testing hard unsigned int -> long conversions PASSED +Testing hard unsigned int -> unsigned long conversions PASSED +Testing hard long -> signed char conversions PASSED +Testing hard long -> unsigned char conversions PASSED +Testing hard long -> short conversions PASSED +Testing hard long -> unsigned short conversions PASSED +Testing hard long -> int conversions PASSED +Testing hard long -> unsigned int conversions PASSED +Testing hard long -> unsigned long conversions PASSED +Testing hard unsigned long -> signed char conversions PASSED +Testing hard unsigned long -> unsigned char conversions PASSED +Testing hard unsigned long -> short conversions PASSED +Testing hard unsigned long -> unsigned short conversions PASSED +Testing hard unsigned long -> int conversions PASSED +Testing hard unsigned long -> unsigned int conversions PASSED +Testing hard unsigned long -> long conversions PASSED +Testing hard signed char -> float conversions PASSED +Testing hard signed char -> double conversions PASSED +Testing hard unsigned char -> float conversions PASSED +Testing hard unsigned char -> double conversions PASSED +Testing hard short -> float conversions PASSED +Testing hard short -> double conversions PASSED +Testing hard unsigned short -> float conversions PASSED +Testing hard unsigned short -> double conversions PASSED +Testing hard int -> float conversions PASSED +Testing hard int -> double conversions PASSED +Testing hard unsigned int -> float conversions PASSED +Testing hard unsigned int -> double conversions PASSED +Testing hard long -> float conversions PASSED +Testing hard long -> double conversions PASSED +Testing hard unsigned long -> float conversions PASSED +Testing hard unsigned long -> double conversions PASSED +Testing hard signed char -> long double conversions PASSED +Testing hard unsigned char -> long double conversions PASSED +Testing hard short -> long double conversions PASSED +Testing hard unsigned short -> long double conversions PASSED +Testing hard int -> long double conversions PASSED +Testing hard unsigned int -> long double conversions PASSED +Testing hard long -> long double conversions PASSED +Testing hard unsigned long -> long double conversions PASSED +Testing hard normalized float -> signed char conversions PASSED +Testing hard normalized double -> signed char conversions PASSED +Testing hard normalized float -> unsigned char conversions PASSED +Testing hard normalized double -> unsigned char conversions PASSED +Testing hard normalized float -> short conversions PASSED +Testing hard normalized double -> short conversions PASSED +Testing hard normalized float -> unsigned short conversions PASSED +Testing hard normalized double -> unsigned short conversions PASSED +Testing hard normalized float -> int conversions PASSED +Testing hard normalized double -> int conversions PASSED +Testing hard normalized float -> unsigned int conversions PASSED +Testing hard normalized double -> unsigned int conversions PASSED +Testing hard normalized float -> long conversions PASSED +Testing hard normalized double -> long conversions PASSED +Testing hard normalized float -> unsigned long conversions PASSED +Testing hard normalized double -> unsigned long conversions PASSED +Testing hard normalized long double -> signed char conversions PASSED +Testing hard normalized long double -> unsigned char conversions PASSED +Testing hard normalized long double -> short conversions PASSED +Testing hard normalized long double -> unsigned short conversions PASSED +Testing hard normalized long double -> int conversions PASSED +Testing hard normalized long double -> unsigned int conversions PASSED +Testing hard normalized long double -> long conversions PASSED +Testing hard normalized long double -> unsigned long conversions PASSED +Testing hard denormalized float -> signed char conversions PASSED +Testing hard denormalized double -> signed char conversions PASSED +Testing hard denormalized float -> unsigned char conversions PASSED +Testing hard denormalized double -> unsigned char conversions PASSED +Testing hard denormalized float -> short conversions PASSED +Testing hard denormalized double -> short conversions PASSED +Testing hard denormalized float -> unsigned short conversions PASSED +Testing hard denormalized double -> unsigned short conversions PASSED +Testing hard denormalized float -> int conversions PASSED +Testing hard denormalized double -> int conversions PASSED +Testing hard denormalized float -> unsigned int conversions PASSED +Testing hard denormalized double -> unsigned int conversions PASSED +Testing hard denormalized float -> long conversions PASSED +Testing hard denormalized double -> long conversions PASSED +Testing hard denormalized float -> unsigned long conversions PASSED +Testing hard denormalized double -> unsigned long conversions PASSED +Testing hard denormalized long double -> signed char conversions PASSED +Testing hard denormalized long double -> unsigned char conversions PASSED +Testing hard denormalized long double -> short conversions PASSED +Testing hard denormalized long double -> unsigned short conversions PASSED +Testing hard denormalized long double -> int conversions PASSED +Testing hard denormalized long double -> unsigned int conversions PASSED +Testing hard denormalized long double -> long conversions PASSED +Testing hard denormalized long double -> unsigned long conversions PASSED +Testing hard special float -> signed char conversions PASSED +Testing hard special double -> signed char conversions PASSED +Testing hard special float -> unsigned char conversions PASSED +Testing hard special double -> unsigned char conversions PASSED +Testing hard special float -> short conversions PASSED +Testing hard special double -> short conversions PASSED +Testing hard special float -> unsigned short conversions PASSED +Testing hard special double -> unsigned short conversions PASSED +Testing hard special float -> int conversions PASSED +Testing hard special double -> int conversions PASSED +Testing hard special float -> unsigned int conversions PASSED +Testing hard special double -> unsigned int conversions PASSED +Testing hard special float -> long conversions PASSED +Testing hard special double -> long conversions PASSED +Testing hard special float -> unsigned long conversions PASSED +Testing hard special double -> unsigned long conversions PASSED +Testing hard special long double -> signed char conversions PASSED +Testing hard special long double -> unsigned char conversions PASSED +Testing hard special long double -> short conversions PASSED +Testing hard special long double -> unsigned short conversions PASSED +Testing hard special long double -> int conversions PASSED +Testing hard special long double -> unsigned int conversions PASSED +Testing hard special long double -> long conversions PASSED +Testing hard special long double -> unsigned long conversions PASSED +Testing hard particular floating number -> integer conversions PASSED +Testing soft normalized float -> double conversions PASSED +Testing soft normalized double -> float conversions PASSED +Testing soft normalized float -> long double conversions PASSED +Testing soft normalized double -> long double conversions PASSED +Testing soft normalized long double -> float conversions PASSED +Testing soft normalized long double -> double conversions PASSED +Testing soft denormalized float -> double conversions PASSED +Testing soft denormalized double -> float conversions PASSED +Testing soft denormalized float -> long double conversions PASSED +Testing soft denormalized double -> long double conversions PASSED +Testing soft denormalized long double -> float conversions PASSED +Testing soft denormalized long double -> double conversions PASSED +Testing soft special float -> double conversions PASSED +Testing soft special double -> float conversions PASSED +Testing soft special float -> long double conversions PASSED +Testing soft special double -> long double conversions PASSED +Testing soft special long double -> float conversions PASSED +Testing soft special long double -> double conversions PASSED +Testing overlap calculations PASSED +Testing soft signed char -> unsigned char conversions PASSED +Testing soft signed char -> short conversions PASSED +Testing soft signed char -> unsigned short conversions PASSED +Testing soft signed char -> int conversions PASSED +Testing soft signed char -> unsigned int conversions PASSED +Testing soft signed char -> long conversions PASSED +Testing soft signed char -> unsigned long conversions PASSED +Testing soft unsigned char -> signed char conversions PASSED +Testing soft unsigned char -> short conversions PASSED +Testing soft unsigned char -> unsigned short conversions PASSED +Testing soft unsigned char -> int conversions PASSED +Testing soft unsigned char -> unsigned int conversions PASSED +Testing soft unsigned char -> long conversions PASSED +Testing soft unsigned char -> unsigned long conversions PASSED +Testing soft short -> signed char conversions PASSED +Testing soft short -> unsigned char conversions PASSED +Testing soft short -> unsigned short conversions PASSED +Testing soft short -> int conversions PASSED +Testing soft short -> unsigned int conversions PASSED +Testing soft short -> long conversions PASSED +Testing soft short -> unsigned long conversions PASSED +Testing soft unsigned short -> signed char conversions PASSED +Testing soft unsigned short -> unsigned char conversions PASSED +Testing soft unsigned short -> short conversions PASSED +Testing soft unsigned short -> int conversions PASSED +Testing soft unsigned short -> unsigned int conversions PASSED +Testing soft unsigned short -> long conversions PASSED +Testing soft unsigned short -> unsigned long conversions PASSED +Testing soft int -> signed char conversions PASSED +Testing soft int -> unsigned char conversions PASSED +Testing soft int -> short conversions PASSED +Testing soft int -> unsigned short conversions PASSED +Testing soft int -> unsigned int conversions PASSED +Testing soft int -> long conversions PASSED +Testing soft int -> unsigned long conversions PASSED +Testing soft unsigned int -> signed char conversions PASSED +Testing soft unsigned int -> unsigned char conversions PASSED +Testing soft unsigned int -> short conversions PASSED +Testing soft unsigned int -> unsigned short conversions PASSED +Testing soft unsigned int -> int conversions PASSED +Testing soft unsigned int -> long conversions PASSED +Testing soft unsigned int -> unsigned long conversions PASSED +Testing soft long -> signed char conversions PASSED +Testing soft long -> unsigned char conversions PASSED +Testing soft long -> short conversions PASSED +Testing soft long -> unsigned short conversions PASSED +Testing soft long -> int conversions PASSED +Testing soft long -> unsigned int conversions PASSED +Testing soft long -> unsigned long conversions PASSED +Testing soft unsigned long -> signed char conversions PASSED +Testing soft unsigned long -> unsigned char conversions PASSED +Testing soft unsigned long -> short conversions PASSED +Testing soft unsigned long -> unsigned short conversions PASSED +Testing soft unsigned long -> int conversions PASSED +Testing soft unsigned long -> unsigned int conversions PASSED +Testing soft unsigned long -> long conversions PASSED +Testing soft normalized float -> signed char conversions PASSED +Testing soft normalized double -> signed char conversions PASSED +Testing soft normalized float -> unsigned char conversions PASSED +Testing soft normalized double -> unsigned char conversions PASSED +Testing soft normalized float -> short conversions PASSED +Testing soft normalized double -> short conversions PASSED +Testing soft normalized float -> unsigned short conversions PASSED +Testing soft normalized double -> unsigned short conversions PASSED +Testing soft normalized float -> int conversions PASSED +Testing soft normalized double -> int conversions PASSED +Testing soft normalized float -> unsigned int conversions PASSED +Testing soft normalized double -> unsigned int conversions PASSED +Testing soft normalized float -> long conversions PASSED +Testing soft normalized double -> long conversions PASSED +Testing soft normalized float -> unsigned long conversions PASSED +Testing soft normalized double -> unsigned long conversions PASSED +Testing soft normalized long double -> signed char conversions PASSED +Testing soft normalized long double -> unsigned char conversions PASSED +Testing soft normalized long double -> short conversions PASSED +Testing soft normalized long double -> unsigned short conversions PASSED +Testing soft normalized long double -> int conversions PASSED +Testing soft normalized long double -> unsigned int conversions PASSED +Testing soft normalized long double -> long conversions PASSED +Testing soft normalized long double -> unsigned long conversions PASSED +Testing soft denormalized float -> signed char conversions PASSED +Testing soft denormalized double -> signed char conversions PASSED +Testing soft denormalized float -> unsigned char conversions PASSED +Testing soft denormalized double -> unsigned char conversions PASSED +Testing soft denormalized float -> short conversions PASSED +Testing soft denormalized double -> short conversions PASSED +Testing soft denormalized float -> unsigned short conversions PASSED +Testing soft denormalized double -> unsigned short conversions PASSED +Testing soft denormalized float -> int conversions PASSED +Testing soft denormalized double -> int conversions PASSED +Testing soft denormalized float -> unsigned int conversions PASSED +Testing soft denormalized double -> unsigned int conversions PASSED +Testing soft denormalized float -> long conversions PASSED +Testing soft denormalized double -> long conversions PASSED +Testing soft denormalized float -> unsigned long conversions PASSED +Testing soft denormalized double -> unsigned long conversions PASSED +Testing soft denormalized long double -> signed char conversions PASSED +Testing soft denormalized long double -> unsigned char conversions PASSED +Testing soft denormalized long double -> short conversions PASSED +Testing soft denormalized long double -> unsigned short conversions PASSED +Testing soft denormalized long double -> int conversions PASSED +Testing soft denormalized long double -> unsigned int conversions PASSED +Testing soft denormalized long double -> long conversions PASSED +Testing soft denormalized long double -> unsigned long conversions PASSED +Testing soft special float -> signed char conversions PASSED +Testing soft special double -> signed char conversions PASSED +Testing soft special float -> unsigned char conversions PASSED +Testing soft special double -> unsigned char conversions PASSED +Testing soft special float -> short conversions PASSED +Testing soft special double -> short conversions PASSED +Testing soft special float -> unsigned short conversions PASSED +Testing soft special double -> unsigned short conversions PASSED +Testing soft special float -> int conversions PASSED +Testing soft special double -> int conversions PASSED +Testing soft special float -> unsigned int conversions PASSED +Testing soft special double -> unsigned int conversions PASSED +Testing soft special float -> long conversions PASSED +Testing soft special double -> long conversions PASSED +Testing soft special float -> unsigned long conversions PASSED +Testing soft special double -> unsigned long conversions PASSED +Testing soft special long double -> signed char conversions PASSED +Testing soft special long double -> unsigned char conversions PASSED +Testing soft special long double -> short conversions PASSED +Testing soft special long double -> unsigned short conversions PASSED +Testing soft special long double -> int conversions PASSED +Testing soft special long double -> unsigned int conversions PASSED +Testing soft special long double -> long conversions PASSED +Testing soft special long double -> unsigned long conversions PASSED +Testing soft signed char -> float conversions PASSED +Testing soft signed char -> double conversions PASSED +Testing soft unsigned char -> float conversions PASSED +Testing soft unsigned char -> double conversions PASSED +Testing soft short -> float conversions PASSED +Testing soft short -> double conversions PASSED +Testing soft unsigned short -> float conversions PASSED +Testing soft unsigned short -> double conversions PASSED +Testing soft int -> float conversions PASSED +Testing soft int -> double conversions PASSED +Testing soft unsigned int -> float conversions PASSED +Testing soft unsigned int -> double conversions PASSED +Testing soft long -> float conversions PASSED +Testing soft long -> double conversions PASSED +Testing soft unsigned long -> float conversions PASSED +Testing soft unsigned long -> double conversions PASSED +Testing soft signed char -> long double conversions PASSED +Testing soft unsigned char -> long double conversions PASSED +Testing soft short -> long double conversions PASSED +Testing soft unsigned short -> long double conversions PASSED +Testing soft int -> long double conversions PASSED +Testing soft unsigned int -> long double conversions PASSED +Testing soft long -> long double conversions PASSED +Testing soft unsigned long -> long double conversions PASSED +All data type tests passed. +1.63user 0.06system 0:01.73elapsed 98%CPU (0avgtext+0avgdata 7116maxresident)k +0inputs+528outputs (0major+25485minor)pagefaults 0swaps + +Finished testing dt_arith +============================ +============================ +Testing unlink +============================ + efc Test Log +============================ +Testing the external file cache +Testing single EFC PASSED +Testing graph of EFCs without cycles PASSED +Testing graph of EFCs with cycles PASSED +All external file cache tests passed. +0.17user 0.06system 0:01.20elapsed 19%CPU (0avgtext+0avgdata 7320maxresident)k +0inputs+3632outputs (0major+10534minor)pagefaults 0swaps + +Finished testing efc +============================ +============================ +Testing big +============================ + big Test Log +============================ +Testing big file with the SEC2 Driver +Testing Huge dataset write PASSED +#000 0x0000000178020bcc PASSED +#001 0x00000001f33ce9ab PASSED +#002 0x000000003ad87e13 PASSED +#003 0x00000001d92205ec PASSED +#004 0x00000000b8cd62b8 PASSED +#005 0x00000000a486b06c PASSED +#006 0x000000000cd2f556 PASSED +#007 0x000000004f69ceec PASSED +#008 0x0000000029367eae PASSED +#009 0x000000016d5d0374 PASSED +#010 0x00000001b8e174dd PASSED +#011 0x00000000a92a0650 PASSED +#012 0x000000011aa20743 PASSED +#013 0x00000000dc408e84 PASSED +#014 0x00000001017a0312 PASSED +#015 0x00000001ad32fbba PASSED +#016 0x00000000194e381b PASSED +#017 0x00000001ac13c2af PASSED +#018 0x000000015176bb6e PASSED +#019 0x00000001d9271f50 PASSED +#020 0x00000000985f16dc PASSED +#021 0x00000000cde4a1c0 PASSED +#022 0x000000015a3b8d30 PASSED +#023 0x000000005a81e900 PASSED +#024 0x000000011b40a53c PASSED +#025 0x000000016b7c1388 PASSED +#026 0x000000006d8f3b5c PASSED +#027 0x00000001e2e45943 PASSED +#028 0x0000000082d95723 PASSED +#029 0x00000001e1bfd2ec PASSED +#030 0x00000001eb56041c PASSED +#031 0x00000001d2ec019c PASSED +#032 0x000000009b5331a2 PASSED +#033 0x00000001b82bc2ac PASSED +#034 0x0000000008b5c0a8 PASSED +#035 0x00000000424a94b0 PASSED +#036 0x000000019c4e493c PASSED +#037 0x00000001236967f7 PASSED +#038 0x00000000f8a18c5c PASSED +#039 0x00000001d6decdb3 PASSED +#040 0x00000000639a5de2 PASSED +#041 0x00000000727f8ca0 PASSED +#042 0x0000000017a9b3bc PASSED +#043 0x0000000162229fe0 PASSED +#044 0x000000008e15ebb4 PASSED +#045 0x00000001244b45d8 PASSED +#046 0x0000000118af5ff0 PASSED +#047 0x000000001ff424d3 PASSED +#048 0x00000001b4a8cc84 PASSED +#049 0x000000014cab9a70 PASSED +Test passed with the SEC2 Driver. +0.05user 0.04system 0:00.11elapsed 77%CPU (0avgtext+0avgdata 7020maxresident)k +0inputs+9320outputs (0major+8896minor)pagefaults 0swaps + +Finished testing big +============================ +============================ +Testing mtime +============================ + mtime Test Log +============================ +Testing modification time messages PASSED +Testing accessing old modification time messages PASSED +Testing accessing new modification time messages PASSED +All modification time tests passed. +0.04user 0.03system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 7012maxresident)k +0inputs+144outputs (0major+8816minor)pagefaults 0swaps + +Finished testing mtime +============================ +============================ +Testing fillval +============================ + dsets Test Log +============================ +Testing with old file format: +Testing create, open, close PASSED +Testing simple I/O PASSED +Testing compact dataset I/O PASSED +Testing compact dataset of maximal size PASSED +Testing compact dataset repeated open/close and dirty flag PASSED +Testing data type conversion buffer size PASSED +Testing data type conversion PASSED +Testing H5Zget_filter_info PASSED +Testing 'null' filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(enabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(disabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(when data is corrupted) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing szip filter -SKIP- + Szip filter not enabled +Testing shuffle filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum first) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum last) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+szip+fletcher32 filters -SKIP- + szip filter not enabled +Testing 8-bit shuffling (setup) PASSED +Testing 8-bit shuffling (write) PASSED +Testing 8-bit shuffling (read) PASSED +Testing nbit filter +Testing nbit int (setup) PASSED +Testing nbit int (write) PASSED +Testing nbit int (read) PASSED +Testing nbit float (setup) PASSED +Testing nbit float (write) PASSED +Testing nbit float (read) PASSED +Testing nbit double (setup) PASSED +Testing nbit double (write) PASSED +Testing nbit double (read) PASSED +Testing nbit array (setup) PASSED +Testing nbit array (write) PASSED +Testing nbit array (read) PASSED +Testing nbit compound (setup) PASSED +Testing nbit compound (write) PASSED +Testing nbit compound (read) PASSED +Testing nbit compound complex (setup) PASSED +Testing nbit compound complex (write) PASSED +Testing nbit compound complex (read) PASSED +Testing nbit compound with no-op type (setup) PASSED +Testing nbit compound with no-op type (write) PASSED +Testing nbit compound with no-op type (read) PASSED +Testing nbit integer dataset size PASSED +Testing nbit floating-number dataset size PASSED +Testing scaleoffset filter +Testing scaleoffset int without fill value (setup) PASSED +Testing scaleoffset int without fill value (write) PASSED +Testing scaleoffset int without fill value (read) PASSED +Testing scaleoffset int with fill value (setup) PASSED +Testing scaleoffset int with fill value (write) PASSED +Testing scaleoffset int with fill value (read) PASSED +Testing scaleoffset float without fill value, D-scaling (setup) PASSED +Testing scaleoffset float without fill value, D-scaling (write) PASSED +Testing scaleoffset float without fill value, D-scaling (read) PASSED +Testing scaleoffset float with fill value, D-scaling (setup) PASSED +Testing scaleoffset float with fill value, D-scaling (write) PASSED +Testing scaleoffset float with fill value, D-scaling (read) PASSED +Testing scaleoffset double without fill value, D-scaling (setup) PASSED +Testing scaleoffset double without fill value, D-scaling (write) PASSED +Testing scaleoffset double without fill value, D-scaling (read) PASSED +Testing scaleoffset double with fill value, D-scaling (setup) PASSED +Testing scaleoffset double with fill value, D-scaling (write) PASSED +Testing scaleoffset double with fill value, D-scaling (read) PASSED +Testing multi-open with extending PASSED +Testing various datatypes PASSED +Testing dataset offset with user block PASSED +Testing dataset access with missing filter PASSED +Testing dataset filter 'can apply' callback PASSED +Testing dataset filter 'can apply' callback second PASSED +Testing dataset filter 'set local' callback PASSED +Testing dataset szip filter 'can apply' callback -SKIP- + Szip filter is not enabled. +Testing comparing dataset creation property lists PASSED +Testing copying dataset creation property lists PASSED +Testing filter deletion PASSED +Testing filters with big-endian/little-endian data PASSED +Testing I/O on datasets with zero-sized dims PASSED +Testing Read dataset with unwritten chunk & undefined fill value PASSED +Testing Write/read on randomly selected chunks PASSED +Testing deprecated API routines +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing creating dataset with >4GB chunks PASSED +Testing dataset chunk cache configuration PASSED +Testing big chunks bypassing the cache PASSED +Testing filter expanding chunks too much PASSED +Testing Compatibility for datasets that use Fixed Array indexing + PASSED +Testing extendible dataset with various layout PASSED +Testing shrinking large chunk PASSED +Testing shrinking large chunk PASSED + +Testing with new file format: +Testing create, open, close PASSED +Testing simple I/O PASSED +Testing compact dataset I/O PASSED +Testing compact dataset of maximal size PASSED +Testing compact dataset repeated open/close and dirty flag PASSED +Testing data type conversion buffer size PASSED +Testing data type conversion PASSED +Testing H5Zget_filter_info PASSED +Testing 'null' filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(enabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(disabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(when data is corrupted) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing szip filter -SKIP- + Szip filter not enabled +Testing shuffle filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum first) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum last) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+szip+fletcher32 filters -SKIP- + szip filter not enabled +Testing 8-bit shuffling (setup) PASSED +Testing 8-bit shuffling (write) PASSED +Testing 8-bit shuffling (read) PASSED +Testing nbit filter +Testing nbit int (setup) PASSED +Testing nbit int (write) PASSED +Testing nbit int (read) PASSED +Testing nbit float (setup) PASSED +Testing nbit float (write) PASSED +Testing nbit float (read) PASSED +Testing nbit double (setup) PASSED +Testing nbit double (write) PASSED +Testing nbit double (read) PASSED +Testing nbit array (setup) PASSED +Testing nbit array (write) PASSED +Testing nbit array (read) PASSED +Testing nbit compound (setup) PASSED +Testing nbit compound (write) PASSED +Testing nbit compound (read) PASSED +Testing nbit compound complex (setup) PASSED +Testing nbit compound complex (write) PASSED +Testing nbit compound complex (read) PASSED +Testing nbit compound with no-op type (setup) PASSED +Testing nbit compound with no-op type (write) PASSED +Testing nbit compound with no-op type (read) PASSED +Testing nbit integer dataset size PASSED +Testing nbit floating-number dataset size PASSED +Testing scaleoffset filter +Testing scaleoffset int without fill value (setup) PASSED +Testing scaleoffset int without fill value (write) PASSED +Testing scaleoffset int without fill value (read) PASSED +Testing scaleoffset int with fill value (setup) PASSED +Testing scaleoffset int with fill value (write) PASSED +Testing scaleoffset int with fill value (read) PASSED +Testing scaleoffset float without fill value, D-scaling (setup) PASSED +Testing scaleoffset float without fill value, D-scaling (write) PASSED +Testing scaleoffset float without fill value, D-scaling (read) PASSED +Testing scaleoffset float with fill value, D-scaling (setup) PASSED +Testing scaleoffset float with fill value, D-scaling (write) PASSED +Testing scaleoffset float with fill value, D-scaling (read) PASSED +Testing scaleoffset double without fill value, D-scaling (setup) PASSED +Testing scaleoffset double without fill value, D-scaling (write) PASSED +Testing scaleoffset double without fill value, D-scaling (read) PASSED +Testing scaleoffset double with fill value, D-scaling (setup) PASSED +Testing scaleoffset double with fill value, D-scaling (write) PASSED +Testing scaleoffset double with fill value, D-scaling (read) PASSED +Testing multi-open with extending PASSED +Testing various datatypes PASSED +Testing dataset offset with user block PASSED +Testing dataset access with missing filter PASSED +Testing dataset filter 'can apply' callback PASSED +Testing dataset filter 'can apply' callback second PASSED +Testing dataset filter 'set local' callback PASSED +Testing dataset szip filter 'can apply' callback -SKIP- + Szip filter is not enabled. +Testing comparing dataset creation property lists PASSED +Testing copying dataset creation property lists PASSED +Testing filter deletion PASSED +Testing filters with big-endian/little-endian data PASSED +Testing I/O on datasets with zero-sized dims PASSED +Testing Read dataset with unwritten chunk & undefined fill value PASSED +Testing Write/read on randomly selected chunks PASSED +Testing deprecated API routines +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing creating dataset with >4GB chunks PASSED +Testing dataset chunk cache configuration PASSED +Testing big chunks bypassing the cache PASSED +Testing filter expanding chunks too much PASSED +Testing Compatibility for datasets that use Fixed Array indexing + PASSED +Testing extendible dataset with various layout PASSED +Testing shrinking large chunk PASSED +Testing shrinking large chunk PASSED +Testing H5Dscatter() PASSED +Testing H5Dgather() PASSED +Testing H5Dscatter() error conditions PASSED +Testing H5Dgather() error conditions PASSED +All dataset tests passed. +0.95user 0.59system 0:02.02elapsed 76%CPU (0avgtext+0avgdata 70832maxresident)k +0inputs+112992outputs (0major+45676minor)pagefaults 0swaps + +Finished testing dsets +============================ +============================ +Testing mount +============================ + mount Test Log +============================ +Testing basic functionality PASSED +Testing illegal mount operations PASSED +Testing same file mount operations PASSED +Testing name hiding under mount point PASSED +Testing mount point open PASSED +Testing multi-linked mount point PASSED +Testing mount point unlinking PASSED +Testing object renaming PASSED +Testing mount point renaming PASSED +Testing preopening objects under the mount point PASSED +Testing open object access after unmount PASSED +Testing interfile hard links -SKIP- + Test skipped due file pointer sharing issue (Jira 7638). + PASSED +Testing file handle uniformity PASSED +Testing file handle close PASSED +Testing mounting on group after file is closed PASSED +Testing mounting after file is unmounted PASSED +Testing missing unmount PASSED +Testing hold open w/file PASSED +Testing hold open w/group PASSED +Testing file close degrees must be same PASSED +Testing 'semi' file close degree PASSED +Testing 'strong' file close degree PASSED +Testing access permissions PASSED +Testing multiple mounts PASSED +Testing nested mounts survive PASSED +Testing close parent PASSED +Testing cutting mount graph PASSED +Testing symlinks PASSED +Testing shared mount access PASSED +Testing closing shared mounts PASSED +Testing closing multiple shared mounts PASSED +All mount tests passed. +0.16user 0.05system 0:00.28elapsed 77%CPU (0avgtext+0avgdata 7960maxresident)k +0inputs+1280outputs (0major+12301minor)pagefaults 0swaps + +Finished testing mount +============================ +============================ +Testing flush1 +============================ + flush1 Test Log +============================ +Testing H5Fflush (part1) PASSED +0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7000maxresident)k +0inputs+616outputs (0major+9226minor)pagefaults 0swaps + +Finished testing flush1 +============================ +============================ +Testing app_ref +============================ + app_ref Test Log +============================ +Testing library shutdown with reference count > 1 PASSED +0.05user 0.02system 0:00.07elapsed 103%CPU (0avgtext+0avgdata 7012maxresident)k +0inputs+144outputs (0major+8660minor)pagefaults 0swaps + +Finished testing app_ref +============================ +============================ +Testing enum +============================ + enum Test Log +============================ +Testing named enumeration types PASSED +Testing enumeration conversions PASSED +Testing O(1) conversions PASSED +Testing O(log N) converions PASSED +Testing for non-existing name and value PASSED +Testing some functions with enumeration types PASSED +All enum tests passed. +0.05user 0.02system 0:00.07elapsed 100%CPU (0avgtext+0avgdata 7040maxresident)k +0inputs+192outputs (0major+8910minor)pagefaults 0swaps + +Finished testing enum +============================ +============================ +Testing set_extent +============================ + links Test Log +============================ +Testing link creation PASSED +Testing link queries PASSED +Testing H5Lcreate functions PASSED +Testing new link queries PASSED +Testing long names for objects & links PASSED +Testing too many links PASSED +Testing link creation property lists PASSED +Testing H5Lmove PASSED +Testing H5Lcopy PASSED +Testing moving and copying links preserves their properties PASSED +Testing backwards compatibility PASSED +Testing external file cache with external links PASSED +Testing external links across multiple files PASSED +Testing H5Pset/get_elink_acc_flags() PASSED + +---Testing without external file cache--- +Testing external link to root PASSED +Testing external link to object on path PASSED +Testing external link to self PASSED +Testing external links back and forth PASSED +Testing too many external links PASSED +Testing dangling external links PASSED +Testing recursive external links PASSED +Testing query aspects of external link PASSED +Testing unlinking external link in compact group PASSED +Testing unlinking external link in dense group PASSED +Testing move external link PASSED +Testing external link along for the ride PASSED +Testing that external files are closed during traversal PASSED +Testing endianness of external links PASSED +Testing that external files work with strong file close degree PASSED +Testing external links via H5Pset_elink_prefix() PASSED +Testing external links via main file's absolute path PASSED +Testing external links via main file's CWD + relative path PASSED +Testing external links via current working directory PASSED +Testing external links via target's absolute path PASSED +Testing external links via main file's CWD PASSED +Testing external links via main file's CWD + target's relative path PASSED +Testing external links via chdir and found in current working directory PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts PASSED +Testing H5Pset/get_elink_fapl() with same physical layout PASSED +Testing H5Pset/get_fapl() PASSED +Testing H5Pset/get_elink_cb() PASSED +Testing external links w/symlink files PASSED +Testing copying invalid external links to the source file PASSED +Testing that invalid external links don't open the source file PASSED +Testing opening object twice through elink PASSED +Testing attach committed datatype to external group's attribute/dataset PASSED + +---Testing with external file cache--- +Testing external link to root PASSED +Testing external link to object on path PASSED +Testing external link to self PASSED +Testing external links back and forth PASSED +Testing too many external links PASSED +Testing dangling external links PASSED +Testing recursive external links PASSED +Testing query aspects of external link PASSED +Testing unlinking external link in compact group PASSED +Testing unlinking external link in dense group PASSED +Testing move external link PASSED +Testing external link along for the ride PASSED +Testing that external files are closed during traversal PASSED +Testing endianness of external links PASSED +Testing that external files work with strong file close degree PASSED +Testing external links via H5Pset_elink_prefix() PASSED +Testing external links via main file's absolute path PASSED +Testing external links via main file's CWD + relative path PASSED +Testing external links via current working directory PASSED +Testing external links via target's absolute path PASSED +Testing external links via main file's CWD PASSED +Testing external links via main file's CWD + target's relative path PASSED +Testing external links via chdir and found in current working directory PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts PASSED +Testing H5Pset/get_elink_fapl() with same physical layout PASSED +Testing H5Pset/get_fapl() PASSED +Testing H5Pset/get_elink_cb() PASSED +Testing external links w/symlink files PASSED +Testing copying invalid external links to the source file PASSED +Testing that invalid external links don't open the source file PASSED +Testing opening object twice through elink PASSED +Testing attach committed datatype to external group's attribute/dataset PASSED +Testing user-defined link callbacks PASSED +Testing user-defined link error conditions PASSED +Testing user data passed through lapl PASSED +Testing adjusting nlinks with LAPL PASSED +Testing link type field in H5Lget_info PASSED +Testing link visiting PASSED +Testing link visiting by name PASSED +Testing object visiting PASSED +Testing object visiting by name PASSED +Testing stopping object iteration PASSED +Testing group link filters PASSED +Testing object exists PASSED +Testing that all files were closed correctly PASSED +Testing link creation (w/new group format) PASSED +Testing link queries (w/new group format) PASSED +Testing H5Lcreate functions (w/new group format) PASSED +Testing new link queries (w/new group format) PASSED +Testing long names for objects & links (w/new group format) PASSED +Testing too many links (w/new group format) PASSED +Testing link creation property lists (w/new group format) PASSED +Testing H5Lmove (w/new group format) PASSED +Testing H5Lcopy (w/new group format) PASSED +Testing moving and copying links preserves their properties (w/new group format) PASSED +Testing backwards compatibility (w/new group format) PASSED +Testing external file cache with external links (w/new group format) PASSED +Testing external links across multiple files (w/new group format) PASSED +Testing H5Pset/get_elink_acc_flags() (w/new group format) PASSED + +---Testing without external file cache--- +Testing external link to root (w/new group format) PASSED +Testing external link to object on path (w/new group format) PASSED +Testing external link to self (w/new group format) PASSED +Testing external links back and forth (w/new group format) PASSED +Testing too many external links (w/new group format) PASSED +Testing dangling external links (w/new group format) PASSED +Testing recursive external links (w/new group format) PASSED +Testing query aspects of external link (w/new group format) PASSED +Testing unlinking external link in compact group (w/new group format) PASSED +Testing unlinking external link in dense group (w/new group format) PASSED +Testing move external link (w/new group format) PASSED +Testing external link along for the ride (w/new group format) PASSED +Testing that external files are closed during traversal (w/new group format) PASSED +Testing endianness of external links (w/new group format) PASSED +Testing that external files work with strong file close degree (w/new group format) PASSED +Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED +Testing external links via main file's absolute path (w/new group format) PASSED +Testing external links via main file's CWD + relative path(w/new group format) PASSED +Testing external links via current working directory(w/new group format) PASSED +Testing external links via target's absolute path (w/new group format) PASSED +Testing external links via main file's CWD (w/new group format) PASSED +Testing external links via main file's CWD + target's relative path(w/new group format) PASSED +Testing external links via chdir and found in current working directory (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED +Testing H5Pset/get_fapl() (w/new group format) PASSED +Testing H5Pset/get_elink_cb() (w/new group format) PASSED +Testing external links w/symlink files (w/new group format) PASSED +Testing copying invalid external links to the source file (w/new group format) PASSED +Testing that invalid external links don't open the source file (w/new group format) PASSED +Testing opening object twice through elink (w/new group format) PASSED +Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED + +---Testing with external file cache--- +Testing external link to root (w/new group format) PASSED +Testing external link to object on path (w/new group format) PASSED +Testing external link to self (w/new group format) PASSED +Testing external links back and forth (w/new group format) PASSED +Testing too many external links (w/new group format) PASSED +Testing dangling external links (w/new group format) PASSED +Testing recursive external links (w/new group format) PASSED +Testing query aspects of external link (w/new group format) PASSED +Testing unlinking external link in compact group (w/new group format) PASSED +Testing unlinking external link in dense group (w/new group format) PASSED +Testing move external link (w/new group format) PASSED +Testing external link along for the ride (w/new group format) PASSED +Testing that external files are closed during traversal (w/new group format) PASSED +Testing endianness of external links (w/new group format) PASSED +Testing that external files work with strong file close degree (w/new group format) PASSED +Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED +Testing external links via main file's absolute path (w/new group format) PASSED +Testing external links via main file's CWD + relative path(w/new group format) PASSED +Testing external links via current working directory(w/new group format) PASSED +Testing external links via target's absolute path (w/new group format) PASSED +Testing external links via main file's CWD (w/new group format) PASSED +Testing external links via main file's CWD + target's relative path(w/new group format) PASSED +Testing external links via chdir and found in current working directory (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED +Testing H5Pset/get_fapl() (w/new group format) PASSED +Testing H5Pset/get_elink_cb() (w/new group format) PASSED +Testing external links w/symlink files (w/new group format) PASSED +Testing copying invalid external links to the source file (w/new group format) PASSED +Testing that invalid external links don't open the source file (w/new group format) PASSED +Testing opening object twice through elink (w/new group format) PASSED +Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED +Testing user-defined hard link (w/new group format) PASSED +Testing registering a new class for existing UD links (w/new group format) PASSED +Testing user-defined link callbacks (w/new group format) PASSED +Testing user-defined link error conditions (w/new group format) PASSED +Testing user data passed through lapl (w/new group format) PASSED +Testing adjusting nlinks with LAPL (w/new group format) PASSED +Testing link type field in H5Lget_info (w/new group format) PASSED +Testing link visiting (w/new group format) PASSED +Testing link visiting by name (w/new group format) PASSED +Testing object visiting (w/new group format) PASSED +Testing object visiting by name (w/new group format) PASSED +Testing stopping object iteration (w/new group format) PASSED +Testing group link filters (w/new group format) PASSED +Testing object exists (w/new group format) PASSED +Testing that all files were closed correctly (w/new group format) PASSED +Testing creating empty group with creation order indexing PASSED +Testing creating compact group with creation order indexing PASSED +Testing creating dense group with creation order indexing PASSED +Testing transitioning group with creation order indexing between dense & compact forms PASSED +Testing deleting group with creation order indexing in dense form PASSED +Testing querying info by index w/o creation order index, using soft links PASSED +Testing querying info by index w/creation order index, using soft links PASSED +Testing querying info by index w/o creation order index, using hard links PASSED +Testing querying info by index w/creation order index, using hard links PASSED +Testing deleting links by name index in increasing order w/o creation order index PASSED +Testing deleting links by name index in increasing order w/creation order index PASSED +Testing deleting links by name index in decreasing order w/o creation order index PASSED +Testing deleting links by name index in decreasing order w/creation order index PASSED +Testing deleting links by creation order index in increasing order w/o creation order index PASSED +Testing deleting links by creation order index in increasing order w/creation order index PASSED +Testing deleting links by creation order index in decreasing order w/o creation order index PASSED +Testing deleting links by creation order index in decreasing order w/creation order index PASSED +Testing iterating over links by name index in increasing order w/o creation order index PASSED +Testing iterating over links by name index in increasing order w/creation order index PASSED +Testing iterating over links by name index in decreasing order w/o creation order index PASSED +Testing iterating over links by name index in decreasing order w/creation order index PASSED +Testing iterating over links by name index in native order w/o creation order index PASSED +Testing iterating over links by name index in native order w/creation order index PASSED +Testing iterating over links by creation order index in increasing order w/o creation order index PASSED +Testing iterating over links by creation order index in increasing order w/creation order index PASSED +Testing iterating over links by creation order index in decreasing order w/o creation order index PASSED +Testing iterating over links by creation order index in decreasing order w/creation order index PASSED +Testing iterating over links by creation order index in native order w/o creation order index PASSED +Testing iterating over links by creation order index in native order w/creation order index PASSED +Testing open object by name index in increasing order w/o creation order index PASSED +Testing open object by name index in increasing order w/creation order index PASSED +Testing open object by name index in decreasing order w/o creation order index PASSED +Testing open object by name index in decreasing order w/creation order index PASSED +Testing open object by name index in native order w/o creation order index PASSED +Testing open object by name index in native order w/creation order index PASSED +Testing open object by creation order index in increasing order w/o creation order index PASSED +Testing open object by creation order index in increasing order w/creation order index PASSED +Testing open object by creation order index in decreasing order w/o creation order index PASSED +Testing open object by creation order index in decreasing order w/creation order index PASSED +Testing open object by creation order index in native order w/o creation order index PASSED +Testing open object by creation order index in native order w/creation order index PASSED +Testing query object info by name index in increasing order w/o creation order index PASSED +Testing query object info by name index in increasing order w/creation order index PASSED +Testing query object info by name index in decreasing order w/o creation order index PASSED +Testing query object info by name index in decreasing order w/creation order index PASSED +Testing query object info by name index in native order w/o creation order index PASSED +Testing query object info by name index in native order w/creation order index PASSED +Testing query object info by creation order index in increasing order w/o creation order index PASSED +Testing query object info by creation order index in increasing order w/creation order index PASSED +Testing query object info by creation order index in decreasing order w/o creation order index PASSED +Testing query object info by creation order index in decreasing order w/creation order index PASSED +Testing query object info by creation order index in native order w/o creation order index PASSED +Testing query object info by creation order index in native order w/creation order index PASSED +Testing query group info by name index in increasing order w/o creation order index PASSED +Testing query group info by name index in increasing order w/creation order index PASSED +Testing query group info by name index in decreasing order w/o creation order index PASSED +Testing query group info by name index in decreasing order w/creation order index PASSED +Testing query group info by name index in native order w/o creation order index PASSED +Testing query group info by name index in native order w/creation order index PASSED +Testing query group info by creation order index in increasing order w/o creation order index PASSED +Testing query group info by creation order index in increasing order w/creation order index PASSED +Testing query group info by creation order index in decreasing order w/o creation order index PASSED +Testing query group info by creation order index in decreasing order w/creation order index PASSED +Testing query group info by creation order index in native order w/o creation order index PASSED +Testing query group info by creation order index in native order w/creation order index PASSED +Testing timestamps on objects PASSED +Testing querying info by index in old-style group, using soft links PASSED +Testing querying info by index in old-style group, using hard links PASSED +Testing deleting links by index in increasing order in old-style group PASSED +Testing deleting links by index in decreasing order in old-style group PASSED +Testing iterating over links by name index in increasing order in old-style group PASSED +Testing iterating over links by name index in decreasing order in old-style group PASSED +Testing iterating over links by name index in native order in old-style group PASSED +Testing open object by name index in increasing order in old-style group PASSED +Testing open object by name index in decreasing order in old-style group PASSED +Testing open object by name index in native order in old-style group PASSED +Testing query object info by name index in increasing order in old-style group PASSED +Testing query object info by name index in decreasing order in old-style group PASSED +Testing query object info by name index in native order in old-style group PASSED +Testing query group info by name index in increasing order in old-style group PASSED +Testing query group info by name index in decreasing order in old-style group PASSED +Testing query group info by name index in native order in old-style group PASSED +Testing external links are registered after reset PASSED +All link tests passed. +2.45user 0.15system 0:03.61elapsed 72%CPU (0avgtext+0avgdata 9052maxresident)k +0inputs+15048outputs (0major+24157minor)pagefaults 0swaps + +Finished testing links +============================ +============================ +Testing ttsafe +============================ + ttsafe Test Log +============================ +Most thread-safety tests skipped because THREADSAFE not enabled + +For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-ttsafe -help +Linked with hdf5 version 1.8 release 21 +Testing -- library threadsafe status (is_threadsafe) + + +All tests were successful. + + +Cleaning Up temp files... + +0.04user 0.02system 0:00.07elapsed 102%CPU (0avgtext+0avgdata 7072maxresident)k +0inputs+104outputs (0major+8293minor)pagefaults 0swaps + +Finished testing ttsafe +============================ +============================ +Testing getname +============================ + getname Test Log +============================ +Testing H5Iget_name with one group PASSED +Testing H5Iget_name with more than one group PASSED +Testing H5Iget_name with H5Gopen2 PASSED +Testing H5Iget_name with H5Dcreate2 PASSED +Testing H5Iget_name with H5Dopen2 PASSED +Testing H5Iget_name with a long path PASSED +Testing H5Iget_name with H5Tcommit2 PASSED +Testing H5Iget_name with H5Topen2 PASSED +Testing H5Iget_name with H5Lmove and H5Gopen2 PASSED +Testing H5Iget_name with H5Lmove and H5Dopen2 PASSED +Testing H5Iget_name with H5Lmove and H5Topen2 PASSED +Testing H5Iget_name with H5Lmove and relative names PASSED +Testing H5Iget_name with H5Lmove and a long path PASSED +Testing H5Iget_name with H5Lmove and a long path #2 PASSED +Testing H5Iget_name with H5Ldelete PASSED +Testing H5Iget_name with H5Ldelete and a long path PASSED +Testing H5Iget_name with H5Ldelete, same names PASSED +Testing H5Iget_name with H5Fmount; with IDs on the list PASSED +Testing H5Iget_name with H5Fmount; long name PASSED +Testing H5Iget_name with H5Funmount PASSED +Testing H5Iget_name with a defined type dataset PASSED +Testing H5Iget_name with datasets that have two names PASSED +Testing H5Iget_name with different files PASSED +Testing H5Iget_name with different files #2 PASSED +Testing H5Iget_name with a small buffer for name PASSED +Testing H5Iget_name with a dynamic buffer for name PASSED +Testing H5Iget_name with invalid IDs PASSED +Testing H5Iget_name with added names with mounting PASSED +Testing H5Iget_name with H5Fclose PASSED +Testing H5Iget_name with H5Fmount and H5Ldelete PASSED +Testing H5Iget_name with H5Fmount and H5Lmove PASSED +Testing H5Iget_name with H5Lcreate_hard PASSED +Testing H5Iget_name with H5Lcreate_soft PASSED +Testing H5Iget_name with H5Lcreate_soft and move target PASSED +Testing H5Iget_name with H5Lcreate_soft and move source PASSED +Testing H5Iget_name with H5Lcreate_soft and unlink target PASSED +Testing H5Iget_name with H5Lcreate_soft and unlink source PASSED +Testing H5Iget_name with several nested mounted files PASSED +Testing H5Iget_name and H5Lmove with repeated path components PASSED +Testing H5Iget_name with higher mounted file PASSED +Testing H5Iget_name with multiple hard links and mounted files PASSED +Testing H5Iget_name with mounted files and unlinking PASSED +Testing H5Iget_name with mounting already mounted files PASSED +Testing H5Iget_name with opening object in unmounted file PASSED +Testing H5Iget_name with anonymous datatypes PASSED +Testing getting path to normal dataset in root group PASSED +Testing getting path to dataset in /Group1 PASSED +Testing getting path to /Group1 PASSED +Testing getting path to datatype in /Group1 PASSED +Testing getting path to dataset in nested group PASSED +Testing getting path to nested group PASSED +Testing getting path to dataset created via hard link PASSED +Testing getting path to root group PASSED +Testing getting path to dataset hidden by a mounted file PASSED +Testing getting path to dataset that has been unlinked PASSED +Testing H5Rget_name to get name from region reference(hyperslab) PASSED +Testing H5Iget_name to get name from region reference(hyperslab) PASSED +Testing H5Rget_name to get name from region reference(pnt selec) PASSED +Testing H5Iget_name to get name from region reference(pnt selec) PASSED +All getname tests passed. +0.10user 0.03system 0:00.16elapsed 86%CPU (0avgtext+0avgdata 7264maxresident)k +0inputs+984outputs (0major+11881minor)pagefaults 0swaps + +Finished testing getname +============================ +============================ +Testing vfd +============================ + vfd Test Log +============================ +Testing basic Virtual File Driver functionality. +Testing SEC2 file driver PASSED +Testing CORE file driver PASSED +Testing FAMILY file driver PASSED +Testing FAMILY file driver backward compatibility PASSED +Testing MULTI file driver PASSED +Testing MULTI file driver backward compatibility PASSED +Testing DIRECT I/O file driver -SKIP- +Testing LOG file driver PASSED +Testing STDIO file driver PASSED +Testing WINDOWS file driver -SKIP- +All Virtual File Driver tests passed. +0.07user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7060maxresident)k +0inputs+1152outputs (0major+9322minor)pagefaults 0swaps + +Finished testing vfd +============================ +============================ +Testing ntypes +============================ + ntypes Test Log +============================ +Testing atomic datatype PASSED +Testing compound datatype PASSED +Testing nested compound datatype PASSED +Testing compound datatype with array as field PASSED +Testing compound datatype with opaque field PASSED +Testing enum datatype PASSED +Testing array of compound datatype PASSED +Testing array of atomic datatype PASSED +Testing variable length datatype PASSED +Testing variable length string datatype PASSED +Testing fixed-length string datatype PASSED +Testing reference datatype PASSED +Testing dataset region reference PASSED +Testing opaque datatype PASSED +Testing bitfield datatype PASSED +Testing native integer PASSED +All native datatype tests passed. +0.11user 0.03system 0:00.16elapsed 98%CPU (0avgtext+0avgdata 11600maxresident)k +0inputs+7416outputs (0major+13350minor)pagefaults 0swaps + +Finished testing ntypes +============================ +============================ +Testing dangle +============================ + dangle Test Log +============================ +Testing dangling objects with weak file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +Testing dangling objects with semi file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +Testing dangling objects with strong file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +All dangling ID tests passed. +0.33user 0.03system 0:00.46elapsed 80%CPU (0avgtext+0avgdata 7024maxresident)k +0inputs+376outputs (0major+8913minor)pagefaults 0swaps + +Finished testing dangle +============================ +============================ +Testing dtransform +============================ + gheap Test Log +============================ +Testing monotonically increasing lengths PASSED +Testing monotonically decreasing lengths PASSED +Testing complete object removal PASSED +Testing partial object removal PASSED +Testing out of order indices PASSED +All global heap tests passed. +7.03user 0.02system 0:07.10elapsed 99%CPU (0avgtext+0avgdata 9492maxresident)k +0inputs+2680outputs (0major+12357minor)pagefaults 0swaps + +Finished testing gheap +============================ +============================ +Testing reserved +============================ + dtransform Test Log +============================ +Testing Intializing test... PASSED +Testing H5Pget_data_transform (get before set) PASSED +Testing H5Pset_data_transform (set with NULL transform) PASSED +Testing H5Pset_data_transform (set with invalid transform 1) PASSED +Testing H5Pset_data_transform (set with invalid transform 2) PASSED +Testing H5Pset_data_transform (set with invalid transform 3) PASSED +Testing H5Pset_data_transform (set with invalid transform 4) PASSED +Testing H5Pset_data_transform (set with invalid transform 5) PASSED +Testing H5Pset_data_transform (set with invalid transform 6) PASSED +Testing H5Pset_data_transform (set with invalid transform 7) PASSED +Testing H5Pset_data_transform (set with invalid transform 8) PASSED +Testing contiguous, no data type conversion (char->char) PASSED +Testing contiguous, byte order conversion (char->char) PASSED +Testing contiguous, no data type conversion (uchar->uchar) PASSED +Testing contiguous, byte order conversion (uchar->uchar) PASSED +Testing contiguous, no data type conversion (schar->schar) PASSED +Testing contiguous, byte order conversion (schar->schar) PASSED +Testing contiguous, with type conversion (float->schar) PASSED +Testing contiguous, no data type conversion (short->short) PASSED +Testing contiguous, byte order conversion (short->short) PASSED +Testing contiguous, with type conversion (float->short) PASSED +Testing contiguous, no data type conversion (ushort->ushort) PASSED +Testing contiguous, byte order conversion (ushort->ushort) PASSED +Testing contiguous, no data type conversion (int->int) PASSED +Testing contiguous, byte order conversion (int->int) PASSED +Testing contiguous, with type conversion (float->int) PASSED +Testing contiguous, no data type conversion (uint->uint) PASSED +Testing contiguous, byte order conversion (uint->uint) PASSED +Testing contiguous, no data type conversion (long->long) PASSED +Testing contiguous, byte order conversion (long->long) PASSED +Testing contiguous, with type conversion (float->long) PASSED +Testing contiguous, no data type conversion (ulong->ulong) PASSED +Testing contiguous, byte order conversion (ulong->ulong) PASSED +Testing contiguous, no data type conversion (llong->llong) PASSED +Testing contiguous, byte order conversion (llong->llong) PASSED +Testing contiguous, with type conversion (float->llong) PASSED +Testing contiguous, no data type conversion (ullong->ullong) PASSED +Testing contiguous, byte order conversion (ullong->ullong) PASSED +Testing contiguous, no data type conversion (float->float) PASSED +Testing contiguous, byte order conversion (float->float) PASSED +Testing contiguous, with type conversion (float->float) PASSED +Testing contiguous, no data type conversion (double->double) PASSED +Testing contiguous, byte order conversion (double->double) PASSED +Testing contiguous, with type conversion (float->double) PASSED +Testing contiguous, no data type conversion (ldouble->ldouble) PASSED +Testing contiguous, byte order conversion (ldouble->ldouble) PASSED +Testing contiguous, with type conversion (float->ldouble) PASSED +Testing chunked, no data type conversion (char->char) PASSED +Testing chunked, no data type conversion (uchar->uchar) PASSED +Testing chunked, no data type conversion (schar->schar) PASSED +Testing chunked, with type conversion (float->schar) PASSED +Testing chunked, no data type conversion (short->short) PASSED +Testing chunked, with type conversion (float->short) PASSED +Testing chunked, no data type conversion (ushort->ushort) PASSED +Testing chunked, no data type conversion (int->int) PASSED +Testing chunked, with type conversion (float->int) PASSED +Testing chunked, no data type conversion (uint->uint) PASSED +Testing chunked, no data type conversion (long->long) PASSED +Testing chunked, with type conversion (float->long) PASSED +Testing chunked, no data type conversion (ulong->ulong) PASSED +Testing chunked, no data type conversion (llong->llong) PASSED +Testing chunked, with type conversion (float->llong) PASSED +Testing chunked, no data type conversion (ullong->ullong) PASSED +Testing chunked, no data type conversion (float->float) PASSED +Testing chunked, with type conversion (float->float) PASSED +Testing chunked, no data type conversion (double->double) PASSED +Testing chunked, with type conversion (float->double) PASSED +Testing chunked, no data type conversion (ldouble->ldouble) PASSED +Testing chunked, with type conversion (float->ldouble) PASSED +Testing data transform, linear transform w/ copied property PASSED +Testing data transform, polynomial transform w/ copied property PASSED +Testing data transform, trivial transform, without type conversion PASSED +Testing data transform, trivial transform, with type conversion PASSED +Testing data transform, polynomial transform (int->float) PASSED +Testing data transform, polynomial transform (float->int) PASSED +Testing H5Pget_data_transform PASSED +Testing data transform, read after reseting of transform property PASSED +Testing H5Pget_data_transform, after resetting transform property PASSED +Testing data transform of some special cases PASSED +0.06user 0.03system 0:00.09elapsed 103%CPU (0avgtext+0avgdata 7088maxresident)k +0inputs+536outputs (0major+9003minor)pagefaults 0swaps + +Finished testing dtransform +============================ +============================ +Testing cross_read +============================ + reserved Test Log +============================ + -SKIP- +0.03user 0.03system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6896maxresident)k +0inputs+24outputs (0major+7808minor)pagefaults 0swaps + +Finished testing reserved +============================ +============================ +Testing freespace +============================ + cross_read Test Log +============================ +Testing reading data created on Linux +Testing regular dataset of LE DOUBLE PASSED +Testing regular dataset of BE DOUBLE PASSED +Testing dataset of LE FLOAT with scale-offset filter PASSED +Testing dataset of BE FLOAT with scale-offset filter PASSED +Testing dataset of LE DOUBLE with scale-offset filter PASSED +Testing dataset of BE DOUBLE with scale-offset filter PASSED +Testing dataset of LE CHAR with scale-offset filter PASSED +Testing dataset of BE CHAR with scale-offset filter PASSED +Testing dataset of LE SHORT with scale-offset filter PASSED +Testing dataset of BE SHORT with scale-offset filter PASSED +Testing dataset of LE INT with scale-offset filter PASSED +Testing dataset of BE INT with scale-offset filter PASSED +Testing dataset of LE LONG LONG with scale-offset filter PASSED +Testing dataset of BE LONG LONG with scale-offset filter PASSED +Testing dataset of LE FLOAT with Fletcher32 filter PASSED +Testing dataset of BE FLOAT with Fletcher32 filter PASSED +Testing dataset of LE FLOAT with Deflate filter PASSED +Testing dataset of BE FLOAT with Deflate filter PASSED +Testing dataset of LE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of BE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of LE FLOAT with Shuffle filter PASSED +Testing dataset of BE FLOAT with Shuffle filter PASSED +Testing dataset of LE FLOAT with Nbit filter PASSED +Testing dataset of BE FLOAT with Nbit filter PASSED +Testing reading data created on Solaris +Testing regular dataset of LE DOUBLE PASSED +Testing regular dataset of BE DOUBLE PASSED +Testing dataset of LE FLOAT with scale-offset filter PASSED +Testing dataset of BE FLOAT with scale-offset filter PASSED +Testing dataset of LE DOUBLE with scale-offset filter PASSED +Testing dataset of BE DOUBLE with scale-offset filter PASSED +Testing dataset of LE CHAR with scale-offset filter PASSED +Testing dataset of BE CHAR with scale-offset filter PASSED +Testing dataset of LE SHORT with scale-offset filter PASSED +Testing dataset of BE SHORT with scale-offset filter PASSED +Testing dataset of LE INT with scale-offset filter PASSED +Testing dataset of BE INT with scale-offset filter PASSED +Testing dataset of LE LONG LONG with scale-offset filter PASSED +Testing dataset of BE LONG LONG with scale-offset filter PASSED +Testing dataset of LE FLOAT with Fletcher32 filter PASSED +Testing dataset of BE FLOAT with Fletcher32 filter PASSED +Testing dataset of LE FLOAT with Deflate filter PASSED +Testing dataset of BE FLOAT with Deflate filter PASSED +Testing dataset of LE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of BE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of LE FLOAT with Shuffle filter PASSED +Testing dataset of BE FLOAT with Shuffle filter PASSED +Testing dataset of LE FLOAT with Nbit filter PASSED +Testing dataset of BE FLOAT with Nbit filter PASSED +All data type tests passed. +0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+128outputs (0major+8914minor)pagefaults 0swaps + +Finished testing cross_read +============================ +============================ +Testing mf +============================ + freespace Test Log +============================ +Testing the creation/close/reopen/deletion of the free-space manager PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 1 PASSED +Testing adding a section via H5FS_sect_add() to free-space with H5FS_CLS_GHOST_OBJ: test 2 PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 3 PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 4 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 1 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 3 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 1 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 3 PASSED +Testing H5FS_sect_find(): free-space is empty PASSED +Testing H5FS_sect_find() a section equal to requested-size from free-space PASSED +Testing H5FS_sect_find() a section greater than requested-size from free-space PASSED +Testing H5FS_sect_find(): cannot find a section with requested-size from free-space PASSED +Testing the change of section class via H5FS_sect_change_class() in free-space: Test 1 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing a block's extension by requested-size which is = adjoining free section's size: Test 1 PASSED +Testing a block's extension by requested-size which is > adjoining free section's size: Test 2 PASSED +Testing a block's extension by requested-size which is < adjoining free section's size: Test 3 PASSED +Testing a block's extension by requested-size which does not adjoin any free section: Test 4 PASSED +Testing iteration of sections in the free-space manager PASSED +All free-space tests passed. +0.06user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7124maxresident)k +0inputs+456outputs (0major+8926minor)pagefaults 0swaps + +Finished testing freespace +============================ +============================ +Testing btree2 +============================ + mf Test Log +============================ +Testing H5MM_alloc() of file allocation PASSED +Testing H5MF_try_shrink() of file allocation: test 1 PASSED +Testing H5MF_try_shrink() of file allocation: test 2 PASSED +Testing H5MF_try_shrink() of file allocation: test 3 PASSED +Testing H5MF_try_shrink() of file allocation: test 4 PASSED +Testing H5MF_try_extend() of file allocation: test 1 PASSED +Testing H5MF_try_extend() of file allocation: test 2 PASSED +Testing 'temporary' file space allocation PASSED +Testing H5MF_alloc_create()/H5MF_alloc_open() of free-space manager PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 1 PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 2 PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 3 PASSED +Testing H5MF_try_extend() of free-space manager:test 1 PASSED +Testing H5MF_try_extend() of free-space manager:test 2 PASSED +Testing H5MF_try_extend() of free-space manager:test 3 PASSED +Testing H5MF_try_extend() of free-space manager:test 4 PASSED +Testing A free-space section absorbs an aggregator: test 1 PASSED +Testing A free-space section absorbs an aggregator: test 2 PASSED +Testing Allocation from raw or metadata free-space manager PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 6 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 7 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 1 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 2 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 3 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 1 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 2 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 3 PASSED +Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED +Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED +Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED +Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED +Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED +Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED +Testing H5MF_alloc() bug 1 PASSED +All free-space manager tests for file memory passed. +0.13user 0.03system 0:00.49elapsed 34%CPU (0avgtext+0avgdata 7228maxresident)k +0inputs+1120outputs (0major+9016minor)pagefaults 0swaps + +Finished testing mf +============================ +============================ +Testing fheap +============================ + fillval Test Log +============================ +Testing property lists PASSED +Testing property lists, with variable-length datatype PASSED +Testing with old file format: +Testing chunked dataset creation PASSED +Testing chunked dataset I/O PASSED +Testing chunked dataset extend PASSED +Testing chunked dataset partially allocated I/O PASSED +Testing contiguous dataset creation PASSED +Testing contiguous dataset I/O PASSED +Testing contiguous dataset extend -SKIP- + Not implemented yet -- needs H5S_SELECT_DIFF operator +Testing contiguous dataset compatibility with v. 1.4 PASSED +Testing compact dataset creation PASSED +Testing compact dataset I/O PASSED + +Testing with new file format: +Testing chunked dataset creation PASSED +Testing chunked dataset I/O PASSED +Testing chunked dataset extend PASSED +Testing chunked dataset partially allocated I/O PASSED +Testing contiguous dataset creation PASSED +Testing contiguous dataset I/O PASSED +Testing contiguous dataset extend -SKIP- + Not implemented yet -- needs H5S_SELECT_DIFF operator +Testing contiguous dataset compatibility with v. 1.4 PASSED +Testing compact dataset creation PASSED +Testing compact dataset I/O PASSED +All fill value tests passed. +4.10user 0.17system 0:04.55elapsed 94%CPU (0avgtext+0avgdata 16352maxresident)k +0inputs+310328outputs (0major+17930minor)pagefaults 0swaps + +Finished testing fillval +============================ +============================ +Testing file_image +============================ + file_image Test Log +============================ +Testing File Image Functionality. +Testing File image property list functions PASSED +Testing Callback use in property list operations PASSED +Testing Initial file image and callbacks in Core VFD PASSED +Testing H5Fget_file_image() with sec2 driver PASSED +Testing H5Fget_file_image() with stdio driver PASSED +Testing H5Fget_file_image() with core driver PASSED +Testing H5Fget_file_image() error rejection PASSED +All File Image tests passed. +0.06user 0.02system 0:00.12elapsed 70%CPU (0avgtext+0avgdata 7072maxresident)k +0inputs+472outputs (0major+8985minor)pagefaults 0swaps + +Finished testing file_image +============================ +============================ +Testing unregister +============================ + unlink Test Log +============================ +Testing with old group format: +Testing unlink by absolute name PASSED +Testing unlink by local name PASSED +Testing unlink without a name PASSED +Testing forward unlink PASSED +Testing backward unlink PASSED +Testing inward unlink PASSED +Testing outward unlink PASSED +Testing symlink removal PASSED +Testing object renaming PASSED +Testing symlink renaming PASSED +Testing new move PASSED +Testing check new move function PASSED +Testing file space gets reused: +Testing contiguous dataset with late allocation PASSED +Testing contiguous dataset with early allocation PASSED +Testing chunked dataset with late allocation PASSED +Testing chunked dataset with early allocation PASSED +Testing compressed, chunked dataset PASSED +Testing re-writing compressed, chunked dataset PASSED +Testing compact dataset PASSED +Testing object header continuations PASSED +Testing named datatype PASSED +Testing single group PASSED +Testing multiple groups PASSED +Testing simple group hierarchy PASSED +Testing complex group hierarchy PASSED +Testing duplicate dataset PASSED +Testing duplicate group PASSED +Testing duplicate named datatype PASSED +Testing duplicate attribute PASSED +Testing create and unlink large number of objects PASSED +Testing create and unlink large number of objects with small cache PASSED +Testing creating links with multiple slashes PASSED +Testing deleting links with multiple slashes PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing resurrecting dataset after deletion PASSED +Testing resurrecting datatype after deletion PASSED +Testing resurrecting group after deletion PASSED +Testing unlinking chunked dataset PASSED + +Testing with new group format: +Testing unlink by absolute name PASSED +Testing unlink by local name PASSED +Testing unlink without a name PASSED +Testing forward unlink PASSED +Testing backward unlink PASSED +Testing inward unlink PASSED +Testing outward unlink PASSED +Testing symlink removal PASSED +Testing object renaming PASSED +Testing symlink renaming PASSED +Testing new move PASSED +Testing check new move function PASSED +Testing file space gets reused: +Testing contiguous dataset with late allocation PASSED +Testing contiguous dataset with early allocation PASSED +Testing chunked dataset with late allocation PASSED +Testing chunked dataset with early allocation PASSED +Testing compressed, chunked dataset PASSED +Testing re-writing compressed, chunked dataset PASSED +Testing compact dataset PASSED +Testing object header continuations PASSED +Testing named datatype PASSED +Testing single group PASSED +Testing multiple groups PASSED +Testing simple group hierarchy PASSED +Testing complex group hierarchy PASSED +Testing duplicate dataset PASSED +Testing duplicate group PASSED +Testing duplicate named datatype PASSED +Testing duplicate attribute PASSED +Testing create and unlink large number of objects PASSED +Testing create and unlink large number of objects with small cache PASSED +Testing creating links with multiple slashes PASSED +Testing deleting links with multiple slashes PASSED +Testing resurrecting dataset after deletion PASSED +Testing resurrecting datatype after deletion PASSED +Testing resurrecting group after deletion PASSED +Testing unlinking chunked dataset PASSED +Testing unlinking non-empty compact group PASSED +Testing unlinking non-empty dense group PASSED +All unlink tests passed. +4.35user 0.18system 0:05.59elapsed 81%CPU (0avgtext+0avgdata 27912maxresident)k +0inputs+36392outputs (0major+25383minor)pagefaults 0swaps + +Finished testing unlink +============================ +============================ +Testing testerror.sh +============================ + unregister Test Log +============================ +Testing Unregistering filter PASSED +All filter unregistration tests passed. +0.11user 0.03system 0:00.17elapsed 88%CPU (0avgtext+0avgdata 10652maxresident)k +0inputs+2000outputs (0major+10375minor)pagefaults 0swaps + +Finished testing unregister +============================ +============================ +Testing testlibinfo.sh +Finished testing testerror.sh +============================ +testerror.sh Test Log +============================ +Testing err_compat PASSED +Testing error_test PASSED +All Error API tests passed. +0.10user 0.09system 0:00.20elapsed 95%CPU (0avgtext+0avgdata 7036maxresident)k +0inputs+360outputs (0major+25599minor)pagefaults 0swaps + +Finished testing testerror.sh +============================ +============================ +============================ +Testing testcheck_version.sh +Finished testing testlibinfo.sh +============================ +testlibinfo.sh Test Log +============================ +Check file ../src/.libs/libhdf5.so.10 PASSED +Check file ../src/.libs/libhdf5.a PASSED +Check file testhdf5 -SKIP- +No error encountered +0.27user 0.04system 0:00.29elapsed 109%CPU (0avgtext+0avgdata 1492maxresident)k +0inputs+0outputs (0major+6132minor)pagefaults 0swaps + +Finished testing testlibinfo.sh +============================ +============================ +============================ +Testing testlinks_env.sh +Finished testing testlinks_env.sh +============================ +testlinks_env.sh Test Log +============================ +Testing external link with HDF5_EXT_PREFIX +Testing external links via environment variable PASSED +Testing external links via environment variable (w/new group format) PASSED +All external Link (HDF5_EXT_PREFIX) tests passed. +Test for HDF5_EXT_PREFIX PASSED +0.05user 0.03system 0:00.09elapsed 94%CPU (0avgtext+0avgdata 7000maxresident)k +0inputs+184outputs (0major+9907minor)pagefaults 0swaps + +Finished testing testlinks_env.sh +============================ +============================ +============================ +Testing test_plugin.sh +Finished testing test_plugin.sh +============================ +test_plugin.sh Test Log +============================ +Testing with old file format: +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB1 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB2 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB4 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing DYNLIB3 filter for group PASSED + +Testing with new file format: +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB1 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB2 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB4 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing DYNLIB3 filter for group PASSED + +Testing reading data with with dynamic plugin filters: +Testing deflate filter PASSED +Testing DYNLIB1 filter PASSED +Testing DYNLIB2 filter PASSED +Testing DYNLIB4 filter PASSED +Testing opening groups with DYNLIB3 filter PASSED +Testing DYNLIB1 filter with plugins disabled PASSED +Testing access to the filter path table +Testing initialize PASSED +Testing remove PASSED +Testing remove (exceed min) PASSED +Testing append PASSED +Testing append (exceed) PASSED +Testing remove (exceed max) PASSED +Testing get (path name) PASSED +Testing get (bounds) PASSED +Testing get (bounds exceed) PASSED +Testing remove (verify for prepend) PASSED +Testing prepend PASSED +Testing prepend (exceed) PASSED +Testing replace PASSED +Testing remove (verify for insert) PASSED +Testing insert PASSED +Testing insert (exceed) PASSED +All plugin tests passed. +All Plugin API tests passed. +0.32user 0.09system 0:00.43elapsed 95%CPU (0avgtext+0avgdata 11296maxresident)k +0inputs+3720outputs (0major+29904minor)pagefaults 0swaps + +Finished testing test_plugin.sh +============================ +============================ +============================ +Testing flush2 +============================ + flush2 Test Log +============================ +Testing H5Fflush (part2 with flush) PASSED +Testing H5Fflush (part2 without flush) PASSED +Testing H5Fflush (part2 with flush and later addition) PASSED +0.04user 0.02system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 6996maxresident)k +0inputs+128outputs (0major+8823minor)pagefaults 0swaps + +Finished testing flush2 +============================ +Finished testing testcheck_version.sh +============================ +testcheck_version.sh Test Log +============================ +Tests for the H5check_version function. +Note that abort messages may appear due to the expected termination +of the program when it is tested with mis-matched version numnbers. +tcheck_version PASSED +tcheck_version -tM PASSED +tcheck_version -tm PASSED +tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tr PASSED +No error encountered +0.35user 0.74system 0:00.89elapsed 122%CPU (0avgtext+0avgdata 6900maxresident)k +0inputs+480outputs (0major+219470minor)pagefaults 0swaps + +Finished testing testcheck_version.sh +============================ +============================ +============================ + set_extent Test Log +============================ +Testing with old file format and chunk cache disabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing with old file format and chunk cache enabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing external file use PASSED +Testing storage layout use PASSED +Testing with new file format and chunk cache disabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing with new file format and chunk cache enabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing external file use PASSED +Testing storage layout use PASSED +All H5Dset_extent tests passed. +5.71user 0.73system 0:08.25elapsed 78%CPU (0avgtext+0avgdata 7900maxresident)k +0inputs+12008outputs (0major+13438minor)pagefaults 0swaps + +Finished testing set_extent +============================ +============================ + cache Test Log +============================ +Testing smoke check #1 -- all clean, ins, dest, ren, 4/2 MB cache PASSED +Testing smoke check #2 -- ~1/2 dirty, ins, dest, ren, 4/2 MB cache PASSED +Testing smoke check #3 -- all clean, ins, dest, ren, 2/1 KB cache PASSED +Testing smoke check #4 -- ~1/2 dirty, ins, dest, ren, 2/1 KB cache PASSED +Testing smoke check #5 -- all clean, ins, prot, unprot, AR cache 1 PASSED +Testing smoke check #6 -- ~1/2 dirty, ins, prot, unprot, AR cache 1 PASSED +Testing smoke check #7 -- all clean, ins, prot, unprot, AR cache 2 PASSED +Testing smoke check #8 -- ~1/2 dirty, ins, prot, unprot, AR cache 2 PASSED +Testing smoke check #9 -- all clean, ins, dest, ren, 4/2 MB, corked PASSED +Testing smoke check #10 -- ~1/2 dirty, ins, dest, ren, 4/2 MB, corked PASSED +Testing write permitted check -- 1/0 MB cache -SKIP- + Clean and dirty LRU lists disabled. +Testing H5C_insert_entry() functionality PASSED +Testing H5C_flush_cache() functionality PASSED +Testing H5C_get_entry_status() functionality PASSED +Testing H5C_expunge_entry() functionality PASSED +Testing multiple read only protects on a single entry PASSED +Testing H5C_move_entry() functionality PASSED +Testing H5C_pin_protected_entry() functionality PASSED +Testing entry resize functionality PASSED +Testing evictions enabled/disabled functionality PASSED +Testing flush cache with protected entry error PASSED +Testing destroy cache with permanently pinned entry error PASSED +Testing destroy cache with protected entry error PASSED +Testing duplicate entry insertion error PASSED +Testing move to existing entry errors PASSED +Testing pin a pinned entry error PASSED +Testing unpin an unpinned entry error PASSED +Testing pin entry related errors PASSED +Testing protect a protected entry error PASSED +Testing unprotect an unprotected entry error PASSED +Testing mark entry dirty related errors PASSED +Testing expunge entry related errors PASSED +Testing resize entry related errors PASSED +Testing unprotect a read only entry dirty error PASSED +Testing protect a read only entry rw error PASSED +Testing get/set evictions enabled errors PASSED +Testing automatic cache resizing PASSED +Testing automatic cache resize disable PASSED +Testing automatic cache resize epoch marker management PASSED +Testing automatic cache resize input errors PASSED +Testing automatic cache resize auxilary functions PASSED +Testing to ensure metadata blizzard absence when inserting PASSED +Testing to ensure metadata blizzard absence on protect/unprotect PASSED +12.18user 0.16system 0:13.18elapsed 93%CPU (0avgtext+0avgdata 128752maxresident)k +0inputs+1600outputs (0major+76670minor)pagefaults 0swaps + +Finished testing cache +============================ +============================ + btree2 Test Log +============================ +Testing without reopening B-tree: +Testing B-tree creation PASSED +Testing B-tree iteration: empty B-tree PASSED +Testing B-tree insert: first record PASSED +Testing B-tree insert: several records PASSED +Testing B-tree insert: split root PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED +Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED +Testing B-tree insert: make level 2 B-tree PASSED +Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED +Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split middle leaf in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED +Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED +Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED +Testing B-tree insert: create random level 4 B-tree PASSED +Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED +Testing B-tree remove: record from empty B-tree PASSED +Testing B-tree remove: non-existant record from 1 record B-tree PASSED +Testing B-tree remove: existant record from 1 record B-tree PASSED +Testing B-tree remove: adding records to B-tree after removal PASSED +Testing B-tree remove: non-existant record from level-0 B-tree PASSED +Testing B-tree remove: mult. existant records from level-0 B-tree PASSED +Testing B-tree remove: non-existant record from level-1 B-tree PASSED +Testing B-tree remove: record from right leaf of level-1 B-tree PASSED +Testing B-tree remove: record from left leaf of level-1 B-tree PASSED +Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED +Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED +Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED +Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED +Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED +Testing B-tree remove: promote record from root of level-2 B-tree PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED +Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED +Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED +Testing B-tree find: nearest neighbor less than a value PASSED +Testing B-tree find: nearest neighbor greater than a value PASSED +Testing B-tree delete: delete empty B-tree PASSED +Testing B-tree delete: delete level-0 B-tree PASSED +Testing B-tree delete: delete level-1 B-tree PASSED +Testing B-tree delete: delete level-2 B-tree PASSED +Testing B-tree modify: attempt to modify non-existant record PASSED +Testing B-tree modify: modify record in leaf node PASSED +Testing B-tree modify: modify record in internal node PASSED +Testing B-tree modify: modify record in root node PASSED +Testing with reopening B-tree: +Testing B-tree creation PASSED +Testing B-tree iteration: empty B-tree PASSED +Testing B-tree insert: first record PASSED +Testing B-tree insert: several records PASSED +Testing B-tree insert: split root PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED +Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED +Testing B-tree insert: make level 2 B-tree PASSED +Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED +Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split middle leaf in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED +Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED +Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED +Testing B-tree insert: create random level 4 B-tree PASSED +Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED +Testing B-tree remove: record from empty B-tree PASSED +Testing B-tree remove: non-existant record from 1 record B-tree PASSED +Testing B-tree remove: existant record from 1 record B-tree PASSED +Testing B-tree remove: adding records to B-tree after removal PASSED +Testing B-tree remove: non-existant record from level-0 B-tree PASSED +Testing B-tree remove: mult. existant records from level-0 B-tree PASSED +Testing B-tree remove: non-existant record from level-1 B-tree PASSED +Testing B-tree remove: record from right leaf of level-1 B-tree PASSED +Testing B-tree remove: record from left leaf of level-1 B-tree PASSED +Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED +Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED +Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED +Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED +Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED +Testing B-tree remove: promote record from root of level-2 B-tree PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED +Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED +Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED +Testing B-tree find: nearest neighbor less than a value PASSED +Testing B-tree find: nearest neighbor greater than a value PASSED +Testing B-tree delete: delete empty B-tree PASSED +Testing B-tree delete: delete level-0 B-tree PASSED +Testing B-tree delete: delete level-1 B-tree PASSED +Testing B-tree delete: delete level-2 B-tree PASSED +Testing B-tree modify: attempt to modify non-existant record PASSED +Testing B-tree modify: modify record in leaf node PASSED +Testing B-tree modify: modify record in internal node PASSED +Testing B-tree modify: modify record in root node PASSED +All v2 B-tree tests passed. +33.39user 3.04system 0:37.72elapsed 96%CPU (0avgtext+0avgdata 35680maxresident)k +0inputs+285336outputs (0major+45071minor)pagefaults 0swaps + +Finished testing btree2 +============================ +============================ + objcopy Test Log +============================ + +Testing without shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +All object copying tests passed. +34.50user 2.12system 0:43.99elapsed 83%CPU (0avgtext+0avgdata 38932maxresident)k +0inputs+342256outputs (0major+209520minor)pagefaults 0swaps + +Finished testing objcopy +============================ +============================ + testhdf5 Test Log +============================ + +For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-testhdf5 -help +Linked with hdf5 version 1.8 release 21 +Testing -- Configure definitions (config) +Testing -- Encoding/decoding metadata (metadata) +Testing -- Checksum algorithm (checksum) +Testing -- Ternary Search Trees (tst) +Testing -- Memory Heaps (heap) +Testing -- Skip Lists (skiplist) +Testing -- Reference Counted Strings (refstr) +Testing -- Low-Level File I/O (file) +Testing -- Generic Object Functions (objects) +Testing -- Dataspaces (h5s) +Testing -- Dataspace coordinates (coords) +Testing -- Shared Object Header Messages (sohm) +Testing -- Attributes (attr) +Testing -- Selections (select) +Testing -- Time Datatypes (time) +Testing -- References (reference) +Testing -- Variable-Length Datatypes (vltypes) +Testing -- Variable-Length Strings (vlstrings) +Testing -- Group & Attribute Iteration (iterate) +Testing -- Array Datatypes (array) +Testing -- Generic Properties (genprop) +Testing -- UTF-8 Encoding (unicode) +Testing -- User-Created Identifiers (id) +Testing -- Miscellaneous (misc) +Testing -- Version Bounds (verbounds18) + + +All tests were successful. + + +Cleaning Up temp files... + +86.48user 0.58system 1:34.41elapsed 92%CPU (0avgtext+0avgdata 103160maxresident)k +0inputs+150264outputs (0major+58425minor)pagefaults 0swaps + +Finished testing testhdf5 +============================ +============================ + fheap Test Log +============================ +Testing with normal parameters +Testing fractal heap creation PASSED +Testing query heap creation parameters PASSED +Testing create, close & reopen fractal heap PASSED +Testing open fractal heap twice PASSED +Testing deleting open fractal heap PASSED +Testing limits of heap ID lengths PASSED +Testing creating heaps with I/O filters PASSED +Testing querying heap statistics PASSED +Testing reopening header through different file PASSED +Bulk-filling blocks w/large objects +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Bulk-filling blocks w/single object +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Using 'normal' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Using 'small' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Using 'large' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Testing writing objects in heap PASSED +Testing writing objects in heap with compressed blocks PASSED +Testing with reopen heap flag set +Testing fractal heap creation PASSED +Testing query heap creation parameters PASSED +Testing create, close & reopen fractal heap PASSED +Testing open fractal heap twice PASSED +Testing deleting open fractal heap PASSED +Testing limits of heap ID lengths PASSED +Testing creating heaps with I/O filters PASSED +Testing querying heap statistics PASSED +Testing reopening header through different file PASSED +Bulk-filling blocks w/large objects +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Bulk-filling blocks w/single object +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Using 'normal' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Using 'small' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Using 'large' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Testing writing objects in heap PASSED +Testing writing objects in heap with compressed blocks PASSED +Testing bug1: inserting several objects & removing one, then re-inserting PASSED +All fractal heap tests passed. +102.77user 8.19system 2:02.41elapsed 90%CPU (0avgtext+0avgdata 70504maxresident)k +0inputs+17255304outputs (0major+93268minor)pagefaults 0swaps + +Finished testing fheap +============================ +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +===Serial tests in test ended Mon May 14 21:11:30 CDT 2018=== +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +gmake[1]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' +Making check in tools +gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools' +gmake[1]: warning: -jN forced in submake: disabling jobserver mode. +Making check in lib +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. +gmake -j 8 +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: Nothing to be done for `all'. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +gmake[5]: Nothing to be done for `_exec_check-s'. +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' +Making check in h5diff +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5diffgentest + CCLD h5diff +gmake -j 8 h5diffgentest testh5diff.sh h5diff_plugin.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5diffgentest' is up to date. +gmake[3]: `testh5diff.sh' is up to date. +gmake[3]: `h5diff_plugin.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5diff begin Mon May 14 21:11:31 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5diffgentest +============================ +============================ +Testing testh5diff.sh +Testing h5diff_plugin.sh +Finished testing h5diff_plugin.sh +============================ +h5diff_plugin.sh Test Log +============================ +Testing h5diff -v tudfilter.h5 tudfilter2.h5 PASSED +All Plugin API tests passed. +0.07user 0.10system 0:00.16elapsed 106%CPU (0avgtext+0avgdata 7572maxresident)k +0inputs+1064outputs (0major+36113minor)pagefaults 0swaps + +Finished testing h5diff_plugin.sh +============================ +============================ +============================ + h5diffgentest Test Log +============================ +HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: + #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset + major: Invalid arguments to routine + minor: Inappropriate type +HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: + #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset + major: Invalid arguments to routine + minor: Inappropriate type +0.53user 0.27system 0:00.99elapsed 81%CPU (0avgtext+0avgdata 136480maxresident)k +0inputs+6560outputs (0major+52630minor)pagefaults 0swaps + +Finished testing h5diffgentest +============================ +Finished testing testh5diff.sh +============================ +testh5diff.sh Test Log +============================ +Testing h5diff -h PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED +Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED +Testing h5diff --report --delta=5 h5diff_basic1.h5 h5diff_basic2.h5 g1 PASSED +Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset5 g PASSED +Testing h5diff --verbose --relative=0.02 h5diff_basic1.h5 h5diff_basic PASSED +Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset9 g PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp19 /g1/fp19_ PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp20 /g1/fp20_ PASSED +Testing h5diff -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset g1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset l1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset t1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g2 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t2 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l2 PASSED +Testing h5diff -v h5diff_enum_invalid_values.h5 h5diff_enum_invalid_va PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset0a dset0b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset1a dset1b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset2a dset2b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset3a dset4b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset4a dset4b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset5a dset5b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset6a dset6b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset7a dset7b PASSED +Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 refreg PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset11a dset11b PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string1 string1 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string2 string2 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string3 string3 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string4 string4 PASSED +Testing h5diff h5diff_basic1.h5 PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic1.h5 nono_obj PASSED +Testing h5diff -d -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -d 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -d u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -d 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -d 200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -p 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -p 0.21 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/d PASSED +Testing h5diff -p 0.21 -p 0.22 h5diff_basic1.h5 h5diff_basic2.h5 g1/ds PASSED +Testing h5diff -p 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p 0.005 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ PASSED +Testing h5diff -n -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -n 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -n 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n 2 -n 3 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1 PASSED +Testing h5diff --count=200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 PASSED +Testing h5diff -n 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -v -d 0.0001 h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff -v h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff --verbose=1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff --verbose=2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /ds PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /nt PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g2 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g3 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g4 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 PASSED +Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 PASSED +Testing h5diff -v h5diff_basic2.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_hyper1.h5 h5diff_hyper2.h5 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset2 g2/dset3 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset3 g2/dset4 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset4 g2/dset5 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset5 g2/dset6 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset7 g2/dset8 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset8 g2/dset9 PASSED +Testing h5diff -c h5diff_dset_zero_dim_size1.h5 h5diff_dset_zero_dim_s PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g1 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g2 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /diffobjtype PASSED +Testing h5diff -c non_comparables2.h5 non_comparables1.h5 /diffobjtype PASSED +Testing h5diff -v h5diff_links.h5 h5diff_links.h5 /link_g1 /link_g2 PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_trg.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_softl PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_trg.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_danglel PASSED +Testing h5diff --no-dangling-links h5diff_softlinks.h5 h5diff_softlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglel PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / / PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / /grp PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1/ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp10 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED +Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED +Testing h5diff -v --exclude-path /group1/dset3 h5diff_exclude1-1.h5 h5 PASSED +Testing h5diff -v h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 PASSED +Testing h5diff -v --exclude-path /group1 --exclude-path /dset1 h5diff_ PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude2-1.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /dset3 h5diff_exclude1-1.h5 h5diff_ex PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude3-1.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude3-2.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /group1/dset h5diff_exclude3-1.h5 h5d PASSED +Testing h5diff -v h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group PASSED +Testing h5diff -v --enable-error-stack h5diff_comp_vl_strs.h5 h5diff_c PASSED +Testing h5diff -v h5diff_attr3.h5 h5diff_attr2.h5 /g1 PASSED +Testing h5diff -v tvlstr.h5 tvlstr2.h5 PASSED +Testing h5diff -v compounds_array_vlen1.h5 compounds_array_vlen2.h5 PASSED +Testing h5diff -v -d 5 -p 0.05 --use-system-epsilon h5diff_basic1.h5 h PASSED +Testing h5diff -v -d 5 -p 0.05 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED +Testing h5diff -v -p 0.05 -d 5 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED +Testing h5diff -v -d 5 --use-system-epsilon h5diff_basic1.h5 h5diff_ba PASSED +Testing h5diff -v --use-system-epsilon -d 5 h5diff_basic1.h5 h5diff_ba PASSED +Testing h5diff -v -p 0.05 --use-system-epsilon h5diff_basic1.h5 h5diff PASSED +Testing h5diff -v --use-system-epsilon -p 0.05 h5diff_basic1.h5 h5diff PASSED +All h5diff tests passed. +6.66user 10.90system 0:15.69elapsed 111%CPU (0avgtext+0avgdata 73448maxresident)k +0inputs+27952outputs (0major+3294459minor)pagefaults 0swaps + +Finished testing testh5diff.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +===Serial tests in h5diff ended Mon May 14 21:11:47 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' +Making check in h5ls +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5ls +gmake -j 8 testh5ls.sh h5ls_plugin.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `testh5ls.sh' is up to date. +gmake[3]: `h5ls_plugin.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5ls begin Mon May 14 21:11:47 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +============================ +Testing testh5ls.sh +Testing h5ls_plugin.sh +Finished testing h5ls_plugin.sh +============================ +h5ls_plugin.sh Test Log +============================ +Testing h5ls -w80 -d tudfilter.h5 PASSED +All Plugin API tests passed. +0.07user 0.10system 0:00.21elapsed 82%CPU (0avgtext+0avgdata 7348maxresident)k +0inputs+704outputs (0major+28072minor)pagefaults 0swaps + +Finished testing h5ls_plugin.sh +============================ +============================ +Finished testing testh5ls.sh +============================ +testh5ls.sh Test Log +============================ +Testing h5ls -w80 -h PASSED +Testing h5ls -w80 -help PASSED +Testing h5ls -w80 -? PASSED +Testing h5ls -w80 tall.h5 PASSED +Testing h5ls -w80 -r -d tall.h5 PASSED +Testing h5ls -w80 tgroup.h5 PASSED +Testing h5ls -w80 tgroup.h5/g1 PASSED +Testing h5ls -w80 -r -g tgroup.h5 PASSED +Testing h5ls -w80 -g tgroup.h5/g1 PASSED +Testing h5ls -w80 -v -g tgrp_comments.h5/glongcomment PASSED +Testing h5ls -w80 -r -d tdset.h5 PASSED +Testing h5ls -w80 -r tslink.h5 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5 PASSED +Testing h5ls --follow-symlinks -r tsoftlinks.h5 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5/group1 PASSED +Testing h5ls --follow-symlinks -r tsoftlinks.h5/group1 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5/soft_dset1 PASSED +Testing h5ls -w80 -r textlink.h5 PASSED +Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks -rv textlinksrc.h5/ext_link5 PASSED +Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -r textlinksrc.h5 PASSED +Testing h5ls -w80 -r textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 --follow-symlinks textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -r tudlink.h5 PASSED +Testing h5ls -w80 -Er textlinksrc.h5 PASSED +Testing h5ls -w80 -Erv textlinksrc.h5/ext_link5 PASSED +Testing h5ls -w80 -Er textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -E textlinksrc.h5 PASSED +Testing h5ls -w80 -E textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 --no-dangling-links textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links tsoftlinks.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links thlink.h5 PASSED +Testing h5ls -w80 thlink.h5 tslink.h5 PASSED +Testing h5ls -w80 thlink.h5 PASSED +Testing h5ls -w80 -r -d tcompound.h5 PASSED +Testing h5ls -w80 -r -d tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -S tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -l tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -l -S tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d tloop.h5 PASSED +Testing h5ls -w80 -r -d tstr.h5 PASSED +Testing h5ls -w80 -r -d tsaf.h5 PASSED +Testing h5ls -w80 -r -d tvldtypes1.h5 PASSED +Testing h5ls -w80 -r -d tarray1.h5 PASSED +Testing h5ls -w80 -d tempty.h5 PASSED +Testing h5ls -w80 -v -S tgrpnullspace.h5 PASSED +Testing h5ls -w80 -v -S tattr2.h5 PASSED +Testing h5ls -w80 -v -d tattrreg.h5 PASSED +Testing h5ls nosuchfile.h5 PASSED +Testing h5ls -v tvldtypes1.h5 PASSED +Testing h5ls -v tdatareg.h5 PASSED +All h5ls tests passed. +1.77user 3.37system 0:04.56elapsed 112%CPU (0avgtext+0avgdata 7796maxresident)k +0inputs+5792outputs (0major+981108minor)pagefaults 0swaps + +Finished testing testh5ls.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +===Serial tests in h5ls ended Mon May 14 21:11:52 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' +Making check in h5dump +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5dump + CCLD h5dumpgentest + CCLD binread +gmake -j 8 h5dumpgentest binread testh5dump.sh testh5dumppbits.sh testh5dumpxml.sh h5dump_plugin.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5dumpgentest' is up to date. +gmake[3]: `binread' is up to date. +gmake[3]: `testh5dump.sh' is up to date. +gmake[3]: `testh5dumppbits.sh' is up to date. +gmake[3]: `testh5dumpxml.sh' is up to date. +gmake[3]: `h5dump_plugin.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5dump begin Mon May 14 21:11:52 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5dumpgentest +============================ +============================ +============================ +============================ +Testing testh5dump.sh +Testing testh5dumpxml.sh +Testing testh5dumppbits.sh +Testing h5dump_plugin.sh +Finished testing h5dump_plugin.sh +============================ +h5dump_plugin.sh Test Log +============================ +Testing h5dump --enable-error-stack tudfilter.h5 PASSED +All Plugin API tests passed. +0.08user 0.08system 0:00.20elapsed 83%CPU (0avgtext+0avgdata 7536maxresident)k +0inputs+928outputs (0major+28146minor)pagefaults 0swaps + +Finished testing h5dump_plugin.sh +============================ +============================ +============================ + h5dumpgentest Test Log +============================ +0.20user 0.06system 0:00.53elapsed 49%CPU (0avgtext+0avgdata 14756maxresident)k +0inputs+20824outputs (0major+11539minor)pagefaults 0swaps + +Finished testing h5dumpgentest +============================ +Finished testing testh5dumpxml.sh +============================ +testh5dumpxml.sh Test Log +============================ +Testing h5dump --xml tall.h5 PASSED +Testing h5dump --xml tattr.h5 PASSED +Testing h5dump --xml tbitfields.h5 PASSED +Testing h5dump --xml tcompound.h5 PASSED +Testing h5dump --xml tcompound2.h5 PASSED +Testing h5dump --xml tdatareg.h5 PASSED +Testing h5dump --xml tdset.h5 PASSED +Testing h5dump --xml tdset2.h5 PASSED +Testing h5dump --xml tenum.h5 PASSED +Testing h5dump --xml tgroup.h5 PASSED +Testing h5dump --xml thlink.h5 PASSED +Testing h5dump --xml tloop.h5 PASSED +Testing h5dump --xml tloop2.h5 PASSED +Testing h5dump --xml tmany.h5 PASSED +Testing h5dump --xml tnestedcomp.h5 PASSED +Testing h5dump --xml tcompound_complex.h5 PASSED +Testing h5dump --xml tobjref.h5 PASSED +Testing h5dump --xml topaque.h5 PASSED +Testing h5dump --xml tslink.h5 PASSED +Testing h5dump --xml tudlink.h5 PASSED +Testing h5dump --xml textlink.h5 PASSED +Testing h5dump --xml tstr.h5 PASSED +Testing h5dump --xml tstr2.h5 PASSED +Testing h5dump --xml tref.h5 PASSED +Testing h5dump --xml tname-amp.h5 PASSED +Testing h5dump --xml tname-apos.h5 PASSED +Testing h5dump --xml tname-gt.h5 PASSED +Testing h5dump --xml tname-lt.h5 PASSED +Testing h5dump --xml tname-quot.h5 PASSED +Testing h5dump --xml tname-sp.h5 PASSED +Testing h5dump --xml tstring.h5 PASSED +Testing h5dump --xml tstring-at.h5 PASSED +Testing h5dump --xml tref-escapes.h5 PASSED +Testing h5dump --xml tref-escapes-at.h5 PASSED +Testing h5dump --xml tnodata.h5 PASSED +Testing h5dump --xml tarray1.h5 PASSED +Testing h5dump --xml tarray2.h5 PASSED +Testing h5dump --xml tarray3.h5 PASSED +Testing h5dump --xml tarray6.h5 PASSED +Testing h5dump --xml tarray7.h5 PASSED +Testing h5dump --xml tvldtypes1.h5 PASSED +Testing h5dump --xml tvldtypes2.h5 PASSED +Testing h5dump --xml tvldtypes3.h5 PASSED +Testing h5dump --xml tvldtypes4.h5 PASSED +Testing h5dump --xml tvldtypes5.h5 PASSED +Testing h5dump --xml tvlstr.h5 PASSED +Testing h5dump --xml tsaf.h5 PASSED +Testing h5dump --xml tempty.h5 PASSED +Testing h5dump --xml tnamed_dtype_attr.h5 PASSED +Testing h5dump --xml tnullspace.h5 PASSED +Testing h5dump --xml --use-dtd tempty.h5 PASSED +Testing h5dump --xml -u tempty.h5 PASSED +Testing h5dump --xml -X : tempty.h5 PASSED +Testing h5dump --xml --xml-ns=: tempty.h5 PASSED +Testing h5dump --xml -X thing: tempty.h5 PASSED +Testing h5dump --xml --xml-ns=thing: tempty.h5 PASSED +Testing h5dump --xml --xml-ns=: --xml-dtd=http://somewhere.net tempty. PASSED +Testing h5dump --xml --use-dtd --xml-dtd=http://somewhere.net tempty.h PASSED +Testing h5dump --xml -A tall.h5 PASSED +Testing h5dump --xml -H --sort_by=name --sort_order=ascending torderat PASSED +Testing h5dump --xml -H --sort_by=name --sort_order=descending tordera PASSED +Testing h5dump --xml -H --sort_by=creation_order --sort_order=ascendin PASSED +Testing h5dump --xml -H --sort_by=creation_order --sort_order=descendi PASSED +Testing h5dump -u -m %.7f tfpformat.h5 PASSED +Testing h5dump --xml test35.nc PASSED +All h5dumpxml tests passed. +1.17user 2.44system 0:02.73elapsed 131%CPU (0avgtext+0avgdata 7188maxresident)k +0inputs+4312outputs (0major+957317minor)pagefaults 0swaps + +Finished testing testh5dumpxml.sh +============================ +============================ +Finished testing testh5dumppbits.sh +============================ +testh5dumppbits.sh Test Log +============================ +Testing h5dump --enable-error-stack PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,8 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,8 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,16 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,16 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,32 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,32 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,64 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,64 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 1,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 1,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,4,4,4 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,4,4,4 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,8,8,8 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,8,8,8 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,16,16,16 packedb PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,16,16,16 packedb PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,32,32,32 packedb PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,32,32,32 packedb PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,2,4,2,6,2 pa PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,2,4,2,6,2 pa PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,4,4,4,8,4,12,4 p PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,4,4,4,8,4,12,4 p PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,8,8,8,16,8,24,8 PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,8,8,8,16,8,24,8 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,16,16,16,32,16,4 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,16,16,16,32,16,4 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,6 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,6 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,2,10,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,2,10,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,2,26,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,2,26,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,2,58,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,2,58,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,0,3 pa PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,3,1,4, PASSED +Testing h5dump --enable-error-stack -d /dset1 -M 0,1,1,1 tcompound.h5 PASSED +Testing h5dump --enable-error-stack -d /Dataset1 -M 0,1,1,1 tarray1.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,0,1,1,1,2,1,3, PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 64,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 8,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 16,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 32,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M -1,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 4,0 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 37,28 packedbits.h PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 2,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 10,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 26,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,1,0,2,2, pac PASSED +All h5dump tests passed. +1.08user 2.44system 0:02.95elapsed 119%CPU (0avgtext+0avgdata 5324maxresident)k +0inputs+6080outputs (0major+921638minor)pagefaults 0swaps + +Finished testing testh5dumppbits.sh +============================ +============================ +Finished testing testh5dump.sh +============================ +testh5dump.sh Test Log +============================ +Testing h5dump -h PASSED +Testing h5dump --enable-error-stack --ddl -y packedbits.h5 PASSED +Testing h5dump --enable-error-stack --output packedbits.h5 PASSED +Testing h5dump --enable-error-stack -O -y tattr.h5 PASSED +Testing h5dump --enable-error-stack -A -o tattr.h5 PASSED +Testing h5dump --enable-error-stack -y -o trawdatafile.txt packedbits. PASSED +Testing h5dump --enable-error-stack -O -y -o tnoddlfile.txt packedbits PASSED +Testing h5dump --enable-error-stack --ddl=twithddl.txt -y -o twithddlf PASSED +Testing h5dump --enable-error-stack -d /dset1[1,1;;;] -y -o trawssetfi PASSED +Testing h5dump --enable-error-stack -w0 packedbits.h5 PASSED +Testing h5dump --enable-error-stack packedbits.h5 PASSED +Testing h5dump --enable-error-stack tcmpdintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarintsize.h5 PASSED +Testing h5dump --enable-error-stack tattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tcmpdattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarintattrsize.h5 PASSED +Testing h5dump --enable-error-stack tintsattrs.h5 PASSED +Testing h5dump --enable-error-stack tscalarstring.h5 PASSED +Testing h5dump --enable-error-stack tgroup.h5 PASSED +Testing h5dump --enable-error-stack --group=/g2 --group / -g /y tgroup PASSED +Testing h5dump --enable-error-stack tdset.h5 PASSED +Testing h5dump --enable-error-stack -H -d dset1 -d /dset2 --dataset=ds PASSED +Testing h5dump --enable-error-stack tattr.h5 PASSED +Testing h5dump --enable-error-stack -a /\/attr1 --attribute /attr4 --a PASSED +Testing h5dump --enable-error-stack -N /\/attr1 --any_path /attr4 --an PASSED +Testing h5dump --enable-error-stack --header -a /attr2 --attribute=/at PASSED +Testing h5dump --enable-error-stack tattr4_be.h5 PASSED +Testing h5dump --enable-error-stack tnamed_dtype_attr.h5 PASSED +Testing h5dump --enable-error-stack tslink.h5 PASSED +Testing h5dump --enable-error-stack tudlink.h5 PASSED +Testing h5dump --enable-error-stack -l slink2 tslink.h5 PASSED +Testing h5dump --enable-error-stack -N slink2 tslink.h5 PASSED +Testing h5dump --enable-error-stack -l udlink2 tudlink.h5 PASSED +Testing h5dump --enable-error-stack -d /slink1 tslink.h5 PASSED +Testing h5dump --enable-error-stack thlink.h5 PASSED +Testing h5dump --enable-error-stack -d /g1/dset2 --dataset /dset1 --da PASSED +Testing h5dump --enable-error-stack -d /g1/g1.1/dset3 --dataset /g1/ds PASSED +Testing h5dump --enable-error-stack -g /g1 thlink.h5 PASSED +Testing h5dump --enable-error-stack -N /g1 thlink.h5 PASSED +Testing h5dump --enable-error-stack -d /dset1 -g /g2 -d /g1/dset2 thli PASSED +Testing h5dump --enable-error-stack -N /dset1 -N /g2 -N /g1/dset2 thli PASSED +Testing h5dump --enable-error-stack tcompound.h5 PASSED +Testing h5dump --enable-error-stack -t /type1 --datatype /type2 --data PASSED +Testing h5dump --enable-error-stack -N /type1 --any_path /type2 --any_ PASSED +Testing h5dump --enable-error-stack -t /#6632 -g /group2 tcompound.h5 PASSED +Testing h5dump --enable-error-stack tcompound_complex.h5 PASSED +Testing h5dump --enable-error-stack tcompound_complex2.h5 PASSED +Testing h5dump --enable-error-stack tbitnopaque.h5 PASSED +Testing h5dump --enable-error-stack tnestedcomp.h5 PASSED +Testing h5dump --enable-error-stack tnestedcmpddt.h5 PASSED +Testing h5dump --enable-error-stack tall.h5 PASSED +Testing h5dump --enable-error-stack --header -g /g1/g1.1 -a attr2 tall PASSED +Testing h5dump --enable-error-stack -d /g2/dset2.1 -l /g1/g1.2/g1.2.1/ PASSED +Testing h5dump --enable-error-stack -N /g2/dset2.1 -N /g1/g1.2/g1.2.1/ PASSED +Testing h5dump --enable-error-stack -a attr1 tall.h5 PASSED +Testing h5dump --enable-error-stack -N attr1 tall.h5 PASSED +Testing h5dump --enable-error-stack tloop.h5 PASSED +Testing h5dump --enable-error-stack tstr.h5 PASSED +Testing h5dump --enable-error-stack tstr2.h5 PASSED +Testing h5dump --enable-error-stack tsaf.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes1.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes2.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes3.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes4.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes5.h5 PASSED +Testing h5dump --enable-error-stack tvlstr.h5 PASSED +Testing h5dump --enable-error-stack tvlenstr_array.h5 PASSED +Testing h5dump --enable-error-stack tarray1.h5 PASSED +Testing h5dump --enable-error-stack -R tarray1_big.h5 PASSED +Testing h5dump --enable-error-stack tarray2.h5 PASSED +Testing h5dump --enable-error-stack tarray3.h5 PASSED +Testing h5dump --enable-error-stack tarray4.h5 PASSED +Testing h5dump --enable-error-stack tarray5.h5 PASSED +Testing h5dump --enable-error-stack tarray6.h5 PASSED +Testing h5dump --enable-error-stack tarray7.h5 PASSED +Testing h5dump --enable-error-stack tarray8.h5 PASSED +Testing h5dump --enable-error-stack -H -d Dataset1 tarray2.h5 tarray3. PASSED +Testing h5dump --enable-error-stack tempty.h5 PASSED +Testing h5dump --enable-error-stack tgrp_comments.h5 PASSED +Testing h5dump --enable-error-stack --filedriver=split tsplit_file PASSED +Testing h5dump --enable-error-stack --filedriver=family tfamily%05d.h5 PASSED +Testing h5dump --enable-error-stack --filedriver=multi tmulti PASSED +Testing h5dump --enable-error-stack -w157 tlarge_objname.h5 PASSED +Testing h5dump --enable-error-stack -A tall.h5 PASSED +Testing h5dump --enable-error-stack -A 0 tall.h5 PASSED +Testing h5dump --enable-error-stack -A -r tall.h5 PASSED +Testing h5dump --enable-error-stack --dataset=/g1/g1.1/dset1.1.1 --sta PASSED +Testing h5dump --enable-error-stack -d /g1/g1.1/dset1.1.2[0;2;10;] tal PASSED +Testing h5dump --enable-error-stack -d /dset1[1,1;;;] tdset.h5 PASSED +Testing h5dump --enable-error-stack --no-compact-subset -d AHFINDERDIR PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 2,2,2 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 1,1,1 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,2 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED +Testing h5dump --enable-error-stack -r tchar.h5 PASSED +Testing h5dump --enable-error-stack charsets.h5 PASSED +Testing h5dump --enable-error-stack -H -B -d dset tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -B tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack --boot-block tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack --superblock tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack -p -d bogus tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -n tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=asc PASSED +Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=des PASSED +Testing h5dump --enable-error-stack -n 1 --sort_order=ascending tall.h PASSED +Testing h5dump --enable-error-stack -n 1 --sort_order=descending tall. PASSED +Testing h5dump --enable-error-stack -H -p -d compact tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d contiguous tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d chunked tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d external tfilters.h5 PASSED +Testing h5dump --enable-error-stack -p tfvalues.h5 PASSED +Testing h5dump --enable-error-stack tattr2.h5 PASSED +Testing h5dump --enable-error-stack -e tstr3.h5 PASSED +Testing h5dump --enable-error-stack tstr3.h5 PASSED +Testing h5dump --enable-error-stack -r -d str4 tstr3.h5 PASSED +Testing h5dump --enable-error-stack taindices.h5 PASSED +Testing h5dump --enable-error-stack -y taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -s 1 -S 10 -c 2 -k 3 taindic PASSED +Testing h5dump --enable-error-stack -d 2d -s 1,2 -S 3,3 -c 3,2 -k 2,2 PASSED +Testing h5dump --enable-error-stack -d 3d -s 0,1,2 -S 1,3,3 -c 2,2,2 - PASSED +Testing h5dump --enable-error-stack -d 4d -s 0,0,1,2 -c 2,2,3,2 -S 1,1 PASSED +Testing h5dump --enable-error-stack -d 1d -s 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -c 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -S 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -k 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d szip tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d deflate tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d shuffle tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d fletcher32 tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d nbit tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d scaleoffset tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d all tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d myfilter tfilters.h5 PASSED +Testing h5dump --enable-error-stack -d deflate -d shuffle -d fletcher3 PASSED +Testing h5dump --enable-error-stack tlonglinks.h5 PASSED +Testing h5dump --enable-error-stack -d dset4gb -s 4294967284 -c 22 tbi PASSED +Testing h5dump --enable-error-stack thyperslab.h5 PASSED +Testing h5dump --enable-error-stack tnullspace.h5 PASSED +Testing h5dump -p --enable-error-stack tgrpnullspace.h5 PASSED +Testing h5dump --enable-error-stack zerodim.h5 PASSED +Testing h5dump --enable-error-stack tvms.h5 PASSED +Testing h5dump --enable-error-stack -d integer -o out1.bin -b LE tbina PASSED +Testing h5dump --enable-error-stack -d /g2/dset2 -b -o tstr2bin2.txt t PASSED +Testing h5dump --enable-error-stack -d /g6/dset6 -b -o tstr2bin6.txt t PASSED +Testing h5dump --enable-error-stack -d integer -o out1.bin -b tbinary. PASSED + Running h5import out1.bin -c out3.h5import -o out1.h5 PASSED + Running h5diff tbinary.h5 out1.h5 /integer /integer PASSED + Running h5import out1.bin -c tbin1.ddl -o out1D.h5 PASSED + Running h5diff tbinary.h5 out1D.h5 /integer /integer PASSED +Testing h5dump --enable-error-stack -b BE -d float -o out2.bin tbinary PASSED +Testing h5dump --enable-error-stack -d integer -o out3.bin -b NATIVE t PASSED + Running h5import out3.bin -c out3.h5import -o out3.h5 PASSED + Running h5diff tbinary.h5 out3.h5 /integer /integer PASSED + Running h5import out3.bin -c tbin3.ddl -o out3D.h5 PASSED + Running h5diff tbinary.h5 out3D.h5 /integer /integer PASSED +Testing h5dump --enable-error-stack -d double -b FILE -o out4.bin tbin PASSED +Testing h5dump --enable-error-stack tdatareg.h5 PASSED +Testing h5dump --enable-error-stack -R tdatareg.h5 PASSED +Testing h5dump --enable-error-stack tattrreg.h5 PASSED +Testing h5dump --enable-error-stack -R tattrreg.h5 PASSED +Testing h5dump --enable-error-stack -d /Dataset1 -s 0 -R -y -o tbinreg PASSED +Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED +Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED +Testing h5dump --enable-error-stack -g 2 -q name -z ascending tordergr PASSED +Testing h5dump --enable-error-stack -g 2 -q name -z descending torderg PASSED +Testing h5dump --enable-error-stack -q creation_order tordergr.h5 PASSED +Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=asc PASSED +Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=des PASSED +Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED +Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED +Testing h5dump --enable-error-stack --sort_by=name --sort_order=ascend PASSED +Testing h5dump --enable-error-stack --sort_by=name --sort_order=descen PASSED +Testing h5dump --enable-error-stack -m %.7f tfpformat.h5 PASSED +Testing h5dump --enable-error-stack textlinksrc.h5 PASSED +Testing h5dump --enable-error-stack textlinkfar.h5 PASSED +Testing h5dump --enable-error-stack textlink.h5 PASSED +Testing h5dump --enable-error-stack filter_fail.h5 PASSED +Testing h5dump --enable-error-stack -y -o tall-6.txt -d /g1/g1.1/dset1 PASSED +Testing h5dump --enable-error-stack tgroup.h5 non_existing.h5 PASSED +All h5dump tests passed. +7.70user 10.66system 0:16.28elapsed 112%CPU (0avgtext+0avgdata 11872maxresident)k +0inputs+271072outputs (0major+3390203minor)pagefaults 0swaps + +Finished testing testh5dump.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +===Serial tests in h5dump ended Mon May 14 21:12:08 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' +Making check in misc +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5debug + CCLD h5repart + CCLD h5mkgrp + CCLD h5repart_gentest + CCLD repart_test + CCLD talign +gmake -j 8 h5repart_gentest talign repart_test testh5repart.sh testh5mkgrp.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5repart_gentest' is up to date. +gmake[3]: `talign' is up to date. +gmake[3]: `repart_test' is up to date. +gmake[3]: `testh5repart.sh' is up to date. +gmake[3]: `testh5mkgrp.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in misc begin Mon May 14 21:12:09 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +============================ +Testing h5repart_gentest +Testing talign +============================ +============================ +Testing testh5mkgrp.sh +Testing testh5repart.sh +============================ + talign Test Log +============================ +Testing alignment in compound datatypes PASSED +0.04user 0.02system 0:00.06elapsed 103%CPU (0avgtext+0avgdata 6908maxresident)k +0inputs+56outputs (0major+9712minor)pagefaults 0swaps + +Finished testing talign +============================ +============================ + h5repart_gentest Test Log +============================ + PASSED +0.04user 0.02system 0:00.06elapsed 102%CPU (0avgtext+0avgdata 6904maxresident)k +0inputs+200outputs (0major+8682minor)pagefaults 0swaps + +Finished testing h5repart_gentest +============================ +Finished testing testh5repart.sh +============================ +testh5repart.sh Test Log +============================ +Testing ./h5repart -m 20000 family_file%05d.h5 fst_family%05d.h5 PASSED +Testing ./h5repart -m 5k family_file%05d.h5 scd_family%05d.h5 PASSED +Testing ./h5repart -m 20000 -family_to_sec2 family_file%05d.h5 family_ PASSED +Testing repart_test PASSED + +All h5repart tests passed. +0.18user 0.31system 0:00.39elapsed 128%CPU (0avgtext+0avgdata 6928maxresident)k +0inputs+400outputs (0major+102046minor)pagefaults 0swaps + +Finished testing testh5repart.sh +============================ +============================ +Finished testing testh5mkgrp.sh +============================ +testh5mkgrp.sh Test Log +============================ +Testing h5mkgrp -h PASSED +Testing h5mkgrp h5mkgrp_single.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single.h5 PASSED +Testing h5mkgrp -v h5mkgrp_single_v.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single_v.h5 PASSED +Testing h5mkgrp -p h5mkgrp_single_p.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single_p.h5 PASSED +Testing h5mkgrp -l h5mkgrp_single_l.h5 latest PASSED +Verifying h5ls file structure h5mkgrp_single_l.h5 PASSED +Testing h5mkgrp h5mkgrp_several.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several.h5 PASSED +Testing h5mkgrp -v h5mkgrp_several_v.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_v.h5 PASSED +Testing h5mkgrp -p h5mkgrp_several_p.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_p.h5 PASSED +Testing h5mkgrp -l h5mkgrp_several_l.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_l.h5 PASSED +Testing h5mkgrp -p h5mkgrp_nested_p.h5 /one/two PASSED +Verifying h5ls file structure h5mkgrp_nested_p.h5 PASSED +Testing h5mkgrp -lp h5mkgrp_nested_lp.h5 /one/two PASSED +Verifying h5ls file structure h5mkgrp_nested_lp.h5 PASSED +Testing h5mkgrp -p h5mkgrp_nested_mult_p.h5 /one/two /three/four PASSED +Verifying h5ls file structure h5mkgrp_nested_mult_p.h5 PASSED +Testing h5mkgrp -lp h5mkgrp_nested_mult_lp.h5 /one/two /three/four PASSED +Verifying h5ls file structure h5mkgrp_nested_mult_lp.h5 PASSED +All h5mkgrp tests passed. +0.51user 0.97system 0:01.23elapsed 120%CPU (0avgtext+0avgdata 7296maxresident)k +0inputs+1888outputs (0major+294489minor)pagefaults 0swaps + +Finished testing testh5mkgrp.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +===Serial tests in misc ended Mon May 14 21:12:10 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' +Making check in h5import +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5import + CCLD h5importtest +gmake -j 8 h5importtest +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5importtest' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5import begin Mon May 14 21:12:11 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5importtest +============================ +Testing h5importtestutil.sh +============================ + h5importtest Test Log +============================ +0.03user 0.02system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6912maxresident)k +0inputs+168outputs (0major+7853minor)pagefaults 0swaps + +Finished testing h5importtest +============================ +Finished testing h5importtestutil.sh +============================ +h5importtestutil.sh Test Log +============================ + +============================== +H5IMPORT tests started +============================== +Testing ASCII I32 rank 3 - Output BE PASSED +Testing ASCII I16 rank 3 - Output LE - CHUNKED - extended PASSED +Testing ASCII I8 - rank 3 - Output I8 LE-Chunked+Extended+Compressed PASSED +Testing ASCII UI16 - rank 2 - Output LE+Chunked+Compressed PASSED +Testing ASCII UI32 - rank 3 - Output BE PASSED +Testing ASCII F32 - rank 3 - Output LE PASSED +Testing ASCII F64 - rank 3 - Output BE + CHUNKED+Extended+Compressed PASSED +Testing BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compressed PASSED +Testing H5DUMP-BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compre PASSED +Testing BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Compresse PASSED +Testing H5DUMP-BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Co PASSED +Testing BINARY I16 - rank 3 - Output order LE + CHUNKED + extended PASSED +Testing H5DUMP-BINARY I16 - rank 3 - Output order LE + CHUNKED + exten PASSED +Testing BINARY I32 - rank 3 - Output BE + CHUNKED PASSED +Testing H5DUMP-BINARY I32 - rank 3 - Output BE + CHUNKED PASSED +Testing BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED +Testing H5DUMP-BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED +Testing BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED +Testing H5DUMP-BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED +Testing STR PASSED +Testing H5DUMP-STR PASSED +Testing BINARY I8 CR LF EOF PASSED +Testing H5DUMP-BINARY I8 CR LF EOF PASSED +Testing ASCII F64 - rank 1 - INPUT-CLASS TEXTFPE PASSED +Testing Binary Subset FP PASSED +Testing Binary Subset INT PASSED +Testing Binary Subset UINT PASSED +All h5import tests passed. +1.22user 2.10system 0:02.75elapsed 121%CPU (0avgtext+0avgdata 7384maxresident)k +0inputs+2992outputs (0major+675526minor)pagefaults 0swaps + +Finished testing h5importtestutil.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +===Serial tests in h5import ended Mon May 14 21:12:13 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' +Making check in h5repack +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5repack + CCLD h5repacktst + CCLD testh5repack_detect_szip +gmake -j 8 h5repacktst h5repack.sh h5repack_plugin.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5repacktst' is up to date. +gmake[3]: `h5repack.sh' is up to date. +gmake[3]: `h5repack_plugin.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5repack begin Mon May 14 21:12:14 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5repacktst +============================ +Testing h5repack_plugin.sh +Finished testing h5repack_plugin.sh +============================ +h5repack_plugin.sh Test Log +============================ +plugin_version_test h5repack_layout.h5 -v -f UD=260,0,4,9,1,8,21 +Testing h5repack -v -f UD=260,0,4,9,1,8,21 PASSED + PASSED +Verifying h5dump output -pH out-plugin_version_test.h5repack_layout.h5 PASSED +plugin_test h5repack_layout.h5 -v -f UD=257,0,1,9 +Testing h5repack -v -f UD=257,0,1,9 PASSED + PASSED +Verifying h5dump output -pH out-plugin_test.h5repack_layout.h5 PASSED +All Plugin API tests passed. +0.13user 0.20system 0:00.34elapsed 100%CPU (0avgtext+0avgdata 7636maxresident)k +0inputs+1192outputs (0major+61150minor)pagefaults 0swaps + +Finished testing h5repack_plugin.sh +============================ +============================ +============================ + h5repacktst Test Log +============================ +Testing h5repack: +Testing generating files for testing PASSED +Testing copy of datasets (fill values) PASSED +Testing copy of datasets (all datatypes) PASSED +Testing copy of datasets (attributes) PASSED +Testing copy of datasets (hardlinks) PASSED +Testing copy of allocation early file PASSED +Testing adding deflate filter PASSED +Testing adding deflate filter to all PASSED +Testing adding szip filter -SKIP- +Testing adding szip filter to all -SKIP- +Testing addding shuffle filter PASSED +Testing addding shuffle filter to all PASSED +Testing adding checksum filter PASSED +Testing adding checksum filter to all PASSED +Testing filter queue fletcher, shuffle, deflate, szip PASSED +Testing adding layout chunked PASSED +Testing adding layout chunked to all PASSED +Testing adding layout contiguous PASSED +Testing adding layout contiguous to all PASSED +Testing adding layout compact PASSED +Testing adding layout compact to all PASSED +Testing layout compact to contiguous conversion PASSED +Testing layout compact to chunk conversion PASSED +Testing layout compact to compact conversion PASSED +Testing layout contiguous to compact conversion PASSED +Testing layout contiguous to chunk conversion PASSED +Testing layout contiguous to contiguous conversion PASSED +Testing layout chunked to compact conversion PASSED +Testing layout chunked to contiguous conversion PASSED +Testing layout chunked to chunk conversion PASSED +Testing copy of szip filter -SKIP- +Testing removing szip filter -SKIP- +Testing copy of deflate filter PASSED +Testing removing deflate filter PASSED +Testing copy of shuffle filter PASSED +Testing removing shuffle filter PASSED +Testing copy of fletcher filter PASSED +Testing removing fletcher filter PASSED +Testing copy of nbit filter PASSED +Testing removing nbit filter PASSED +Testing adding nbit filter PASSED +Testing copy of scaleoffset filter PASSED +Testing removing scaleoffset filter PASSED +Testing adding scaleoffset filter PASSED +Testing filter conversion from deflate to szip -SKIP- +Testing filter conversion from szip to deflate -SKIP- +Testing removing all filters -SKIP- +Testing big file PASSED +Testing external datasets PASSED +Testing file with userblock PASSED +Testing latest file format options PASSED +Testing several global filters PASSED +Testing file with added userblock PASSED +Testing file with aligment PASSED +Testing file with committed datatypes PASSED +Testing metadata block size option PASSED +All h5repack tests passed. +4.51user 0.38system 0:05.24elapsed 93%CPU (0avgtext+0avgdata 255920maxresident)k +0inputs+12328outputs (0major+164570minor)pagefaults 0swaps + +Finished testing h5repacktst +============================ +============================ +Testing h5repack.sh +Finished testing h5repack.sh +============================ +h5repack.sh Test Log +============================ +Testing h5repack -h PASSED +fill h5repack_fill.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_fill.h5 out-fill.h5repack_fill.h5 PASSED +objs h5repack_objs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_objs.h5 out-objs.h5repack_objs.h5 PASSED +attr h5repack_attr.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_attr.h5 out-attr.h5repack_attr.h5 PASSED +hlink h5repack_hlink.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_hlink.h5 out-hlink.h5repack_hlink.h5 PASSED +layout h5repack_layout.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_layout.h5 out-layout.h5repack_layout. PASSED +early h5repack_early.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_early.h5 out-early.h5repack_early.h5 PASSED +nested_8bit_enum h5repack_nested_8bit_enum_deflated.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_nested_8bit_enum_deflated.h5 out-nest PASSED +gzip_individual h5repack_layout.h5 -f dset1:GZIP=1 -l dset1:CHUNK=20x10 +Testing h5repack -f dset1:GZIP=1 -l dset1:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-gzip_individual.h5repac PASSED +gzip_all h5repack_layout.h5 -f GZIP=1 +Testing h5repack -f GZIP=1 PASSED +Verifying h5diff output h5repack_layout.h5 out-gzip_all.h5repack_layou PASSED +Testing h5repack h5repack_layout.h5 -f dset2:SZIP=8,EC -l dset2:CHUNK= -SKIP- +Testing h5repack h5repack_layout.h5 -f SZIP=8,NN -SKIP- +shuffle_individual h5repack_layout.h5 -f dset2:SHUF -l dset2:CHUNK=20x10 +Testing h5repack -f dset2:SHUF -l dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-shuffle_individual.h5re PASSED +shuffle_all h5repack_layout.h5 -f SHUF +Testing h5repack -f SHUF PASSED +Verifying h5diff output h5repack_layout.h5 out-shuffle_all.h5repack_la PASSED +fletcher_individual h5repack_layout.h5 -f dset2:FLET -l dset2:CHUNK=20x10 +Testing h5repack -f dset2:FLET -l dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-fletcher_individual.h5r PASSED +fletcher_all h5repack_layout.h5 -f FLET +Testing h5repack -f FLET PASSED +Verifying h5diff output h5repack_layout.h5 out-fletcher_all.h5repack_l PASSED +Testing h5repack h5repack_layout.h5 -f dset2:SHUF -f dset2:FLET -f dse -SKIP- +Testing h5repack -v -f /dset_deflate:GZIP=9 PASSED +Verifying h5diff output h5repack_filters.h5 out-gzip_verbose_filters.h PASSED +Verifying output from h5repack -v -f /dset_deflate:GZIP=9 PASSED +Testing h5repack h5repack_szip.h5 -SKIP- +Testing h5repack h5repack_szip.h5 --filter=dset_szip:NONE -SKIP- +deflate_copy h5repack_deflate.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_deflate.h5 out-deflate_copy.h5repack_ PASSED +deflate_remove h5repack_deflate.h5 -f dset_deflate:NONE +Testing h5repack -f dset_deflate:NONE PASSED +Verifying h5diff output h5repack_deflate.h5 out-deflate_remove.h5repac PASSED +shuffle_copy h5repack_shuffle.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_shuffle.h5 out-shuffle_copy.h5repack_ PASSED +shuffle_remove h5repack_shuffle.h5 -f dset_shuffle:NONE +Testing h5repack -f dset_shuffle:NONE PASSED +Verifying h5diff output h5repack_shuffle.h5 out-shuffle_remove.h5repac PASSED +fletcher_copy h5repack_fletcher.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_fletcher.h5 out-fletcher_copy.h5repac PASSED +fletcher_remove h5repack_fletcher.h5 -f dset_fletcher32:NONE +Testing h5repack -f dset_fletcher32:NONE PASSED +Verifying h5diff output h5repack_fletcher.h5 out-fletcher_remove.h5rep PASSED +nbit_copy h5repack_nbit.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_copy.h5repack_nbit.h PASSED +nbit_remove h5repack_nbit.h5 -f dset_nbit:NONE +Testing h5repack -f dset_nbit:NONE PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_remove.h5repack_nbit PASSED +nbit_add h5repack_nbit.h5 -f dset_int31:NBIT +Testing h5repack -f dset_int31:NBIT PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_add.h5repack_nbit.h5 PASSED +scale_copy h5repack_soffset.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_copy.h5repack_so PASSED +scale_add h5repack_soffset.h5 -f dset_none:SOFF=31,IN +Testing h5repack -f dset_none:SOFF=31,IN PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_add.h5repack_sof PASSED +scale_remove h5repack_soffset.h5 -f dset_scaleoffset:NONE +Testing h5repack -f dset_scaleoffset:NONE PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_remove.h5repack_ PASSED +Testing h5repack h5repack_filters.h5 -f NONE -SKIP- +Testing h5repack h5repack_deflate.h5 -f dset_deflate:SZIP=8,NN -SKIP- +Testing h5repack h5repack_szip.h5 -f dset_szip:GZIP=1 -SKIP- +Testing h5repack -f GZIP=1 -m 1024 PASSED +Verifying h5dump output -f GZIP=1 -m 1024 PASSED +deflate_file h5repack_layout.h5 -e h5repack.info +Testing h5repack -e h5repack.info PASSED +Verifying h5diff output h5repack_layout.h5 out-deflate_file.h5repack_l PASSED +Testing h5repack -L PASSED +Verifying h5dump output -L PASSED +Testing h5repack --layout dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_chunk_20x10.h5rep PASSED +Verifying a dataset layout PASSED +Testing h5repack -l CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_20x10.h5repack_la PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset2:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_conti.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-conti.h5repack_layout.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset2:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_compa.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-compa.h5repack_layout.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset_compact:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_conti.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_compact:CHUNK=2x5 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_chunk.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_compact:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_compa.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_compa.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:CHUNK=3x6 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_chunk.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_conti.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_compa.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_conti.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:CHUNK=18x13 PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_18x13.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l contig_small:COMPA PASSED +Verifying h5diff output h5repack_layout2.h5 out-contig_small_compa.h5r PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunked_small_fixed:COMPA PASSED +Verifying h5diff output h5repack_layout2.h5 out-contig_small_fixed_com PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:CHUNK=100x300 PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2chunk.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2conti.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:COMPA PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2compa.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit1:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error1.h5repack_layout PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit2:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error2.h5repack_layout PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit3:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error3.h5repack_layout PASSED +Verifying a dataset layout PASSED +error4 h5repack_layout3.h5 -f NONE +Testing h5repack -f NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error4.h5repack_layout PASSED +Testing h5repack -l chunk_unlimit2:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-ckdim_biger.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit3:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-ckdim_smaller.h5repack PASSED +Verifying a dataset layout PASSED +native_fill h5repack_fill.h5 -n +Testing h5repack -n PASSED +Verifying h5diff output h5repack_fill.h5 out-native_fill.h5repack_fill PASSED +native_attr h5repack_attr.h5 -n +Testing h5repack -n PASSED +Verifying h5diff output h5repack_attr.h5 out-native_attr.h5repack_attr PASSED +Testing h5repack --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --n PASSED +Verifying h5diff output h5repack_layout.h5 out-layout_long_switches.h5 PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED +Verifying h5diff output h5repack_layout.h5 out-layout_short_switches.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +global_filters h5repack_layout.h5 --filter GZIP=1 --filter SHUF +Testing h5repack --filter GZIP=1 --filter SHUF PASSED +Verifying h5diff output h5repack_layout.h5 out-global_filters.h5repack PASSED +Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED +Verifying h5diff output h5repack_layout.h5 out-old_style_layout_short_ PASSED +add_userblock h5repack_objs.h5 -u ublock.bin -b 2048 +Testing h5repack -u ublock.bin -b 2048 PASSED +Verifying h5diff output h5repack_objs.h5 out-add_userblock.h5repack_ob PASSED +add_alignment h5repack_objs.h5 -t 1 -a 1 +Testing h5repack -t 1 -a 1 PASSED +Verifying h5diff output h5repack_objs.h5 out-add_alignment.h5repack_ob PASSED +upgrade_layout h5repack_layouto.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_layouto.h5 out-upgrade_layout.h5repac PASSED +gt_mallocsize h5repack_objs.h5 -f GZIP=1 +Testing h5repack -f GZIP=1 PASSED +Verifying h5diff output h5repack_objs.h5 out-gt_mallocsize.h5repack_ob PASSED +committed_dt h5repack_named_dtypes.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_named_dtypes.h5 out-committed_dt.h5re PASSED +Testing h5repack PASSED +Verifying h5diff output tfamily%05d.h5 out-family.tfamily%05d.h5 PASSED +bug1814 h5repack_refs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_refs.h5 out-bug1814.h5repack_refs.h5 PASSED +HDFFV-5932 h5repack_attr_refs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_attr_refs.h5 out-HDFFV-5932.h5repack_ PASSED +HDFFV-7840 h5diff_attr1.h5 +Testing h5repack PASSED +Verifying h5diff output h5diff_attr1.h5 out-HDFFV-7840.h5diff_attr1.h5 PASSED +Testing h5repack -M 8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED +Testing h5repack -M 8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED +Verify the sizes of both output files (27280 vs 27488) PASSED +Testing h5repack --metadata_block_size=8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED +Testing h5repack --metadata_block_size=8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED +Verify the sizes of both output files (27280 vs 27488) PASSED +All h5repack tests passed. +3.64user 4.64system 0:07.26elapsed 114%CPU (0avgtext+0avgdata 11664maxresident)k +0inputs+18840outputs (0major+1441505minor)pagefaults 0swaps + +Finished testing h5repack.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +===Serial tests in h5repack ended Mon May 14 21:12:26 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' +Making check in h5jam +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5jam + CCLD h5unjam + CCLD tellub + CCLD h5jamgentest + CCLD getub +gmake -j 8 tellub h5jamgentest getub testh5jam.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `tellub' is up to date. +gmake[3]: `h5jamgentest' is up to date. +gmake[3]: `getub' is up to date. +gmake[3]: `testh5jam.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5jam begin Mon May 14 21:12:27 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing testh5jam.sh +Finished testing testh5jam.sh +============================ +testh5jam.sh Test Log +============================ +Testing h5jam -h PASSED +Testing h5jam -i tall.h5 -u tall.h5 -o tall-tmp.h5 PASSED +Testing h5jam -u u10.txt -i tall.h5 -o ta2.h5 PASSED +Compare ta2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i tall.h5 -o ta3.h5 PASSED +Compare ta3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i tall.h5 -o ta4.h5 PASSED +Compare ta4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i tall.h5 -o ta5.h5 PASSED +Compare ta5.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i ta6.h5 PASSED +Compare ta6.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i ta7.h5 PASSED +Compare ta7.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i ta8.h5 PASSED +Compare ta8.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i ta9.h5 PASSED +Compare ta9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub.h5 -o tax2.h5 PASSED +Compare tax2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub.h5 -o tax3.h5 PASSED +Compare tax3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub.h5 -o tax4.h5 PASSED +Compare tax4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub.h5 -o tax5.h5 PASSED +Compare tax5.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub513.h5 -o tax6.h5 PASSED +Compare tax6.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub513.h5 -o tax7.h5 PASSED +Compare tax7.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub513.h5 -o tax8.h5 PASSED +Compare tax8.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub513.h5 -o tax9.h5 PASSED +Compare tax9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub.h5 -o taz2.h5 --clobber PASSED +Compare taz2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub.h5 -o taz3.h5 --clobber PASSED +Compare taz3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub.h5 -o taz4.h5 --clobber PASSED +Compare taz4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub.h5 -o taz5.h5 --clobber PASSED +Compare taz5.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub513.h5 -o taz6.h5 --clobber PASSED +Compare taz6.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub513.h5 -o taz7.h5 --clobber PASSED +Compare taz7.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub513.h5 -o taz8.h5 --clobber PASSED +Compare taz8.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub513.h5 -o taz9.h5 --clobber PASSED +Compare taz9.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i tay2.h5 --clobber PASSED +Compare tay2.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i tay3.h5 --clobber PASSED +Compare tay3.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i tay4.h5 --clobber PASSED +Compare tay4.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i tay5.h5 --clobber PASSED +Compare tay5.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i tay6.h5 --clobber PASSED +Compare tay6.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i tay7.h5 --clobber PASSED +Compare tay7.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i tay8.h5 --clobber PASSED +Compare tay8.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i tay9.h5 --clobber PASSED +Compare tay9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -h PASSED +Testing h5unjam -i tai1.h5 -u o10.txt -o taa1.h5 PASSED +Compare taa1.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai2.h5 -u o512.txt -o taa2.h5 PASSED +Compare taa2.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai3.h5 -o taa3.h5 > uofile PASSED +Compare taa3.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai4.h5 -o taa4.h5 > uofile PASSED +Compare taa4.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i taj2.h5 -o tac2.h5 --delete PASSED +Compare tac2.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i taj3.h5 -o tac3.h5 --delete PASSED +Compare tac3.h5 to ./testfiles/tall.h5 PASSED +All h5jam/h5unjam tests passed. +3.01user 4.61system 0:06.54elapsed 116%CPU (0avgtext+0avgdata 7316maxresident)k +0inputs+5448outputs (0major+1433222minor)pagefaults 0swaps + +Finished testing testh5jam.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +===Serial tests in h5jam ended Mon May 14 21:12:33 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' +Making check in h5copy +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5copy + CCLD h5copygentest +gmake -j 8 h5copygentest testh5copy.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5copygentest' is up to date. +gmake[3]: `testh5copy.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5copy begin Mon May 14 21:12:34 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5copygentest +============================ +Testing testh5copy.sh +============================ + h5copygentest Test Log +============================ +0.05user 0.02system 0:00.12elapsed 66%CPU (0avgtext+0avgdata 6924maxresident)k +0inputs+184outputs (0major+9711minor)pagefaults 0swaps + +Finished testing h5copygentest +============================ +Finished testing testh5copy.sh +============================ +testh5copy.sh Test Log +============================ +Test copying various forms of datasets +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple.out.h PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple.ou PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/chunk.out.h5 PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/chunk.out PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compact.out. PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compact.o PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compound.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compound. PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compressed.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compresse PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/named_vl.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/named_vl. PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/nested_vl.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/nested_vl PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dset_attr.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dset_attr PASSED +Test copying dataset within group in source file to root of destination +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_top.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_to PASSED +Test copying & renaming dataset +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dsrename.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dsrename. PASSED +Test copying empty, 'full' & 'nested' groups +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_empty.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_empty PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_nested.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_neste PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_attr.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_attr. PASSED +Test copying dataset within group in source file to group in destination +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_groupTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_group PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_gr PASSED +Test copying & renaming group +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_rename.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_renam PASSED +Test copying 'full' group hierarchy into group in destination file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_reTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_re PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED +Test copying objects into group hier. that doesn't exist yet in destination file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B1_simple. PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B1_simp PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B2_simple2 PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B2_simp PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/C_D_simple.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/C_D_simpl PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/E_F_grp_dset PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/E_F_grp_d PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/G_H_grp_nest PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/G_H_grp_n PASSED +Test copying object and region references +Testing h5copy -f ref -i ./testfiles/h5copy_ref.h5 -o ./testfiles/regi PASSED +Test copying external link directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying external link directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying dangling external link (no obj) directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying dangling external link (no obj) directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying dangling external link (no file) directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying dangling external link (no file) directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying a group contains external links without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying a group contains external links with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying object into group which doesn't exist, without -p +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/h5copy_misc1 PASSED +Verifying output files ./testfiles/h5copy_misc1.out ./testfiles/h5copy PASSED +Test copying objects to the same file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ou PASSED +Verifying h5diff output ./testfiles/samefile1.out.h5 ./testfiles/samef PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ou PASSED +Verifying h5diff output ./testfiles/samefile2.out.h5 ./testfiles/samef PASSED +All h5copy tests passed. +1.04user 1.45system 0:02.15elapsed 115%CPU (0avgtext+0avgdata 7300maxresident)k +0inputs+1992outputs (0major+445647minor)pagefaults 0swaps + +Finished testing testh5copy.sh +============================ +============================ +gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +===Serial tests in h5copy ended Mon May 14 21:12:36 CDT 2018=== +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' +Making check in h5stat +gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake[2]: warning: -jN forced in submake: disabling jobserver mode. + CCLD h5stat + CCLD h5stat_gentest +gmake -j 8 h5stat_gentest testh5stat.sh +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[3]: `h5stat_gentest' is up to date. +gmake[3]: `testh5stat.sh' is up to date. +gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake -j 8 check-TESTS +gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake[3]: warning: -jN forced in submake: disabling jobserver mode. +gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake[4]: warning: -jN forced in submake: disabling jobserver mode. +===Serial tests in h5stat begin Mon May 14 21:12:36 CDT 2018=== +gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' +gmake[5]: warning: -jN forced in submake: disabling jobserver mode. +============================ +Testing h5stat_gentest +============================ +Testing testh5stat.sh +============================ + h5stat_gentest Test Log +============================ +1.17user 0.04system 0:01.27elapsed 96%CPU (0avgtext+0avgdata 17172maxresident)k +0inputs+12552outputs (0major+12044minor)pagefaults 0swaps + +Finished testing h5stat_gentest +============================ +gmake[1]: *** [check-recursive] Hangup +gmake[5]: *** [testh5stat.sh.chkexe_] Hangup +make: *** [check-recursive] Hangup +gmake[4]: *** [build-check-s] Hangup +gmake[3]: *** [test] Hangup +gmake[2]: *** [check-am] Hangup diff --git a/build/src/.deps/H5.Plo b/build/src/.deps/H5.Plo new file mode 100644 index 0000000..29490d8 --- /dev/null +++ b/build/src/.deps/H5.Plo @@ -0,0 +1,372 @@ +H5.lo: ../../src/H5.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5A.Plo b/build/src/.deps/H5A.Plo new file mode 100644 index 0000000..9d96505 --- /dev/null +++ b/build/src/.deps/H5A.Plo @@ -0,0 +1,384 @@ +H5A.lo: ../../src/H5A.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ + ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5AC.Plo b/build/src/.deps/H5AC.Plo new file mode 100644 index 0000000..1c35feb --- /dev/null +++ b/build/src/.deps/H5AC.Plo @@ -0,0 +1,386 @@ +H5AC.lo: ../../src/H5AC.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACpkg.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Cpkg.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACpkg.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Cpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Abtree2.Plo b/build/src/.deps/H5Abtree2.Plo new file mode 100644 index 0000000..951b286 --- /dev/null +++ b/build/src/.deps/H5Abtree2.Plo @@ -0,0 +1,377 @@ +H5Abtree2.lo: ../../src/H5Abtree2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Adense.Plo b/build/src/.deps/H5Adense.Plo new file mode 100644 index 0000000..2ff9bbd --- /dev/null +++ b/build/src/.deps/H5Adense.Plo @@ -0,0 +1,384 @@ +H5Adense.lo: ../../src/H5Adense.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5SMprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5SMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Adeprec.Plo b/build/src/.deps/H5Adeprec.Plo new file mode 100644 index 0000000..0bfe96c --- /dev/null +++ b/build/src/.deps/H5Adeprec.Plo @@ -0,0 +1,388 @@ +H5Adeprec.lo: ../../src/H5Adeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Aint.Plo b/build/src/.deps/H5Aint.Plo new file mode 100644 index 0000000..505da6e --- /dev/null +++ b/build/src/.deps/H5Aint.Plo @@ -0,0 +1,393 @@ +H5Aint.lo: ../../src/H5Aint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Opkg.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Atest.Plo b/build/src/.deps/H5Atest.Plo new file mode 100644 index 0000000..b605e50 --- /dev/null +++ b/build/src/.deps/H5Atest.Plo @@ -0,0 +1,379 @@ +H5Atest.lo: ../../src/H5Atest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5B.Plo b/build/src/.deps/H5B.Plo new file mode 100644 index 0000000..f195ffd --- /dev/null +++ b/build/src/.deps/H5B.Plo @@ -0,0 +1,374 @@ +H5B.lo: ../../src/H5B.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Bpkg.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MFprivate.h: diff --git a/build/src/.deps/H5B2.Plo b/build/src/.deps/H5B2.Plo new file mode 100644 index 0000000..9f5b27c --- /dev/null +++ b/build/src/.deps/H5B2.Plo @@ -0,0 +1,332 @@ +H5B2.lo: ../../src/H5B2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2cache.Plo b/build/src/.deps/H5B2cache.Plo new file mode 100644 index 0000000..0758bda --- /dev/null +++ b/build/src/.deps/H5B2cache.Plo @@ -0,0 +1,344 @@ +H5B2cache.lo: ../../src/H5B2cache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5B2dbg.Plo b/build/src/.deps/H5B2dbg.Plo new file mode 100644 index 0000000..8d15f8d --- /dev/null +++ b/build/src/.deps/H5B2dbg.Plo @@ -0,0 +1,332 @@ +H5B2dbg.lo: ../../src/H5B2dbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2hdr.Plo b/build/src/.deps/H5B2hdr.Plo new file mode 100644 index 0000000..adec0ad --- /dev/null +++ b/build/src/.deps/H5B2hdr.Plo @@ -0,0 +1,344 @@ +H5B2hdr.lo: ../../src/H5B2hdr.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5B2int.Plo b/build/src/.deps/H5B2int.Plo new file mode 100644 index 0000000..69f6aa6 --- /dev/null +++ b/build/src/.deps/H5B2int.Plo @@ -0,0 +1,344 @@ +H5B2int.lo: ../../src/H5B2int.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5B2stat.Plo b/build/src/.deps/H5B2stat.Plo new file mode 100644 index 0000000..edf1ba8 --- /dev/null +++ b/build/src/.deps/H5B2stat.Plo @@ -0,0 +1,332 @@ +H5B2stat.lo: ../../src/H5B2stat.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2test.Plo b/build/src/.deps/H5B2test.Plo new file mode 100644 index 0000000..c621059 --- /dev/null +++ b/build/src/.deps/H5B2test.Plo @@ -0,0 +1,332 @@ +H5B2test.lo: ../../src/H5B2test.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5Bcache.Plo b/build/src/.deps/H5Bcache.Plo new file mode 100644 index 0000000..5f3728f --- /dev/null +++ b/build/src/.deps/H5Bcache.Plo @@ -0,0 +1,344 @@ +H5Bcache.lo: ../../src/H5Bcache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Bpkg.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Bdbg.Plo b/build/src/.deps/H5Bdbg.Plo new file mode 100644 index 0000000..47ee824 --- /dev/null +++ b/build/src/.deps/H5Bdbg.Plo @@ -0,0 +1,337 @@ +H5Bdbg.lo: ../../src/H5Bdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Bpkg.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5C.Plo b/build/src/.deps/H5C.Plo new file mode 100644 index 0000000..6176445 --- /dev/null +++ b/build/src/.deps/H5C.Plo @@ -0,0 +1,384 @@ +H5C.lo: ../../src/H5C.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Cpkg.h ../../src/H5Cprivate.h \ + ../../src/H5Cpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Fpkg.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Cpkg.h: + +../../src/H5Cprivate.h: + +../../src/H5Cpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5CS.Plo b/build/src/.deps/H5CS.Plo new file mode 100644 index 0000000..c2b6716 --- /dev/null +++ b/build/src/.deps/H5CS.Plo @@ -0,0 +1,286 @@ +H5CS.lo: ../../src/H5CS.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5CSprivate.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5CSprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5D.Plo b/build/src/.deps/H5D.Plo new file mode 100644 index 0000000..7149d26 --- /dev/null +++ b/build/src/.deps/H5D.Plo @@ -0,0 +1,372 @@ +H5D.lo: ../../src/H5D.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Dbtree.Plo b/build/src/.deps/H5Dbtree.Plo new file mode 100644 index 0000000..fadfe53 --- /dev/null +++ b/build/src/.deps/H5Dbtree.Plo @@ -0,0 +1,377 @@ +H5Dbtree.lo: ../../src/H5Dbtree.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dchunk.Plo b/build/src/.deps/H5Dchunk.Plo new file mode 100644 index 0000000..8a50b33 --- /dev/null +++ b/build/src/.deps/H5Dchunk.Plo @@ -0,0 +1,377 @@ +H5Dchunk.lo: ../../src/H5Dchunk.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dcompact.Plo b/build/src/.deps/H5Dcompact.Plo new file mode 100644 index 0000000..f55c825 --- /dev/null +++ b/build/src/.deps/H5Dcompact.Plo @@ -0,0 +1,377 @@ +H5Dcompact.lo: ../../src/H5Dcompact.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dcontig.Plo b/build/src/.deps/H5Dcontig.Plo new file mode 100644 index 0000000..00e4758 --- /dev/null +++ b/build/src/.deps/H5Dcontig.Plo @@ -0,0 +1,377 @@ +H5Dcontig.lo: ../../src/H5Dcontig.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Ddbg.Plo b/build/src/.deps/H5Ddbg.Plo new file mode 100644 index 0000000..66572af --- /dev/null +++ b/build/src/.deps/H5Ddbg.Plo @@ -0,0 +1,370 @@ +H5Ddbg.lo: ../../src/H5Ddbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Ddeprec.Plo b/build/src/.deps/H5Ddeprec.Plo new file mode 100644 index 0000000..0069e3f --- /dev/null +++ b/build/src/.deps/H5Ddeprec.Plo @@ -0,0 +1,370 @@ +H5Ddeprec.lo: ../../src/H5Ddeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Defl.Plo b/build/src/.deps/H5Defl.Plo new file mode 100644 index 0000000..e8af7d7 --- /dev/null +++ b/build/src/.deps/H5Defl.Plo @@ -0,0 +1,377 @@ +H5Defl.lo: ../../src/H5Defl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dfill.Plo b/build/src/.deps/H5Dfill.Plo new file mode 100644 index 0000000..a1620cf --- /dev/null +++ b/build/src/.deps/H5Dfill.Plo @@ -0,0 +1,377 @@ +H5Dfill.lo: ../../src/H5Dfill.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5VMprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Dint.Plo b/build/src/.deps/H5Dint.Plo new file mode 100644 index 0000000..7e20ceb --- /dev/null +++ b/build/src/.deps/H5Dint.Plo @@ -0,0 +1,379 @@ +H5Dint.lo: ../../src/H5Dint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Dio.Plo b/build/src/.deps/H5Dio.Plo new file mode 100644 index 0000000..e3a9fd5 --- /dev/null +++ b/build/src/.deps/H5Dio.Plo @@ -0,0 +1,374 @@ +H5Dio.lo: ../../src/H5Dio.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Dlayout.Plo b/build/src/.deps/H5Dlayout.Plo new file mode 100644 index 0000000..fa5014bb --- /dev/null +++ b/build/src/.deps/H5Dlayout.Plo @@ -0,0 +1,372 @@ +H5Dlayout.lo: ../../src/H5Dlayout.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Dmpio.Plo b/build/src/.deps/H5Dmpio.Plo new file mode 100644 index 0000000..4ee6f87 --- /dev/null +++ b/build/src/.deps/H5Dmpio.Plo @@ -0,0 +1,374 @@ +H5Dmpio.lo: ../../src/H5Dmpio.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Doh.Plo b/build/src/.deps/H5Doh.Plo new file mode 100644 index 0000000..bdf46df --- /dev/null +++ b/build/src/.deps/H5Doh.Plo @@ -0,0 +1,374 @@ +H5Doh.lo: ../../src/H5Doh.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Dscatgath.Plo b/build/src/.deps/H5Dscatgath.Plo new file mode 100644 index 0000000..7365830 --- /dev/null +++ b/build/src/.deps/H5Dscatgath.Plo @@ -0,0 +1,372 @@ +H5Dscatgath.lo: ../../src/H5Dscatgath.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Dselect.Plo b/build/src/.deps/H5Dselect.Plo new file mode 100644 index 0000000..885cb4f --- /dev/null +++ b/build/src/.deps/H5Dselect.Plo @@ -0,0 +1,370 @@ +H5Dselect.lo: ../../src/H5Dselect.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Dtest.Plo b/build/src/.deps/H5Dtest.Plo new file mode 100644 index 0000000..7ddedc9 --- /dev/null +++ b/build/src/.deps/H5Dtest.Plo @@ -0,0 +1,370 @@ +H5Dtest.lo: ../../src/H5Dtest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5E.Plo b/build/src/.deps/H5E.Plo new file mode 100644 index 0000000..7e21cb4 --- /dev/null +++ b/build/src/.deps/H5E.Plo @@ -0,0 +1,304 @@ +H5E.lo: ../../src/H5E.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Iprivate.h ../../src/H5Ipublic.h \ + ../../src/H5Epkg.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Einit.h ../../src/H5Eterm.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Iprivate.h: + +../../src/H5Ipublic.h: + +../../src/H5Epkg.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Einit.h: + +../../src/H5Eterm.h: diff --git a/build/src/.deps/H5Edeprec.Plo b/build/src/.deps/H5Edeprec.Plo new file mode 100644 index 0000000..bdb81ab --- /dev/null +++ b/build/src/.deps/H5Edeprec.Plo @@ -0,0 +1,300 @@ +H5Edeprec.lo: ../../src/H5Edeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Iprivate.h ../../src/H5Ipublic.h \ + ../../src/H5Epkg.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Iprivate.h: + +../../src/H5Ipublic.h: + +../../src/H5Epkg.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5Eint.Plo b/build/src/.deps/H5Eint.Plo new file mode 100644 index 0000000..3b3355d --- /dev/null +++ b/build/src/.deps/H5Eint.Plo @@ -0,0 +1,300 @@ +H5Eint.lo: ../../src/H5Eint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Epkg.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Edefin.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Epkg.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Edefin.h: diff --git a/build/src/.deps/H5F.Plo b/build/src/.deps/H5F.Plo new file mode 100644 index 0000000..cce5efc --- /dev/null +++ b/build/src/.deps/H5F.Plo @@ -0,0 +1,391 @@ +H5F.lo: ../../src/H5F.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ + ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ + ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5FD.Plo b/build/src/.deps/H5FD.Plo new file mode 100644 index 0000000..2ea3395 --- /dev/null +++ b/build/src/.deps/H5FD.Plo @@ -0,0 +1,400 @@ +H5FD.lo: ../../src/H5FD.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5FSprivate.h \ + ../../src/H5FSpublic.h ../../src/H5FDpkg.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5FDpkg.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDcore.Plo b/build/src/.deps/H5FDcore.Plo new file mode 100644 index 0000000..8f0824c --- /dev/null +++ b/build/src/.deps/H5FDcore.Plo @@ -0,0 +1,337 @@ +H5FDcore.lo: ../../src/H5FDcore.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDcore.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDcore.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5FDdirect.Plo b/build/src/.deps/H5FDdirect.Plo new file mode 100644 index 0000000..9241367 --- /dev/null +++ b/build/src/.deps/H5FDdirect.Plo @@ -0,0 +1,335 @@ +H5FDdirect.lo: ../../src/H5FDdirect.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDdirect.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDdirect.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDfamily.Plo b/build/src/.deps/H5FDfamily.Plo new file mode 100644 index 0000000..14ce03a --- /dev/null +++ b/build/src/.deps/H5FDfamily.Plo @@ -0,0 +1,332 @@ +H5FDfamily.lo: ../../src/H5FDfamily.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDfamily.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDfamily.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDint.Plo b/build/src/.deps/H5FDint.Plo new file mode 100644 index 0000000..3e551d6 --- /dev/null +++ b/build/src/.deps/H5FDint.Plo @@ -0,0 +1,332 @@ +H5FDint.lo: ../../src/H5FDint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDpkg.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDpkg.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5FDlog.Plo b/build/src/.deps/H5FDlog.Plo new file mode 100644 index 0000000..0c5a1b4 --- /dev/null +++ b/build/src/.deps/H5FDlog.Plo @@ -0,0 +1,335 @@ +H5FDlog.lo: ../../src/H5FDlog.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDlog.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDlog.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDmpi.Plo b/build/src/.deps/H5FDmpi.Plo new file mode 100644 index 0000000..49e1279 --- /dev/null +++ b/build/src/.deps/H5FDmpi.Plo @@ -0,0 +1,325 @@ +H5FDmpi.lo: ../../src/H5FDmpi.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FDmpio.Plo b/build/src/.deps/H5FDmpio.Plo new file mode 100644 index 0000000..b66a22c --- /dev/null +++ b/build/src/.deps/H5FDmpio.Plo @@ -0,0 +1,370 @@ +H5FDmpio.lo: ../../src/H5FDmpio.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDmulti.Plo b/build/src/.deps/H5FDmulti.Plo new file mode 100644 index 0000000..48290e5 --- /dev/null +++ b/build/src/.deps/H5FDmulti.Plo @@ -0,0 +1,199 @@ +H5FDmulti.lo: ../../src/H5FDmulti.c /usr/include/stdc-predef.h \ + /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h ../../src/hdf5.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/assert.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/stdlib.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/src/.deps/H5FDsec2.Plo b/build/src/.deps/H5FDsec2.Plo new file mode 100644 index 0000000..bca908d --- /dev/null +++ b/build/src/.deps/H5FDsec2.Plo @@ -0,0 +1,335 @@ +H5FDsec2.lo: ../../src/H5FDsec2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDsec2.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDsec2.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDspace.Plo b/build/src/.deps/H5FDspace.Plo new file mode 100644 index 0000000..71265f9 --- /dev/null +++ b/build/src/.deps/H5FDspace.Plo @@ -0,0 +1,332 @@ +H5FDspace.lo: ../../src/H5FDspace.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FDpkg.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FLprivate.h ../../src/H5FDmulti.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDpkg.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FLprivate.h: + +../../src/H5FDmulti.h: diff --git a/build/src/.deps/H5FDstdio.Plo b/build/src/.deps/H5FDstdio.Plo new file mode 100644 index 0000000..610c35c --- /dev/null +++ b/build/src/.deps/H5FDstdio.Plo @@ -0,0 +1,215 @@ +H5FDstdio.lo: ../../src/H5FDstdio.c /usr/include/stdc-predef.h \ + /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h ../../src/hdf5.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ + ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h + +/usr/include/stdc-predef.h: + +/usr/include/assert.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/sys/stat.h: + +/usr/include/bits/stat.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: diff --git a/build/src/.deps/H5FL.Plo b/build/src/.deps/H5FL.Plo new file mode 100644 index 0000000..d19aed1 --- /dev/null +++ b/build/src/.deps/H5FL.Plo @@ -0,0 +1,295 @@ +H5FL.lo: ../../src/H5FL.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5FO.Plo b/build/src/.deps/H5FO.Plo new file mode 100644 index 0000000..48e60fd --- /dev/null +++ b/build/src/.deps/H5FO.Plo @@ -0,0 +1,365 @@ +H5FO.lo: ../../src/H5FO.c /usr/include/stdc-predef.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fpkg.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Bpublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5SLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5FS.Plo b/build/src/.deps/H5FS.Plo new file mode 100644 index 0000000..7f18d53 --- /dev/null +++ b/build/src/.deps/H5FS.Plo @@ -0,0 +1,344 @@ +H5FS.lo: ../../src/H5FS.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5FLprivate.h \ + ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FScache.Plo b/build/src/.deps/H5FScache.Plo new file mode 100644 index 0000000..a5e3d0b --- /dev/null +++ b/build/src/.deps/H5FScache.Plo @@ -0,0 +1,349 @@ +H5FScache.lo: ../../src/H5FScache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5FLprivate.h \ + ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5FSdbg.Plo b/build/src/.deps/H5FSdbg.Plo new file mode 100644 index 0000000..2b2462f --- /dev/null +++ b/build/src/.deps/H5FSdbg.Plo @@ -0,0 +1,377 @@ +H5FSdbg.lo: ../../src/H5FSdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FSsection.Plo b/build/src/.deps/H5FSsection.Plo new file mode 100644 index 0000000..917b5d4 --- /dev/null +++ b/build/src/.deps/H5FSsection.Plo @@ -0,0 +1,346 @@ +H5FSsection.lo: ../../src/H5FSsection.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5FSstat.Plo b/build/src/.deps/H5FSstat.Plo new file mode 100644 index 0000000..e33e561 --- /dev/null +++ b/build/src/.deps/H5FSstat.Plo @@ -0,0 +1,335 @@ +H5FSstat.lo: ../../src/H5FSstat.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5FStest.Plo b/build/src/.deps/H5FStest.Plo new file mode 100644 index 0000000..beacdfe --- /dev/null +++ b/build/src/.deps/H5FStest.Plo @@ -0,0 +1,335 @@ +H5FStest.lo: ../../src/H5FStest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Faccum.Plo b/build/src/.deps/H5Faccum.Plo new file mode 100644 index 0000000..5a6d343 --- /dev/null +++ b/build/src/.deps/H5Faccum.Plo @@ -0,0 +1,374 @@ +H5Faccum.lo: ../../src/H5Faccum.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Fcwfs.Plo b/build/src/.deps/H5Fcwfs.Plo new file mode 100644 index 0000000..e8848c8 --- /dev/null +++ b/build/src/.deps/H5Fcwfs.Plo @@ -0,0 +1,381 @@ +H5Fcwfs.lo: ../../src/H5Fcwfs.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Fdbg.Plo b/build/src/.deps/H5Fdbg.Plo new file mode 100644 index 0000000..71dd7ef --- /dev/null +++ b/build/src/.deps/H5Fdbg.Plo @@ -0,0 +1,384 @@ +H5Fdbg.lo: ../../src/H5Fdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fefc.Plo b/build/src/.deps/H5Fefc.Plo new file mode 100644 index 0000000..51ac479 --- /dev/null +++ b/build/src/.deps/H5Fefc.Plo @@ -0,0 +1,367 @@ +H5Fefc.lo: ../../src/H5Fefc.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ffake.Plo b/build/src/.deps/H5Ffake.Plo new file mode 100644 index 0000000..39ffa47 --- /dev/null +++ b/build/src/.deps/H5Ffake.Plo @@ -0,0 +1,365 @@ +H5Ffake.lo: ../../src/H5Ffake.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Fint.Plo b/build/src/.deps/H5Fint.Plo new file mode 100644 index 0000000..abc1d38 --- /dev/null +++ b/build/src/.deps/H5Fint.Plo @@ -0,0 +1,407 @@ +H5Fint.lo: ../../src/H5Fint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ + ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ + ../../src/H5SMprivate.h ../../src/H5FDcore.h ../../src/H5FDfamily.h \ + ../../src/H5FDlog.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5SMprivate.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/src/.deps/H5Fio.Plo b/build/src/.deps/H5Fio.Plo new file mode 100644 index 0000000..0fd0d69 --- /dev/null +++ b/build/src/.deps/H5Fio.Plo @@ -0,0 +1,374 @@ +H5Fio.lo: ../../src/H5Fio.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fmount.Plo b/build/src/.deps/H5Fmount.Plo new file mode 100644 index 0000000..9466ada --- /dev/null +++ b/build/src/.deps/H5Fmount.Plo @@ -0,0 +1,370 @@ +H5Fmount.lo: ../../src/H5Fmount.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Bpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Fmpi.Plo b/build/src/.deps/H5Fmpi.Plo new file mode 100644 index 0000000..15dc539 --- /dev/null +++ b/build/src/.deps/H5Fmpi.Plo @@ -0,0 +1,374 @@ +H5Fmpi.lo: ../../src/H5Fmpi.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fquery.Plo b/build/src/.deps/H5Fquery.Plo new file mode 100644 index 0000000..623c903 --- /dev/null +++ b/build/src/.deps/H5Fquery.Plo @@ -0,0 +1,372 @@ +H5Fquery.lo: ../../src/H5Fquery.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Fsfile.Plo b/build/src/.deps/H5Fsfile.Plo new file mode 100644 index 0000000..d44ede2 --- /dev/null +++ b/build/src/.deps/H5Fsfile.Plo @@ -0,0 +1,372 @@ +H5Fsfile.lo: ../../src/H5Fsfile.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Fsuper.Plo b/build/src/.deps/H5Fsuper.Plo new file mode 100644 index 0000000..94c9de1 --- /dev/null +++ b/build/src/.deps/H5Fsuper.Plo @@ -0,0 +1,379 @@ +H5Fsuper.lo: ../../src/H5Fsuper.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Bpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Fsuper_cache.Plo b/build/src/.deps/H5Fsuper_cache.Plo new file mode 100644 index 0000000..cf5f6c8 --- /dev/null +++ b/build/src/.deps/H5Fsuper_cache.Plo @@ -0,0 +1,395 @@ +H5Fsuper_cache.lo: ../../src/H5Fsuper_cache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Ftest.Plo b/build/src/.deps/H5Ftest.Plo new file mode 100644 index 0000000..0508435 --- /dev/null +++ b/build/src/.deps/H5Ftest.Plo @@ -0,0 +1,388 @@ +H5Ftest.lo: ../../src/H5Ftest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5SMpkg.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5G.Plo b/build/src/.deps/H5G.Plo new file mode 100644 index 0000000..cd46ff3 --- /dev/null +++ b/build/src/.deps/H5G.Plo @@ -0,0 +1,374 @@ +H5G.lo: ../../src/H5G.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Gbtree2.Plo b/build/src/.deps/H5Gbtree2.Plo new file mode 100644 index 0000000..88c389e --- /dev/null +++ b/build/src/.deps/H5Gbtree2.Plo @@ -0,0 +1,372 @@ +H5Gbtree2.lo: ../../src/H5Gbtree2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Gcache.Plo b/build/src/.deps/H5Gcache.Plo new file mode 100644 index 0000000..5d83693 --- /dev/null +++ b/build/src/.deps/H5Gcache.Plo @@ -0,0 +1,384 @@ +H5Gcache.lo: ../../src/H5Gcache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Gcompact.Plo b/build/src/.deps/H5Gcompact.Plo new file mode 100644 index 0000000..e1d864f --- /dev/null +++ b/build/src/.deps/H5Gcompact.Plo @@ -0,0 +1,374 @@ +H5Gcompact.lo: ../../src/H5Gcompact.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gdense.Plo b/build/src/.deps/H5Gdense.Plo new file mode 100644 index 0000000..1925a0a --- /dev/null +++ b/build/src/.deps/H5Gdense.Plo @@ -0,0 +1,377 @@ +H5Gdense.lo: ../../src/H5Gdense.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Gdeprec.Plo b/build/src/.deps/H5Gdeprec.Plo new file mode 100644 index 0000000..a279890 --- /dev/null +++ b/build/src/.deps/H5Gdeprec.Plo @@ -0,0 +1,377 @@ +H5Gdeprec.lo: ../../src/H5Gdeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: diff --git a/build/src/.deps/H5Gent.Plo b/build/src/.deps/H5Gent.Plo new file mode 100644 index 0000000..7b787d1 --- /dev/null +++ b/build/src/.deps/H5Gent.Plo @@ -0,0 +1,372 @@ +H5Gent.lo: ../../src/H5Gent.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Gint.Plo b/build/src/.deps/H5Gint.Plo new file mode 100644 index 0000000..f3f3891 --- /dev/null +++ b/build/src/.deps/H5Gint.Plo @@ -0,0 +1,381 @@ +H5Gint.lo: ../../src/H5Gint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FOprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Glink.Plo b/build/src/.deps/H5Glink.Plo new file mode 100644 index 0000000..c44b91e --- /dev/null +++ b/build/src/.deps/H5Glink.Plo @@ -0,0 +1,379 @@ +H5Glink.lo: ../../src/H5Glink.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gloc.Plo b/build/src/.deps/H5Gloc.Plo new file mode 100644 index 0000000..00a7756 --- /dev/null +++ b/build/src/.deps/H5Gloc.Plo @@ -0,0 +1,393 @@ +H5Gloc.lo: ../../src/H5Gloc.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ + ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5Gpkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5Lprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: diff --git a/build/src/.deps/H5Gname.Plo b/build/src/.deps/H5Gname.Plo new file mode 100644 index 0000000..bc59228 --- /dev/null +++ b/build/src/.deps/H5Gname.Plo @@ -0,0 +1,391 @@ +H5Gname.lo: ../../src/H5Gname.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gnode.Plo b/build/src/.deps/H5Gnode.Plo new file mode 100644 index 0000000..d42f181 --- /dev/null +++ b/build/src/.deps/H5Gnode.Plo @@ -0,0 +1,384 @@ +H5Gnode.lo: ../../src/H5Gnode.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gobj.Plo b/build/src/.deps/H5Gobj.Plo new file mode 100644 index 0000000..667df6a --- /dev/null +++ b/build/src/.deps/H5Gobj.Plo @@ -0,0 +1,379 @@ +H5Gobj.lo: ../../src/H5Gobj.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Goh.Plo b/build/src/.deps/H5Goh.Plo new file mode 100644 index 0000000..92ad3bb --- /dev/null +++ b/build/src/.deps/H5Goh.Plo @@ -0,0 +1,377 @@ +H5Goh.lo: ../../src/H5Goh.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Groot.Plo b/build/src/.deps/H5Groot.Plo new file mode 100644 index 0000000..f02931c --- /dev/null +++ b/build/src/.deps/H5Groot.Plo @@ -0,0 +1,386 @@ +H5Groot.lo: ../../src/H5Groot.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gstab.Plo b/build/src/.deps/H5Gstab.Plo new file mode 100644 index 0000000..c4b42f1 --- /dev/null +++ b/build/src/.deps/H5Gstab.Plo @@ -0,0 +1,374 @@ +H5Gstab.lo: ../../src/H5Gstab.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gtest.Plo b/build/src/.deps/H5Gtest.Plo new file mode 100644 index 0000000..3b83747 --- /dev/null +++ b/build/src/.deps/H5Gtest.Plo @@ -0,0 +1,386 @@ +H5Gtest.lo: ../../src/H5Gtest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Gtraverse.Plo b/build/src/.deps/H5Gtraverse.Plo new file mode 100644 index 0000000..6d80482 --- /dev/null +++ b/build/src/.deps/H5Gtraverse.Plo @@ -0,0 +1,393 @@ +H5Gtraverse.lo: ../../src/H5Gtraverse.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ + ../../src/H5MMprivate.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HF.Plo b/build/src/.deps/H5HF.Plo new file mode 100644 index 0000000..8d3fd6f --- /dev/null +++ b/build/src/.deps/H5HF.Plo @@ -0,0 +1,384 @@ +H5HF.lo: ../../src/H5HF.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5SLprivate.h \ + ../../src/H5HFpkg.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FOprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HFbtree2.Plo b/build/src/.deps/H5HFbtree2.Plo new file mode 100644 index 0000000..a9a0091 --- /dev/null +++ b/build/src/.deps/H5HFbtree2.Plo @@ -0,0 +1,381 @@ +H5HFbtree2.lo: ../../src/H5HFbtree2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HFcache.Plo b/build/src/.deps/H5HFcache.Plo new file mode 100644 index 0000000..59930e9 --- /dev/null +++ b/build/src/.deps/H5HFcache.Plo @@ -0,0 +1,388 @@ +H5HFcache.lo: ../../src/H5HFcache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5MMprivate.h ../../src/H5VMprivate.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HFdbg.Plo b/build/src/.deps/H5HFdbg.Plo new file mode 100644 index 0000000..53fbbfd --- /dev/null +++ b/build/src/.deps/H5HFdbg.Plo @@ -0,0 +1,377 @@ +H5HFdbg.lo: ../../src/H5HFdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5HFpkg.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFdblock.Plo b/build/src/.deps/H5HFdblock.Plo new file mode 100644 index 0000000..ff427f9 --- /dev/null +++ b/build/src/.deps/H5HFdblock.Plo @@ -0,0 +1,384 @@ +H5HFdblock.lo: ../../src/H5HFdblock.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HFpkg.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFdtable.Plo b/build/src/.deps/H5HFdtable.Plo new file mode 100644 index 0000000..0355d66 --- /dev/null +++ b/build/src/.deps/H5HFdtable.Plo @@ -0,0 +1,377 @@ +H5HFdtable.lo: ../../src/H5HFdtable.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFhdr.Plo b/build/src/.deps/H5HFhdr.Plo new file mode 100644 index 0000000..fb14a8d --- /dev/null +++ b/build/src/.deps/H5HFhdr.Plo @@ -0,0 +1,384 @@ +H5HFhdr.lo: ../../src/H5HFhdr.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFhuge.Plo b/build/src/.deps/H5HFhuge.Plo new file mode 100644 index 0000000..3baaad0 --- /dev/null +++ b/build/src/.deps/H5HFhuge.Plo @@ -0,0 +1,384 @@ +H5HFhuge.lo: ../../src/H5HFhuge.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HFiblock.Plo b/build/src/.deps/H5HFiblock.Plo new file mode 100644 index 0000000..ac82d1b --- /dev/null +++ b/build/src/.deps/H5HFiblock.Plo @@ -0,0 +1,384 @@ +H5HFiblock.lo: ../../src/H5HFiblock.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HFpkg.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFiter.Plo b/build/src/.deps/H5HFiter.Plo new file mode 100644 index 0000000..0500efc --- /dev/null +++ b/build/src/.deps/H5HFiter.Plo @@ -0,0 +1,374 @@ +H5HFiter.lo: ../../src/H5HFiter.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFman.Plo b/build/src/.deps/H5HFman.Plo new file mode 100644 index 0000000..0984051 --- /dev/null +++ b/build/src/.deps/H5HFman.Plo @@ -0,0 +1,386 @@ +H5HFman.lo: ../../src/H5HFman.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5MMprivate.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFsection.Plo b/build/src/.deps/H5HFsection.Plo new file mode 100644 index 0000000..7eb40db --- /dev/null +++ b/build/src/.deps/H5HFsection.Plo @@ -0,0 +1,377 @@ +H5HFsection.lo: ../../src/H5HFsection.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFspace.Plo b/build/src/.deps/H5HFspace.Plo new file mode 100644 index 0000000..320b421 --- /dev/null +++ b/build/src/.deps/H5HFspace.Plo @@ -0,0 +1,372 @@ +H5HFspace.lo: ../../src/H5HFspace.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFstat.Plo b/build/src/.deps/H5HFstat.Plo new file mode 100644 index 0000000..a0d6faf --- /dev/null +++ b/build/src/.deps/H5HFstat.Plo @@ -0,0 +1,372 @@ +H5HFstat.lo: ../../src/H5HFstat.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFtest.Plo b/build/src/.deps/H5HFtest.Plo new file mode 100644 index 0000000..6e14499 --- /dev/null +++ b/build/src/.deps/H5HFtest.Plo @@ -0,0 +1,372 @@ +H5HFtest.lo: ../../src/H5HFtest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFtiny.Plo b/build/src/.deps/H5HFtiny.Plo new file mode 100644 index 0000000..a6160b3 --- /dev/null +++ b/build/src/.deps/H5HFtiny.Plo @@ -0,0 +1,372 @@ +H5HFtiny.lo: ../../src/H5HFtiny.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HG.Plo b/build/src/.deps/H5HG.Plo new file mode 100644 index 0000000..387d650 --- /dev/null +++ b/build/src/.deps/H5HG.Plo @@ -0,0 +1,344 @@ +H5HG.lo: ../../src/H5HG.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HGpkg.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HGpkg.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HGcache.Plo b/build/src/.deps/H5HGcache.Plo new file mode 100644 index 0000000..df3583d --- /dev/null +++ b/build/src/.deps/H5HGcache.Plo @@ -0,0 +1,344 @@ +H5HGcache.lo: ../../src/H5HGcache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HGpkg.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HGpkg.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HGdbg.Plo b/build/src/.deps/H5HGdbg.Plo new file mode 100644 index 0000000..2e35b49 --- /dev/null +++ b/build/src/.deps/H5HGdbg.Plo @@ -0,0 +1,335 @@ +H5HGdbg.lo: ../../src/H5HGdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGpkg.h \ + ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HGpkg.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5HGquery.Plo b/build/src/.deps/H5HGquery.Plo new file mode 100644 index 0000000..aac9fe1 --- /dev/null +++ b/build/src/.deps/H5HGquery.Plo @@ -0,0 +1,332 @@ +H5HGquery.lo: ../../src/H5HGquery.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HGpkg.h \ + ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HGpkg.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5HL.Plo b/build/src/.deps/H5HL.Plo new file mode 100644 index 0000000..34b0195 --- /dev/null +++ b/build/src/.deps/H5HL.Plo @@ -0,0 +1,342 @@ +H5HL.lo: ../../src/H5HL.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HLpkg.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HLpkg.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HLcache.Plo b/build/src/.deps/H5HLcache.Plo new file mode 100644 index 0000000..cdd17ce --- /dev/null +++ b/build/src/.deps/H5HLcache.Plo @@ -0,0 +1,344 @@ +H5HLcache.lo: ../../src/H5HLcache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HLpkg.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HLdbg.Plo b/build/src/.deps/H5HLdbg.Plo new file mode 100644 index 0000000..f209aff --- /dev/null +++ b/build/src/.deps/H5HLdbg.Plo @@ -0,0 +1,337 @@ +H5HLdbg.lo: ../../src/H5HLdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HLpkg.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HLint.Plo b/build/src/.deps/H5HLint.Plo new file mode 100644 index 0000000..c69a248 --- /dev/null +++ b/build/src/.deps/H5HLint.Plo @@ -0,0 +1,332 @@ +H5HLint.lo: ../../src/H5HLint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HLpkg.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5HP.Plo b/build/src/.deps/H5HP.Plo new file mode 100644 index 0000000..41cbaf5 --- /dev/null +++ b/build/src/.deps/H5HP.Plo @@ -0,0 +1,293 @@ +H5HP.lo: ../../src/H5HP.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HPprivate.h \ + ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HPprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5I.Plo b/build/src/.deps/H5I.Plo new file mode 100644 index 0000000..0fd24b1 --- /dev/null +++ b/build/src/.deps/H5I.Plo @@ -0,0 +1,363 @@ +H5I.lo: ../../src/H5I.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Ipkg.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Ipkg.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Itest.Plo b/build/src/.deps/H5Itest.Plo new file mode 100644 index 0000000..7499035 --- /dev/null +++ b/build/src/.deps/H5Itest.Plo @@ -0,0 +1,342 @@ +H5Itest.lo: ../../src/H5Itest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Ipkg.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Ipkg.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5L.Plo b/build/src/.deps/H5L.Plo new file mode 100644 index 0000000..4c4dc7c --- /dev/null +++ b/build/src/.deps/H5L.Plo @@ -0,0 +1,374 @@ +H5L.lo: ../../src/H5L.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Lpkg.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Lexternal.Plo b/build/src/.deps/H5Lexternal.Plo new file mode 100644 index 0000000..728e733 --- /dev/null +++ b/build/src/.deps/H5Lexternal.Plo @@ -0,0 +1,381 @@ +H5Lexternal.lo: ../../src/H5Lexternal.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lpkg.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5MF.Plo b/build/src/.deps/H5MF.Plo new file mode 100644 index 0000000..8737296 --- /dev/null +++ b/build/src/.deps/H5MF.Plo @@ -0,0 +1,381 @@ +H5MF.lo: ../../src/H5MF.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MFpkg.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MFpkg.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5MFaggr.Plo b/build/src/.deps/H5MFaggr.Plo new file mode 100644 index 0000000..26f7522 --- /dev/null +++ b/build/src/.deps/H5MFaggr.Plo @@ -0,0 +1,377 @@ +H5MFaggr.lo: ../../src/H5MFaggr.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MFpkg.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MFdbg.Plo b/build/src/.deps/H5MFdbg.Plo new file mode 100644 index 0000000..fd5e65f --- /dev/null +++ b/build/src/.deps/H5MFdbg.Plo @@ -0,0 +1,377 @@ +H5MFdbg.lo: ../../src/H5MFdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MFpkg.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MFsection.Plo b/build/src/.deps/H5MFsection.Plo new file mode 100644 index 0000000..05a0c1f --- /dev/null +++ b/build/src/.deps/H5MFsection.Plo @@ -0,0 +1,377 @@ +H5MFsection.lo: ../../src/H5MFsection.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MFpkg.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MM.Plo b/build/src/.deps/H5MM.Plo new file mode 100644 index 0000000..7e37766 --- /dev/null +++ b/build/src/.deps/H5MM.Plo @@ -0,0 +1,293 @@ +H5MM.lo: ../../src/H5MM.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5MP.Plo b/build/src/.deps/H5MP.Plo new file mode 100644 index 0000000..0decbff --- /dev/null +++ b/build/src/.deps/H5MP.Plo @@ -0,0 +1,300 @@ +H5MP.lo: ../../src/H5MP.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5MPpkg.h ../../src/H5MPprivate.h \ + ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5MPpkg.h: + +../../src/H5MPprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5MPtest.Plo b/build/src/.deps/H5MPtest.Plo new file mode 100644 index 0000000..17218fc --- /dev/null +++ b/build/src/.deps/H5MPtest.Plo @@ -0,0 +1,295 @@ +H5MPtest.lo: ../../src/H5MPtest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5MPpkg.h ../../src/H5MPprivate.h \ + ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5MPpkg.h: + +../../src/H5MPprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5O.Plo b/build/src/.deps/H5O.Plo new file mode 100644 index 0000000..cb2fd72 --- /dev/null +++ b/build/src/.deps/H5O.Plo @@ -0,0 +1,377 @@ +H5O.lo: ../../src/H5O.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ + ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Opkg.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Oainfo.Plo b/build/src/.deps/H5Oainfo.Plo new file mode 100644 index 0000000..8473977 --- /dev/null +++ b/build/src/.deps/H5Oainfo.Plo @@ -0,0 +1,377 @@ +H5Oainfo.lo: ../../src/H5Oainfo.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Oalloc.Plo b/build/src/.deps/H5Oalloc.Plo new file mode 100644 index 0000000..59ab91c --- /dev/null +++ b/build/src/.deps/H5Oalloc.Plo @@ -0,0 +1,367 @@ +H5Oalloc.lo: ../../src/H5Oalloc.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Oattr.Plo b/build/src/.deps/H5Oattr.Plo new file mode 100644 index 0000000..f83d1ea --- /dev/null +++ b/build/src/.deps/H5Oattr.Plo @@ -0,0 +1,384 @@ +H5Oattr.lo: ../../src/H5Oattr.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Spkg.h \ + ../../src/H5Oshared.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Spkg.h: + +../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oattribute.Plo b/build/src/.deps/H5Oattribute.Plo new file mode 100644 index 0000000..4065625 --- /dev/null +++ b/build/src/.deps/H5Oattribute.Plo @@ -0,0 +1,384 @@ +H5Oattribute.lo: ../../src/H5Oattribute.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5SMprivate.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5SMprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Obogus.Plo b/build/src/.deps/H5Obogus.Plo new file mode 100644 index 0000000..5f162b6 --- /dev/null +++ b/build/src/.deps/H5Obogus.Plo @@ -0,0 +1,360 @@ +H5Obogus.lo: ../../src/H5Obogus.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Obtreek.Plo b/build/src/.deps/H5Obtreek.Plo new file mode 100644 index 0000000..2c67889 --- /dev/null +++ b/build/src/.deps/H5Obtreek.Plo @@ -0,0 +1,360 @@ +H5Obtreek.lo: ../../src/H5Obtreek.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ocache.Plo b/build/src/.deps/H5Ocache.Plo new file mode 100644 index 0000000..e664f0a --- /dev/null +++ b/build/src/.deps/H5Ocache.Plo @@ -0,0 +1,370 @@ +H5Ocache.lo: ../../src/H5Ocache.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Ochunk.Plo b/build/src/.deps/H5Ochunk.Plo new file mode 100644 index 0000000..9458072 --- /dev/null +++ b/build/src/.deps/H5Ochunk.Plo @@ -0,0 +1,358 @@ +H5Ochunk.lo: ../../src/H5Ochunk.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Ocont.Plo b/build/src/.deps/H5Ocont.Plo new file mode 100644 index 0000000..3847cd8 --- /dev/null +++ b/build/src/.deps/H5Ocont.Plo @@ -0,0 +1,367 @@ +H5Ocont.lo: ../../src/H5Ocont.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Ocopy.Plo b/build/src/.deps/H5Ocopy.Plo new file mode 100644 index 0000000..767afbb --- /dev/null +++ b/build/src/.deps/H5Ocopy.Plo @@ -0,0 +1,388 @@ +H5Ocopy.lo: ../../src/H5Ocopy.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ + ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5FOprivate.h ../../src/H5Lprivate.h \ + ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5MMprivate.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5FOprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Odbg.Plo b/build/src/.deps/H5Odbg.Plo new file mode 100644 index 0000000..da876be --- /dev/null +++ b/build/src/.deps/H5Odbg.Plo @@ -0,0 +1,360 @@ +H5Odbg.lo: ../../src/H5Odbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Odrvinfo.Plo b/build/src/.deps/H5Odrvinfo.Plo new file mode 100644 index 0000000..925d972 --- /dev/null +++ b/build/src/.deps/H5Odrvinfo.Plo @@ -0,0 +1,360 @@ +H5Odrvinfo.lo: ../../src/H5Odrvinfo.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Odtype.Plo b/build/src/.deps/H5Odtype.Plo new file mode 100644 index 0000000..c689dc3 --- /dev/null +++ b/build/src/.deps/H5Odtype.Plo @@ -0,0 +1,379 @@ +H5Odtype.lo: ../../src/H5Odtype.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Tpkg.h \ + ../../src/H5VMprivate.h ../../src/H5Oshared.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Tpkg.h: + +../../src/H5VMprivate.h: + +../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oefl.Plo b/build/src/.deps/H5Oefl.Plo new file mode 100644 index 0000000..5ef30a3 --- /dev/null +++ b/build/src/.deps/H5Oefl.Plo @@ -0,0 +1,365 @@ +H5Oefl.lo: ../../src/H5Oefl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Ofill.Plo b/build/src/.deps/H5Ofill.Plo new file mode 100644 index 0000000..22caa81 --- /dev/null +++ b/build/src/.deps/H5Ofill.Plo @@ -0,0 +1,377 @@ +H5Ofill.lo: ../../src/H5Ofill.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ + ../../src/H5Oshared.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oginfo.Plo b/build/src/.deps/H5Oginfo.Plo new file mode 100644 index 0000000..c585a97 --- /dev/null +++ b/build/src/.deps/H5Oginfo.Plo @@ -0,0 +1,358 @@ +H5Oginfo.lo: ../../src/H5Oginfo.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Olayout.Plo b/build/src/.deps/H5Olayout.Plo new file mode 100644 index 0000000..3747ef5 --- /dev/null +++ b/build/src/.deps/H5Olayout.Plo @@ -0,0 +1,377 @@ +H5Olayout.lo: ../../src/H5Olayout.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ + ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5FLprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Olinfo.Plo b/build/src/.deps/H5Olinfo.Plo new file mode 100644 index 0000000..a146360 --- /dev/null +++ b/build/src/.deps/H5Olinfo.Plo @@ -0,0 +1,379 @@ +H5Olinfo.lo: ../../src/H5Olinfo.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Lpkg.h \ + ../../src/H5Lprivate.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Lpkg.h: + +../../src/H5Lprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Olink.Plo b/build/src/.deps/H5Olink.Plo new file mode 100644 index 0000000..512dc0c --- /dev/null +++ b/build/src/.deps/H5Olink.Plo @@ -0,0 +1,384 @@ +H5Olink.lo: ../../src/H5Olink.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lpkg.h: + +../../src/H5Lprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Omessage.Plo b/build/src/.deps/H5Omessage.Plo new file mode 100644 index 0000000..0844705 --- /dev/null +++ b/build/src/.deps/H5Omessage.Plo @@ -0,0 +1,372 @@ +H5Omessage.lo: ../../src/H5Omessage.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ + ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ + ../../src/H5FLprivate.h ../../src/H5SMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5FLprivate.h: + +../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Omtime.Plo b/build/src/.deps/H5Omtime.Plo new file mode 100644 index 0000000..67a89ef --- /dev/null +++ b/build/src/.deps/H5Omtime.Plo @@ -0,0 +1,360 @@ +H5Omtime.lo: ../../src/H5Omtime.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Oname.Plo b/build/src/.deps/H5Oname.Plo new file mode 100644 index 0000000..aa4b127 --- /dev/null +++ b/build/src/.deps/H5Oname.Plo @@ -0,0 +1,360 @@ +H5Oname.lo: ../../src/H5Oname.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Onull.Plo b/build/src/.deps/H5Onull.Plo new file mode 100644 index 0000000..d654e30 --- /dev/null +++ b/build/src/.deps/H5Onull.Plo @@ -0,0 +1,351 @@ +H5Onull.lo: ../../src/H5Onull.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Ipublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Opline.Plo b/build/src/.deps/H5Opline.Plo new file mode 100644 index 0000000..cc84f11 --- /dev/null +++ b/build/src/.deps/H5Opline.Plo @@ -0,0 +1,377 @@ +H5Opline.lo: ../../src/H5Opline.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Zpkg.h \ + ../../src/H5Oshared.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Zpkg.h: + +../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Orefcount.Plo b/build/src/.deps/H5Orefcount.Plo new file mode 100644 index 0000000..92179d4 --- /dev/null +++ b/build/src/.deps/H5Orefcount.Plo @@ -0,0 +1,358 @@ +H5Orefcount.lo: ../../src/H5Orefcount.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Osdspace.Plo b/build/src/.deps/H5Osdspace.Plo new file mode 100644 index 0000000..e503e5b --- /dev/null +++ b/build/src/.deps/H5Osdspace.Plo @@ -0,0 +1,377 @@ +H5Osdspace.lo: ../../src/H5Osdspace.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Spkg.h \ + ../../src/H5Oshared.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Spkg.h: + +../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oshared.Plo b/build/src/.deps/H5Oshared.Plo new file mode 100644 index 0000000..44e68f3 --- /dev/null +++ b/build/src/.deps/H5Oshared.Plo @@ -0,0 +1,367 @@ +H5Oshared.lo: ../../src/H5Oshared.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Opkg.h \ + ../../src/H5FLprivate.h ../../src/H5SMprivate.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Opkg.h: + +../../src/H5FLprivate.h: + +../../src/H5SMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Oshmesg.Plo b/build/src/.deps/H5Oshmesg.Plo new file mode 100644 index 0000000..f1cc8b5 --- /dev/null +++ b/build/src/.deps/H5Oshmesg.Plo @@ -0,0 +1,360 @@ +H5Oshmesg.lo: ../../src/H5Oshmesg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ostab.Plo b/build/src/.deps/H5Ostab.Plo new file mode 100644 index 0000000..595df2c --- /dev/null +++ b/build/src/.deps/H5Ostab.Plo @@ -0,0 +1,374 @@ +H5Ostab.lo: ../../src/H5Ostab.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Otest.Plo b/build/src/.deps/H5Otest.Plo new file mode 100644 index 0000000..ab20983 --- /dev/null +++ b/build/src/.deps/H5Otest.Plo @@ -0,0 +1,379 @@ +H5Otest.lo: ../../src/H5Otest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5Iprivate.h ../../src/H5Opkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Ounknown.Plo b/build/src/.deps/H5Ounknown.Plo new file mode 100644 index 0000000..2014381 --- /dev/null +++ b/build/src/.deps/H5Ounknown.Plo @@ -0,0 +1,358 @@ +H5Ounknown.lo: ../../src/H5Ounknown.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5P.Plo b/build/src/.deps/H5P.Plo new file mode 100644 index 0000000..3bcfbc9 --- /dev/null +++ b/build/src/.deps/H5P.Plo @@ -0,0 +1,323 @@ +H5P.lo: ../../src/H5P.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5PL.Plo b/build/src/.deps/H5PL.Plo new file mode 100644 index 0000000..2a3bc10 --- /dev/null +++ b/build/src/.deps/H5PL.Plo @@ -0,0 +1,344 @@ +H5PL.lo: ../../src/H5PL.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5PLpkg.h ../../src/H5PLprivate.h \ + ../../src/H5PLpublic.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5PLpkg.h: + +../../src/H5PLprivate.h: + +../../src/H5PLpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5Pacpl.Plo b/build/src/.deps/H5Pacpl.Plo new file mode 100644 index 0000000..d198e45 --- /dev/null +++ b/build/src/.deps/H5Pacpl.Plo @@ -0,0 +1,321 @@ +H5Pacpl.lo: ../../src/H5Pacpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Ppkg.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Dpublic.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pdapl.Plo b/build/src/.deps/H5Pdapl.Plo new file mode 100644 index 0000000..9dc011a --- /dev/null +++ b/build/src/.deps/H5Pdapl.Plo @@ -0,0 +1,372 @@ +H5Pdapl.lo: ../../src/H5Pdapl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Ppkg.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Pdcpl.Plo b/build/src/.deps/H5Pdcpl.Plo new file mode 100644 index 0000000..7e91949 --- /dev/null +++ b/build/src/.deps/H5Pdcpl.Plo @@ -0,0 +1,377 @@ +H5Pdcpl.lo: ../../src/H5Pdcpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Ppkg.h \ + ../../src/H5Zpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Pdeprec.Plo b/build/src/.deps/H5Pdeprec.Plo new file mode 100644 index 0000000..14ce3ed --- /dev/null +++ b/build/src/.deps/H5Pdeprec.Plo @@ -0,0 +1,325 @@ +H5Pdeprec.lo: ../../src/H5Pdeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pdxpl.Plo b/build/src/.deps/H5Pdxpl.Plo new file mode 100644 index 0000000..8e694b3 --- /dev/null +++ b/build/src/.deps/H5Pdxpl.Plo @@ -0,0 +1,370 @@ +H5Pdxpl.lo: ../../src/H5Pdxpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pfapl.Plo b/build/src/.deps/H5Pfapl.Plo new file mode 100644 index 0000000..3868b9d --- /dev/null +++ b/build/src/.deps/H5Pfapl.Plo @@ -0,0 +1,377 @@ +H5Pfapl.lo: ../../src/H5Pfapl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Ppkg.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: diff --git a/build/src/.deps/H5Pfcpl.Plo b/build/src/.deps/H5Pfcpl.Plo new file mode 100644 index 0000000..49bcd4f --- /dev/null +++ b/build/src/.deps/H5Pfcpl.Plo @@ -0,0 +1,358 @@ +H5Pfcpl.lo: ../../src/H5Pfcpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5SMprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5SMprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pfmpl.Plo b/build/src/.deps/H5Pfmpl.Plo new file mode 100644 index 0000000..34de5d9 --- /dev/null +++ b/build/src/.deps/H5Pfmpl.Plo @@ -0,0 +1,325 @@ +H5Pfmpl.lo: ../../src/H5Pfmpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pgcpl.Plo b/build/src/.deps/H5Pgcpl.Plo new file mode 100644 index 0000000..1dbeeef --- /dev/null +++ b/build/src/.deps/H5Pgcpl.Plo @@ -0,0 +1,358 @@ +H5Pgcpl.lo: ../../src/H5Pgcpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Iprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pint.Plo b/build/src/.deps/H5Pint.Plo new file mode 100644 index 0000000..27a87a4 --- /dev/null +++ b/build/src/.deps/H5Pint.Plo @@ -0,0 +1,328 @@ +H5Pint.lo: ../../src/H5Pint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Plapl.Plo b/build/src/.deps/H5Plapl.Plo new file mode 100644 index 0000000..4ee9388 --- /dev/null +++ b/build/src/.deps/H5Plapl.Plo @@ -0,0 +1,363 @@ +H5Plapl.lo: ../../src/H5Plapl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Plcpl.Plo b/build/src/.deps/H5Plcpl.Plo new file mode 100644 index 0000000..698a350 --- /dev/null +++ b/build/src/.deps/H5Plcpl.Plo @@ -0,0 +1,360 @@ +H5Plcpl.lo: ../../src/H5Plcpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pocpl.Plo b/build/src/.deps/H5Pocpl.Plo new file mode 100644 index 0000000..e9845db --- /dev/null +++ b/build/src/.deps/H5Pocpl.Plo @@ -0,0 +1,367 @@ +H5Pocpl.lo: ../../src/H5Pocpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Ppkg.h ../../src/H5PLprivate.h ../../src/H5PLpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5PLprivate.h: + +../../src/H5PLpublic.h: diff --git a/build/src/.deps/H5Pocpypl.Plo b/build/src/.deps/H5Pocpypl.Plo new file mode 100644 index 0000000..bdc58bf --- /dev/null +++ b/build/src/.deps/H5Pocpypl.Plo @@ -0,0 +1,363 @@ +H5Pocpypl.lo: ../../src/H5Pocpypl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pstrcpl.Plo b/build/src/.deps/H5Pstrcpl.Plo new file mode 100644 index 0000000..00923a0 --- /dev/null +++ b/build/src/.deps/H5Pstrcpl.Plo @@ -0,0 +1,325 @@ +H5Pstrcpl.lo: ../../src/H5Pstrcpl.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Ptest.Plo b/build/src/.deps/H5Ptest.Plo new file mode 100644 index 0000000..dfaeb06 --- /dev/null +++ b/build/src/.deps/H5Ptest.Plo @@ -0,0 +1,370 @@ +H5Ptest.lo: ../../src/H5Ptest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: diff --git a/build/src/.deps/H5R.Plo b/build/src/.deps/H5R.Plo new file mode 100644 index 0000000..dabbf5c --- /dev/null +++ b/build/src/.deps/H5R.Plo @@ -0,0 +1,377 @@ +H5R.lo: ../../src/H5R.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Rpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Rpkg.h: diff --git a/build/src/.deps/H5RC.Plo b/build/src/.deps/H5RC.Plo new file mode 100644 index 0000000..412b3f5 --- /dev/null +++ b/build/src/.deps/H5RC.Plo @@ -0,0 +1,292 @@ +H5RC.lo: ../../src/H5RC.c /usr/include/stdc-predef.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5RCprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5FLprivate.h: + +../../src/H5RCprivate.h: diff --git a/build/src/.deps/H5RS.Plo b/build/src/.deps/H5RS.Plo new file mode 100644 index 0000000..ec88df0 --- /dev/null +++ b/build/src/.deps/H5RS.Plo @@ -0,0 +1,292 @@ +H5RS.lo: ../../src/H5RS.c /usr/include/stdc-predef.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5RSprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5FLprivate.h: + +../../src/H5RSprivate.h: diff --git a/build/src/.deps/H5Rdeprec.Plo b/build/src/.deps/H5Rdeprec.Plo new file mode 100644 index 0000000..fa4e668 --- /dev/null +++ b/build/src/.deps/H5Rdeprec.Plo @@ -0,0 +1,356 @@ +H5Rdeprec.lo: ../../src/H5Rdeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Rpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Rpkg.h: diff --git a/build/src/.deps/H5S.Plo b/build/src/.deps/H5S.Plo new file mode 100644 index 0000000..db86728 --- /dev/null +++ b/build/src/.deps/H5S.Plo @@ -0,0 +1,365 @@ +H5S.lo: ../../src/H5S.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: diff --git a/build/src/.deps/H5SL.Plo b/build/src/.deps/H5SL.Plo new file mode 100644 index 0000000..d2e5c1c --- /dev/null +++ b/build/src/.deps/H5SL.Plo @@ -0,0 +1,297 @@ +H5SL.lo: ../../src/H5SL.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5SLprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5SM.Plo b/build/src/.deps/H5SM.Plo new file mode 100644 index 0000000..2e6ee7e --- /dev/null +++ b/build/src/.deps/H5SM.Plo @@ -0,0 +1,384 @@ +H5SM.lo: ../../src/H5SM.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5MFprivate.h \ + ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5MMprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5SMpkg.h ../../src/H5SMprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMbtree2.Plo b/build/src/.deps/H5SMbtree2.Plo new file mode 100644 index 0000000..4825b6c --- /dev/null +++ b/build/src/.deps/H5SMbtree2.Plo @@ -0,0 +1,372 @@ +H5SMbtree2.lo: ../../src/H5SMbtree2.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5SMpkg.h \ + ../../src/H5SMprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMcache.Plo b/build/src/.deps/H5SMcache.Plo new file mode 100644 index 0000000..963f36a --- /dev/null +++ b/build/src/.deps/H5SMcache.Plo @@ -0,0 +1,383 @@ +H5SMcache.lo: ../../src/H5SMcache.c /usr/include/stdc-predef.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5FLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5MMprivate.h ../../src/H5SMpkg.h \ + ../../src/H5SMprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5MFprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5MMprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5SMmessage.Plo b/build/src/.deps/H5SMmessage.Plo new file mode 100644 index 0000000..a06cf1f --- /dev/null +++ b/build/src/.deps/H5SMmessage.Plo @@ -0,0 +1,372 @@ +H5SMmessage.lo: ../../src/H5SMmessage.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5SMpkg.h \ + ../../src/H5SMprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMtest.Plo b/build/src/.deps/H5SMtest.Plo new file mode 100644 index 0000000..a26aa10 --- /dev/null +++ b/build/src/.deps/H5SMtest.Plo @@ -0,0 +1,370 @@ +H5SMtest.lo: ../../src/H5SMtest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5SMpkg.h ../../src/H5SMprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5SMpkg.h: + +../../src/H5SMprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5ST.Plo b/build/src/.deps/H5ST.Plo new file mode 100644 index 0000000..a27e451 --- /dev/null +++ b/build/src/.deps/H5ST.Plo @@ -0,0 +1,292 @@ +H5ST.lo: ../../src/H5ST.c /usr/include/stdc-predef.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5STprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5FLprivate.h: + +../../src/H5STprivate.h: diff --git a/build/src/.deps/H5Sall.Plo b/build/src/.deps/H5Sall.Plo new file mode 100644 index 0000000..9621fba --- /dev/null +++ b/build/src/.deps/H5Sall.Plo @@ -0,0 +1,363 @@ +H5Sall.lo: ../../src/H5Sall.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ + ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Sdbg.Plo b/build/src/.deps/H5Sdbg.Plo new file mode 100644 index 0000000..709830e --- /dev/null +++ b/build/src/.deps/H5Sdbg.Plo @@ -0,0 +1,358 @@ +H5Sdbg.lo: ../../src/H5Sdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Spkg.h \ + ../../src/H5Sprivate.h ../../src/H5Spublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Shyper.Plo b/build/src/.deps/H5Shyper.Plo new file mode 100644 index 0000000..6270cc9 --- /dev/null +++ b/build/src/.deps/H5Shyper.Plo @@ -0,0 +1,365 @@ +H5Shyper.lo: ../../src/H5Shyper.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5Spkg.h ../../src/H5Sprivate.h \ + ../../src/H5Spublic.h ../../src/H5Dpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Smpio.Plo b/build/src/.deps/H5Smpio.Plo new file mode 100644 index 0000000..9b06cad --- /dev/null +++ b/build/src/.deps/H5Smpio.Plo @@ -0,0 +1,374 @@ +H5Smpio.lo: ../../src/H5Smpio.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Spkg.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Spkg.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Snone.Plo b/build/src/.deps/H5Snone.Plo new file mode 100644 index 0000000..2e056fa --- /dev/null +++ b/build/src/.deps/H5Snone.Plo @@ -0,0 +1,372 @@ +H5Snone.lo: ../../src/H5Snone.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ + ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5VMprivate.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Spoint.Plo b/build/src/.deps/H5Spoint.Plo new file mode 100644 index 0000000..8cd98cf --- /dev/null +++ b/build/src/.deps/H5Spoint.Plo @@ -0,0 +1,367 @@ +H5Spoint.lo: ../../src/H5Spoint.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ + ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Sselect.Plo b/build/src/.deps/H5Sselect.Plo new file mode 100644 index 0000000..bdfde3b --- /dev/null +++ b/build/src/.deps/H5Sselect.Plo @@ -0,0 +1,379 @@ +H5Sselect.lo: ../../src/H5Sselect.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Spkg.h \ + ../../src/H5VMprivate.h ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Spkg.h: + +../../src/H5VMprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Stest.Plo b/build/src/.deps/H5Stest.Plo new file mode 100644 index 0000000..c82b667 --- /dev/null +++ b/build/src/.deps/H5Stest.Plo @@ -0,0 +1,360 @@ +H5Stest.lo: ../../src/H5Stest.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ + ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5T.Plo b/build/src/.deps/H5T.Plo new file mode 100644 index 0000000..508b2a2 --- /dev/null +++ b/build/src/.deps/H5T.Plo @@ -0,0 +1,377 @@ +H5T.lo: ../../src/H5T.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ + ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Tpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5TS.Plo b/build/src/.deps/H5TS.Plo new file mode 100644 index 0000000..e6d8456 --- /dev/null +++ b/build/src/.deps/H5TS.Plo @@ -0,0 +1,293 @@ +H5TS.lo: ../../src/H5TS.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5Tarray.Plo b/build/src/.deps/H5Tarray.Plo new file mode 100644 index 0000000..c508ef4 --- /dev/null +++ b/build/src/.deps/H5Tarray.Plo @@ -0,0 +1,360 @@ +H5Tarray.lo: ../../src/H5Tarray.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tbit.Plo b/build/src/.deps/H5Tbit.Plo new file mode 100644 index 0000000..5d4d771 --- /dev/null +++ b/build/src/.deps/H5Tbit.Plo @@ -0,0 +1,363 @@ +H5Tbit.lo: ../../src/H5Tbit.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ + ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Tcommit.Plo b/build/src/.deps/H5Tcommit.Plo new file mode 100644 index 0000000..baa37ce --- /dev/null +++ b/build/src/.deps/H5Tcommit.Plo @@ -0,0 +1,365 @@ +H5Tcommit.lo: ../../src/H5Tcommit.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5Tpkg.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Tcompound.Plo b/build/src/.deps/H5Tcompound.Plo new file mode 100644 index 0000000..a56211b --- /dev/null +++ b/build/src/.deps/H5Tcompound.Plo @@ -0,0 +1,363 @@ +H5Tcompound.lo: ../../src/H5Tcompound.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tconv.Plo b/build/src/.deps/H5Tconv.Plo new file mode 100644 index 0000000..435b195 --- /dev/null +++ b/build/src/.deps/H5Tconv.Plo @@ -0,0 +1,379 @@ +H5Tconv.lo: ../../src/H5Tconv.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Tpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5Tcset.Plo b/build/src/.deps/H5Tcset.Plo new file mode 100644 index 0000000..f9f6e31 --- /dev/null +++ b/build/src/.deps/H5Tcset.Plo @@ -0,0 +1,360 @@ +H5Tcset.lo: ../../src/H5Tcset.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tdbg.Plo b/build/src/.deps/H5Tdbg.Plo new file mode 100644 index 0000000..28960cf --- /dev/null +++ b/build/src/.deps/H5Tdbg.Plo @@ -0,0 +1,358 @@ +H5Tdbg.lo: ../../src/H5Tdbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tdeprec.Plo b/build/src/.deps/H5Tdeprec.Plo new file mode 100644 index 0000000..99cdf6c --- /dev/null +++ b/build/src/.deps/H5Tdeprec.Plo @@ -0,0 +1,363 @@ +H5Tdeprec.lo: ../../src/H5Tdeprec.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tenum.Plo b/build/src/.deps/H5Tenum.Plo new file mode 100644 index 0000000..4cd1dc7 --- /dev/null +++ b/build/src/.deps/H5Tenum.Plo @@ -0,0 +1,363 @@ +H5Tenum.lo: ../../src/H5Tenum.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfields.Plo b/build/src/.deps/H5Tfields.Plo new file mode 100644 index 0000000..dcd29a7 --- /dev/null +++ b/build/src/.deps/H5Tfields.Plo @@ -0,0 +1,363 @@ +H5Tfields.lo: ../../src/H5Tfields.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfixed.Plo b/build/src/.deps/H5Tfixed.Plo new file mode 100644 index 0000000..d9cdaec --- /dev/null +++ b/build/src/.deps/H5Tfixed.Plo @@ -0,0 +1,360 @@ +H5Tfixed.lo: ../../src/H5Tfixed.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfloat.Plo b/build/src/.deps/H5Tfloat.Plo new file mode 100644 index 0000000..b1c9d91 --- /dev/null +++ b/build/src/.deps/H5Tfloat.Plo @@ -0,0 +1,360 @@ +H5Tfloat.lo: ../../src/H5Tfloat.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tinit.Plo b/build/src/.deps/H5Tinit.Plo new file mode 100644 index 0000000..c9a84c9 --- /dev/null +++ b/build/src/.deps/H5Tinit.Plo @@ -0,0 +1,365 @@ +H5Tinit.lo: H5Tinit.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tnative.Plo b/build/src/.deps/H5Tnative.Plo new file mode 100644 index 0000000..e0836e2 --- /dev/null +++ b/build/src/.deps/H5Tnative.Plo @@ -0,0 +1,363 @@ +H5Tnative.lo: ../../src/H5Tnative.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Dpublic.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5MMprivate.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Toffset.Plo b/build/src/.deps/H5Toffset.Plo new file mode 100644 index 0000000..06eb4bc --- /dev/null +++ b/build/src/.deps/H5Toffset.Plo @@ -0,0 +1,360 @@ +H5Toffset.lo: ../../src/H5Toffset.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Toh.Plo b/build/src/.deps/H5Toh.Plo new file mode 100644 index 0000000..61bc1ee --- /dev/null +++ b/build/src/.deps/H5Toh.Plo @@ -0,0 +1,363 @@ +H5Toh.lo: ../../src/H5Toh.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Tpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5Topaque.Plo b/build/src/.deps/H5Topaque.Plo new file mode 100644 index 0000000..07a0d3c --- /dev/null +++ b/build/src/.deps/H5Topaque.Plo @@ -0,0 +1,363 @@ +H5Topaque.lo: ../../src/H5Topaque.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Torder.Plo b/build/src/.deps/H5Torder.Plo new file mode 100644 index 0000000..df2977d --- /dev/null +++ b/build/src/.deps/H5Torder.Plo @@ -0,0 +1,360 @@ +H5Torder.lo: ../../src/H5Torder.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tpad.Plo b/build/src/.deps/H5Tpad.Plo new file mode 100644 index 0000000..67c4159 --- /dev/null +++ b/build/src/.deps/H5Tpad.Plo @@ -0,0 +1,360 @@ +H5Tpad.lo: ../../src/H5Tpad.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tprecis.Plo b/build/src/.deps/H5Tprecis.Plo new file mode 100644 index 0000000..2a5a90f --- /dev/null +++ b/build/src/.deps/H5Tprecis.Plo @@ -0,0 +1,360 @@ +H5Tprecis.lo: ../../src/H5Tprecis.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tstrpad.Plo b/build/src/.deps/H5Tstrpad.Plo new file mode 100644 index 0000000..3cc6072 --- /dev/null +++ b/build/src/.deps/H5Tstrpad.Plo @@ -0,0 +1,360 @@ +H5Tstrpad.lo: ../../src/H5Tstrpad.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tvisit.Plo b/build/src/.deps/H5Tvisit.Plo new file mode 100644 index 0000000..fd40d0b --- /dev/null +++ b/build/src/.deps/H5Tvisit.Plo @@ -0,0 +1,358 @@ +H5Tvisit.lo: ../../src/H5Tvisit.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tvlen.Plo b/build/src/.deps/H5Tvlen.Plo new file mode 100644 index 0000000..fc760b6 --- /dev/null +++ b/build/src/.deps/H5Tvlen.Plo @@ -0,0 +1,379 @@ +H5Tvlen.lo: ../../src/H5Tvlen.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGprivate.h \ + ../../src/H5HGpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5Tpkg.h ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Tpkg.h: + +../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5VM.Plo b/build/src/.deps/H5VM.Plo new file mode 100644 index 0000000..864c41e --- /dev/null +++ b/build/src/.deps/H5VM.Plo @@ -0,0 +1,356 @@ +H5VM.lo: ../../src/H5VM.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Oprivate.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ + ../../src/H5VMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5WB.Plo b/build/src/.deps/H5WB.Plo new file mode 100644 index 0000000..34d4875 --- /dev/null +++ b/build/src/.deps/H5WB.Plo @@ -0,0 +1,293 @@ +H5WB.lo: ../../src/H5WB.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ + ../../src/H5WBprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5FLprivate.h: + +../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Z.Plo b/build/src/.deps/H5Z.Plo new file mode 100644 index 0000000..bc01676 --- /dev/null +++ b/build/src/.deps/H5Z.Plo @@ -0,0 +1,377 @@ +H5Z.lo: ../../src/H5Z.c /usr/include/stdc-predef.h ../../src/H5private.h \ + ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5PLprivate.h ../../src/H5PLpublic.h \ + ../../src/H5Zpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5PLprivate.h: + +../../src/H5PLpublic.h: + +../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zdeflate.Plo b/build/src/.deps/H5Zdeflate.Plo new file mode 100644 index 0000000..b1f0df1 --- /dev/null +++ b/build/src/.deps/H5Zdeflate.Plo @@ -0,0 +1,344 @@ +H5Zdeflate.lo: ../../src/H5Zdeflate.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Zpkg.h ../../src/H5Zprivate.h \ + ../../src/H5Zpublic.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + /usr/include/zlib.h /usr/include/zconf.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +/usr/include/zlib.h: + +/usr/include/zconf.h: diff --git a/build/src/.deps/H5Zfletcher32.Plo b/build/src/.deps/H5Zfletcher32.Plo new file mode 100644 index 0000000..d021b80 --- /dev/null +++ b/build/src/.deps/H5Zfletcher32.Plo @@ -0,0 +1,339 @@ +H5Zfletcher32.lo: ../../src/H5Zfletcher32.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5Znbit.Plo b/build/src/.deps/H5Znbit.Plo new file mode 100644 index 0000000..fd211a4 --- /dev/null +++ b/build/src/.deps/H5Znbit.Plo @@ -0,0 +1,363 @@ +H5Znbit.lo: ../../src/H5Znbit.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Ppublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Zpublic.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Zpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zscaleoffset.Plo b/build/src/.deps/H5Zscaleoffset.Plo new file mode 100644 index 0000000..ed7ec34 --- /dev/null +++ b/build/src/.deps/H5Zscaleoffset.Plo @@ -0,0 +1,363 @@ +H5Zscaleoffset.lo: ../../src/H5Zscaleoffset.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Zpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zshuffle.Plo b/build/src/.deps/H5Zshuffle.Plo new file mode 100644 index 0000000..c6e060d --- /dev/null +++ b/build/src/.deps/H5Zshuffle.Plo @@ -0,0 +1,349 @@ +H5Zshuffle.lo: ../../src/H5Zshuffle.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Pprivate.h \ + ../../src/H5Ppublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Dpublic.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5Zpublic.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zpkg.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Zszip.Plo b/build/src/.deps/H5Zszip.Plo new file mode 100644 index 0000000..aa78418 --- /dev/null +++ b/build/src/.deps/H5Zszip.Plo @@ -0,0 +1,363 @@ +H5Zszip.lo: ../../src/H5Zszip.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ + ../../src/H5MMpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ + ../../src/H5Zpkg.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Ztrans.Plo b/build/src/.deps/H5Ztrans.Plo new file mode 100644 index 0000000..9ae1f8c --- /dev/null +++ b/build/src/.deps/H5Ztrans.Plo @@ -0,0 +1,344 @@ +H5Ztrans.lo: ../../src/H5Ztrans.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ + ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5VMprivate.h \ + ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ + ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Rpublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5VMprivate.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: + +../../src/H5Zpublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5checksum.Plo b/build/src/.deps/H5checksum.Plo new file mode 100644 index 0000000..c9aaa01 --- /dev/null +++ b/build/src/.deps/H5checksum.Plo @@ -0,0 +1,279 @@ +H5checksum.lo: ../../src/H5checksum.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/src/.deps/H5dbg.Plo b/build/src/.deps/H5dbg.Plo new file mode 100644 index 0000000..3857de9 --- /dev/null +++ b/build/src/.deps/H5dbg.Plo @@ -0,0 +1,279 @@ +H5dbg.lo: ../../src/H5dbg.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/src/.deps/H5detect.Po b/build/src/.deps/H5detect.Po new file mode 100644 index 0000000..a84ef63 --- /dev/null +++ b/build/src/.deps/H5detect.Po @@ -0,0 +1,293 @@ +H5detect.o: ../../src/H5detect.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Tpublic.h ../../src/H5Ipublic.h \ + ../../src/H5Rpublic.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ + ../../src/H5Opublic.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Tpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: diff --git a/build/src/.deps/H5lib_settings.Plo b/build/src/.deps/H5lib_settings.Plo new file mode 100644 index 0000000..87e923b --- /dev/null +++ b/build/src/.deps/H5lib_settings.Plo @@ -0,0 +1,3 @@ +H5lib_settings.lo: H5lib_settings.c /usr/include/stdc-predef.h + +/usr/include/stdc-predef.h: diff --git a/build/src/.deps/H5make_libsettings.Po b/build/src/.deps/H5make_libsettings.Po new file mode 100644 index 0000000..33eb490 --- /dev/null +++ b/build/src/.deps/H5make_libsettings.Po @@ -0,0 +1,278 @@ +H5make_libsettings.o: ../../src/H5make_libsettings.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/xlocale.h ../../src/H5private.h ../../src/H5public.h \ + H5pubconf.h ../../src/H5version.h /usr/include/sys/types.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/time.h: + +/usr/include/bits/time.h: + +/usr/include/bits/timex.h: + +/usr/include/xlocale.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/src/.deps/H5system.Plo b/build/src/.deps/H5system.Plo new file mode 100644 index 0000000..4136782 --- /dev/null +++ b/build/src/.deps/H5system.Plo @@ -0,0 +1,304 @@ +H5system.lo: ../../src/H5system.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ + ../../src/H5FDpublic.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ + ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5MMprivate.h: + +../../src/H5MMpublic.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5timer.Plo b/build/src/.deps/H5timer.Plo new file mode 100644 index 0000000..72dd534 --- /dev/null +++ b/build/src/.deps/H5timer.Plo @@ -0,0 +1,279 @@ +H5timer.lo: ../../src/H5timer.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/src/.deps/H5trace.Plo b/build/src/.deps/H5trace.Plo new file mode 100644 index 0000000..ea1cb04 --- /dev/null +++ b/build/src/.deps/H5trace.Plo @@ -0,0 +1,372 @@ +H5trace.lo: ../../src/H5trace.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ + ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ + ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Ipkg.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDprivate.h: + +../../src/H5FDpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Ipkg.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: diff --git a/build/src/.libs/H5.o b/build/src/.libs/H5.o new file mode 100644 index 0000000..67fa32d Binary files /dev/null and b/build/src/.libs/H5.o differ diff --git a/build/src/.libs/H5A.o b/build/src/.libs/H5A.o new file mode 100644 index 0000000..ba9bc85 Binary files /dev/null and b/build/src/.libs/H5A.o differ diff --git a/build/src/.libs/H5AC.o b/build/src/.libs/H5AC.o new file mode 100644 index 0000000..06b0957 Binary files /dev/null and b/build/src/.libs/H5AC.o differ diff --git a/build/src/.libs/H5Abtree2.o b/build/src/.libs/H5Abtree2.o new file mode 100644 index 0000000..90e589c Binary files /dev/null and b/build/src/.libs/H5Abtree2.o differ diff --git a/build/src/.libs/H5Adense.o b/build/src/.libs/H5Adense.o new file mode 100644 index 0000000..4c1f08d Binary files /dev/null and b/build/src/.libs/H5Adense.o differ diff --git a/build/src/.libs/H5Adeprec.o b/build/src/.libs/H5Adeprec.o new file mode 100644 index 0000000..87cdc6a Binary files /dev/null and b/build/src/.libs/H5Adeprec.o differ diff --git a/build/src/.libs/H5Aint.o b/build/src/.libs/H5Aint.o new file mode 100644 index 0000000..80996b1 Binary files /dev/null and b/build/src/.libs/H5Aint.o differ diff --git a/build/src/.libs/H5Atest.o b/build/src/.libs/H5Atest.o new file mode 100644 index 0000000..e96ab94 Binary files /dev/null and b/build/src/.libs/H5Atest.o differ diff --git a/build/src/.libs/H5B.o b/build/src/.libs/H5B.o new file mode 100644 index 0000000..134442f Binary files /dev/null and b/build/src/.libs/H5B.o differ diff --git a/build/src/.libs/H5B2.o b/build/src/.libs/H5B2.o new file mode 100644 index 0000000..ef60440 Binary files /dev/null and b/build/src/.libs/H5B2.o differ diff --git a/build/src/.libs/H5B2cache.o b/build/src/.libs/H5B2cache.o new file mode 100644 index 0000000..517f25b Binary files /dev/null and b/build/src/.libs/H5B2cache.o differ diff --git a/build/src/.libs/H5B2dbg.o b/build/src/.libs/H5B2dbg.o new file mode 100644 index 0000000..1d96fc6 Binary files /dev/null and b/build/src/.libs/H5B2dbg.o differ diff --git a/build/src/.libs/H5B2hdr.o b/build/src/.libs/H5B2hdr.o new file mode 100644 index 0000000..80d91c7 Binary files /dev/null and b/build/src/.libs/H5B2hdr.o differ diff --git a/build/src/.libs/H5B2int.o b/build/src/.libs/H5B2int.o new file mode 100644 index 0000000..3ee3cad Binary files /dev/null and b/build/src/.libs/H5B2int.o differ diff --git a/build/src/.libs/H5B2stat.o b/build/src/.libs/H5B2stat.o new file mode 100644 index 0000000..c4e01a8 Binary files /dev/null and b/build/src/.libs/H5B2stat.o differ diff --git a/build/src/.libs/H5B2test.o b/build/src/.libs/H5B2test.o new file mode 100644 index 0000000..4e5433a Binary files /dev/null and b/build/src/.libs/H5B2test.o differ diff --git a/build/src/.libs/H5Bcache.o b/build/src/.libs/H5Bcache.o new file mode 100644 index 0000000..53023b1 Binary files /dev/null and b/build/src/.libs/H5Bcache.o differ diff --git a/build/src/.libs/H5Bdbg.o b/build/src/.libs/H5Bdbg.o new file mode 100644 index 0000000..f7b93c6 Binary files /dev/null and b/build/src/.libs/H5Bdbg.o differ diff --git a/build/src/.libs/H5C.o b/build/src/.libs/H5C.o new file mode 100644 index 0000000..06f0322 Binary files /dev/null and b/build/src/.libs/H5C.o differ diff --git a/build/src/.libs/H5CS.o b/build/src/.libs/H5CS.o new file mode 100644 index 0000000..eb16540 Binary files /dev/null and b/build/src/.libs/H5CS.o differ diff --git a/build/src/.libs/H5D.o b/build/src/.libs/H5D.o new file mode 100644 index 0000000..a754b3e Binary files /dev/null and b/build/src/.libs/H5D.o differ diff --git a/build/src/.libs/H5Dbtree.o b/build/src/.libs/H5Dbtree.o new file mode 100644 index 0000000..a084064 Binary files /dev/null and b/build/src/.libs/H5Dbtree.o differ diff --git a/build/src/.libs/H5Dchunk.o b/build/src/.libs/H5Dchunk.o new file mode 100644 index 0000000..f331567 Binary files /dev/null and b/build/src/.libs/H5Dchunk.o differ diff --git a/build/src/.libs/H5Dcompact.o b/build/src/.libs/H5Dcompact.o new file mode 100644 index 0000000..0240425 Binary files /dev/null and b/build/src/.libs/H5Dcompact.o differ diff --git a/build/src/.libs/H5Dcontig.o b/build/src/.libs/H5Dcontig.o new file mode 100644 index 0000000..f7ddbbc Binary files /dev/null and b/build/src/.libs/H5Dcontig.o differ diff --git a/build/src/.libs/H5Ddbg.o b/build/src/.libs/H5Ddbg.o new file mode 100644 index 0000000..0ee87b2 Binary files /dev/null and b/build/src/.libs/H5Ddbg.o differ diff --git a/build/src/.libs/H5Ddeprec.o b/build/src/.libs/H5Ddeprec.o new file mode 100644 index 0000000..6f33a4b Binary files /dev/null and b/build/src/.libs/H5Ddeprec.o differ diff --git a/build/src/.libs/H5Defl.o b/build/src/.libs/H5Defl.o new file mode 100644 index 0000000..56e6731 Binary files /dev/null and b/build/src/.libs/H5Defl.o differ diff --git a/build/src/.libs/H5Dfill.o b/build/src/.libs/H5Dfill.o new file mode 100644 index 0000000..aaa51eb Binary files /dev/null and b/build/src/.libs/H5Dfill.o differ diff --git a/build/src/.libs/H5Dint.o b/build/src/.libs/H5Dint.o new file mode 100644 index 0000000..ce4e211 Binary files /dev/null and b/build/src/.libs/H5Dint.o differ diff --git a/build/src/.libs/H5Dio.o b/build/src/.libs/H5Dio.o new file mode 100644 index 0000000..df17727 Binary files /dev/null and b/build/src/.libs/H5Dio.o differ diff --git a/build/src/.libs/H5Dlayout.o b/build/src/.libs/H5Dlayout.o new file mode 100644 index 0000000..8466b27 Binary files /dev/null and b/build/src/.libs/H5Dlayout.o differ diff --git a/build/src/.libs/H5Dmpio.o b/build/src/.libs/H5Dmpio.o new file mode 100644 index 0000000..22b5803 Binary files /dev/null and b/build/src/.libs/H5Dmpio.o differ diff --git a/build/src/.libs/H5Doh.o b/build/src/.libs/H5Doh.o new file mode 100644 index 0000000..fd77300 Binary files /dev/null and b/build/src/.libs/H5Doh.o differ diff --git a/build/src/.libs/H5Dscatgath.o b/build/src/.libs/H5Dscatgath.o new file mode 100644 index 0000000..be997e8 Binary files /dev/null and b/build/src/.libs/H5Dscatgath.o differ diff --git a/build/src/.libs/H5Dselect.o b/build/src/.libs/H5Dselect.o new file mode 100644 index 0000000..01c93fa Binary files /dev/null and b/build/src/.libs/H5Dselect.o differ diff --git a/build/src/.libs/H5Dtest.o b/build/src/.libs/H5Dtest.o new file mode 100644 index 0000000..37be177 Binary files /dev/null and b/build/src/.libs/H5Dtest.o differ diff --git a/build/src/.libs/H5E.o b/build/src/.libs/H5E.o new file mode 100644 index 0000000..b4536bb Binary files /dev/null and b/build/src/.libs/H5E.o differ diff --git a/build/src/.libs/H5Edeprec.o b/build/src/.libs/H5Edeprec.o new file mode 100644 index 0000000..fa9dd4d Binary files /dev/null and b/build/src/.libs/H5Edeprec.o differ diff --git a/build/src/.libs/H5Eint.o b/build/src/.libs/H5Eint.o new file mode 100644 index 0000000..dd0859c Binary files /dev/null and b/build/src/.libs/H5Eint.o differ diff --git a/build/src/.libs/H5F.o b/build/src/.libs/H5F.o new file mode 100644 index 0000000..50401ad Binary files /dev/null and b/build/src/.libs/H5F.o differ diff --git a/build/src/.libs/H5FD.o b/build/src/.libs/H5FD.o new file mode 100644 index 0000000..1c42342 Binary files /dev/null and b/build/src/.libs/H5FD.o differ diff --git a/build/src/.libs/H5FDcore.o b/build/src/.libs/H5FDcore.o new file mode 100644 index 0000000..979ee4e Binary files /dev/null and b/build/src/.libs/H5FDcore.o differ diff --git a/build/src/.libs/H5FDdirect.o b/build/src/.libs/H5FDdirect.o new file mode 100644 index 0000000..8b184c6 Binary files /dev/null and b/build/src/.libs/H5FDdirect.o differ diff --git a/build/src/.libs/H5FDfamily.o b/build/src/.libs/H5FDfamily.o new file mode 100644 index 0000000..5edea41 Binary files /dev/null and b/build/src/.libs/H5FDfamily.o differ diff --git a/build/src/.libs/H5FDint.o b/build/src/.libs/H5FDint.o new file mode 100644 index 0000000..92114fc Binary files /dev/null and b/build/src/.libs/H5FDint.o differ diff --git a/build/src/.libs/H5FDlog.o b/build/src/.libs/H5FDlog.o new file mode 100644 index 0000000..49e2f8c Binary files /dev/null and b/build/src/.libs/H5FDlog.o differ diff --git a/build/src/.libs/H5FDmpi.o b/build/src/.libs/H5FDmpi.o new file mode 100644 index 0000000..00241a5 Binary files /dev/null and b/build/src/.libs/H5FDmpi.o differ diff --git a/build/src/.libs/H5FDmpio.o b/build/src/.libs/H5FDmpio.o new file mode 100644 index 0000000..4a202f6 Binary files /dev/null and b/build/src/.libs/H5FDmpio.o differ diff --git a/build/src/.libs/H5FDmulti.o b/build/src/.libs/H5FDmulti.o new file mode 100644 index 0000000..1853ffe Binary files /dev/null and b/build/src/.libs/H5FDmulti.o differ diff --git a/build/src/.libs/H5FDsec2.o b/build/src/.libs/H5FDsec2.o new file mode 100644 index 0000000..ec5349a Binary files /dev/null and b/build/src/.libs/H5FDsec2.o differ diff --git a/build/src/.libs/H5FDspace.o b/build/src/.libs/H5FDspace.o new file mode 100644 index 0000000..5960d4b Binary files /dev/null and b/build/src/.libs/H5FDspace.o differ diff --git a/build/src/.libs/H5FDstdio.o b/build/src/.libs/H5FDstdio.o new file mode 100644 index 0000000..ab1b179 Binary files /dev/null and b/build/src/.libs/H5FDstdio.o differ diff --git a/build/src/.libs/H5FL.o b/build/src/.libs/H5FL.o new file mode 100644 index 0000000..c0a4b29 Binary files /dev/null and b/build/src/.libs/H5FL.o differ diff --git a/build/src/.libs/H5FO.o b/build/src/.libs/H5FO.o new file mode 100644 index 0000000..f7fca15 Binary files /dev/null and b/build/src/.libs/H5FO.o differ diff --git a/build/src/.libs/H5FS.o b/build/src/.libs/H5FS.o new file mode 100644 index 0000000..388287f Binary files /dev/null and b/build/src/.libs/H5FS.o differ diff --git a/build/src/.libs/H5FScache.o b/build/src/.libs/H5FScache.o new file mode 100644 index 0000000..fcc33ea Binary files /dev/null and b/build/src/.libs/H5FScache.o differ diff --git a/build/src/.libs/H5FSdbg.o b/build/src/.libs/H5FSdbg.o new file mode 100644 index 0000000..22ccdfa Binary files /dev/null and b/build/src/.libs/H5FSdbg.o differ diff --git a/build/src/.libs/H5FSsection.o b/build/src/.libs/H5FSsection.o new file mode 100644 index 0000000..c0c6f50 Binary files /dev/null and b/build/src/.libs/H5FSsection.o differ diff --git a/build/src/.libs/H5FSstat.o b/build/src/.libs/H5FSstat.o new file mode 100644 index 0000000..c531ecb Binary files /dev/null and b/build/src/.libs/H5FSstat.o differ diff --git a/build/src/.libs/H5FStest.o b/build/src/.libs/H5FStest.o new file mode 100644 index 0000000..cc968a1 Binary files /dev/null and b/build/src/.libs/H5FStest.o differ diff --git a/build/src/.libs/H5Faccum.o b/build/src/.libs/H5Faccum.o new file mode 100644 index 0000000..e34cab6 Binary files /dev/null and b/build/src/.libs/H5Faccum.o differ diff --git a/build/src/.libs/H5Fcwfs.o b/build/src/.libs/H5Fcwfs.o new file mode 100644 index 0000000..b56b07c Binary files /dev/null and b/build/src/.libs/H5Fcwfs.o differ diff --git a/build/src/.libs/H5Fdbg.o b/build/src/.libs/H5Fdbg.o new file mode 100644 index 0000000..ff1120d Binary files /dev/null and b/build/src/.libs/H5Fdbg.o differ diff --git a/build/src/.libs/H5Fefc.o b/build/src/.libs/H5Fefc.o new file mode 100644 index 0000000..e47859d Binary files /dev/null and b/build/src/.libs/H5Fefc.o differ diff --git a/build/src/.libs/H5Ffake.o b/build/src/.libs/H5Ffake.o new file mode 100644 index 0000000..8c1b508 Binary files /dev/null and b/build/src/.libs/H5Ffake.o differ diff --git a/build/src/.libs/H5Fint.o b/build/src/.libs/H5Fint.o new file mode 100644 index 0000000..6e35890 Binary files /dev/null and b/build/src/.libs/H5Fint.o differ diff --git a/build/src/.libs/H5Fio.o b/build/src/.libs/H5Fio.o new file mode 100644 index 0000000..119158a Binary files /dev/null and b/build/src/.libs/H5Fio.o differ diff --git a/build/src/.libs/H5Fmount.o b/build/src/.libs/H5Fmount.o new file mode 100644 index 0000000..28fcc16 Binary files /dev/null and b/build/src/.libs/H5Fmount.o differ diff --git a/build/src/.libs/H5Fmpi.o b/build/src/.libs/H5Fmpi.o new file mode 100644 index 0000000..4859959 Binary files /dev/null and b/build/src/.libs/H5Fmpi.o differ diff --git a/build/src/.libs/H5Fquery.o b/build/src/.libs/H5Fquery.o new file mode 100644 index 0000000..89b29ea Binary files /dev/null and b/build/src/.libs/H5Fquery.o differ diff --git a/build/src/.libs/H5Fsfile.o b/build/src/.libs/H5Fsfile.o new file mode 100644 index 0000000..0f532e6 Binary files /dev/null and b/build/src/.libs/H5Fsfile.o differ diff --git a/build/src/.libs/H5Fsuper.o b/build/src/.libs/H5Fsuper.o new file mode 100644 index 0000000..3bccbc3 Binary files /dev/null and b/build/src/.libs/H5Fsuper.o differ diff --git a/build/src/.libs/H5Fsuper_cache.o b/build/src/.libs/H5Fsuper_cache.o new file mode 100644 index 0000000..1042bd3 Binary files /dev/null and b/build/src/.libs/H5Fsuper_cache.o differ diff --git a/build/src/.libs/H5Ftest.o b/build/src/.libs/H5Ftest.o new file mode 100644 index 0000000..47df47b Binary files /dev/null and b/build/src/.libs/H5Ftest.o differ diff --git a/build/src/.libs/H5G.o b/build/src/.libs/H5G.o new file mode 100644 index 0000000..4f22997 Binary files /dev/null and b/build/src/.libs/H5G.o differ diff --git a/build/src/.libs/H5Gbtree2.o b/build/src/.libs/H5Gbtree2.o new file mode 100644 index 0000000..354d9e3 Binary files /dev/null and b/build/src/.libs/H5Gbtree2.o differ diff --git a/build/src/.libs/H5Gcache.o b/build/src/.libs/H5Gcache.o new file mode 100644 index 0000000..bf970eb Binary files /dev/null and b/build/src/.libs/H5Gcache.o differ diff --git a/build/src/.libs/H5Gcompact.o b/build/src/.libs/H5Gcompact.o new file mode 100644 index 0000000..a8fb6d7 Binary files /dev/null and b/build/src/.libs/H5Gcompact.o differ diff --git a/build/src/.libs/H5Gdense.o b/build/src/.libs/H5Gdense.o new file mode 100644 index 0000000..690d921 Binary files /dev/null and b/build/src/.libs/H5Gdense.o differ diff --git a/build/src/.libs/H5Gdeprec.o b/build/src/.libs/H5Gdeprec.o new file mode 100644 index 0000000..8538e3f Binary files /dev/null and b/build/src/.libs/H5Gdeprec.o differ diff --git a/build/src/.libs/H5Gent.o b/build/src/.libs/H5Gent.o new file mode 100644 index 0000000..397134e Binary files /dev/null and b/build/src/.libs/H5Gent.o differ diff --git a/build/src/.libs/H5Gint.o b/build/src/.libs/H5Gint.o new file mode 100644 index 0000000..e311f90 Binary files /dev/null and b/build/src/.libs/H5Gint.o differ diff --git a/build/src/.libs/H5Glink.o b/build/src/.libs/H5Glink.o new file mode 100644 index 0000000..5d27404 Binary files /dev/null and b/build/src/.libs/H5Glink.o differ diff --git a/build/src/.libs/H5Gloc.o b/build/src/.libs/H5Gloc.o new file mode 100644 index 0000000..4aa0547 Binary files /dev/null and b/build/src/.libs/H5Gloc.o differ diff --git a/build/src/.libs/H5Gname.o b/build/src/.libs/H5Gname.o new file mode 100644 index 0000000..4078f4d Binary files /dev/null and b/build/src/.libs/H5Gname.o differ diff --git a/build/src/.libs/H5Gnode.o b/build/src/.libs/H5Gnode.o new file mode 100644 index 0000000..bdfe7c2 Binary files /dev/null and b/build/src/.libs/H5Gnode.o differ diff --git a/build/src/.libs/H5Gobj.o b/build/src/.libs/H5Gobj.o new file mode 100644 index 0000000..3bbd23f Binary files /dev/null and b/build/src/.libs/H5Gobj.o differ diff --git a/build/src/.libs/H5Goh.o b/build/src/.libs/H5Goh.o new file mode 100644 index 0000000..3c74d9a Binary files /dev/null and b/build/src/.libs/H5Goh.o differ diff --git a/build/src/.libs/H5Groot.o b/build/src/.libs/H5Groot.o new file mode 100644 index 0000000..ebd88e3 Binary files /dev/null and b/build/src/.libs/H5Groot.o differ diff --git a/build/src/.libs/H5Gstab.o b/build/src/.libs/H5Gstab.o new file mode 100644 index 0000000..fc11c5a Binary files /dev/null and b/build/src/.libs/H5Gstab.o differ diff --git a/build/src/.libs/H5Gtest.o b/build/src/.libs/H5Gtest.o new file mode 100644 index 0000000..7bc0001 Binary files /dev/null and b/build/src/.libs/H5Gtest.o differ diff --git a/build/src/.libs/H5Gtraverse.o b/build/src/.libs/H5Gtraverse.o new file mode 100644 index 0000000..28afa63 Binary files /dev/null and b/build/src/.libs/H5Gtraverse.o differ diff --git a/build/src/.libs/H5HF.o b/build/src/.libs/H5HF.o new file mode 100644 index 0000000..35afdd6 Binary files /dev/null and b/build/src/.libs/H5HF.o differ diff --git a/build/src/.libs/H5HFbtree2.o b/build/src/.libs/H5HFbtree2.o new file mode 100644 index 0000000..a65aeca Binary files /dev/null and b/build/src/.libs/H5HFbtree2.o differ diff --git a/build/src/.libs/H5HFcache.o b/build/src/.libs/H5HFcache.o new file mode 100644 index 0000000..e0604dd Binary files /dev/null and b/build/src/.libs/H5HFcache.o differ diff --git a/build/src/.libs/H5HFdbg.o b/build/src/.libs/H5HFdbg.o new file mode 100644 index 0000000..5a93888 Binary files /dev/null and b/build/src/.libs/H5HFdbg.o differ diff --git a/build/src/.libs/H5HFdblock.o b/build/src/.libs/H5HFdblock.o new file mode 100644 index 0000000..1114686 Binary files /dev/null and b/build/src/.libs/H5HFdblock.o differ diff --git a/build/src/.libs/H5HFdtable.o b/build/src/.libs/H5HFdtable.o new file mode 100644 index 0000000..eed278c Binary files /dev/null and b/build/src/.libs/H5HFdtable.o differ diff --git a/build/src/.libs/H5HFhdr.o b/build/src/.libs/H5HFhdr.o new file mode 100644 index 0000000..418178b Binary files /dev/null and b/build/src/.libs/H5HFhdr.o differ diff --git a/build/src/.libs/H5HFhuge.o b/build/src/.libs/H5HFhuge.o new file mode 100644 index 0000000..9b9212b Binary files /dev/null and b/build/src/.libs/H5HFhuge.o differ diff --git a/build/src/.libs/H5HFiblock.o b/build/src/.libs/H5HFiblock.o new file mode 100644 index 0000000..2ea01af Binary files /dev/null and b/build/src/.libs/H5HFiblock.o differ diff --git a/build/src/.libs/H5HFiter.o b/build/src/.libs/H5HFiter.o new file mode 100644 index 0000000..5b5e4e1 Binary files /dev/null and b/build/src/.libs/H5HFiter.o differ diff --git a/build/src/.libs/H5HFman.o b/build/src/.libs/H5HFman.o new file mode 100644 index 0000000..c35b77f Binary files /dev/null and b/build/src/.libs/H5HFman.o differ diff --git a/build/src/.libs/H5HFsection.o b/build/src/.libs/H5HFsection.o new file mode 100644 index 0000000..a89db51 Binary files /dev/null and b/build/src/.libs/H5HFsection.o differ diff --git a/build/src/.libs/H5HFspace.o b/build/src/.libs/H5HFspace.o new file mode 100644 index 0000000..1d5fb96 Binary files /dev/null and b/build/src/.libs/H5HFspace.o differ diff --git a/build/src/.libs/H5HFstat.o b/build/src/.libs/H5HFstat.o new file mode 100644 index 0000000..7790314 Binary files /dev/null and b/build/src/.libs/H5HFstat.o differ diff --git a/build/src/.libs/H5HFtest.o b/build/src/.libs/H5HFtest.o new file mode 100644 index 0000000..f727c89 Binary files /dev/null and b/build/src/.libs/H5HFtest.o differ diff --git a/build/src/.libs/H5HFtiny.o b/build/src/.libs/H5HFtiny.o new file mode 100644 index 0000000..6d7cff7 Binary files /dev/null and b/build/src/.libs/H5HFtiny.o differ diff --git a/build/src/.libs/H5HG.o b/build/src/.libs/H5HG.o new file mode 100644 index 0000000..ac86504 Binary files /dev/null and b/build/src/.libs/H5HG.o differ diff --git a/build/src/.libs/H5HGcache.o b/build/src/.libs/H5HGcache.o new file mode 100644 index 0000000..5c7d58f Binary files /dev/null and b/build/src/.libs/H5HGcache.o differ diff --git a/build/src/.libs/H5HGdbg.o b/build/src/.libs/H5HGdbg.o new file mode 100644 index 0000000..b837ff5 Binary files /dev/null and b/build/src/.libs/H5HGdbg.o differ diff --git a/build/src/.libs/H5HGquery.o b/build/src/.libs/H5HGquery.o new file mode 100644 index 0000000..33c7eaf Binary files /dev/null and b/build/src/.libs/H5HGquery.o differ diff --git a/build/src/.libs/H5HL.o b/build/src/.libs/H5HL.o new file mode 100644 index 0000000..355f92c Binary files /dev/null and b/build/src/.libs/H5HL.o differ diff --git a/build/src/.libs/H5HLcache.o b/build/src/.libs/H5HLcache.o new file mode 100644 index 0000000..c481443 Binary files /dev/null and b/build/src/.libs/H5HLcache.o differ diff --git a/build/src/.libs/H5HLdbg.o b/build/src/.libs/H5HLdbg.o new file mode 100644 index 0000000..7b57567 Binary files /dev/null and b/build/src/.libs/H5HLdbg.o differ diff --git a/build/src/.libs/H5HLint.o b/build/src/.libs/H5HLint.o new file mode 100644 index 0000000..449aa13 Binary files /dev/null and b/build/src/.libs/H5HLint.o differ diff --git a/build/src/.libs/H5HP.o b/build/src/.libs/H5HP.o new file mode 100644 index 0000000..37192ef Binary files /dev/null and b/build/src/.libs/H5HP.o differ diff --git a/build/src/.libs/H5I.o b/build/src/.libs/H5I.o new file mode 100644 index 0000000..1ee2df5 Binary files /dev/null and b/build/src/.libs/H5I.o differ diff --git a/build/src/.libs/H5Itest.o b/build/src/.libs/H5Itest.o new file mode 100644 index 0000000..631afa0 Binary files /dev/null and b/build/src/.libs/H5Itest.o differ diff --git a/build/src/.libs/H5L.o b/build/src/.libs/H5L.o new file mode 100644 index 0000000..36115b0 Binary files /dev/null and b/build/src/.libs/H5L.o differ diff --git a/build/src/.libs/H5Lexternal.o b/build/src/.libs/H5Lexternal.o new file mode 100644 index 0000000..6ffebb1 Binary files /dev/null and b/build/src/.libs/H5Lexternal.o differ diff --git a/build/src/.libs/H5MF.o b/build/src/.libs/H5MF.o new file mode 100644 index 0000000..b7c454b Binary files /dev/null and b/build/src/.libs/H5MF.o differ diff --git a/build/src/.libs/H5MFaggr.o b/build/src/.libs/H5MFaggr.o new file mode 100644 index 0000000..7db0aee Binary files /dev/null and b/build/src/.libs/H5MFaggr.o differ diff --git a/build/src/.libs/H5MFdbg.o b/build/src/.libs/H5MFdbg.o new file mode 100644 index 0000000..d0b2771 Binary files /dev/null and b/build/src/.libs/H5MFdbg.o differ diff --git a/build/src/.libs/H5MFsection.o b/build/src/.libs/H5MFsection.o new file mode 100644 index 0000000..df97845 Binary files /dev/null and b/build/src/.libs/H5MFsection.o differ diff --git a/build/src/.libs/H5MM.o b/build/src/.libs/H5MM.o new file mode 100644 index 0000000..dc27bc6 Binary files /dev/null and b/build/src/.libs/H5MM.o differ diff --git a/build/src/.libs/H5MP.o b/build/src/.libs/H5MP.o new file mode 100644 index 0000000..2f33b4b Binary files /dev/null and b/build/src/.libs/H5MP.o differ diff --git a/build/src/.libs/H5MPtest.o b/build/src/.libs/H5MPtest.o new file mode 100644 index 0000000..e35611f Binary files /dev/null and b/build/src/.libs/H5MPtest.o differ diff --git a/build/src/.libs/H5O.o b/build/src/.libs/H5O.o new file mode 100644 index 0000000..8a6ea66 Binary files /dev/null and b/build/src/.libs/H5O.o differ diff --git a/build/src/.libs/H5Oainfo.o b/build/src/.libs/H5Oainfo.o new file mode 100644 index 0000000..ddbc64e Binary files /dev/null and b/build/src/.libs/H5Oainfo.o differ diff --git a/build/src/.libs/H5Oalloc.o b/build/src/.libs/H5Oalloc.o new file mode 100644 index 0000000..368efe7 Binary files /dev/null and b/build/src/.libs/H5Oalloc.o differ diff --git a/build/src/.libs/H5Oattr.o b/build/src/.libs/H5Oattr.o new file mode 100644 index 0000000..0035e7b Binary files /dev/null and b/build/src/.libs/H5Oattr.o differ diff --git a/build/src/.libs/H5Oattribute.o b/build/src/.libs/H5Oattribute.o new file mode 100644 index 0000000..ce15038 Binary files /dev/null and b/build/src/.libs/H5Oattribute.o differ diff --git a/build/src/.libs/H5Obogus.o b/build/src/.libs/H5Obogus.o new file mode 100644 index 0000000..2a98b6a Binary files /dev/null and b/build/src/.libs/H5Obogus.o differ diff --git a/build/src/.libs/H5Obtreek.o b/build/src/.libs/H5Obtreek.o new file mode 100644 index 0000000..38c5c57 Binary files /dev/null and b/build/src/.libs/H5Obtreek.o differ diff --git a/build/src/.libs/H5Ocache.o b/build/src/.libs/H5Ocache.o new file mode 100644 index 0000000..1193227 Binary files /dev/null and b/build/src/.libs/H5Ocache.o differ diff --git a/build/src/.libs/H5Ochunk.o b/build/src/.libs/H5Ochunk.o new file mode 100644 index 0000000..d6e28fd Binary files /dev/null and b/build/src/.libs/H5Ochunk.o differ diff --git a/build/src/.libs/H5Ocont.o b/build/src/.libs/H5Ocont.o new file mode 100644 index 0000000..932e7a0 Binary files /dev/null and b/build/src/.libs/H5Ocont.o differ diff --git a/build/src/.libs/H5Ocopy.o b/build/src/.libs/H5Ocopy.o new file mode 100644 index 0000000..41dd483 Binary files /dev/null and b/build/src/.libs/H5Ocopy.o differ diff --git a/build/src/.libs/H5Odbg.o b/build/src/.libs/H5Odbg.o new file mode 100644 index 0000000..a6dd217 Binary files /dev/null and b/build/src/.libs/H5Odbg.o differ diff --git a/build/src/.libs/H5Odrvinfo.o b/build/src/.libs/H5Odrvinfo.o new file mode 100644 index 0000000..3398c2c Binary files /dev/null and b/build/src/.libs/H5Odrvinfo.o differ diff --git a/build/src/.libs/H5Odtype.o b/build/src/.libs/H5Odtype.o new file mode 100644 index 0000000..23d78ce Binary files /dev/null and b/build/src/.libs/H5Odtype.o differ diff --git a/build/src/.libs/H5Oefl.o b/build/src/.libs/H5Oefl.o new file mode 100644 index 0000000..7a95c13 Binary files /dev/null and b/build/src/.libs/H5Oefl.o differ diff --git a/build/src/.libs/H5Ofill.o b/build/src/.libs/H5Ofill.o new file mode 100644 index 0000000..b24e71d Binary files /dev/null and b/build/src/.libs/H5Ofill.o differ diff --git a/build/src/.libs/H5Oginfo.o b/build/src/.libs/H5Oginfo.o new file mode 100644 index 0000000..f389339 Binary files /dev/null and b/build/src/.libs/H5Oginfo.o differ diff --git a/build/src/.libs/H5Olayout.o b/build/src/.libs/H5Olayout.o new file mode 100644 index 0000000..b8e52e6 Binary files /dev/null and b/build/src/.libs/H5Olayout.o differ diff --git a/build/src/.libs/H5Olinfo.o b/build/src/.libs/H5Olinfo.o new file mode 100644 index 0000000..cdcf4f6 Binary files /dev/null and b/build/src/.libs/H5Olinfo.o differ diff --git a/build/src/.libs/H5Olink.o b/build/src/.libs/H5Olink.o new file mode 100644 index 0000000..96dd69c Binary files /dev/null and b/build/src/.libs/H5Olink.o differ diff --git a/build/src/.libs/H5Omessage.o b/build/src/.libs/H5Omessage.o new file mode 100644 index 0000000..537ac41 Binary files /dev/null and b/build/src/.libs/H5Omessage.o differ diff --git a/build/src/.libs/H5Omtime.o b/build/src/.libs/H5Omtime.o new file mode 100644 index 0000000..3540e4a Binary files /dev/null and b/build/src/.libs/H5Omtime.o differ diff --git a/build/src/.libs/H5Oname.o b/build/src/.libs/H5Oname.o new file mode 100644 index 0000000..24dd7e4 Binary files /dev/null and b/build/src/.libs/H5Oname.o differ diff --git a/build/src/.libs/H5Onull.o b/build/src/.libs/H5Onull.o new file mode 100644 index 0000000..26909fc Binary files /dev/null and b/build/src/.libs/H5Onull.o differ diff --git a/build/src/.libs/H5Opline.o b/build/src/.libs/H5Opline.o new file mode 100644 index 0000000..3d91859 Binary files /dev/null and b/build/src/.libs/H5Opline.o differ diff --git a/build/src/.libs/H5Orefcount.o b/build/src/.libs/H5Orefcount.o new file mode 100644 index 0000000..c726f9e Binary files /dev/null and b/build/src/.libs/H5Orefcount.o differ diff --git a/build/src/.libs/H5Osdspace.o b/build/src/.libs/H5Osdspace.o new file mode 100644 index 0000000..80ea8db Binary files /dev/null and b/build/src/.libs/H5Osdspace.o differ diff --git a/build/src/.libs/H5Oshared.o b/build/src/.libs/H5Oshared.o new file mode 100644 index 0000000..f4ff528 Binary files /dev/null and b/build/src/.libs/H5Oshared.o differ diff --git a/build/src/.libs/H5Oshmesg.o b/build/src/.libs/H5Oshmesg.o new file mode 100644 index 0000000..5e0ad25 Binary files /dev/null and b/build/src/.libs/H5Oshmesg.o differ diff --git a/build/src/.libs/H5Ostab.o b/build/src/.libs/H5Ostab.o new file mode 100644 index 0000000..cf0da64 Binary files /dev/null and b/build/src/.libs/H5Ostab.o differ diff --git a/build/src/.libs/H5Otest.o b/build/src/.libs/H5Otest.o new file mode 100644 index 0000000..9f2788c Binary files /dev/null and b/build/src/.libs/H5Otest.o differ diff --git a/build/src/.libs/H5Ounknown.o b/build/src/.libs/H5Ounknown.o new file mode 100644 index 0000000..2e1e144 Binary files /dev/null and b/build/src/.libs/H5Ounknown.o differ diff --git a/build/src/.libs/H5P.o b/build/src/.libs/H5P.o new file mode 100644 index 0000000..5e09e7c Binary files /dev/null and b/build/src/.libs/H5P.o differ diff --git a/build/src/.libs/H5PL.o b/build/src/.libs/H5PL.o new file mode 100644 index 0000000..456651f Binary files /dev/null and b/build/src/.libs/H5PL.o differ diff --git a/build/src/.libs/H5Pacpl.o b/build/src/.libs/H5Pacpl.o new file mode 100644 index 0000000..3384ff6 Binary files /dev/null and b/build/src/.libs/H5Pacpl.o differ diff --git a/build/src/.libs/H5Pdapl.o b/build/src/.libs/H5Pdapl.o new file mode 100644 index 0000000..f74110d Binary files /dev/null and b/build/src/.libs/H5Pdapl.o differ diff --git a/build/src/.libs/H5Pdcpl.o b/build/src/.libs/H5Pdcpl.o new file mode 100644 index 0000000..11895d4 Binary files /dev/null and b/build/src/.libs/H5Pdcpl.o differ diff --git a/build/src/.libs/H5Pdeprec.o b/build/src/.libs/H5Pdeprec.o new file mode 100644 index 0000000..19a9d3f Binary files /dev/null and b/build/src/.libs/H5Pdeprec.o differ diff --git a/build/src/.libs/H5Pdxpl.o b/build/src/.libs/H5Pdxpl.o new file mode 100644 index 0000000..6cc6e19 Binary files /dev/null and b/build/src/.libs/H5Pdxpl.o differ diff --git a/build/src/.libs/H5Pfapl.o b/build/src/.libs/H5Pfapl.o new file mode 100644 index 0000000..87a32e8 Binary files /dev/null and b/build/src/.libs/H5Pfapl.o differ diff --git a/build/src/.libs/H5Pfcpl.o b/build/src/.libs/H5Pfcpl.o new file mode 100644 index 0000000..4878fd2 Binary files /dev/null and b/build/src/.libs/H5Pfcpl.o differ diff --git a/build/src/.libs/H5Pfmpl.o b/build/src/.libs/H5Pfmpl.o new file mode 100644 index 0000000..993085e Binary files /dev/null and b/build/src/.libs/H5Pfmpl.o differ diff --git a/build/src/.libs/H5Pgcpl.o b/build/src/.libs/H5Pgcpl.o new file mode 100644 index 0000000..cbc56f2 Binary files /dev/null and b/build/src/.libs/H5Pgcpl.o differ diff --git a/build/src/.libs/H5Pint.o b/build/src/.libs/H5Pint.o new file mode 100644 index 0000000..0e269b6 Binary files /dev/null and b/build/src/.libs/H5Pint.o differ diff --git a/build/src/.libs/H5Plapl.o b/build/src/.libs/H5Plapl.o new file mode 100644 index 0000000..ddfac77 Binary files /dev/null and b/build/src/.libs/H5Plapl.o differ diff --git a/build/src/.libs/H5Plcpl.o b/build/src/.libs/H5Plcpl.o new file mode 100644 index 0000000..07289e4 Binary files /dev/null and b/build/src/.libs/H5Plcpl.o differ diff --git a/build/src/.libs/H5Pocpl.o b/build/src/.libs/H5Pocpl.o new file mode 100644 index 0000000..2e28924 Binary files /dev/null and b/build/src/.libs/H5Pocpl.o differ diff --git a/build/src/.libs/H5Pocpypl.o b/build/src/.libs/H5Pocpypl.o new file mode 100644 index 0000000..dd46790 Binary files /dev/null and b/build/src/.libs/H5Pocpypl.o differ diff --git a/build/src/.libs/H5Pstrcpl.o b/build/src/.libs/H5Pstrcpl.o new file mode 100644 index 0000000..f714c4d Binary files /dev/null and b/build/src/.libs/H5Pstrcpl.o differ diff --git a/build/src/.libs/H5Ptest.o b/build/src/.libs/H5Ptest.o new file mode 100644 index 0000000..f038da6 Binary files /dev/null and b/build/src/.libs/H5Ptest.o differ diff --git a/build/src/.libs/H5R.o b/build/src/.libs/H5R.o new file mode 100644 index 0000000..9c8610d Binary files /dev/null and b/build/src/.libs/H5R.o differ diff --git a/build/src/.libs/H5RC.o b/build/src/.libs/H5RC.o new file mode 100644 index 0000000..78ede40 Binary files /dev/null and b/build/src/.libs/H5RC.o differ diff --git a/build/src/.libs/H5RS.o b/build/src/.libs/H5RS.o new file mode 100644 index 0000000..e044f22 Binary files /dev/null and b/build/src/.libs/H5RS.o differ diff --git a/build/src/.libs/H5Rdeprec.o b/build/src/.libs/H5Rdeprec.o new file mode 100644 index 0000000..2f8e7e3 Binary files /dev/null and b/build/src/.libs/H5Rdeprec.o differ diff --git a/build/src/.libs/H5S.o b/build/src/.libs/H5S.o new file mode 100644 index 0000000..044d359 Binary files /dev/null and b/build/src/.libs/H5S.o differ diff --git a/build/src/.libs/H5SL.o b/build/src/.libs/H5SL.o new file mode 100644 index 0000000..8843c69 Binary files /dev/null and b/build/src/.libs/H5SL.o differ diff --git a/build/src/.libs/H5SM.o b/build/src/.libs/H5SM.o new file mode 100644 index 0000000..ffbc8ad Binary files /dev/null and b/build/src/.libs/H5SM.o differ diff --git a/build/src/.libs/H5SMbtree2.o b/build/src/.libs/H5SMbtree2.o new file mode 100644 index 0000000..dab3fb1 Binary files /dev/null and b/build/src/.libs/H5SMbtree2.o differ diff --git a/build/src/.libs/H5SMcache.o b/build/src/.libs/H5SMcache.o new file mode 100644 index 0000000..5810b67 Binary files /dev/null and b/build/src/.libs/H5SMcache.o differ diff --git a/build/src/.libs/H5SMmessage.o b/build/src/.libs/H5SMmessage.o new file mode 100644 index 0000000..6bc6372 Binary files /dev/null and b/build/src/.libs/H5SMmessage.o differ diff --git a/build/src/.libs/H5SMtest.o b/build/src/.libs/H5SMtest.o new file mode 100644 index 0000000..5536d23 Binary files /dev/null and b/build/src/.libs/H5SMtest.o differ diff --git a/build/src/.libs/H5ST.o b/build/src/.libs/H5ST.o new file mode 100644 index 0000000..4394dbf Binary files /dev/null and b/build/src/.libs/H5ST.o differ diff --git a/build/src/.libs/H5Sall.o b/build/src/.libs/H5Sall.o new file mode 100644 index 0000000..8c8d784 Binary files /dev/null and b/build/src/.libs/H5Sall.o differ diff --git a/build/src/.libs/H5Sdbg.o b/build/src/.libs/H5Sdbg.o new file mode 100644 index 0000000..c0b8348 Binary files /dev/null and b/build/src/.libs/H5Sdbg.o differ diff --git a/build/src/.libs/H5Shyper.o b/build/src/.libs/H5Shyper.o new file mode 100644 index 0000000..6559fce Binary files /dev/null and b/build/src/.libs/H5Shyper.o differ diff --git a/build/src/.libs/H5Smpio.o b/build/src/.libs/H5Smpio.o new file mode 100644 index 0000000..f1f0b95 Binary files /dev/null and b/build/src/.libs/H5Smpio.o differ diff --git a/build/src/.libs/H5Snone.o b/build/src/.libs/H5Snone.o new file mode 100644 index 0000000..3e716f2 Binary files /dev/null and b/build/src/.libs/H5Snone.o differ diff --git a/build/src/.libs/H5Spoint.o b/build/src/.libs/H5Spoint.o new file mode 100644 index 0000000..5c98ea0 Binary files /dev/null and b/build/src/.libs/H5Spoint.o differ diff --git a/build/src/.libs/H5Sselect.o b/build/src/.libs/H5Sselect.o new file mode 100644 index 0000000..f89c394 Binary files /dev/null and b/build/src/.libs/H5Sselect.o differ diff --git a/build/src/.libs/H5Stest.o b/build/src/.libs/H5Stest.o new file mode 100644 index 0000000..cd53096 Binary files /dev/null and b/build/src/.libs/H5Stest.o differ diff --git a/build/src/.libs/H5T.o b/build/src/.libs/H5T.o new file mode 100644 index 0000000..d4b3dc7 Binary files /dev/null and b/build/src/.libs/H5T.o differ diff --git a/build/src/.libs/H5TS.o b/build/src/.libs/H5TS.o new file mode 100644 index 0000000..b4b2a56 Binary files /dev/null and b/build/src/.libs/H5TS.o differ diff --git a/build/src/.libs/H5Tarray.o b/build/src/.libs/H5Tarray.o new file mode 100644 index 0000000..db5d040 Binary files /dev/null and b/build/src/.libs/H5Tarray.o differ diff --git a/build/src/.libs/H5Tbit.o b/build/src/.libs/H5Tbit.o new file mode 100644 index 0000000..58185ca Binary files /dev/null and b/build/src/.libs/H5Tbit.o differ diff --git a/build/src/.libs/H5Tcommit.o b/build/src/.libs/H5Tcommit.o new file mode 100644 index 0000000..78e82d0 Binary files /dev/null and b/build/src/.libs/H5Tcommit.o differ diff --git a/build/src/.libs/H5Tcompound.o b/build/src/.libs/H5Tcompound.o new file mode 100644 index 0000000..1bcba31 Binary files /dev/null and b/build/src/.libs/H5Tcompound.o differ diff --git a/build/src/.libs/H5Tconv.o b/build/src/.libs/H5Tconv.o new file mode 100644 index 0000000..c2b9216 Binary files /dev/null and b/build/src/.libs/H5Tconv.o differ diff --git a/build/src/.libs/H5Tcset.o b/build/src/.libs/H5Tcset.o new file mode 100644 index 0000000..4a0a6d9 Binary files /dev/null and b/build/src/.libs/H5Tcset.o differ diff --git a/build/src/.libs/H5Tdbg.o b/build/src/.libs/H5Tdbg.o new file mode 100644 index 0000000..58f397b Binary files /dev/null and b/build/src/.libs/H5Tdbg.o differ diff --git a/build/src/.libs/H5Tdeprec.o b/build/src/.libs/H5Tdeprec.o new file mode 100644 index 0000000..42a20a0 Binary files /dev/null and b/build/src/.libs/H5Tdeprec.o differ diff --git a/build/src/.libs/H5Tenum.o b/build/src/.libs/H5Tenum.o new file mode 100644 index 0000000..61dce5a Binary files /dev/null and b/build/src/.libs/H5Tenum.o differ diff --git a/build/src/.libs/H5Tfields.o b/build/src/.libs/H5Tfields.o new file mode 100644 index 0000000..55df550 Binary files /dev/null and b/build/src/.libs/H5Tfields.o differ diff --git a/build/src/.libs/H5Tfixed.o b/build/src/.libs/H5Tfixed.o new file mode 100644 index 0000000..a167e4e Binary files /dev/null and b/build/src/.libs/H5Tfixed.o differ diff --git a/build/src/.libs/H5Tfloat.o b/build/src/.libs/H5Tfloat.o new file mode 100644 index 0000000..d2c8808 Binary files /dev/null and b/build/src/.libs/H5Tfloat.o differ diff --git a/build/src/.libs/H5Tinit.o b/build/src/.libs/H5Tinit.o new file mode 100644 index 0000000..d872e3c Binary files /dev/null and b/build/src/.libs/H5Tinit.o differ diff --git a/build/src/.libs/H5Tnative.o b/build/src/.libs/H5Tnative.o new file mode 100644 index 0000000..0441d3a Binary files /dev/null and b/build/src/.libs/H5Tnative.o differ diff --git a/build/src/.libs/H5Toffset.o b/build/src/.libs/H5Toffset.o new file mode 100644 index 0000000..55b991e Binary files /dev/null and b/build/src/.libs/H5Toffset.o differ diff --git a/build/src/.libs/H5Toh.o b/build/src/.libs/H5Toh.o new file mode 100644 index 0000000..9a9a27f Binary files /dev/null and b/build/src/.libs/H5Toh.o differ diff --git a/build/src/.libs/H5Topaque.o b/build/src/.libs/H5Topaque.o new file mode 100644 index 0000000..ea29add Binary files /dev/null and b/build/src/.libs/H5Topaque.o differ diff --git a/build/src/.libs/H5Torder.o b/build/src/.libs/H5Torder.o new file mode 100644 index 0000000..9d398e8 Binary files /dev/null and b/build/src/.libs/H5Torder.o differ diff --git a/build/src/.libs/H5Tpad.o b/build/src/.libs/H5Tpad.o new file mode 100644 index 0000000..75d5abc Binary files /dev/null and b/build/src/.libs/H5Tpad.o differ diff --git a/build/src/.libs/H5Tprecis.o b/build/src/.libs/H5Tprecis.o new file mode 100644 index 0000000..f3c220c Binary files /dev/null and b/build/src/.libs/H5Tprecis.o differ diff --git a/build/src/.libs/H5Tstrpad.o b/build/src/.libs/H5Tstrpad.o new file mode 100644 index 0000000..e7aba3b Binary files /dev/null and b/build/src/.libs/H5Tstrpad.o differ diff --git a/build/src/.libs/H5Tvisit.o b/build/src/.libs/H5Tvisit.o new file mode 100644 index 0000000..31443ae Binary files /dev/null and b/build/src/.libs/H5Tvisit.o differ diff --git a/build/src/.libs/H5Tvlen.o b/build/src/.libs/H5Tvlen.o new file mode 100644 index 0000000..fd8f395 Binary files /dev/null and b/build/src/.libs/H5Tvlen.o differ diff --git a/build/src/.libs/H5VM.o b/build/src/.libs/H5VM.o new file mode 100644 index 0000000..04443db Binary files /dev/null and b/build/src/.libs/H5VM.o differ diff --git a/build/src/.libs/H5WB.o b/build/src/.libs/H5WB.o new file mode 100644 index 0000000..c0f9279 Binary files /dev/null and b/build/src/.libs/H5WB.o differ diff --git a/build/src/.libs/H5Z.o b/build/src/.libs/H5Z.o new file mode 100644 index 0000000..ac6891b Binary files /dev/null and b/build/src/.libs/H5Z.o differ diff --git a/build/src/.libs/H5Zdeflate.o b/build/src/.libs/H5Zdeflate.o new file mode 100644 index 0000000..80be862 Binary files /dev/null and b/build/src/.libs/H5Zdeflate.o differ diff --git a/build/src/.libs/H5Zfletcher32.o b/build/src/.libs/H5Zfletcher32.o new file mode 100644 index 0000000..9525158 Binary files /dev/null and b/build/src/.libs/H5Zfletcher32.o differ diff --git a/build/src/.libs/H5Znbit.o b/build/src/.libs/H5Znbit.o new file mode 100644 index 0000000..08a9478 Binary files /dev/null and b/build/src/.libs/H5Znbit.o differ diff --git a/build/src/.libs/H5Zscaleoffset.o b/build/src/.libs/H5Zscaleoffset.o new file mode 100644 index 0000000..d0f7e03 Binary files /dev/null and b/build/src/.libs/H5Zscaleoffset.o differ diff --git a/build/src/.libs/H5Zshuffle.o b/build/src/.libs/H5Zshuffle.o new file mode 100644 index 0000000..4229ccd Binary files /dev/null and b/build/src/.libs/H5Zshuffle.o differ diff --git a/build/src/.libs/H5Zszip.o b/build/src/.libs/H5Zszip.o new file mode 100644 index 0000000..23ac07f Binary files /dev/null and b/build/src/.libs/H5Zszip.o differ diff --git a/build/src/.libs/H5Ztrans.o b/build/src/.libs/H5Ztrans.o new file mode 100644 index 0000000..be452c9 Binary files /dev/null and b/build/src/.libs/H5Ztrans.o differ diff --git a/build/src/.libs/H5checksum.o b/build/src/.libs/H5checksum.o new file mode 100644 index 0000000..95956c5 Binary files /dev/null and b/build/src/.libs/H5checksum.o differ diff --git a/build/src/.libs/H5dbg.o b/build/src/.libs/H5dbg.o new file mode 100644 index 0000000..4416b9c Binary files /dev/null and b/build/src/.libs/H5dbg.o differ diff --git a/build/src/.libs/H5lib_settings.o b/build/src/.libs/H5lib_settings.o new file mode 100644 index 0000000..1c51281 Binary files /dev/null and b/build/src/.libs/H5lib_settings.o differ diff --git a/build/src/.libs/H5system.o b/build/src/.libs/H5system.o new file mode 100644 index 0000000..8381312 Binary files /dev/null and b/build/src/.libs/H5system.o differ diff --git a/build/src/.libs/H5timer.o b/build/src/.libs/H5timer.o new file mode 100644 index 0000000..c733f3d Binary files /dev/null and b/build/src/.libs/H5timer.o differ diff --git a/build/src/.libs/H5trace.o b/build/src/.libs/H5trace.o new file mode 100644 index 0000000..5fadb74 Binary files /dev/null and b/build/src/.libs/H5trace.o differ diff --git a/build/src/.libs/libhdf5.a b/build/src/.libs/libhdf5.a new file mode 100644 index 0000000..03a8da4 Binary files /dev/null and b/build/src/.libs/libhdf5.a differ diff --git a/build/src/.libs/libhdf5.la b/build/src/.libs/libhdf5.la new file mode 120000 index 0000000..f8585f0 --- /dev/null +++ b/build/src/.libs/libhdf5.la @@ -0,0 +1 @@ +../libhdf5.la \ No newline at end of file diff --git a/build/src/.libs/libhdf5.lai b/build/src/.libs/libhdf5.lai new file mode 100644 index 0000000..cdb7138 --- /dev/null +++ b/build/src/.libs/libhdf5.lai @@ -0,0 +1,41 @@ +# libhdf5.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libhdf5.so.10' + +# Names of this library. +library_names='libhdf5.so.10.3.2 libhdf5.so.10 libhdf5.so' + +# The name of the static archive. +old_library='libhdf5.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libhdf5. +current=13 +age=3 +revision=2 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' diff --git a/build/src/.libs/libhdf5.so b/build/src/.libs/libhdf5.so new file mode 120000 index 0000000..38fbf84 --- /dev/null +++ b/build/src/.libs/libhdf5.so @@ -0,0 +1 @@ +libhdf5.so.10.3.2 \ No newline at end of file diff --git a/build/src/.libs/libhdf5.so.10 b/build/src/.libs/libhdf5.so.10 new file mode 120000 index 0000000..38fbf84 --- /dev/null +++ b/build/src/.libs/libhdf5.so.10 @@ -0,0 +1 @@ +libhdf5.so.10.3.2 \ No newline at end of file diff --git a/build/src/.libs/libhdf5.so.10.3.2 b/build/src/.libs/libhdf5.so.10.3.2 new file mode 100755 index 0000000..41e6102 Binary files /dev/null and b/build/src/.libs/libhdf5.so.10.3.2 differ diff --git a/build/src/H5.lo b/build/src/H5.lo new file mode 100644 index 0000000..a3bb625 --- /dev/null +++ b/build/src/H5.lo @@ -0,0 +1,12 @@ +# H5.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5.o' + +# Name of the non-PIC object +non_pic_object='H5.o' + diff --git a/build/src/H5.o b/build/src/H5.o new file mode 100644 index 0000000..34a63a1 Binary files /dev/null and b/build/src/H5.o differ diff --git a/build/src/H5A.lo b/build/src/H5A.lo new file mode 100644 index 0000000..ad0327b --- /dev/null +++ b/build/src/H5A.lo @@ -0,0 +1,12 @@ +# H5A.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5A.o' + +# Name of the non-PIC object +non_pic_object='H5A.o' + diff --git a/build/src/H5A.o b/build/src/H5A.o new file mode 100644 index 0000000..96d4de5 Binary files /dev/null and b/build/src/H5A.o differ diff --git a/build/src/H5AC.lo b/build/src/H5AC.lo new file mode 100644 index 0000000..a2d15d4 --- /dev/null +++ b/build/src/H5AC.lo @@ -0,0 +1,12 @@ +# H5AC.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5AC.o' + +# Name of the non-PIC object +non_pic_object='H5AC.o' + diff --git a/build/src/H5AC.o b/build/src/H5AC.o new file mode 100644 index 0000000..b670b11 Binary files /dev/null and b/build/src/H5AC.o differ diff --git a/build/src/H5Abtree2.lo b/build/src/H5Abtree2.lo new file mode 100644 index 0000000..96c5add --- /dev/null +++ b/build/src/H5Abtree2.lo @@ -0,0 +1,12 @@ +# H5Abtree2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Abtree2.o' + +# Name of the non-PIC object +non_pic_object='H5Abtree2.o' + diff --git a/build/src/H5Abtree2.o b/build/src/H5Abtree2.o new file mode 100644 index 0000000..7f51e0f Binary files /dev/null and b/build/src/H5Abtree2.o differ diff --git a/build/src/H5Adense.lo b/build/src/H5Adense.lo new file mode 100644 index 0000000..d9137b0 --- /dev/null +++ b/build/src/H5Adense.lo @@ -0,0 +1,12 @@ +# H5Adense.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Adense.o' + +# Name of the non-PIC object +non_pic_object='H5Adense.o' + diff --git a/build/src/H5Adense.o b/build/src/H5Adense.o new file mode 100644 index 0000000..73928a0 Binary files /dev/null and b/build/src/H5Adense.o differ diff --git a/build/src/H5Adeprec.lo b/build/src/H5Adeprec.lo new file mode 100644 index 0000000..20e957c --- /dev/null +++ b/build/src/H5Adeprec.lo @@ -0,0 +1,12 @@ +# H5Adeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Adeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Adeprec.o' + diff --git a/build/src/H5Adeprec.o b/build/src/H5Adeprec.o new file mode 100644 index 0000000..c49fc50 Binary files /dev/null and b/build/src/H5Adeprec.o differ diff --git a/build/src/H5Aint.lo b/build/src/H5Aint.lo new file mode 100644 index 0000000..a5bd70d --- /dev/null +++ b/build/src/H5Aint.lo @@ -0,0 +1,12 @@ +# H5Aint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Aint.o' + +# Name of the non-PIC object +non_pic_object='H5Aint.o' + diff --git a/build/src/H5Aint.o b/build/src/H5Aint.o new file mode 100644 index 0000000..37c9f55 Binary files /dev/null and b/build/src/H5Aint.o differ diff --git a/build/src/H5Atest.lo b/build/src/H5Atest.lo new file mode 100644 index 0000000..94368bd --- /dev/null +++ b/build/src/H5Atest.lo @@ -0,0 +1,12 @@ +# H5Atest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Atest.o' + +# Name of the non-PIC object +non_pic_object='H5Atest.o' + diff --git a/build/src/H5Atest.o b/build/src/H5Atest.o new file mode 100644 index 0000000..6fb653c Binary files /dev/null and b/build/src/H5Atest.o differ diff --git a/build/src/H5B.lo b/build/src/H5B.lo new file mode 100644 index 0000000..955a1ba --- /dev/null +++ b/build/src/H5B.lo @@ -0,0 +1,12 @@ +# H5B.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B.o' + +# Name of the non-PIC object +non_pic_object='H5B.o' + diff --git a/build/src/H5B.o b/build/src/H5B.o new file mode 100644 index 0000000..b6146d5 Binary files /dev/null and b/build/src/H5B.o differ diff --git a/build/src/H5B2.lo b/build/src/H5B2.lo new file mode 100644 index 0000000..00889af --- /dev/null +++ b/build/src/H5B2.lo @@ -0,0 +1,12 @@ +# H5B2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2.o' + +# Name of the non-PIC object +non_pic_object='H5B2.o' + diff --git a/build/src/H5B2.o b/build/src/H5B2.o new file mode 100644 index 0000000..447671e Binary files /dev/null and b/build/src/H5B2.o differ diff --git a/build/src/H5B2cache.lo b/build/src/H5B2cache.lo new file mode 100644 index 0000000..87ea373 --- /dev/null +++ b/build/src/H5B2cache.lo @@ -0,0 +1,12 @@ +# H5B2cache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2cache.o' + +# Name of the non-PIC object +non_pic_object='H5B2cache.o' + diff --git a/build/src/H5B2cache.o b/build/src/H5B2cache.o new file mode 100644 index 0000000..70c2a05 Binary files /dev/null and b/build/src/H5B2cache.o differ diff --git a/build/src/H5B2dbg.lo b/build/src/H5B2dbg.lo new file mode 100644 index 0000000..f4388af --- /dev/null +++ b/build/src/H5B2dbg.lo @@ -0,0 +1,12 @@ +# H5B2dbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2dbg.o' + +# Name of the non-PIC object +non_pic_object='H5B2dbg.o' + diff --git a/build/src/H5B2dbg.o b/build/src/H5B2dbg.o new file mode 100644 index 0000000..f8e010b Binary files /dev/null and b/build/src/H5B2dbg.o differ diff --git a/build/src/H5B2hdr.lo b/build/src/H5B2hdr.lo new file mode 100644 index 0000000..bed3f46 --- /dev/null +++ b/build/src/H5B2hdr.lo @@ -0,0 +1,12 @@ +# H5B2hdr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2hdr.o' + +# Name of the non-PIC object +non_pic_object='H5B2hdr.o' + diff --git a/build/src/H5B2hdr.o b/build/src/H5B2hdr.o new file mode 100644 index 0000000..aaaf12a Binary files /dev/null and b/build/src/H5B2hdr.o differ diff --git a/build/src/H5B2int.lo b/build/src/H5B2int.lo new file mode 100644 index 0000000..f323202 --- /dev/null +++ b/build/src/H5B2int.lo @@ -0,0 +1,12 @@ +# H5B2int.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2int.o' + +# Name of the non-PIC object +non_pic_object='H5B2int.o' + diff --git a/build/src/H5B2int.o b/build/src/H5B2int.o new file mode 100644 index 0000000..1507b4d Binary files /dev/null and b/build/src/H5B2int.o differ diff --git a/build/src/H5B2stat.lo b/build/src/H5B2stat.lo new file mode 100644 index 0000000..7ef4251 --- /dev/null +++ b/build/src/H5B2stat.lo @@ -0,0 +1,12 @@ +# H5B2stat.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2stat.o' + +# Name of the non-PIC object +non_pic_object='H5B2stat.o' + diff --git a/build/src/H5B2stat.o b/build/src/H5B2stat.o new file mode 100644 index 0000000..7530a58 Binary files /dev/null and b/build/src/H5B2stat.o differ diff --git a/build/src/H5B2test.lo b/build/src/H5B2test.lo new file mode 100644 index 0000000..8500753 --- /dev/null +++ b/build/src/H5B2test.lo @@ -0,0 +1,12 @@ +# H5B2test.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5B2test.o' + +# Name of the non-PIC object +non_pic_object='H5B2test.o' + diff --git a/build/src/H5B2test.o b/build/src/H5B2test.o new file mode 100644 index 0000000..8839ff5 Binary files /dev/null and b/build/src/H5B2test.o differ diff --git a/build/src/H5Bcache.lo b/build/src/H5Bcache.lo new file mode 100644 index 0000000..ffb4335 --- /dev/null +++ b/build/src/H5Bcache.lo @@ -0,0 +1,12 @@ +# H5Bcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Bcache.o' + +# Name of the non-PIC object +non_pic_object='H5Bcache.o' + diff --git a/build/src/H5Bcache.o b/build/src/H5Bcache.o new file mode 100644 index 0000000..69f2545 Binary files /dev/null and b/build/src/H5Bcache.o differ diff --git a/build/src/H5Bdbg.lo b/build/src/H5Bdbg.lo new file mode 100644 index 0000000..9ddea31 --- /dev/null +++ b/build/src/H5Bdbg.lo @@ -0,0 +1,12 @@ +# H5Bdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Bdbg.o' + +# Name of the non-PIC object +non_pic_object='H5Bdbg.o' + diff --git a/build/src/H5Bdbg.o b/build/src/H5Bdbg.o new file mode 100644 index 0000000..89163c6 Binary files /dev/null and b/build/src/H5Bdbg.o differ diff --git a/build/src/H5C.lo b/build/src/H5C.lo new file mode 100644 index 0000000..c30fef8 --- /dev/null +++ b/build/src/H5C.lo @@ -0,0 +1,12 @@ +# H5C.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5C.o' + +# Name of the non-PIC object +non_pic_object='H5C.o' + diff --git a/build/src/H5C.o b/build/src/H5C.o new file mode 100644 index 0000000..8839c17 Binary files /dev/null and b/build/src/H5C.o differ diff --git a/build/src/H5CS.lo b/build/src/H5CS.lo new file mode 100644 index 0000000..11f241b --- /dev/null +++ b/build/src/H5CS.lo @@ -0,0 +1,12 @@ +# H5CS.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5CS.o' + +# Name of the non-PIC object +non_pic_object='H5CS.o' + diff --git a/build/src/H5CS.o b/build/src/H5CS.o new file mode 100644 index 0000000..aced8e1 Binary files /dev/null and b/build/src/H5CS.o differ diff --git a/build/src/H5D.lo b/build/src/H5D.lo new file mode 100644 index 0000000..d5192ae --- /dev/null +++ b/build/src/H5D.lo @@ -0,0 +1,12 @@ +# H5D.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5D.o' + +# Name of the non-PIC object +non_pic_object='H5D.o' + diff --git a/build/src/H5D.o b/build/src/H5D.o new file mode 100644 index 0000000..9e16179 Binary files /dev/null and b/build/src/H5D.o differ diff --git a/build/src/H5Dbtree.lo b/build/src/H5Dbtree.lo new file mode 100644 index 0000000..bfb8d38 --- /dev/null +++ b/build/src/H5Dbtree.lo @@ -0,0 +1,12 @@ +# H5Dbtree.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dbtree.o' + +# Name of the non-PIC object +non_pic_object='H5Dbtree.o' + diff --git a/build/src/H5Dbtree.o b/build/src/H5Dbtree.o new file mode 100644 index 0000000..a231eb0 Binary files /dev/null and b/build/src/H5Dbtree.o differ diff --git a/build/src/H5Dchunk.lo b/build/src/H5Dchunk.lo new file mode 100644 index 0000000..c99ee3f --- /dev/null +++ b/build/src/H5Dchunk.lo @@ -0,0 +1,12 @@ +# H5Dchunk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dchunk.o' + +# Name of the non-PIC object +non_pic_object='H5Dchunk.o' + diff --git a/build/src/H5Dchunk.o b/build/src/H5Dchunk.o new file mode 100644 index 0000000..63c2dbf Binary files /dev/null and b/build/src/H5Dchunk.o differ diff --git a/build/src/H5Dcompact.lo b/build/src/H5Dcompact.lo new file mode 100644 index 0000000..39ac22b --- /dev/null +++ b/build/src/H5Dcompact.lo @@ -0,0 +1,12 @@ +# H5Dcompact.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dcompact.o' + +# Name of the non-PIC object +non_pic_object='H5Dcompact.o' + diff --git a/build/src/H5Dcompact.o b/build/src/H5Dcompact.o new file mode 100644 index 0000000..cff3638 Binary files /dev/null and b/build/src/H5Dcompact.o differ diff --git a/build/src/H5Dcontig.lo b/build/src/H5Dcontig.lo new file mode 100644 index 0000000..b6d9dd5 --- /dev/null +++ b/build/src/H5Dcontig.lo @@ -0,0 +1,12 @@ +# H5Dcontig.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dcontig.o' + +# Name of the non-PIC object +non_pic_object='H5Dcontig.o' + diff --git a/build/src/H5Dcontig.o b/build/src/H5Dcontig.o new file mode 100644 index 0000000..bbd298a Binary files /dev/null and b/build/src/H5Dcontig.o differ diff --git a/build/src/H5Ddbg.lo b/build/src/H5Ddbg.lo new file mode 100644 index 0000000..e7d57db --- /dev/null +++ b/build/src/H5Ddbg.lo @@ -0,0 +1,12 @@ +# H5Ddbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ddbg.o' + +# Name of the non-PIC object +non_pic_object='H5Ddbg.o' + diff --git a/build/src/H5Ddbg.o b/build/src/H5Ddbg.o new file mode 100644 index 0000000..60abc83 Binary files /dev/null and b/build/src/H5Ddbg.o differ diff --git a/build/src/H5Ddeprec.lo b/build/src/H5Ddeprec.lo new file mode 100644 index 0000000..0248da2 --- /dev/null +++ b/build/src/H5Ddeprec.lo @@ -0,0 +1,12 @@ +# H5Ddeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ddeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Ddeprec.o' + diff --git a/build/src/H5Ddeprec.o b/build/src/H5Ddeprec.o new file mode 100644 index 0000000..c4275b1 Binary files /dev/null and b/build/src/H5Ddeprec.o differ diff --git a/build/src/H5Defl.lo b/build/src/H5Defl.lo new file mode 100644 index 0000000..085ad8b --- /dev/null +++ b/build/src/H5Defl.lo @@ -0,0 +1,12 @@ +# H5Defl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Defl.o' + +# Name of the non-PIC object +non_pic_object='H5Defl.o' + diff --git a/build/src/H5Defl.o b/build/src/H5Defl.o new file mode 100644 index 0000000..950051f Binary files /dev/null and b/build/src/H5Defl.o differ diff --git a/build/src/H5Dfill.lo b/build/src/H5Dfill.lo new file mode 100644 index 0000000..cff6ec5 --- /dev/null +++ b/build/src/H5Dfill.lo @@ -0,0 +1,12 @@ +# H5Dfill.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dfill.o' + +# Name of the non-PIC object +non_pic_object='H5Dfill.o' + diff --git a/build/src/H5Dfill.o b/build/src/H5Dfill.o new file mode 100644 index 0000000..2c71db4 Binary files /dev/null and b/build/src/H5Dfill.o differ diff --git a/build/src/H5Dint.lo b/build/src/H5Dint.lo new file mode 100644 index 0000000..7acecd5 --- /dev/null +++ b/build/src/H5Dint.lo @@ -0,0 +1,12 @@ +# H5Dint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dint.o' + +# Name of the non-PIC object +non_pic_object='H5Dint.o' + diff --git a/build/src/H5Dint.o b/build/src/H5Dint.o new file mode 100644 index 0000000..52dfbd6 Binary files /dev/null and b/build/src/H5Dint.o differ diff --git a/build/src/H5Dio.lo b/build/src/H5Dio.lo new file mode 100644 index 0000000..3206363 --- /dev/null +++ b/build/src/H5Dio.lo @@ -0,0 +1,12 @@ +# H5Dio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dio.o' + +# Name of the non-PIC object +non_pic_object='H5Dio.o' + diff --git a/build/src/H5Dio.o b/build/src/H5Dio.o new file mode 100644 index 0000000..ea7a835 Binary files /dev/null and b/build/src/H5Dio.o differ diff --git a/build/src/H5Dlayout.lo b/build/src/H5Dlayout.lo new file mode 100644 index 0000000..480b499 --- /dev/null +++ b/build/src/H5Dlayout.lo @@ -0,0 +1,12 @@ +# H5Dlayout.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dlayout.o' + +# Name of the non-PIC object +non_pic_object='H5Dlayout.o' + diff --git a/build/src/H5Dlayout.o b/build/src/H5Dlayout.o new file mode 100644 index 0000000..f156720 Binary files /dev/null and b/build/src/H5Dlayout.o differ diff --git a/build/src/H5Dmpio.lo b/build/src/H5Dmpio.lo new file mode 100644 index 0000000..a5e4aa7 --- /dev/null +++ b/build/src/H5Dmpio.lo @@ -0,0 +1,12 @@ +# H5Dmpio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dmpio.o' + +# Name of the non-PIC object +non_pic_object='H5Dmpio.o' + diff --git a/build/src/H5Dmpio.o b/build/src/H5Dmpio.o new file mode 100644 index 0000000..1d31b52 Binary files /dev/null and b/build/src/H5Dmpio.o differ diff --git a/build/src/H5Doh.lo b/build/src/H5Doh.lo new file mode 100644 index 0000000..4092dd9 --- /dev/null +++ b/build/src/H5Doh.lo @@ -0,0 +1,12 @@ +# H5Doh.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Doh.o' + +# Name of the non-PIC object +non_pic_object='H5Doh.o' + diff --git a/build/src/H5Doh.o b/build/src/H5Doh.o new file mode 100644 index 0000000..0c29d15 Binary files /dev/null and b/build/src/H5Doh.o differ diff --git a/build/src/H5Dscatgath.lo b/build/src/H5Dscatgath.lo new file mode 100644 index 0000000..90b485c --- /dev/null +++ b/build/src/H5Dscatgath.lo @@ -0,0 +1,12 @@ +# H5Dscatgath.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dscatgath.o' + +# Name of the non-PIC object +non_pic_object='H5Dscatgath.o' + diff --git a/build/src/H5Dscatgath.o b/build/src/H5Dscatgath.o new file mode 100644 index 0000000..a8a2ac4 Binary files /dev/null and b/build/src/H5Dscatgath.o differ diff --git a/build/src/H5Dselect.lo b/build/src/H5Dselect.lo new file mode 100644 index 0000000..e2e44bc --- /dev/null +++ b/build/src/H5Dselect.lo @@ -0,0 +1,12 @@ +# H5Dselect.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dselect.o' + +# Name of the non-PIC object +non_pic_object='H5Dselect.o' + diff --git a/build/src/H5Dselect.o b/build/src/H5Dselect.o new file mode 100644 index 0000000..74f0175 Binary files /dev/null and b/build/src/H5Dselect.o differ diff --git a/build/src/H5Dtest.lo b/build/src/H5Dtest.lo new file mode 100644 index 0000000..fe73d1a --- /dev/null +++ b/build/src/H5Dtest.lo @@ -0,0 +1,12 @@ +# H5Dtest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Dtest.o' + +# Name of the non-PIC object +non_pic_object='H5Dtest.o' + diff --git a/build/src/H5Dtest.o b/build/src/H5Dtest.o new file mode 100644 index 0000000..885a498 Binary files /dev/null and b/build/src/H5Dtest.o differ diff --git a/build/src/H5E.lo b/build/src/H5E.lo new file mode 100644 index 0000000..abb57e7 --- /dev/null +++ b/build/src/H5E.lo @@ -0,0 +1,12 @@ +# H5E.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5E.o' + +# Name of the non-PIC object +non_pic_object='H5E.o' + diff --git a/build/src/H5E.o b/build/src/H5E.o new file mode 100644 index 0000000..617611e Binary files /dev/null and b/build/src/H5E.o differ diff --git a/build/src/H5Edeprec.lo b/build/src/H5Edeprec.lo new file mode 100644 index 0000000..1f7e0a9 --- /dev/null +++ b/build/src/H5Edeprec.lo @@ -0,0 +1,12 @@ +# H5Edeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Edeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Edeprec.o' + diff --git a/build/src/H5Edeprec.o b/build/src/H5Edeprec.o new file mode 100644 index 0000000..a1a5910 Binary files /dev/null and b/build/src/H5Edeprec.o differ diff --git a/build/src/H5Eint.lo b/build/src/H5Eint.lo new file mode 100644 index 0000000..d9d8411 --- /dev/null +++ b/build/src/H5Eint.lo @@ -0,0 +1,12 @@ +# H5Eint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Eint.o' + +# Name of the non-PIC object +non_pic_object='H5Eint.o' + diff --git a/build/src/H5Eint.o b/build/src/H5Eint.o new file mode 100644 index 0000000..4b4ab9d Binary files /dev/null and b/build/src/H5Eint.o differ diff --git a/build/src/H5F.lo b/build/src/H5F.lo new file mode 100644 index 0000000..2efa8a9 --- /dev/null +++ b/build/src/H5F.lo @@ -0,0 +1,12 @@ +# H5F.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5F.o' + +# Name of the non-PIC object +non_pic_object='H5F.o' + diff --git a/build/src/H5F.o b/build/src/H5F.o new file mode 100644 index 0000000..051f538 Binary files /dev/null and b/build/src/H5F.o differ diff --git a/build/src/H5FD.lo b/build/src/H5FD.lo new file mode 100644 index 0000000..5e499c2 --- /dev/null +++ b/build/src/H5FD.lo @@ -0,0 +1,12 @@ +# H5FD.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FD.o' + +# Name of the non-PIC object +non_pic_object='H5FD.o' + diff --git a/build/src/H5FD.o b/build/src/H5FD.o new file mode 100644 index 0000000..15d60fc Binary files /dev/null and b/build/src/H5FD.o differ diff --git a/build/src/H5FDcore.lo b/build/src/H5FDcore.lo new file mode 100644 index 0000000..49da1ac --- /dev/null +++ b/build/src/H5FDcore.lo @@ -0,0 +1,12 @@ +# H5FDcore.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDcore.o' + +# Name of the non-PIC object +non_pic_object='H5FDcore.o' + diff --git a/build/src/H5FDcore.o b/build/src/H5FDcore.o new file mode 100644 index 0000000..d3fd5b2 Binary files /dev/null and b/build/src/H5FDcore.o differ diff --git a/build/src/H5FDdirect.lo b/build/src/H5FDdirect.lo new file mode 100644 index 0000000..aee3859 --- /dev/null +++ b/build/src/H5FDdirect.lo @@ -0,0 +1,12 @@ +# H5FDdirect.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDdirect.o' + +# Name of the non-PIC object +non_pic_object='H5FDdirect.o' + diff --git a/build/src/H5FDdirect.o b/build/src/H5FDdirect.o new file mode 100644 index 0000000..dc25191 Binary files /dev/null and b/build/src/H5FDdirect.o differ diff --git a/build/src/H5FDfamily.lo b/build/src/H5FDfamily.lo new file mode 100644 index 0000000..1cdf91d --- /dev/null +++ b/build/src/H5FDfamily.lo @@ -0,0 +1,12 @@ +# H5FDfamily.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDfamily.o' + +# Name of the non-PIC object +non_pic_object='H5FDfamily.o' + diff --git a/build/src/H5FDfamily.o b/build/src/H5FDfamily.o new file mode 100644 index 0000000..7fb7c7f Binary files /dev/null and b/build/src/H5FDfamily.o differ diff --git a/build/src/H5FDint.lo b/build/src/H5FDint.lo new file mode 100644 index 0000000..4689adf --- /dev/null +++ b/build/src/H5FDint.lo @@ -0,0 +1,12 @@ +# H5FDint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDint.o' + +# Name of the non-PIC object +non_pic_object='H5FDint.o' + diff --git a/build/src/H5FDint.o b/build/src/H5FDint.o new file mode 100644 index 0000000..17ad88a Binary files /dev/null and b/build/src/H5FDint.o differ diff --git a/build/src/H5FDlog.lo b/build/src/H5FDlog.lo new file mode 100644 index 0000000..5163597 --- /dev/null +++ b/build/src/H5FDlog.lo @@ -0,0 +1,12 @@ +# H5FDlog.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDlog.o' + +# Name of the non-PIC object +non_pic_object='H5FDlog.o' + diff --git a/build/src/H5FDlog.o b/build/src/H5FDlog.o new file mode 100644 index 0000000..8a97548 Binary files /dev/null and b/build/src/H5FDlog.o differ diff --git a/build/src/H5FDmpi.lo b/build/src/H5FDmpi.lo new file mode 100644 index 0000000..eabb53e --- /dev/null +++ b/build/src/H5FDmpi.lo @@ -0,0 +1,12 @@ +# H5FDmpi.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDmpi.o' + +# Name of the non-PIC object +non_pic_object='H5FDmpi.o' + diff --git a/build/src/H5FDmpi.o b/build/src/H5FDmpi.o new file mode 100644 index 0000000..958783f Binary files /dev/null and b/build/src/H5FDmpi.o differ diff --git a/build/src/H5FDmpio.lo b/build/src/H5FDmpio.lo new file mode 100644 index 0000000..d153e02 --- /dev/null +++ b/build/src/H5FDmpio.lo @@ -0,0 +1,12 @@ +# H5FDmpio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDmpio.o' + +# Name of the non-PIC object +non_pic_object='H5FDmpio.o' + diff --git a/build/src/H5FDmpio.o b/build/src/H5FDmpio.o new file mode 100644 index 0000000..93058bf Binary files /dev/null and b/build/src/H5FDmpio.o differ diff --git a/build/src/H5FDmulti.lo b/build/src/H5FDmulti.lo new file mode 100644 index 0000000..60196fc --- /dev/null +++ b/build/src/H5FDmulti.lo @@ -0,0 +1,12 @@ +# H5FDmulti.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDmulti.o' + +# Name of the non-PIC object +non_pic_object='H5FDmulti.o' + diff --git a/build/src/H5FDmulti.o b/build/src/H5FDmulti.o new file mode 100644 index 0000000..832a54b Binary files /dev/null and b/build/src/H5FDmulti.o differ diff --git a/build/src/H5FDsec2.lo b/build/src/H5FDsec2.lo new file mode 100644 index 0000000..2304e36 --- /dev/null +++ b/build/src/H5FDsec2.lo @@ -0,0 +1,12 @@ +# H5FDsec2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDsec2.o' + +# Name of the non-PIC object +non_pic_object='H5FDsec2.o' + diff --git a/build/src/H5FDsec2.o b/build/src/H5FDsec2.o new file mode 100644 index 0000000..40139a3 Binary files /dev/null and b/build/src/H5FDsec2.o differ diff --git a/build/src/H5FDspace.lo b/build/src/H5FDspace.lo new file mode 100644 index 0000000..a5142a4 --- /dev/null +++ b/build/src/H5FDspace.lo @@ -0,0 +1,12 @@ +# H5FDspace.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDspace.o' + +# Name of the non-PIC object +non_pic_object='H5FDspace.o' + diff --git a/build/src/H5FDspace.o b/build/src/H5FDspace.o new file mode 100644 index 0000000..dcae4e2 Binary files /dev/null and b/build/src/H5FDspace.o differ diff --git a/build/src/H5FDstdio.lo b/build/src/H5FDstdio.lo new file mode 100644 index 0000000..00bf29e --- /dev/null +++ b/build/src/H5FDstdio.lo @@ -0,0 +1,12 @@ +# H5FDstdio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FDstdio.o' + +# Name of the non-PIC object +non_pic_object='H5FDstdio.o' + diff --git a/build/src/H5FDstdio.o b/build/src/H5FDstdio.o new file mode 100644 index 0000000..f74eb42 Binary files /dev/null and b/build/src/H5FDstdio.o differ diff --git a/build/src/H5FL.lo b/build/src/H5FL.lo new file mode 100644 index 0000000..484ec08 --- /dev/null +++ b/build/src/H5FL.lo @@ -0,0 +1,12 @@ +# H5FL.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FL.o' + +# Name of the non-PIC object +non_pic_object='H5FL.o' + diff --git a/build/src/H5FL.o b/build/src/H5FL.o new file mode 100644 index 0000000..b6858f6 Binary files /dev/null and b/build/src/H5FL.o differ diff --git a/build/src/H5FO.lo b/build/src/H5FO.lo new file mode 100644 index 0000000..048f558 --- /dev/null +++ b/build/src/H5FO.lo @@ -0,0 +1,12 @@ +# H5FO.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FO.o' + +# Name of the non-PIC object +non_pic_object='H5FO.o' + diff --git a/build/src/H5FO.o b/build/src/H5FO.o new file mode 100644 index 0000000..63e4c6f Binary files /dev/null and b/build/src/H5FO.o differ diff --git a/build/src/H5FS.lo b/build/src/H5FS.lo new file mode 100644 index 0000000..b2f4733 --- /dev/null +++ b/build/src/H5FS.lo @@ -0,0 +1,12 @@ +# H5FS.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FS.o' + +# Name of the non-PIC object +non_pic_object='H5FS.o' + diff --git a/build/src/H5FS.o b/build/src/H5FS.o new file mode 100644 index 0000000..206f447 Binary files /dev/null and b/build/src/H5FS.o differ diff --git a/build/src/H5FScache.lo b/build/src/H5FScache.lo new file mode 100644 index 0000000..3a5461f --- /dev/null +++ b/build/src/H5FScache.lo @@ -0,0 +1,12 @@ +# H5FScache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FScache.o' + +# Name of the non-PIC object +non_pic_object='H5FScache.o' + diff --git a/build/src/H5FScache.o b/build/src/H5FScache.o new file mode 100644 index 0000000..35d1b9e Binary files /dev/null and b/build/src/H5FScache.o differ diff --git a/build/src/H5FSdbg.lo b/build/src/H5FSdbg.lo new file mode 100644 index 0000000..ab7b25d --- /dev/null +++ b/build/src/H5FSdbg.lo @@ -0,0 +1,12 @@ +# H5FSdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FSdbg.o' + +# Name of the non-PIC object +non_pic_object='H5FSdbg.o' + diff --git a/build/src/H5FSdbg.o b/build/src/H5FSdbg.o new file mode 100644 index 0000000..30db153 Binary files /dev/null and b/build/src/H5FSdbg.o differ diff --git a/build/src/H5FSsection.lo b/build/src/H5FSsection.lo new file mode 100644 index 0000000..bde9d3c --- /dev/null +++ b/build/src/H5FSsection.lo @@ -0,0 +1,12 @@ +# H5FSsection.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FSsection.o' + +# Name of the non-PIC object +non_pic_object='H5FSsection.o' + diff --git a/build/src/H5FSsection.o b/build/src/H5FSsection.o new file mode 100644 index 0000000..c84f397 Binary files /dev/null and b/build/src/H5FSsection.o differ diff --git a/build/src/H5FSstat.lo b/build/src/H5FSstat.lo new file mode 100644 index 0000000..3a59d61 --- /dev/null +++ b/build/src/H5FSstat.lo @@ -0,0 +1,12 @@ +# H5FSstat.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FSstat.o' + +# Name of the non-PIC object +non_pic_object='H5FSstat.o' + diff --git a/build/src/H5FSstat.o b/build/src/H5FSstat.o new file mode 100644 index 0000000..50f3667 Binary files /dev/null and b/build/src/H5FSstat.o differ diff --git a/build/src/H5FStest.lo b/build/src/H5FStest.lo new file mode 100644 index 0000000..4078c7b --- /dev/null +++ b/build/src/H5FStest.lo @@ -0,0 +1,12 @@ +# H5FStest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5FStest.o' + +# Name of the non-PIC object +non_pic_object='H5FStest.o' + diff --git a/build/src/H5FStest.o b/build/src/H5FStest.o new file mode 100644 index 0000000..2349a15 Binary files /dev/null and b/build/src/H5FStest.o differ diff --git a/build/src/H5Faccum.lo b/build/src/H5Faccum.lo new file mode 100644 index 0000000..599ea5a --- /dev/null +++ b/build/src/H5Faccum.lo @@ -0,0 +1,12 @@ +# H5Faccum.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Faccum.o' + +# Name of the non-PIC object +non_pic_object='H5Faccum.o' + diff --git a/build/src/H5Faccum.o b/build/src/H5Faccum.o new file mode 100644 index 0000000..eaac6af Binary files /dev/null and b/build/src/H5Faccum.o differ diff --git a/build/src/H5Fcwfs.lo b/build/src/H5Fcwfs.lo new file mode 100644 index 0000000..87aeb8c --- /dev/null +++ b/build/src/H5Fcwfs.lo @@ -0,0 +1,12 @@ +# H5Fcwfs.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fcwfs.o' + +# Name of the non-PIC object +non_pic_object='H5Fcwfs.o' + diff --git a/build/src/H5Fcwfs.o b/build/src/H5Fcwfs.o new file mode 100644 index 0000000..f570ace Binary files /dev/null and b/build/src/H5Fcwfs.o differ diff --git a/build/src/H5Fdbg.lo b/build/src/H5Fdbg.lo new file mode 100644 index 0000000..f04a1dd --- /dev/null +++ b/build/src/H5Fdbg.lo @@ -0,0 +1,12 @@ +# H5Fdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fdbg.o' + +# Name of the non-PIC object +non_pic_object='H5Fdbg.o' + diff --git a/build/src/H5Fdbg.o b/build/src/H5Fdbg.o new file mode 100644 index 0000000..77ac301 Binary files /dev/null and b/build/src/H5Fdbg.o differ diff --git a/build/src/H5Fefc.lo b/build/src/H5Fefc.lo new file mode 100644 index 0000000..109214c --- /dev/null +++ b/build/src/H5Fefc.lo @@ -0,0 +1,12 @@ +# H5Fefc.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fefc.o' + +# Name of the non-PIC object +non_pic_object='H5Fefc.o' + diff --git a/build/src/H5Fefc.o b/build/src/H5Fefc.o new file mode 100644 index 0000000..455d68d Binary files /dev/null and b/build/src/H5Fefc.o differ diff --git a/build/src/H5Ffake.lo b/build/src/H5Ffake.lo new file mode 100644 index 0000000..1ad5958 --- /dev/null +++ b/build/src/H5Ffake.lo @@ -0,0 +1,12 @@ +# H5Ffake.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ffake.o' + +# Name of the non-PIC object +non_pic_object='H5Ffake.o' + diff --git a/build/src/H5Ffake.o b/build/src/H5Ffake.o new file mode 100644 index 0000000..9535b40 Binary files /dev/null and b/build/src/H5Ffake.o differ diff --git a/build/src/H5Fint.lo b/build/src/H5Fint.lo new file mode 100644 index 0000000..b9cd750 --- /dev/null +++ b/build/src/H5Fint.lo @@ -0,0 +1,12 @@ +# H5Fint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fint.o' + +# Name of the non-PIC object +non_pic_object='H5Fint.o' + diff --git a/build/src/H5Fint.o b/build/src/H5Fint.o new file mode 100644 index 0000000..7d66d77 Binary files /dev/null and b/build/src/H5Fint.o differ diff --git a/build/src/H5Fio.lo b/build/src/H5Fio.lo new file mode 100644 index 0000000..0bbff49 --- /dev/null +++ b/build/src/H5Fio.lo @@ -0,0 +1,12 @@ +# H5Fio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fio.o' + +# Name of the non-PIC object +non_pic_object='H5Fio.o' + diff --git a/build/src/H5Fio.o b/build/src/H5Fio.o new file mode 100644 index 0000000..aa9c013 Binary files /dev/null and b/build/src/H5Fio.o differ diff --git a/build/src/H5Fmount.lo b/build/src/H5Fmount.lo new file mode 100644 index 0000000..c6f3b55 --- /dev/null +++ b/build/src/H5Fmount.lo @@ -0,0 +1,12 @@ +# H5Fmount.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fmount.o' + +# Name of the non-PIC object +non_pic_object='H5Fmount.o' + diff --git a/build/src/H5Fmount.o b/build/src/H5Fmount.o new file mode 100644 index 0000000..44d2d36 Binary files /dev/null and b/build/src/H5Fmount.o differ diff --git a/build/src/H5Fmpi.lo b/build/src/H5Fmpi.lo new file mode 100644 index 0000000..48cc769 --- /dev/null +++ b/build/src/H5Fmpi.lo @@ -0,0 +1,12 @@ +# H5Fmpi.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fmpi.o' + +# Name of the non-PIC object +non_pic_object='H5Fmpi.o' + diff --git a/build/src/H5Fmpi.o b/build/src/H5Fmpi.o new file mode 100644 index 0000000..76fe234 Binary files /dev/null and b/build/src/H5Fmpi.o differ diff --git a/build/src/H5Fquery.lo b/build/src/H5Fquery.lo new file mode 100644 index 0000000..620c6bb --- /dev/null +++ b/build/src/H5Fquery.lo @@ -0,0 +1,12 @@ +# H5Fquery.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fquery.o' + +# Name of the non-PIC object +non_pic_object='H5Fquery.o' + diff --git a/build/src/H5Fquery.o b/build/src/H5Fquery.o new file mode 100644 index 0000000..ced3f11 Binary files /dev/null and b/build/src/H5Fquery.o differ diff --git a/build/src/H5Fsfile.lo b/build/src/H5Fsfile.lo new file mode 100644 index 0000000..b585a7f --- /dev/null +++ b/build/src/H5Fsfile.lo @@ -0,0 +1,12 @@ +# H5Fsfile.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fsfile.o' + +# Name of the non-PIC object +non_pic_object='H5Fsfile.o' + diff --git a/build/src/H5Fsfile.o b/build/src/H5Fsfile.o new file mode 100644 index 0000000..3330c8b Binary files /dev/null and b/build/src/H5Fsfile.o differ diff --git a/build/src/H5Fsuper.lo b/build/src/H5Fsuper.lo new file mode 100644 index 0000000..2b644af --- /dev/null +++ b/build/src/H5Fsuper.lo @@ -0,0 +1,12 @@ +# H5Fsuper.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fsuper.o' + +# Name of the non-PIC object +non_pic_object='H5Fsuper.o' + diff --git a/build/src/H5Fsuper.o b/build/src/H5Fsuper.o new file mode 100644 index 0000000..64bac3d Binary files /dev/null and b/build/src/H5Fsuper.o differ diff --git a/build/src/H5Fsuper_cache.lo b/build/src/H5Fsuper_cache.lo new file mode 100644 index 0000000..67034d1 --- /dev/null +++ b/build/src/H5Fsuper_cache.lo @@ -0,0 +1,12 @@ +# H5Fsuper_cache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Fsuper_cache.o' + +# Name of the non-PIC object +non_pic_object='H5Fsuper_cache.o' + diff --git a/build/src/H5Fsuper_cache.o b/build/src/H5Fsuper_cache.o new file mode 100644 index 0000000..e4256dc Binary files /dev/null and b/build/src/H5Fsuper_cache.o differ diff --git a/build/src/H5Ftest.lo b/build/src/H5Ftest.lo new file mode 100644 index 0000000..ca7d369 --- /dev/null +++ b/build/src/H5Ftest.lo @@ -0,0 +1,12 @@ +# H5Ftest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ftest.o' + +# Name of the non-PIC object +non_pic_object='H5Ftest.o' + diff --git a/build/src/H5Ftest.o b/build/src/H5Ftest.o new file mode 100644 index 0000000..2beb3bd Binary files /dev/null and b/build/src/H5Ftest.o differ diff --git a/build/src/H5G.lo b/build/src/H5G.lo new file mode 100644 index 0000000..52ef654 --- /dev/null +++ b/build/src/H5G.lo @@ -0,0 +1,12 @@ +# H5G.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5G.o' + +# Name of the non-PIC object +non_pic_object='H5G.o' + diff --git a/build/src/H5G.o b/build/src/H5G.o new file mode 100644 index 0000000..23bf4c5 Binary files /dev/null and b/build/src/H5G.o differ diff --git a/build/src/H5Gbtree2.lo b/build/src/H5Gbtree2.lo new file mode 100644 index 0000000..fa6d2bc --- /dev/null +++ b/build/src/H5Gbtree2.lo @@ -0,0 +1,12 @@ +# H5Gbtree2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gbtree2.o' + +# Name of the non-PIC object +non_pic_object='H5Gbtree2.o' + diff --git a/build/src/H5Gbtree2.o b/build/src/H5Gbtree2.o new file mode 100644 index 0000000..58a7773 Binary files /dev/null and b/build/src/H5Gbtree2.o differ diff --git a/build/src/H5Gcache.lo b/build/src/H5Gcache.lo new file mode 100644 index 0000000..7bb161c --- /dev/null +++ b/build/src/H5Gcache.lo @@ -0,0 +1,12 @@ +# H5Gcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gcache.o' + +# Name of the non-PIC object +non_pic_object='H5Gcache.o' + diff --git a/build/src/H5Gcache.o b/build/src/H5Gcache.o new file mode 100644 index 0000000..eeaac79 Binary files /dev/null and b/build/src/H5Gcache.o differ diff --git a/build/src/H5Gcompact.lo b/build/src/H5Gcompact.lo new file mode 100644 index 0000000..7fbf45c --- /dev/null +++ b/build/src/H5Gcompact.lo @@ -0,0 +1,12 @@ +# H5Gcompact.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gcompact.o' + +# Name of the non-PIC object +non_pic_object='H5Gcompact.o' + diff --git a/build/src/H5Gcompact.o b/build/src/H5Gcompact.o new file mode 100644 index 0000000..c3fbe4e Binary files /dev/null and b/build/src/H5Gcompact.o differ diff --git a/build/src/H5Gdense.lo b/build/src/H5Gdense.lo new file mode 100644 index 0000000..53fcdb1 --- /dev/null +++ b/build/src/H5Gdense.lo @@ -0,0 +1,12 @@ +# H5Gdense.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gdense.o' + +# Name of the non-PIC object +non_pic_object='H5Gdense.o' + diff --git a/build/src/H5Gdense.o b/build/src/H5Gdense.o new file mode 100644 index 0000000..1cbfe44 Binary files /dev/null and b/build/src/H5Gdense.o differ diff --git a/build/src/H5Gdeprec.lo b/build/src/H5Gdeprec.lo new file mode 100644 index 0000000..0713fd7 --- /dev/null +++ b/build/src/H5Gdeprec.lo @@ -0,0 +1,12 @@ +# H5Gdeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gdeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Gdeprec.o' + diff --git a/build/src/H5Gdeprec.o b/build/src/H5Gdeprec.o new file mode 100644 index 0000000..e1de448 Binary files /dev/null and b/build/src/H5Gdeprec.o differ diff --git a/build/src/H5Gent.lo b/build/src/H5Gent.lo new file mode 100644 index 0000000..357ed2e --- /dev/null +++ b/build/src/H5Gent.lo @@ -0,0 +1,12 @@ +# H5Gent.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gent.o' + +# Name of the non-PIC object +non_pic_object='H5Gent.o' + diff --git a/build/src/H5Gent.o b/build/src/H5Gent.o new file mode 100644 index 0000000..70fccec Binary files /dev/null and b/build/src/H5Gent.o differ diff --git a/build/src/H5Gint.lo b/build/src/H5Gint.lo new file mode 100644 index 0000000..5aa3e04 --- /dev/null +++ b/build/src/H5Gint.lo @@ -0,0 +1,12 @@ +# H5Gint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gint.o' + +# Name of the non-PIC object +non_pic_object='H5Gint.o' + diff --git a/build/src/H5Gint.o b/build/src/H5Gint.o new file mode 100644 index 0000000..ec28c87 Binary files /dev/null and b/build/src/H5Gint.o differ diff --git a/build/src/H5Glink.lo b/build/src/H5Glink.lo new file mode 100644 index 0000000..194a13d --- /dev/null +++ b/build/src/H5Glink.lo @@ -0,0 +1,12 @@ +# H5Glink.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Glink.o' + +# Name of the non-PIC object +non_pic_object='H5Glink.o' + diff --git a/build/src/H5Glink.o b/build/src/H5Glink.o new file mode 100644 index 0000000..ab28639 Binary files /dev/null and b/build/src/H5Glink.o differ diff --git a/build/src/H5Gloc.lo b/build/src/H5Gloc.lo new file mode 100644 index 0000000..222b7c6 --- /dev/null +++ b/build/src/H5Gloc.lo @@ -0,0 +1,12 @@ +# H5Gloc.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gloc.o' + +# Name of the non-PIC object +non_pic_object='H5Gloc.o' + diff --git a/build/src/H5Gloc.o b/build/src/H5Gloc.o new file mode 100644 index 0000000..4d592c3 Binary files /dev/null and b/build/src/H5Gloc.o differ diff --git a/build/src/H5Gname.lo b/build/src/H5Gname.lo new file mode 100644 index 0000000..067eac9 --- /dev/null +++ b/build/src/H5Gname.lo @@ -0,0 +1,12 @@ +# H5Gname.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gname.o' + +# Name of the non-PIC object +non_pic_object='H5Gname.o' + diff --git a/build/src/H5Gname.o b/build/src/H5Gname.o new file mode 100644 index 0000000..2b98be6 Binary files /dev/null and b/build/src/H5Gname.o differ diff --git a/build/src/H5Gnode.lo b/build/src/H5Gnode.lo new file mode 100644 index 0000000..bf7d3fb --- /dev/null +++ b/build/src/H5Gnode.lo @@ -0,0 +1,12 @@ +# H5Gnode.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gnode.o' + +# Name of the non-PIC object +non_pic_object='H5Gnode.o' + diff --git a/build/src/H5Gnode.o b/build/src/H5Gnode.o new file mode 100644 index 0000000..bdb8838 Binary files /dev/null and b/build/src/H5Gnode.o differ diff --git a/build/src/H5Gobj.lo b/build/src/H5Gobj.lo new file mode 100644 index 0000000..9c65d95 --- /dev/null +++ b/build/src/H5Gobj.lo @@ -0,0 +1,12 @@ +# H5Gobj.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gobj.o' + +# Name of the non-PIC object +non_pic_object='H5Gobj.o' + diff --git a/build/src/H5Gobj.o b/build/src/H5Gobj.o new file mode 100644 index 0000000..39e474e Binary files /dev/null and b/build/src/H5Gobj.o differ diff --git a/build/src/H5Goh.lo b/build/src/H5Goh.lo new file mode 100644 index 0000000..73383a6 --- /dev/null +++ b/build/src/H5Goh.lo @@ -0,0 +1,12 @@ +# H5Goh.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Goh.o' + +# Name of the non-PIC object +non_pic_object='H5Goh.o' + diff --git a/build/src/H5Goh.o b/build/src/H5Goh.o new file mode 100644 index 0000000..2b1054c Binary files /dev/null and b/build/src/H5Goh.o differ diff --git a/build/src/H5Groot.lo b/build/src/H5Groot.lo new file mode 100644 index 0000000..171ea13 --- /dev/null +++ b/build/src/H5Groot.lo @@ -0,0 +1,12 @@ +# H5Groot.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Groot.o' + +# Name of the non-PIC object +non_pic_object='H5Groot.o' + diff --git a/build/src/H5Groot.o b/build/src/H5Groot.o new file mode 100644 index 0000000..e4b25ec Binary files /dev/null and b/build/src/H5Groot.o differ diff --git a/build/src/H5Gstab.lo b/build/src/H5Gstab.lo new file mode 100644 index 0000000..45595dc --- /dev/null +++ b/build/src/H5Gstab.lo @@ -0,0 +1,12 @@ +# H5Gstab.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gstab.o' + +# Name of the non-PIC object +non_pic_object='H5Gstab.o' + diff --git a/build/src/H5Gstab.o b/build/src/H5Gstab.o new file mode 100644 index 0000000..57a64eb Binary files /dev/null and b/build/src/H5Gstab.o differ diff --git a/build/src/H5Gtest.lo b/build/src/H5Gtest.lo new file mode 100644 index 0000000..5349289 --- /dev/null +++ b/build/src/H5Gtest.lo @@ -0,0 +1,12 @@ +# H5Gtest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gtest.o' + +# Name of the non-PIC object +non_pic_object='H5Gtest.o' + diff --git a/build/src/H5Gtest.o b/build/src/H5Gtest.o new file mode 100644 index 0000000..e922278 Binary files /dev/null and b/build/src/H5Gtest.o differ diff --git a/build/src/H5Gtraverse.lo b/build/src/H5Gtraverse.lo new file mode 100644 index 0000000..0edb149 --- /dev/null +++ b/build/src/H5Gtraverse.lo @@ -0,0 +1,12 @@ +# H5Gtraverse.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Gtraverse.o' + +# Name of the non-PIC object +non_pic_object='H5Gtraverse.o' + diff --git a/build/src/H5Gtraverse.o b/build/src/H5Gtraverse.o new file mode 100644 index 0000000..ce78ea6 Binary files /dev/null and b/build/src/H5Gtraverse.o differ diff --git a/build/src/H5HF.lo b/build/src/H5HF.lo new file mode 100644 index 0000000..a0b8ad7 --- /dev/null +++ b/build/src/H5HF.lo @@ -0,0 +1,12 @@ +# H5HF.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HF.o' + +# Name of the non-PIC object +non_pic_object='H5HF.o' + diff --git a/build/src/H5HF.o b/build/src/H5HF.o new file mode 100644 index 0000000..edc268f Binary files /dev/null and b/build/src/H5HF.o differ diff --git a/build/src/H5HFbtree2.lo b/build/src/H5HFbtree2.lo new file mode 100644 index 0000000..8d856e8 --- /dev/null +++ b/build/src/H5HFbtree2.lo @@ -0,0 +1,12 @@ +# H5HFbtree2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFbtree2.o' + +# Name of the non-PIC object +non_pic_object='H5HFbtree2.o' + diff --git a/build/src/H5HFbtree2.o b/build/src/H5HFbtree2.o new file mode 100644 index 0000000..a2528fc Binary files /dev/null and b/build/src/H5HFbtree2.o differ diff --git a/build/src/H5HFcache.lo b/build/src/H5HFcache.lo new file mode 100644 index 0000000..0173666 --- /dev/null +++ b/build/src/H5HFcache.lo @@ -0,0 +1,12 @@ +# H5HFcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFcache.o' + +# Name of the non-PIC object +non_pic_object='H5HFcache.o' + diff --git a/build/src/H5HFcache.o b/build/src/H5HFcache.o new file mode 100644 index 0000000..8280a92 Binary files /dev/null and b/build/src/H5HFcache.o differ diff --git a/build/src/H5HFdbg.lo b/build/src/H5HFdbg.lo new file mode 100644 index 0000000..e02f65e --- /dev/null +++ b/build/src/H5HFdbg.lo @@ -0,0 +1,12 @@ +# H5HFdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFdbg.o' + +# Name of the non-PIC object +non_pic_object='H5HFdbg.o' + diff --git a/build/src/H5HFdbg.o b/build/src/H5HFdbg.o new file mode 100644 index 0000000..ea92854 Binary files /dev/null and b/build/src/H5HFdbg.o differ diff --git a/build/src/H5HFdblock.lo b/build/src/H5HFdblock.lo new file mode 100644 index 0000000..1f60c6b --- /dev/null +++ b/build/src/H5HFdblock.lo @@ -0,0 +1,12 @@ +# H5HFdblock.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFdblock.o' + +# Name of the non-PIC object +non_pic_object='H5HFdblock.o' + diff --git a/build/src/H5HFdblock.o b/build/src/H5HFdblock.o new file mode 100644 index 0000000..f14b765 Binary files /dev/null and b/build/src/H5HFdblock.o differ diff --git a/build/src/H5HFdtable.lo b/build/src/H5HFdtable.lo new file mode 100644 index 0000000..3435312 --- /dev/null +++ b/build/src/H5HFdtable.lo @@ -0,0 +1,12 @@ +# H5HFdtable.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFdtable.o' + +# Name of the non-PIC object +non_pic_object='H5HFdtable.o' + diff --git a/build/src/H5HFdtable.o b/build/src/H5HFdtable.o new file mode 100644 index 0000000..5418bb5 Binary files /dev/null and b/build/src/H5HFdtable.o differ diff --git a/build/src/H5HFhdr.lo b/build/src/H5HFhdr.lo new file mode 100644 index 0000000..04555b4 --- /dev/null +++ b/build/src/H5HFhdr.lo @@ -0,0 +1,12 @@ +# H5HFhdr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFhdr.o' + +# Name of the non-PIC object +non_pic_object='H5HFhdr.o' + diff --git a/build/src/H5HFhdr.o b/build/src/H5HFhdr.o new file mode 100644 index 0000000..4e012d6 Binary files /dev/null and b/build/src/H5HFhdr.o differ diff --git a/build/src/H5HFhuge.lo b/build/src/H5HFhuge.lo new file mode 100644 index 0000000..10a5f7c --- /dev/null +++ b/build/src/H5HFhuge.lo @@ -0,0 +1,12 @@ +# H5HFhuge.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFhuge.o' + +# Name of the non-PIC object +non_pic_object='H5HFhuge.o' + diff --git a/build/src/H5HFhuge.o b/build/src/H5HFhuge.o new file mode 100644 index 0000000..8cbd88e Binary files /dev/null and b/build/src/H5HFhuge.o differ diff --git a/build/src/H5HFiblock.lo b/build/src/H5HFiblock.lo new file mode 100644 index 0000000..bf20202 --- /dev/null +++ b/build/src/H5HFiblock.lo @@ -0,0 +1,12 @@ +# H5HFiblock.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFiblock.o' + +# Name of the non-PIC object +non_pic_object='H5HFiblock.o' + diff --git a/build/src/H5HFiblock.o b/build/src/H5HFiblock.o new file mode 100644 index 0000000..3563b64 Binary files /dev/null and b/build/src/H5HFiblock.o differ diff --git a/build/src/H5HFiter.lo b/build/src/H5HFiter.lo new file mode 100644 index 0000000..7a35f1d --- /dev/null +++ b/build/src/H5HFiter.lo @@ -0,0 +1,12 @@ +# H5HFiter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFiter.o' + +# Name of the non-PIC object +non_pic_object='H5HFiter.o' + diff --git a/build/src/H5HFiter.o b/build/src/H5HFiter.o new file mode 100644 index 0000000..246dc6c Binary files /dev/null and b/build/src/H5HFiter.o differ diff --git a/build/src/H5HFman.lo b/build/src/H5HFman.lo new file mode 100644 index 0000000..45a2959 --- /dev/null +++ b/build/src/H5HFman.lo @@ -0,0 +1,12 @@ +# H5HFman.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFman.o' + +# Name of the non-PIC object +non_pic_object='H5HFman.o' + diff --git a/build/src/H5HFman.o b/build/src/H5HFman.o new file mode 100644 index 0000000..afdf80c Binary files /dev/null and b/build/src/H5HFman.o differ diff --git a/build/src/H5HFsection.lo b/build/src/H5HFsection.lo new file mode 100644 index 0000000..9aeb38e --- /dev/null +++ b/build/src/H5HFsection.lo @@ -0,0 +1,12 @@ +# H5HFsection.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFsection.o' + +# Name of the non-PIC object +non_pic_object='H5HFsection.o' + diff --git a/build/src/H5HFsection.o b/build/src/H5HFsection.o new file mode 100644 index 0000000..b20f744 Binary files /dev/null and b/build/src/H5HFsection.o differ diff --git a/build/src/H5HFspace.lo b/build/src/H5HFspace.lo new file mode 100644 index 0000000..16e1283 --- /dev/null +++ b/build/src/H5HFspace.lo @@ -0,0 +1,12 @@ +# H5HFspace.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFspace.o' + +# Name of the non-PIC object +non_pic_object='H5HFspace.o' + diff --git a/build/src/H5HFspace.o b/build/src/H5HFspace.o new file mode 100644 index 0000000..f0264a1 Binary files /dev/null and b/build/src/H5HFspace.o differ diff --git a/build/src/H5HFstat.lo b/build/src/H5HFstat.lo new file mode 100644 index 0000000..cb1ee35 --- /dev/null +++ b/build/src/H5HFstat.lo @@ -0,0 +1,12 @@ +# H5HFstat.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFstat.o' + +# Name of the non-PIC object +non_pic_object='H5HFstat.o' + diff --git a/build/src/H5HFstat.o b/build/src/H5HFstat.o new file mode 100644 index 0000000..aa7974e Binary files /dev/null and b/build/src/H5HFstat.o differ diff --git a/build/src/H5HFtest.lo b/build/src/H5HFtest.lo new file mode 100644 index 0000000..4567480 --- /dev/null +++ b/build/src/H5HFtest.lo @@ -0,0 +1,12 @@ +# H5HFtest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFtest.o' + +# Name of the non-PIC object +non_pic_object='H5HFtest.o' + diff --git a/build/src/H5HFtest.o b/build/src/H5HFtest.o new file mode 100644 index 0000000..7015ca6 Binary files /dev/null and b/build/src/H5HFtest.o differ diff --git a/build/src/H5HFtiny.lo b/build/src/H5HFtiny.lo new file mode 100644 index 0000000..47d0591 --- /dev/null +++ b/build/src/H5HFtiny.lo @@ -0,0 +1,12 @@ +# H5HFtiny.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HFtiny.o' + +# Name of the non-PIC object +non_pic_object='H5HFtiny.o' + diff --git a/build/src/H5HFtiny.o b/build/src/H5HFtiny.o new file mode 100644 index 0000000..955bbb7 Binary files /dev/null and b/build/src/H5HFtiny.o differ diff --git a/build/src/H5HG.lo b/build/src/H5HG.lo new file mode 100644 index 0000000..928acb0 --- /dev/null +++ b/build/src/H5HG.lo @@ -0,0 +1,12 @@ +# H5HG.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HG.o' + +# Name of the non-PIC object +non_pic_object='H5HG.o' + diff --git a/build/src/H5HG.o b/build/src/H5HG.o new file mode 100644 index 0000000..d331786 Binary files /dev/null and b/build/src/H5HG.o differ diff --git a/build/src/H5HGcache.lo b/build/src/H5HGcache.lo new file mode 100644 index 0000000..492f81c --- /dev/null +++ b/build/src/H5HGcache.lo @@ -0,0 +1,12 @@ +# H5HGcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HGcache.o' + +# Name of the non-PIC object +non_pic_object='H5HGcache.o' + diff --git a/build/src/H5HGcache.o b/build/src/H5HGcache.o new file mode 100644 index 0000000..c029164 Binary files /dev/null and b/build/src/H5HGcache.o differ diff --git a/build/src/H5HGdbg.lo b/build/src/H5HGdbg.lo new file mode 100644 index 0000000..144332f --- /dev/null +++ b/build/src/H5HGdbg.lo @@ -0,0 +1,12 @@ +# H5HGdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HGdbg.o' + +# Name of the non-PIC object +non_pic_object='H5HGdbg.o' + diff --git a/build/src/H5HGdbg.o b/build/src/H5HGdbg.o new file mode 100644 index 0000000..d675622 Binary files /dev/null and b/build/src/H5HGdbg.o differ diff --git a/build/src/H5HGquery.lo b/build/src/H5HGquery.lo new file mode 100644 index 0000000..d5d8323 --- /dev/null +++ b/build/src/H5HGquery.lo @@ -0,0 +1,12 @@ +# H5HGquery.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HGquery.o' + +# Name of the non-PIC object +non_pic_object='H5HGquery.o' + diff --git a/build/src/H5HGquery.o b/build/src/H5HGquery.o new file mode 100644 index 0000000..eaceb82 Binary files /dev/null and b/build/src/H5HGquery.o differ diff --git a/build/src/H5HL.lo b/build/src/H5HL.lo new file mode 100644 index 0000000..4be414b --- /dev/null +++ b/build/src/H5HL.lo @@ -0,0 +1,12 @@ +# H5HL.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HL.o' + +# Name of the non-PIC object +non_pic_object='H5HL.o' + diff --git a/build/src/H5HL.o b/build/src/H5HL.o new file mode 100644 index 0000000..73f426b Binary files /dev/null and b/build/src/H5HL.o differ diff --git a/build/src/H5HLcache.lo b/build/src/H5HLcache.lo new file mode 100644 index 0000000..cd3fd2a --- /dev/null +++ b/build/src/H5HLcache.lo @@ -0,0 +1,12 @@ +# H5HLcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HLcache.o' + +# Name of the non-PIC object +non_pic_object='H5HLcache.o' + diff --git a/build/src/H5HLcache.o b/build/src/H5HLcache.o new file mode 100644 index 0000000..26ffca7 Binary files /dev/null and b/build/src/H5HLcache.o differ diff --git a/build/src/H5HLdbg.lo b/build/src/H5HLdbg.lo new file mode 100644 index 0000000..a7f9cb4 --- /dev/null +++ b/build/src/H5HLdbg.lo @@ -0,0 +1,12 @@ +# H5HLdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HLdbg.o' + +# Name of the non-PIC object +non_pic_object='H5HLdbg.o' + diff --git a/build/src/H5HLdbg.o b/build/src/H5HLdbg.o new file mode 100644 index 0000000..33e897a Binary files /dev/null and b/build/src/H5HLdbg.o differ diff --git a/build/src/H5HLint.lo b/build/src/H5HLint.lo new file mode 100644 index 0000000..2949579 --- /dev/null +++ b/build/src/H5HLint.lo @@ -0,0 +1,12 @@ +# H5HLint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HLint.o' + +# Name of the non-PIC object +non_pic_object='H5HLint.o' + diff --git a/build/src/H5HLint.o b/build/src/H5HLint.o new file mode 100644 index 0000000..f08fe68 Binary files /dev/null and b/build/src/H5HLint.o differ diff --git a/build/src/H5HP.lo b/build/src/H5HP.lo new file mode 100644 index 0000000..a959b24 --- /dev/null +++ b/build/src/H5HP.lo @@ -0,0 +1,12 @@ +# H5HP.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5HP.o' + +# Name of the non-PIC object +non_pic_object='H5HP.o' + diff --git a/build/src/H5HP.o b/build/src/H5HP.o new file mode 100644 index 0000000..83f7833 Binary files /dev/null and b/build/src/H5HP.o differ diff --git a/build/src/H5I.lo b/build/src/H5I.lo new file mode 100644 index 0000000..693024f --- /dev/null +++ b/build/src/H5I.lo @@ -0,0 +1,12 @@ +# H5I.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5I.o' + +# Name of the non-PIC object +non_pic_object='H5I.o' + diff --git a/build/src/H5I.o b/build/src/H5I.o new file mode 100644 index 0000000..784ac79 Binary files /dev/null and b/build/src/H5I.o differ diff --git a/build/src/H5Itest.lo b/build/src/H5Itest.lo new file mode 100644 index 0000000..43fc3f6 --- /dev/null +++ b/build/src/H5Itest.lo @@ -0,0 +1,12 @@ +# H5Itest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Itest.o' + +# Name of the non-PIC object +non_pic_object='H5Itest.o' + diff --git a/build/src/H5Itest.o b/build/src/H5Itest.o new file mode 100644 index 0000000..35a2f95 Binary files /dev/null and b/build/src/H5Itest.o differ diff --git a/build/src/H5L.lo b/build/src/H5L.lo new file mode 100644 index 0000000..8267651 --- /dev/null +++ b/build/src/H5L.lo @@ -0,0 +1,12 @@ +# H5L.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5L.o' + +# Name of the non-PIC object +non_pic_object='H5L.o' + diff --git a/build/src/H5L.o b/build/src/H5L.o new file mode 100644 index 0000000..789f982 Binary files /dev/null and b/build/src/H5L.o differ diff --git a/build/src/H5Lexternal.lo b/build/src/H5Lexternal.lo new file mode 100644 index 0000000..160a837 --- /dev/null +++ b/build/src/H5Lexternal.lo @@ -0,0 +1,12 @@ +# H5Lexternal.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Lexternal.o' + +# Name of the non-PIC object +non_pic_object='H5Lexternal.o' + diff --git a/build/src/H5Lexternal.o b/build/src/H5Lexternal.o new file mode 100644 index 0000000..6da6c7e Binary files /dev/null and b/build/src/H5Lexternal.o differ diff --git a/build/src/H5MF.lo b/build/src/H5MF.lo new file mode 100644 index 0000000..2912718 --- /dev/null +++ b/build/src/H5MF.lo @@ -0,0 +1,12 @@ +# H5MF.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MF.o' + +# Name of the non-PIC object +non_pic_object='H5MF.o' + diff --git a/build/src/H5MF.o b/build/src/H5MF.o new file mode 100644 index 0000000..6e635b1 Binary files /dev/null and b/build/src/H5MF.o differ diff --git a/build/src/H5MFaggr.lo b/build/src/H5MFaggr.lo new file mode 100644 index 0000000..4cace6a --- /dev/null +++ b/build/src/H5MFaggr.lo @@ -0,0 +1,12 @@ +# H5MFaggr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MFaggr.o' + +# Name of the non-PIC object +non_pic_object='H5MFaggr.o' + diff --git a/build/src/H5MFaggr.o b/build/src/H5MFaggr.o new file mode 100644 index 0000000..9cd9c55 Binary files /dev/null and b/build/src/H5MFaggr.o differ diff --git a/build/src/H5MFdbg.lo b/build/src/H5MFdbg.lo new file mode 100644 index 0000000..c4ecaf2 --- /dev/null +++ b/build/src/H5MFdbg.lo @@ -0,0 +1,12 @@ +# H5MFdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MFdbg.o' + +# Name of the non-PIC object +non_pic_object='H5MFdbg.o' + diff --git a/build/src/H5MFdbg.o b/build/src/H5MFdbg.o new file mode 100644 index 0000000..8b5a96e Binary files /dev/null and b/build/src/H5MFdbg.o differ diff --git a/build/src/H5MFsection.lo b/build/src/H5MFsection.lo new file mode 100644 index 0000000..8f49969 --- /dev/null +++ b/build/src/H5MFsection.lo @@ -0,0 +1,12 @@ +# H5MFsection.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MFsection.o' + +# Name of the non-PIC object +non_pic_object='H5MFsection.o' + diff --git a/build/src/H5MFsection.o b/build/src/H5MFsection.o new file mode 100644 index 0000000..e9442ae Binary files /dev/null and b/build/src/H5MFsection.o differ diff --git a/build/src/H5MM.lo b/build/src/H5MM.lo new file mode 100644 index 0000000..ec453da --- /dev/null +++ b/build/src/H5MM.lo @@ -0,0 +1,12 @@ +# H5MM.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MM.o' + +# Name of the non-PIC object +non_pic_object='H5MM.o' + diff --git a/build/src/H5MM.o b/build/src/H5MM.o new file mode 100644 index 0000000..6198817 Binary files /dev/null and b/build/src/H5MM.o differ diff --git a/build/src/H5MP.lo b/build/src/H5MP.lo new file mode 100644 index 0000000..8160d28 --- /dev/null +++ b/build/src/H5MP.lo @@ -0,0 +1,12 @@ +# H5MP.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MP.o' + +# Name of the non-PIC object +non_pic_object='H5MP.o' + diff --git a/build/src/H5MP.o b/build/src/H5MP.o new file mode 100644 index 0000000..7050df5 Binary files /dev/null and b/build/src/H5MP.o differ diff --git a/build/src/H5MPtest.lo b/build/src/H5MPtest.lo new file mode 100644 index 0000000..5aeffec --- /dev/null +++ b/build/src/H5MPtest.lo @@ -0,0 +1,12 @@ +# H5MPtest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5MPtest.o' + +# Name of the non-PIC object +non_pic_object='H5MPtest.o' + diff --git a/build/src/H5MPtest.o b/build/src/H5MPtest.o new file mode 100644 index 0000000..1316d1b Binary files /dev/null and b/build/src/H5MPtest.o differ diff --git a/build/src/H5O.lo b/build/src/H5O.lo new file mode 100644 index 0000000..d0c9320 --- /dev/null +++ b/build/src/H5O.lo @@ -0,0 +1,12 @@ +# H5O.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5O.o' + +# Name of the non-PIC object +non_pic_object='H5O.o' + diff --git a/build/src/H5O.o b/build/src/H5O.o new file mode 100644 index 0000000..6506756 Binary files /dev/null and b/build/src/H5O.o differ diff --git a/build/src/H5Oainfo.lo b/build/src/H5Oainfo.lo new file mode 100644 index 0000000..33b1fe5 --- /dev/null +++ b/build/src/H5Oainfo.lo @@ -0,0 +1,12 @@ +# H5Oainfo.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oainfo.o' + +# Name of the non-PIC object +non_pic_object='H5Oainfo.o' + diff --git a/build/src/H5Oainfo.o b/build/src/H5Oainfo.o new file mode 100644 index 0000000..91d3b70 Binary files /dev/null and b/build/src/H5Oainfo.o differ diff --git a/build/src/H5Oalloc.lo b/build/src/H5Oalloc.lo new file mode 100644 index 0000000..96911c3 --- /dev/null +++ b/build/src/H5Oalloc.lo @@ -0,0 +1,12 @@ +# H5Oalloc.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oalloc.o' + +# Name of the non-PIC object +non_pic_object='H5Oalloc.o' + diff --git a/build/src/H5Oalloc.o b/build/src/H5Oalloc.o new file mode 100644 index 0000000..37ad7dd Binary files /dev/null and b/build/src/H5Oalloc.o differ diff --git a/build/src/H5Oattr.lo b/build/src/H5Oattr.lo new file mode 100644 index 0000000..f08d6cc --- /dev/null +++ b/build/src/H5Oattr.lo @@ -0,0 +1,12 @@ +# H5Oattr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oattr.o' + +# Name of the non-PIC object +non_pic_object='H5Oattr.o' + diff --git a/build/src/H5Oattr.o b/build/src/H5Oattr.o new file mode 100644 index 0000000..b7e7e3b Binary files /dev/null and b/build/src/H5Oattr.o differ diff --git a/build/src/H5Oattribute.lo b/build/src/H5Oattribute.lo new file mode 100644 index 0000000..5f4f58e --- /dev/null +++ b/build/src/H5Oattribute.lo @@ -0,0 +1,12 @@ +# H5Oattribute.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oattribute.o' + +# Name of the non-PIC object +non_pic_object='H5Oattribute.o' + diff --git a/build/src/H5Oattribute.o b/build/src/H5Oattribute.o new file mode 100644 index 0000000..a687093 Binary files /dev/null and b/build/src/H5Oattribute.o differ diff --git a/build/src/H5Obogus.lo b/build/src/H5Obogus.lo new file mode 100644 index 0000000..3288ba9 --- /dev/null +++ b/build/src/H5Obogus.lo @@ -0,0 +1,12 @@ +# H5Obogus.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Obogus.o' + +# Name of the non-PIC object +non_pic_object='H5Obogus.o' + diff --git a/build/src/H5Obogus.o b/build/src/H5Obogus.o new file mode 100644 index 0000000..08175f2 Binary files /dev/null and b/build/src/H5Obogus.o differ diff --git a/build/src/H5Obtreek.lo b/build/src/H5Obtreek.lo new file mode 100644 index 0000000..4fb1a87 --- /dev/null +++ b/build/src/H5Obtreek.lo @@ -0,0 +1,12 @@ +# H5Obtreek.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Obtreek.o' + +# Name of the non-PIC object +non_pic_object='H5Obtreek.o' + diff --git a/build/src/H5Obtreek.o b/build/src/H5Obtreek.o new file mode 100644 index 0000000..6756c7e Binary files /dev/null and b/build/src/H5Obtreek.o differ diff --git a/build/src/H5Ocache.lo b/build/src/H5Ocache.lo new file mode 100644 index 0000000..bf72555 --- /dev/null +++ b/build/src/H5Ocache.lo @@ -0,0 +1,12 @@ +# H5Ocache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ocache.o' + +# Name of the non-PIC object +non_pic_object='H5Ocache.o' + diff --git a/build/src/H5Ocache.o b/build/src/H5Ocache.o new file mode 100644 index 0000000..00bcb0d Binary files /dev/null and b/build/src/H5Ocache.o differ diff --git a/build/src/H5Ochunk.lo b/build/src/H5Ochunk.lo new file mode 100644 index 0000000..86ecbea --- /dev/null +++ b/build/src/H5Ochunk.lo @@ -0,0 +1,12 @@ +# H5Ochunk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ochunk.o' + +# Name of the non-PIC object +non_pic_object='H5Ochunk.o' + diff --git a/build/src/H5Ochunk.o b/build/src/H5Ochunk.o new file mode 100644 index 0000000..2ee4a15 Binary files /dev/null and b/build/src/H5Ochunk.o differ diff --git a/build/src/H5Ocont.lo b/build/src/H5Ocont.lo new file mode 100644 index 0000000..db667b5 --- /dev/null +++ b/build/src/H5Ocont.lo @@ -0,0 +1,12 @@ +# H5Ocont.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ocont.o' + +# Name of the non-PIC object +non_pic_object='H5Ocont.o' + diff --git a/build/src/H5Ocont.o b/build/src/H5Ocont.o new file mode 100644 index 0000000..7b8eedb Binary files /dev/null and b/build/src/H5Ocont.o differ diff --git a/build/src/H5Ocopy.lo b/build/src/H5Ocopy.lo new file mode 100644 index 0000000..fc6ba87 --- /dev/null +++ b/build/src/H5Ocopy.lo @@ -0,0 +1,12 @@ +# H5Ocopy.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ocopy.o' + +# Name of the non-PIC object +non_pic_object='H5Ocopy.o' + diff --git a/build/src/H5Ocopy.o b/build/src/H5Ocopy.o new file mode 100644 index 0000000..16ef5a0 Binary files /dev/null and b/build/src/H5Ocopy.o differ diff --git a/build/src/H5Odbg.lo b/build/src/H5Odbg.lo new file mode 100644 index 0000000..a2cf036 --- /dev/null +++ b/build/src/H5Odbg.lo @@ -0,0 +1,12 @@ +# H5Odbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Odbg.o' + +# Name of the non-PIC object +non_pic_object='H5Odbg.o' + diff --git a/build/src/H5Odbg.o b/build/src/H5Odbg.o new file mode 100644 index 0000000..5401cd3 Binary files /dev/null and b/build/src/H5Odbg.o differ diff --git a/build/src/H5Odrvinfo.lo b/build/src/H5Odrvinfo.lo new file mode 100644 index 0000000..3627e3a --- /dev/null +++ b/build/src/H5Odrvinfo.lo @@ -0,0 +1,12 @@ +# H5Odrvinfo.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Odrvinfo.o' + +# Name of the non-PIC object +non_pic_object='H5Odrvinfo.o' + diff --git a/build/src/H5Odrvinfo.o b/build/src/H5Odrvinfo.o new file mode 100644 index 0000000..9e3759b Binary files /dev/null and b/build/src/H5Odrvinfo.o differ diff --git a/build/src/H5Odtype.lo b/build/src/H5Odtype.lo new file mode 100644 index 0000000..e342b3c --- /dev/null +++ b/build/src/H5Odtype.lo @@ -0,0 +1,12 @@ +# H5Odtype.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Odtype.o' + +# Name of the non-PIC object +non_pic_object='H5Odtype.o' + diff --git a/build/src/H5Odtype.o b/build/src/H5Odtype.o new file mode 100644 index 0000000..e643d3a Binary files /dev/null and b/build/src/H5Odtype.o differ diff --git a/build/src/H5Oefl.lo b/build/src/H5Oefl.lo new file mode 100644 index 0000000..d4710ab --- /dev/null +++ b/build/src/H5Oefl.lo @@ -0,0 +1,12 @@ +# H5Oefl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oefl.o' + +# Name of the non-PIC object +non_pic_object='H5Oefl.o' + diff --git a/build/src/H5Oefl.o b/build/src/H5Oefl.o new file mode 100644 index 0000000..67d78f8 Binary files /dev/null and b/build/src/H5Oefl.o differ diff --git a/build/src/H5Ofill.lo b/build/src/H5Ofill.lo new file mode 100644 index 0000000..c83bf39 --- /dev/null +++ b/build/src/H5Ofill.lo @@ -0,0 +1,12 @@ +# H5Ofill.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ofill.o' + +# Name of the non-PIC object +non_pic_object='H5Ofill.o' + diff --git a/build/src/H5Ofill.o b/build/src/H5Ofill.o new file mode 100644 index 0000000..d6a6766 Binary files /dev/null and b/build/src/H5Ofill.o differ diff --git a/build/src/H5Oginfo.lo b/build/src/H5Oginfo.lo new file mode 100644 index 0000000..f5021d7 --- /dev/null +++ b/build/src/H5Oginfo.lo @@ -0,0 +1,12 @@ +# H5Oginfo.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oginfo.o' + +# Name of the non-PIC object +non_pic_object='H5Oginfo.o' + diff --git a/build/src/H5Oginfo.o b/build/src/H5Oginfo.o new file mode 100644 index 0000000..fbe380d Binary files /dev/null and b/build/src/H5Oginfo.o differ diff --git a/build/src/H5Olayout.lo b/build/src/H5Olayout.lo new file mode 100644 index 0000000..6056f6b --- /dev/null +++ b/build/src/H5Olayout.lo @@ -0,0 +1,12 @@ +# H5Olayout.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Olayout.o' + +# Name of the non-PIC object +non_pic_object='H5Olayout.o' + diff --git a/build/src/H5Olayout.o b/build/src/H5Olayout.o new file mode 100644 index 0000000..2ba7a5c Binary files /dev/null and b/build/src/H5Olayout.o differ diff --git a/build/src/H5Olinfo.lo b/build/src/H5Olinfo.lo new file mode 100644 index 0000000..50a5138 --- /dev/null +++ b/build/src/H5Olinfo.lo @@ -0,0 +1,12 @@ +# H5Olinfo.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Olinfo.o' + +# Name of the non-PIC object +non_pic_object='H5Olinfo.o' + diff --git a/build/src/H5Olinfo.o b/build/src/H5Olinfo.o new file mode 100644 index 0000000..d2b8a88 Binary files /dev/null and b/build/src/H5Olinfo.o differ diff --git a/build/src/H5Olink.lo b/build/src/H5Olink.lo new file mode 100644 index 0000000..2b1c70d --- /dev/null +++ b/build/src/H5Olink.lo @@ -0,0 +1,12 @@ +# H5Olink.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Olink.o' + +# Name of the non-PIC object +non_pic_object='H5Olink.o' + diff --git a/build/src/H5Olink.o b/build/src/H5Olink.o new file mode 100644 index 0000000..62f8959 Binary files /dev/null and b/build/src/H5Olink.o differ diff --git a/build/src/H5Omessage.lo b/build/src/H5Omessage.lo new file mode 100644 index 0000000..8047b3c --- /dev/null +++ b/build/src/H5Omessage.lo @@ -0,0 +1,12 @@ +# H5Omessage.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Omessage.o' + +# Name of the non-PIC object +non_pic_object='H5Omessage.o' + diff --git a/build/src/H5Omessage.o b/build/src/H5Omessage.o new file mode 100644 index 0000000..6ca9137 Binary files /dev/null and b/build/src/H5Omessage.o differ diff --git a/build/src/H5Omtime.lo b/build/src/H5Omtime.lo new file mode 100644 index 0000000..b9f3b90 --- /dev/null +++ b/build/src/H5Omtime.lo @@ -0,0 +1,12 @@ +# H5Omtime.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Omtime.o' + +# Name of the non-PIC object +non_pic_object='H5Omtime.o' + diff --git a/build/src/H5Omtime.o b/build/src/H5Omtime.o new file mode 100644 index 0000000..b2a941c Binary files /dev/null and b/build/src/H5Omtime.o differ diff --git a/build/src/H5Oname.lo b/build/src/H5Oname.lo new file mode 100644 index 0000000..3fcbdf2 --- /dev/null +++ b/build/src/H5Oname.lo @@ -0,0 +1,12 @@ +# H5Oname.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oname.o' + +# Name of the non-PIC object +non_pic_object='H5Oname.o' + diff --git a/build/src/H5Oname.o b/build/src/H5Oname.o new file mode 100644 index 0000000..88ac17f Binary files /dev/null and b/build/src/H5Oname.o differ diff --git a/build/src/H5Onull.lo b/build/src/H5Onull.lo new file mode 100644 index 0000000..8bb363f --- /dev/null +++ b/build/src/H5Onull.lo @@ -0,0 +1,12 @@ +# H5Onull.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Onull.o' + +# Name of the non-PIC object +non_pic_object='H5Onull.o' + diff --git a/build/src/H5Onull.o b/build/src/H5Onull.o new file mode 100644 index 0000000..52148f5 Binary files /dev/null and b/build/src/H5Onull.o differ diff --git a/build/src/H5Opline.lo b/build/src/H5Opline.lo new file mode 100644 index 0000000..cccc593 --- /dev/null +++ b/build/src/H5Opline.lo @@ -0,0 +1,12 @@ +# H5Opline.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Opline.o' + +# Name of the non-PIC object +non_pic_object='H5Opline.o' + diff --git a/build/src/H5Opline.o b/build/src/H5Opline.o new file mode 100644 index 0000000..b9f8d4a Binary files /dev/null and b/build/src/H5Opline.o differ diff --git a/build/src/H5Orefcount.lo b/build/src/H5Orefcount.lo new file mode 100644 index 0000000..a26986e --- /dev/null +++ b/build/src/H5Orefcount.lo @@ -0,0 +1,12 @@ +# H5Orefcount.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Orefcount.o' + +# Name of the non-PIC object +non_pic_object='H5Orefcount.o' + diff --git a/build/src/H5Orefcount.o b/build/src/H5Orefcount.o new file mode 100644 index 0000000..aa512cf Binary files /dev/null and b/build/src/H5Orefcount.o differ diff --git a/build/src/H5Osdspace.lo b/build/src/H5Osdspace.lo new file mode 100644 index 0000000..8585a4f --- /dev/null +++ b/build/src/H5Osdspace.lo @@ -0,0 +1,12 @@ +# H5Osdspace.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Osdspace.o' + +# Name of the non-PIC object +non_pic_object='H5Osdspace.o' + diff --git a/build/src/H5Osdspace.o b/build/src/H5Osdspace.o new file mode 100644 index 0000000..74bf6a9 Binary files /dev/null and b/build/src/H5Osdspace.o differ diff --git a/build/src/H5Oshared.lo b/build/src/H5Oshared.lo new file mode 100644 index 0000000..12243be --- /dev/null +++ b/build/src/H5Oshared.lo @@ -0,0 +1,12 @@ +# H5Oshared.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oshared.o' + +# Name of the non-PIC object +non_pic_object='H5Oshared.o' + diff --git a/build/src/H5Oshared.o b/build/src/H5Oshared.o new file mode 100644 index 0000000..cc32830 Binary files /dev/null and b/build/src/H5Oshared.o differ diff --git a/build/src/H5Oshmesg.lo b/build/src/H5Oshmesg.lo new file mode 100644 index 0000000..4e5e143 --- /dev/null +++ b/build/src/H5Oshmesg.lo @@ -0,0 +1,12 @@ +# H5Oshmesg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Oshmesg.o' + +# Name of the non-PIC object +non_pic_object='H5Oshmesg.o' + diff --git a/build/src/H5Oshmesg.o b/build/src/H5Oshmesg.o new file mode 100644 index 0000000..6683c8c Binary files /dev/null and b/build/src/H5Oshmesg.o differ diff --git a/build/src/H5Ostab.lo b/build/src/H5Ostab.lo new file mode 100644 index 0000000..11777d1 --- /dev/null +++ b/build/src/H5Ostab.lo @@ -0,0 +1,12 @@ +# H5Ostab.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ostab.o' + +# Name of the non-PIC object +non_pic_object='H5Ostab.o' + diff --git a/build/src/H5Ostab.o b/build/src/H5Ostab.o new file mode 100644 index 0000000..cf08062 Binary files /dev/null and b/build/src/H5Ostab.o differ diff --git a/build/src/H5Otest.lo b/build/src/H5Otest.lo new file mode 100644 index 0000000..5fa75eb --- /dev/null +++ b/build/src/H5Otest.lo @@ -0,0 +1,12 @@ +# H5Otest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Otest.o' + +# Name of the non-PIC object +non_pic_object='H5Otest.o' + diff --git a/build/src/H5Otest.o b/build/src/H5Otest.o new file mode 100644 index 0000000..241170a Binary files /dev/null and b/build/src/H5Otest.o differ diff --git a/build/src/H5Ounknown.lo b/build/src/H5Ounknown.lo new file mode 100644 index 0000000..193bdad --- /dev/null +++ b/build/src/H5Ounknown.lo @@ -0,0 +1,12 @@ +# H5Ounknown.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ounknown.o' + +# Name of the non-PIC object +non_pic_object='H5Ounknown.o' + diff --git a/build/src/H5Ounknown.o b/build/src/H5Ounknown.o new file mode 100644 index 0000000..d9126bf Binary files /dev/null and b/build/src/H5Ounknown.o differ diff --git a/build/src/H5P.lo b/build/src/H5P.lo new file mode 100644 index 0000000..3ecedd5 --- /dev/null +++ b/build/src/H5P.lo @@ -0,0 +1,12 @@ +# H5P.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5P.o' + +# Name of the non-PIC object +non_pic_object='H5P.o' + diff --git a/build/src/H5P.o b/build/src/H5P.o new file mode 100644 index 0000000..6a6911a Binary files /dev/null and b/build/src/H5P.o differ diff --git a/build/src/H5PL.lo b/build/src/H5PL.lo new file mode 100644 index 0000000..c3b6521 --- /dev/null +++ b/build/src/H5PL.lo @@ -0,0 +1,12 @@ +# H5PL.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5PL.o' + +# Name of the non-PIC object +non_pic_object='H5PL.o' + diff --git a/build/src/H5PL.o b/build/src/H5PL.o new file mode 100644 index 0000000..37eb1f5 Binary files /dev/null and b/build/src/H5PL.o differ diff --git a/build/src/H5Pacpl.lo b/build/src/H5Pacpl.lo new file mode 100644 index 0000000..e1f1471 --- /dev/null +++ b/build/src/H5Pacpl.lo @@ -0,0 +1,12 @@ +# H5Pacpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pacpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pacpl.o' + diff --git a/build/src/H5Pacpl.o b/build/src/H5Pacpl.o new file mode 100644 index 0000000..f0b6912 Binary files /dev/null and b/build/src/H5Pacpl.o differ diff --git a/build/src/H5Pdapl.lo b/build/src/H5Pdapl.lo new file mode 100644 index 0000000..ae53e1e --- /dev/null +++ b/build/src/H5Pdapl.lo @@ -0,0 +1,12 @@ +# H5Pdapl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pdapl.o' + +# Name of the non-PIC object +non_pic_object='H5Pdapl.o' + diff --git a/build/src/H5Pdapl.o b/build/src/H5Pdapl.o new file mode 100644 index 0000000..a4ccd66 Binary files /dev/null and b/build/src/H5Pdapl.o differ diff --git a/build/src/H5Pdcpl.lo b/build/src/H5Pdcpl.lo new file mode 100644 index 0000000..10f5b9b --- /dev/null +++ b/build/src/H5Pdcpl.lo @@ -0,0 +1,12 @@ +# H5Pdcpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pdcpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pdcpl.o' + diff --git a/build/src/H5Pdcpl.o b/build/src/H5Pdcpl.o new file mode 100644 index 0000000..5cd2b13 Binary files /dev/null and b/build/src/H5Pdcpl.o differ diff --git a/build/src/H5Pdeprec.lo b/build/src/H5Pdeprec.lo new file mode 100644 index 0000000..0f16d3a --- /dev/null +++ b/build/src/H5Pdeprec.lo @@ -0,0 +1,12 @@ +# H5Pdeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pdeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Pdeprec.o' + diff --git a/build/src/H5Pdeprec.o b/build/src/H5Pdeprec.o new file mode 100644 index 0000000..bd09784 Binary files /dev/null and b/build/src/H5Pdeprec.o differ diff --git a/build/src/H5Pdxpl.lo b/build/src/H5Pdxpl.lo new file mode 100644 index 0000000..ff955b8 --- /dev/null +++ b/build/src/H5Pdxpl.lo @@ -0,0 +1,12 @@ +# H5Pdxpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pdxpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pdxpl.o' + diff --git a/build/src/H5Pdxpl.o b/build/src/H5Pdxpl.o new file mode 100644 index 0000000..f38d072 Binary files /dev/null and b/build/src/H5Pdxpl.o differ diff --git a/build/src/H5Pfapl.lo b/build/src/H5Pfapl.lo new file mode 100644 index 0000000..ff3ec3c --- /dev/null +++ b/build/src/H5Pfapl.lo @@ -0,0 +1,12 @@ +# H5Pfapl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pfapl.o' + +# Name of the non-PIC object +non_pic_object='H5Pfapl.o' + diff --git a/build/src/H5Pfapl.o b/build/src/H5Pfapl.o new file mode 100644 index 0000000..f973eb8 Binary files /dev/null and b/build/src/H5Pfapl.o differ diff --git a/build/src/H5Pfcpl.lo b/build/src/H5Pfcpl.lo new file mode 100644 index 0000000..5e3358f --- /dev/null +++ b/build/src/H5Pfcpl.lo @@ -0,0 +1,12 @@ +# H5Pfcpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pfcpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pfcpl.o' + diff --git a/build/src/H5Pfcpl.o b/build/src/H5Pfcpl.o new file mode 100644 index 0000000..8ea4428 Binary files /dev/null and b/build/src/H5Pfcpl.o differ diff --git a/build/src/H5Pfmpl.lo b/build/src/H5Pfmpl.lo new file mode 100644 index 0000000..570d85b --- /dev/null +++ b/build/src/H5Pfmpl.lo @@ -0,0 +1,12 @@ +# H5Pfmpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pfmpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pfmpl.o' + diff --git a/build/src/H5Pfmpl.o b/build/src/H5Pfmpl.o new file mode 100644 index 0000000..b194f50 Binary files /dev/null and b/build/src/H5Pfmpl.o differ diff --git a/build/src/H5Pgcpl.lo b/build/src/H5Pgcpl.lo new file mode 100644 index 0000000..39c8965 --- /dev/null +++ b/build/src/H5Pgcpl.lo @@ -0,0 +1,12 @@ +# H5Pgcpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pgcpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pgcpl.o' + diff --git a/build/src/H5Pgcpl.o b/build/src/H5Pgcpl.o new file mode 100644 index 0000000..7dc3963 Binary files /dev/null and b/build/src/H5Pgcpl.o differ diff --git a/build/src/H5Pint.lo b/build/src/H5Pint.lo new file mode 100644 index 0000000..6453c47 --- /dev/null +++ b/build/src/H5Pint.lo @@ -0,0 +1,12 @@ +# H5Pint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pint.o' + +# Name of the non-PIC object +non_pic_object='H5Pint.o' + diff --git a/build/src/H5Pint.o b/build/src/H5Pint.o new file mode 100644 index 0000000..ea7ec41 Binary files /dev/null and b/build/src/H5Pint.o differ diff --git a/build/src/H5Plapl.lo b/build/src/H5Plapl.lo new file mode 100644 index 0000000..396f7e9 --- /dev/null +++ b/build/src/H5Plapl.lo @@ -0,0 +1,12 @@ +# H5Plapl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Plapl.o' + +# Name of the non-PIC object +non_pic_object='H5Plapl.o' + diff --git a/build/src/H5Plapl.o b/build/src/H5Plapl.o new file mode 100644 index 0000000..f52d7ea Binary files /dev/null and b/build/src/H5Plapl.o differ diff --git a/build/src/H5Plcpl.lo b/build/src/H5Plcpl.lo new file mode 100644 index 0000000..219b833 --- /dev/null +++ b/build/src/H5Plcpl.lo @@ -0,0 +1,12 @@ +# H5Plcpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Plcpl.o' + +# Name of the non-PIC object +non_pic_object='H5Plcpl.o' + diff --git a/build/src/H5Plcpl.o b/build/src/H5Plcpl.o new file mode 100644 index 0000000..c017c6b Binary files /dev/null and b/build/src/H5Plcpl.o differ diff --git a/build/src/H5Pocpl.lo b/build/src/H5Pocpl.lo new file mode 100644 index 0000000..15ef7e5 --- /dev/null +++ b/build/src/H5Pocpl.lo @@ -0,0 +1,12 @@ +# H5Pocpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pocpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pocpl.o' + diff --git a/build/src/H5Pocpl.o b/build/src/H5Pocpl.o new file mode 100644 index 0000000..cfa0eb2 Binary files /dev/null and b/build/src/H5Pocpl.o differ diff --git a/build/src/H5Pocpypl.lo b/build/src/H5Pocpypl.lo new file mode 100644 index 0000000..af5382b --- /dev/null +++ b/build/src/H5Pocpypl.lo @@ -0,0 +1,12 @@ +# H5Pocpypl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pocpypl.o' + +# Name of the non-PIC object +non_pic_object='H5Pocpypl.o' + diff --git a/build/src/H5Pocpypl.o b/build/src/H5Pocpypl.o new file mode 100644 index 0000000..4d7e640 Binary files /dev/null and b/build/src/H5Pocpypl.o differ diff --git a/build/src/H5Pstrcpl.lo b/build/src/H5Pstrcpl.lo new file mode 100644 index 0000000..7521585 --- /dev/null +++ b/build/src/H5Pstrcpl.lo @@ -0,0 +1,12 @@ +# H5Pstrcpl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Pstrcpl.o' + +# Name of the non-PIC object +non_pic_object='H5Pstrcpl.o' + diff --git a/build/src/H5Pstrcpl.o b/build/src/H5Pstrcpl.o new file mode 100644 index 0000000..b643666 Binary files /dev/null and b/build/src/H5Pstrcpl.o differ diff --git a/build/src/H5Ptest.lo b/build/src/H5Ptest.lo new file mode 100644 index 0000000..4ec2e37 --- /dev/null +++ b/build/src/H5Ptest.lo @@ -0,0 +1,12 @@ +# H5Ptest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ptest.o' + +# Name of the non-PIC object +non_pic_object='H5Ptest.o' + diff --git a/build/src/H5Ptest.o b/build/src/H5Ptest.o new file mode 100644 index 0000000..e0521fb Binary files /dev/null and b/build/src/H5Ptest.o differ diff --git a/build/src/H5R.lo b/build/src/H5R.lo new file mode 100644 index 0000000..09cced1 --- /dev/null +++ b/build/src/H5R.lo @@ -0,0 +1,12 @@ +# H5R.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5R.o' + +# Name of the non-PIC object +non_pic_object='H5R.o' + diff --git a/build/src/H5R.o b/build/src/H5R.o new file mode 100644 index 0000000..8272296 Binary files /dev/null and b/build/src/H5R.o differ diff --git a/build/src/H5RC.lo b/build/src/H5RC.lo new file mode 100644 index 0000000..baa1059 --- /dev/null +++ b/build/src/H5RC.lo @@ -0,0 +1,12 @@ +# H5RC.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5RC.o' + +# Name of the non-PIC object +non_pic_object='H5RC.o' + diff --git a/build/src/H5RC.o b/build/src/H5RC.o new file mode 100644 index 0000000..7897cfc Binary files /dev/null and b/build/src/H5RC.o differ diff --git a/build/src/H5RS.lo b/build/src/H5RS.lo new file mode 100644 index 0000000..3f82ed6 --- /dev/null +++ b/build/src/H5RS.lo @@ -0,0 +1,12 @@ +# H5RS.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5RS.o' + +# Name of the non-PIC object +non_pic_object='H5RS.o' + diff --git a/build/src/H5RS.o b/build/src/H5RS.o new file mode 100644 index 0000000..7cb2c1d Binary files /dev/null and b/build/src/H5RS.o differ diff --git a/build/src/H5Rdeprec.lo b/build/src/H5Rdeprec.lo new file mode 100644 index 0000000..a2d17bf --- /dev/null +++ b/build/src/H5Rdeprec.lo @@ -0,0 +1,12 @@ +# H5Rdeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Rdeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Rdeprec.o' + diff --git a/build/src/H5Rdeprec.o b/build/src/H5Rdeprec.o new file mode 100644 index 0000000..4325266 Binary files /dev/null and b/build/src/H5Rdeprec.o differ diff --git a/build/src/H5S.lo b/build/src/H5S.lo new file mode 100644 index 0000000..e64e608 --- /dev/null +++ b/build/src/H5S.lo @@ -0,0 +1,12 @@ +# H5S.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5S.o' + +# Name of the non-PIC object +non_pic_object='H5S.o' + diff --git a/build/src/H5S.o b/build/src/H5S.o new file mode 100644 index 0000000..7a441ef Binary files /dev/null and b/build/src/H5S.o differ diff --git a/build/src/H5SL.lo b/build/src/H5SL.lo new file mode 100644 index 0000000..78b0e67 --- /dev/null +++ b/build/src/H5SL.lo @@ -0,0 +1,12 @@ +# H5SL.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SL.o' + +# Name of the non-PIC object +non_pic_object='H5SL.o' + diff --git a/build/src/H5SL.o b/build/src/H5SL.o new file mode 100644 index 0000000..d05857c Binary files /dev/null and b/build/src/H5SL.o differ diff --git a/build/src/H5SM.lo b/build/src/H5SM.lo new file mode 100644 index 0000000..fa9fac7 --- /dev/null +++ b/build/src/H5SM.lo @@ -0,0 +1,12 @@ +# H5SM.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SM.o' + +# Name of the non-PIC object +non_pic_object='H5SM.o' + diff --git a/build/src/H5SM.o b/build/src/H5SM.o new file mode 100644 index 0000000..7b67e45 Binary files /dev/null and b/build/src/H5SM.o differ diff --git a/build/src/H5SMbtree2.lo b/build/src/H5SMbtree2.lo new file mode 100644 index 0000000..5cc9e8b --- /dev/null +++ b/build/src/H5SMbtree2.lo @@ -0,0 +1,12 @@ +# H5SMbtree2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SMbtree2.o' + +# Name of the non-PIC object +non_pic_object='H5SMbtree2.o' + diff --git a/build/src/H5SMbtree2.o b/build/src/H5SMbtree2.o new file mode 100644 index 0000000..71851fe Binary files /dev/null and b/build/src/H5SMbtree2.o differ diff --git a/build/src/H5SMcache.lo b/build/src/H5SMcache.lo new file mode 100644 index 0000000..2f47471 --- /dev/null +++ b/build/src/H5SMcache.lo @@ -0,0 +1,12 @@ +# H5SMcache.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SMcache.o' + +# Name of the non-PIC object +non_pic_object='H5SMcache.o' + diff --git a/build/src/H5SMcache.o b/build/src/H5SMcache.o new file mode 100644 index 0000000..3b57773 Binary files /dev/null and b/build/src/H5SMcache.o differ diff --git a/build/src/H5SMmessage.lo b/build/src/H5SMmessage.lo new file mode 100644 index 0000000..17a323e --- /dev/null +++ b/build/src/H5SMmessage.lo @@ -0,0 +1,12 @@ +# H5SMmessage.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SMmessage.o' + +# Name of the non-PIC object +non_pic_object='H5SMmessage.o' + diff --git a/build/src/H5SMmessage.o b/build/src/H5SMmessage.o new file mode 100644 index 0000000..26ba89b Binary files /dev/null and b/build/src/H5SMmessage.o differ diff --git a/build/src/H5SMtest.lo b/build/src/H5SMtest.lo new file mode 100644 index 0000000..abf1502 --- /dev/null +++ b/build/src/H5SMtest.lo @@ -0,0 +1,12 @@ +# H5SMtest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5SMtest.o' + +# Name of the non-PIC object +non_pic_object='H5SMtest.o' + diff --git a/build/src/H5SMtest.o b/build/src/H5SMtest.o new file mode 100644 index 0000000..96fde36 Binary files /dev/null and b/build/src/H5SMtest.o differ diff --git a/build/src/H5ST.lo b/build/src/H5ST.lo new file mode 100644 index 0000000..c410501 --- /dev/null +++ b/build/src/H5ST.lo @@ -0,0 +1,12 @@ +# H5ST.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5ST.o' + +# Name of the non-PIC object +non_pic_object='H5ST.o' + diff --git a/build/src/H5ST.o b/build/src/H5ST.o new file mode 100644 index 0000000..6779aed Binary files /dev/null and b/build/src/H5ST.o differ diff --git a/build/src/H5Sall.lo b/build/src/H5Sall.lo new file mode 100644 index 0000000..c468eae --- /dev/null +++ b/build/src/H5Sall.lo @@ -0,0 +1,12 @@ +# H5Sall.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Sall.o' + +# Name of the non-PIC object +non_pic_object='H5Sall.o' + diff --git a/build/src/H5Sall.o b/build/src/H5Sall.o new file mode 100644 index 0000000..20cd73e Binary files /dev/null and b/build/src/H5Sall.o differ diff --git a/build/src/H5Sdbg.lo b/build/src/H5Sdbg.lo new file mode 100644 index 0000000..0311925 --- /dev/null +++ b/build/src/H5Sdbg.lo @@ -0,0 +1,12 @@ +# H5Sdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Sdbg.o' + +# Name of the non-PIC object +non_pic_object='H5Sdbg.o' + diff --git a/build/src/H5Sdbg.o b/build/src/H5Sdbg.o new file mode 100644 index 0000000..33baf31 Binary files /dev/null and b/build/src/H5Sdbg.o differ diff --git a/build/src/H5Shyper.lo b/build/src/H5Shyper.lo new file mode 100644 index 0000000..4bce25d --- /dev/null +++ b/build/src/H5Shyper.lo @@ -0,0 +1,12 @@ +# H5Shyper.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Shyper.o' + +# Name of the non-PIC object +non_pic_object='H5Shyper.o' + diff --git a/build/src/H5Shyper.o b/build/src/H5Shyper.o new file mode 100644 index 0000000..5161f4e Binary files /dev/null and b/build/src/H5Shyper.o differ diff --git a/build/src/H5Smpio.lo b/build/src/H5Smpio.lo new file mode 100644 index 0000000..d6a10a9 --- /dev/null +++ b/build/src/H5Smpio.lo @@ -0,0 +1,12 @@ +# H5Smpio.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Smpio.o' + +# Name of the non-PIC object +non_pic_object='H5Smpio.o' + diff --git a/build/src/H5Smpio.o b/build/src/H5Smpio.o new file mode 100644 index 0000000..ccc8ccc Binary files /dev/null and b/build/src/H5Smpio.o differ diff --git a/build/src/H5Snone.lo b/build/src/H5Snone.lo new file mode 100644 index 0000000..54e5aba --- /dev/null +++ b/build/src/H5Snone.lo @@ -0,0 +1,12 @@ +# H5Snone.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Snone.o' + +# Name of the non-PIC object +non_pic_object='H5Snone.o' + diff --git a/build/src/H5Snone.o b/build/src/H5Snone.o new file mode 100644 index 0000000..240c3ff Binary files /dev/null and b/build/src/H5Snone.o differ diff --git a/build/src/H5Spoint.lo b/build/src/H5Spoint.lo new file mode 100644 index 0000000..7c105d8 --- /dev/null +++ b/build/src/H5Spoint.lo @@ -0,0 +1,12 @@ +# H5Spoint.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Spoint.o' + +# Name of the non-PIC object +non_pic_object='H5Spoint.o' + diff --git a/build/src/H5Spoint.o b/build/src/H5Spoint.o new file mode 100644 index 0000000..b363e91 Binary files /dev/null and b/build/src/H5Spoint.o differ diff --git a/build/src/H5Sselect.lo b/build/src/H5Sselect.lo new file mode 100644 index 0000000..d6dc77d --- /dev/null +++ b/build/src/H5Sselect.lo @@ -0,0 +1,12 @@ +# H5Sselect.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Sselect.o' + +# Name of the non-PIC object +non_pic_object='H5Sselect.o' + diff --git a/build/src/H5Sselect.o b/build/src/H5Sselect.o new file mode 100644 index 0000000..07923d5 Binary files /dev/null and b/build/src/H5Sselect.o differ diff --git a/build/src/H5Stest.lo b/build/src/H5Stest.lo new file mode 100644 index 0000000..7ae6e84 --- /dev/null +++ b/build/src/H5Stest.lo @@ -0,0 +1,12 @@ +# H5Stest.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Stest.o' + +# Name of the non-PIC object +non_pic_object='H5Stest.o' + diff --git a/build/src/H5Stest.o b/build/src/H5Stest.o new file mode 100644 index 0000000..59a1232 Binary files /dev/null and b/build/src/H5Stest.o differ diff --git a/build/src/H5T.lo b/build/src/H5T.lo new file mode 100644 index 0000000..c90ab55 --- /dev/null +++ b/build/src/H5T.lo @@ -0,0 +1,12 @@ +# H5T.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5T.o' + +# Name of the non-PIC object +non_pic_object='H5T.o' + diff --git a/build/src/H5T.o b/build/src/H5T.o new file mode 100644 index 0000000..bcaa79d Binary files /dev/null and b/build/src/H5T.o differ diff --git a/build/src/H5TS.lo b/build/src/H5TS.lo new file mode 100644 index 0000000..b59c32e --- /dev/null +++ b/build/src/H5TS.lo @@ -0,0 +1,12 @@ +# H5TS.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5TS.o' + +# Name of the non-PIC object +non_pic_object='H5TS.o' + diff --git a/build/src/H5TS.o b/build/src/H5TS.o new file mode 100644 index 0000000..7f66eef Binary files /dev/null and b/build/src/H5TS.o differ diff --git a/build/src/H5Tarray.lo b/build/src/H5Tarray.lo new file mode 100644 index 0000000..19f80bd --- /dev/null +++ b/build/src/H5Tarray.lo @@ -0,0 +1,12 @@ +# H5Tarray.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tarray.o' + +# Name of the non-PIC object +non_pic_object='H5Tarray.o' + diff --git a/build/src/H5Tarray.o b/build/src/H5Tarray.o new file mode 100644 index 0000000..9c5db5b Binary files /dev/null and b/build/src/H5Tarray.o differ diff --git a/build/src/H5Tbit.lo b/build/src/H5Tbit.lo new file mode 100644 index 0000000..c69eff2 --- /dev/null +++ b/build/src/H5Tbit.lo @@ -0,0 +1,12 @@ +# H5Tbit.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tbit.o' + +# Name of the non-PIC object +non_pic_object='H5Tbit.o' + diff --git a/build/src/H5Tbit.o b/build/src/H5Tbit.o new file mode 100644 index 0000000..d88f2db Binary files /dev/null and b/build/src/H5Tbit.o differ diff --git a/build/src/H5Tcommit.lo b/build/src/H5Tcommit.lo new file mode 100644 index 0000000..df41ccd --- /dev/null +++ b/build/src/H5Tcommit.lo @@ -0,0 +1,12 @@ +# H5Tcommit.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tcommit.o' + +# Name of the non-PIC object +non_pic_object='H5Tcommit.o' + diff --git a/build/src/H5Tcommit.o b/build/src/H5Tcommit.o new file mode 100644 index 0000000..cc9dc1f Binary files /dev/null and b/build/src/H5Tcommit.o differ diff --git a/build/src/H5Tcompound.lo b/build/src/H5Tcompound.lo new file mode 100644 index 0000000..2d524ac --- /dev/null +++ b/build/src/H5Tcompound.lo @@ -0,0 +1,12 @@ +# H5Tcompound.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tcompound.o' + +# Name of the non-PIC object +non_pic_object='H5Tcompound.o' + diff --git a/build/src/H5Tcompound.o b/build/src/H5Tcompound.o new file mode 100644 index 0000000..093201a Binary files /dev/null and b/build/src/H5Tcompound.o differ diff --git a/build/src/H5Tconv.lo b/build/src/H5Tconv.lo new file mode 100644 index 0000000..d535da7 --- /dev/null +++ b/build/src/H5Tconv.lo @@ -0,0 +1,12 @@ +# H5Tconv.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tconv.o' + +# Name of the non-PIC object +non_pic_object='H5Tconv.o' + diff --git a/build/src/H5Tconv.o b/build/src/H5Tconv.o new file mode 100644 index 0000000..176c51c Binary files /dev/null and b/build/src/H5Tconv.o differ diff --git a/build/src/H5Tcset.lo b/build/src/H5Tcset.lo new file mode 100644 index 0000000..38ae816 --- /dev/null +++ b/build/src/H5Tcset.lo @@ -0,0 +1,12 @@ +# H5Tcset.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tcset.o' + +# Name of the non-PIC object +non_pic_object='H5Tcset.o' + diff --git a/build/src/H5Tcset.o b/build/src/H5Tcset.o new file mode 100644 index 0000000..d6a4469 Binary files /dev/null and b/build/src/H5Tcset.o differ diff --git a/build/src/H5Tdbg.lo b/build/src/H5Tdbg.lo new file mode 100644 index 0000000..1916958 --- /dev/null +++ b/build/src/H5Tdbg.lo @@ -0,0 +1,12 @@ +# H5Tdbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tdbg.o' + +# Name of the non-PIC object +non_pic_object='H5Tdbg.o' + diff --git a/build/src/H5Tdbg.o b/build/src/H5Tdbg.o new file mode 100644 index 0000000..36cf817 Binary files /dev/null and b/build/src/H5Tdbg.o differ diff --git a/build/src/H5Tdeprec.lo b/build/src/H5Tdeprec.lo new file mode 100644 index 0000000..52ccbd4 --- /dev/null +++ b/build/src/H5Tdeprec.lo @@ -0,0 +1,12 @@ +# H5Tdeprec.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tdeprec.o' + +# Name of the non-PIC object +non_pic_object='H5Tdeprec.o' + diff --git a/build/src/H5Tdeprec.o b/build/src/H5Tdeprec.o new file mode 100644 index 0000000..0b83938 Binary files /dev/null and b/build/src/H5Tdeprec.o differ diff --git a/build/src/H5Tenum.lo b/build/src/H5Tenum.lo new file mode 100644 index 0000000..efd0911 --- /dev/null +++ b/build/src/H5Tenum.lo @@ -0,0 +1,12 @@ +# H5Tenum.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tenum.o' + +# Name of the non-PIC object +non_pic_object='H5Tenum.o' + diff --git a/build/src/H5Tenum.o b/build/src/H5Tenum.o new file mode 100644 index 0000000..3273655 Binary files /dev/null and b/build/src/H5Tenum.o differ diff --git a/build/src/H5Tfields.lo b/build/src/H5Tfields.lo new file mode 100644 index 0000000..39afc96 --- /dev/null +++ b/build/src/H5Tfields.lo @@ -0,0 +1,12 @@ +# H5Tfields.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tfields.o' + +# Name of the non-PIC object +non_pic_object='H5Tfields.o' + diff --git a/build/src/H5Tfields.o b/build/src/H5Tfields.o new file mode 100644 index 0000000..3b105c0 Binary files /dev/null and b/build/src/H5Tfields.o differ diff --git a/build/src/H5Tfixed.lo b/build/src/H5Tfixed.lo new file mode 100644 index 0000000..0c59eb9 --- /dev/null +++ b/build/src/H5Tfixed.lo @@ -0,0 +1,12 @@ +# H5Tfixed.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tfixed.o' + +# Name of the non-PIC object +non_pic_object='H5Tfixed.o' + diff --git a/build/src/H5Tfixed.o b/build/src/H5Tfixed.o new file mode 100644 index 0000000..73336c2 Binary files /dev/null and b/build/src/H5Tfixed.o differ diff --git a/build/src/H5Tfloat.lo b/build/src/H5Tfloat.lo new file mode 100644 index 0000000..295a4cc --- /dev/null +++ b/build/src/H5Tfloat.lo @@ -0,0 +1,12 @@ +# H5Tfloat.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tfloat.o' + +# Name of the non-PIC object +non_pic_object='H5Tfloat.o' + diff --git a/build/src/H5Tfloat.o b/build/src/H5Tfloat.o new file mode 100644 index 0000000..c817f91 Binary files /dev/null and b/build/src/H5Tfloat.o differ diff --git a/build/src/H5Tinit.c b/build/src/H5Tinit.c new file mode 100644 index 0000000..3adeb76 --- /dev/null +++ b/build/src/H5Tinit.c @@ -0,0 +1,991 @@ +/* Generated automatically by H5detect -- do not edit */ + + + +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * + * Created: May 14, 2018 + * lrknox + * + * Purpose: This machine-generated source code contains + * information about the various integer and + * floating point numeric formats found on this + * architecture. The parameters below should be + * checked carefully and errors reported to the + * HDF5 maintainer. + * + * Each of the numeric formats listed below are + * printed from most significant bit to least + * significant bit even though the actual bytes + * might be stored in a different order in + * memory. The integers above each binary byte + * indicate the relative order of the bytes in + * memory; little-endian machines have + * decreasing numbers while big-endian machines + * have increasing numbers. + * + * The fields of the numbers are printed as + * letters with `S' for the mantissa sign bit, + * `M' for the mantissa magnitude, and `E' for + * the exponent. The exponent has an associated + * bias which can be subtracted to find the + * true exponent. The radix point is assumed + * to be before the first `M' bit. Any bit + * of a floating-point value not falling into one + * of these categories is printed as a question + * mark. Bits of integer types are printed as + * `I' for 2's complement and `U' for magnitude. + * + * If the most significant bit of the normalized + * mantissa (always a `1' except for `0.0') is + * not stored then an `implicit=yes' appears + * under the field description. In thie case, + * the radix point is still assumed to be + * before the first `M' but after the implicit + * bit. + * + * Modifications: + * + * DO NOT MAKE MODIFICATIONS TO THIS FILE! + * It was generated by code in `H5detect.c'. + * + *------------------------------------------------------------------------- + */ + +/****************/ +/* Module Setup */ +/****************/ + +#define H5T_PACKAGE /*suppress error about including H5Tpkg.h*/ + + +/***********/ +/* Headers */ +/***********/ +#include "H5private.h" /* Generic Functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5FLprivate.h" /* Free Lists */ +#include "H5Iprivate.h" /* IDs */ +#include "H5Tpkg.h" /* Datatypes */ + + +/****************/ +/* Local Macros */ +/****************/ + + +/******************/ +/* Local Typedefs */ +/******************/ + + +/********************/ +/* Package Typedefs */ +/********************/ + + +/********************/ +/* Local Prototypes */ +/********************/ + + +/********************/ +/* Public Variables */ +/********************/ + + +/*****************************/ +/* Library Private Variables */ +/*****************************/ + + +/*********************/ +/* Package Variables */ +/*********************/ + + + +/*******************/ +/* Local Variables */ +/*******************/ + + + +/*------------------------------------------------------------------------- + * Function: H5TN_init_interface + * + * Purpose: Initialize pre-defined native datatypes from code generated + * during the library configuration by H5detect. + * + * Return: Success: non-negative + * Failure: negative + * + * Programmer: Robb Matzke + * Wednesday, December 16, 1998 + * + *------------------------------------------------------------------------- + */ +herr_t +H5TN_init_interface(void) +{ + H5T_t *dt = NULL; + herr_t ret_value = SUCCEED; + + FUNC_ENTER_NOAPI(FAIL) + + /* + * 0 + * IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_SCHAR_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_SCHAR_ALIGN_g = 1; + H5T_NATIVE_SCHAR_COMP_ALIGN_g = 1; + + /* + * 0 + * UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UCHAR_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UCHAR_ALIGN_g = 1; + + /* + * 1 0 + * IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_SHORT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_SHORT_ALIGN_g = 1; + H5T_NATIVE_SHORT_COMP_ALIGN_g = 2; + + /* + * 1 0 + * UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_USHORT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_USHORT_ALIGN_g = 1; + + /* + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_ALIGN_g = 1; + H5T_NATIVE_INT_COMP_ALIGN_g = 4; + + /* + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_LONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_LONG_ALIGN_g = 1; + H5T_NATIVE_LONG_COMP_ALIGN_g = 8; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_ULONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_ULONG_ALIGN_g = 1; + + /* + * 0 + * IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT8_ALIGN_g = 1; + + /* + * 0 + * UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT8_ALIGN_g = 1; + + /* + * 0 + * IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_LEAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_LEAST8_ALIGN_g = 1; + + /* + * 0 + * UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_LEAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_LEAST8_ALIGN_g = 1; + + /* + * 0 + * IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_FAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_FAST8_ALIGN_g = 1; + + /* + * 0 + * UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 1; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 8; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_FAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_FAST8_ALIGN_g = 1; + + /* + * 1 0 + * IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT16_ALIGN_g = 1; + + /* + * 1 0 + * UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT16_ALIGN_g = 1; + + /* + * 1 0 + * IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_LEAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_LEAST16_ALIGN_g = 1; + + /* + * 1 0 + * UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 2; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 16; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_LEAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_LEAST16_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_FAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_FAST16_ALIGN_g = 1; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_FAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_FAST16_ALIGN_g = 1; + + /* + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT32_ALIGN_g = 1; + + /* + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT32_ALIGN_g = 1; + + /* + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_LEAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_LEAST32_ALIGN_g = 1; + + /* + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_LEAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_LEAST32_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_FAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_FAST32_ALIGN_g = 1; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_FAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_FAST32_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_LEAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_LEAST64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_LEAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_LEAST64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_INT_FAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_INT_FAST64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_UINT_FAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_UINT_FAST64_ALIGN_g = 1; + + /* + * 7 6 5 4 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * 3 2 1 0 + * IIIIIIII IIIIIIII IIIIIIII IIIIIIII + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_2; + if((H5T_NATIVE_LLONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_LLONG_ALIGN_g = 1; + H5T_NATIVE_LLONG_COMP_ALIGN_g = 8; + + /* + * 7 6 5 4 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * 3 2 1 0 + * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_INTEGER; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; + if((H5T_NATIVE_ULLONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_ULLONG_ALIGN_g = 1; + + /* + * 3 2 1 0 + * SEEEEEEE EMMMMMMM MMMMMMMM MMMMMMMM + * Implicit bit? yes + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_FLOAT; + dt->shared->size = 4; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 32; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.f.sign = 31; + dt->shared->u.atomic.u.f.epos = 23; + dt->shared->u.atomic.u.f.esize = 8; + dt->shared->u.atomic.u.f.ebias = 0x0000007f; + dt->shared->u.atomic.u.f.mpos = 0; + dt->shared->u.atomic.u.f.msize = 23; + dt->shared->u.atomic.u.f.norm = H5T_NORM_IMPLIED; + dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; + if((H5T_NATIVE_FLOAT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_FLOAT_ALIGN_g = 1; + H5T_NATIVE_FLOAT_COMP_ALIGN_g = 4; + + /* + * 7 6 5 4 + * SEEEEEEE EEEEMMMM MMMMMMMM MMMMMMMM + * 3 2 1 0 + * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM + * Implicit bit? yes + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_FLOAT; + dt->shared->size = 8; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 64; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.f.sign = 63; + dt->shared->u.atomic.u.f.epos = 52; + dt->shared->u.atomic.u.f.esize = 11; + dt->shared->u.atomic.u.f.ebias = 0x000003ff; + dt->shared->u.atomic.u.f.mpos = 0; + dt->shared->u.atomic.u.f.msize = 52; + dt->shared->u.atomic.u.f.norm = H5T_NORM_IMPLIED; + dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; + if((H5T_NATIVE_DOUBLE_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_DOUBLE_ALIGN_g = 1; + H5T_NATIVE_DOUBLE_COMP_ALIGN_g = 8; + + /* + * 15 14 13 12 + * ???????? ???????? ???????? ???????? + * 11 10 9 8 + * ???????? ???????? SEEEEEEE EEEEEEEE + * 7 6 5 4 + * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM + * 3 2 1 0 + * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM + * Implicit bit? no + * Alignment: none + */ + if(NULL == (dt = H5T__alloc())) + HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") + dt->shared->state = H5T_STATE_IMMUTABLE; + dt->shared->type = H5T_FLOAT; + dt->shared->size = 16; + dt->shared->u.atomic.order = H5T_ORDER_LE; + dt->shared->u.atomic.offset = 0; + dt->shared->u.atomic.prec = 80; + dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; + dt->shared->u.atomic.u.f.sign = 79; + dt->shared->u.atomic.u.f.epos = 64; + dt->shared->u.atomic.u.f.esize = 15; + dt->shared->u.atomic.u.f.ebias = 0x00003fff; + dt->shared->u.atomic.u.f.mpos = 0; + dt->shared->u.atomic.u.f.msize = 64; + dt->shared->u.atomic.u.f.norm = H5T_NORM_NONE; + dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; + if((H5T_NATIVE_LDOUBLE_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") + H5T_NATIVE_LDOUBLE_ALIGN_g = 1; + H5T_NATIVE_LDOUBLE_COMP_ALIGN_g = 16; + + /* Set the native order for this machine */ + H5T_native_order_g = H5T_ORDER_LE; + + /* Structure alignment for pointers, hvl_t, hobj_ref_t, hdset_reg_ref_t */ + H5T_POINTER_COMP_ALIGN_g = 8; + H5T_HVL_COMP_ALIGN_g = 8; + H5T_HOBJREF_COMP_ALIGN_g = 8; + H5T_HDSETREGREF_COMP_ALIGN_g = 1; + +done: + if(ret_value < 0) { + if(dt != NULL) { + dt->shared = H5FL_FREE(H5T_shared_t, dt->shared); + dt = H5FL_FREE(H5T_t, dt); + } /* end if */ + } /* end if */ + + FUNC_LEAVE_NOAPI(ret_value); +} /* end H5TN_init_interface() */ + +/****************************************/ +/* ALIGNMENT and signal-handling status */ +/****************************************/ +/* Signal() support: yes */ +/* setjmp() support: yes */ +/* longjmp() support: yes */ +/* sigsetjmp() support: no */ +/* siglongjmp() support: yes */ +/* sigprocmask() support: yes */ + +/******************************/ +/* signal handlers statistics */ +/******************************/ +/* signal_handlers tested: 15 times */ +/* sigbus_handler called: 5 times */ +/* sigsegv_handler called: 5 times */ +/* sigill_handler called: 5 times */ diff --git a/build/src/H5Tinit.lo b/build/src/H5Tinit.lo new file mode 100644 index 0000000..1829968 --- /dev/null +++ b/build/src/H5Tinit.lo @@ -0,0 +1,12 @@ +# H5Tinit.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tinit.o' + +# Name of the non-PIC object +non_pic_object='H5Tinit.o' + diff --git a/build/src/H5Tinit.o b/build/src/H5Tinit.o new file mode 100644 index 0000000..dddce32 Binary files /dev/null and b/build/src/H5Tinit.o differ diff --git a/build/src/H5Tnative.lo b/build/src/H5Tnative.lo new file mode 100644 index 0000000..58e8ce4 --- /dev/null +++ b/build/src/H5Tnative.lo @@ -0,0 +1,12 @@ +# H5Tnative.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tnative.o' + +# Name of the non-PIC object +non_pic_object='H5Tnative.o' + diff --git a/build/src/H5Tnative.o b/build/src/H5Tnative.o new file mode 100644 index 0000000..7451cdd Binary files /dev/null and b/build/src/H5Tnative.o differ diff --git a/build/src/H5Toffset.lo b/build/src/H5Toffset.lo new file mode 100644 index 0000000..d1a2a0a --- /dev/null +++ b/build/src/H5Toffset.lo @@ -0,0 +1,12 @@ +# H5Toffset.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Toffset.o' + +# Name of the non-PIC object +non_pic_object='H5Toffset.o' + diff --git a/build/src/H5Toffset.o b/build/src/H5Toffset.o new file mode 100644 index 0000000..58d65fb Binary files /dev/null and b/build/src/H5Toffset.o differ diff --git a/build/src/H5Toh.lo b/build/src/H5Toh.lo new file mode 100644 index 0000000..e65844f --- /dev/null +++ b/build/src/H5Toh.lo @@ -0,0 +1,12 @@ +# H5Toh.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Toh.o' + +# Name of the non-PIC object +non_pic_object='H5Toh.o' + diff --git a/build/src/H5Toh.o b/build/src/H5Toh.o new file mode 100644 index 0000000..5f4a210 Binary files /dev/null and b/build/src/H5Toh.o differ diff --git a/build/src/H5Topaque.lo b/build/src/H5Topaque.lo new file mode 100644 index 0000000..05d0bfc --- /dev/null +++ b/build/src/H5Topaque.lo @@ -0,0 +1,12 @@ +# H5Topaque.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Topaque.o' + +# Name of the non-PIC object +non_pic_object='H5Topaque.o' + diff --git a/build/src/H5Topaque.o b/build/src/H5Topaque.o new file mode 100644 index 0000000..bf70d64 Binary files /dev/null and b/build/src/H5Topaque.o differ diff --git a/build/src/H5Torder.lo b/build/src/H5Torder.lo new file mode 100644 index 0000000..6075c28 --- /dev/null +++ b/build/src/H5Torder.lo @@ -0,0 +1,12 @@ +# H5Torder.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Torder.o' + +# Name of the non-PIC object +non_pic_object='H5Torder.o' + diff --git a/build/src/H5Torder.o b/build/src/H5Torder.o new file mode 100644 index 0000000..5ebb8e2 Binary files /dev/null and b/build/src/H5Torder.o differ diff --git a/build/src/H5Tpad.lo b/build/src/H5Tpad.lo new file mode 100644 index 0000000..8f1939f --- /dev/null +++ b/build/src/H5Tpad.lo @@ -0,0 +1,12 @@ +# H5Tpad.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tpad.o' + +# Name of the non-PIC object +non_pic_object='H5Tpad.o' + diff --git a/build/src/H5Tpad.o b/build/src/H5Tpad.o new file mode 100644 index 0000000..ab8afe8 Binary files /dev/null and b/build/src/H5Tpad.o differ diff --git a/build/src/H5Tprecis.lo b/build/src/H5Tprecis.lo new file mode 100644 index 0000000..c658bf1 --- /dev/null +++ b/build/src/H5Tprecis.lo @@ -0,0 +1,12 @@ +# H5Tprecis.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tprecis.o' + +# Name of the non-PIC object +non_pic_object='H5Tprecis.o' + diff --git a/build/src/H5Tprecis.o b/build/src/H5Tprecis.o new file mode 100644 index 0000000..50b1268 Binary files /dev/null and b/build/src/H5Tprecis.o differ diff --git a/build/src/H5Tstrpad.lo b/build/src/H5Tstrpad.lo new file mode 100644 index 0000000..5459661 --- /dev/null +++ b/build/src/H5Tstrpad.lo @@ -0,0 +1,12 @@ +# H5Tstrpad.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tstrpad.o' + +# Name of the non-PIC object +non_pic_object='H5Tstrpad.o' + diff --git a/build/src/H5Tstrpad.o b/build/src/H5Tstrpad.o new file mode 100644 index 0000000..d90cc95 Binary files /dev/null and b/build/src/H5Tstrpad.o differ diff --git a/build/src/H5Tvisit.lo b/build/src/H5Tvisit.lo new file mode 100644 index 0000000..354ead0 --- /dev/null +++ b/build/src/H5Tvisit.lo @@ -0,0 +1,12 @@ +# H5Tvisit.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tvisit.o' + +# Name of the non-PIC object +non_pic_object='H5Tvisit.o' + diff --git a/build/src/H5Tvisit.o b/build/src/H5Tvisit.o new file mode 100644 index 0000000..b20c117 Binary files /dev/null and b/build/src/H5Tvisit.o differ diff --git a/build/src/H5Tvlen.lo b/build/src/H5Tvlen.lo new file mode 100644 index 0000000..cd51e53 --- /dev/null +++ b/build/src/H5Tvlen.lo @@ -0,0 +1,12 @@ +# H5Tvlen.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Tvlen.o' + +# Name of the non-PIC object +non_pic_object='H5Tvlen.o' + diff --git a/build/src/H5Tvlen.o b/build/src/H5Tvlen.o new file mode 100644 index 0000000..d87fcf2 Binary files /dev/null and b/build/src/H5Tvlen.o differ diff --git a/build/src/H5VM.lo b/build/src/H5VM.lo new file mode 100644 index 0000000..bd4358b --- /dev/null +++ b/build/src/H5VM.lo @@ -0,0 +1,12 @@ +# H5VM.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5VM.o' + +# Name of the non-PIC object +non_pic_object='H5VM.o' + diff --git a/build/src/H5VM.o b/build/src/H5VM.o new file mode 100644 index 0000000..3651855 Binary files /dev/null and b/build/src/H5VM.o differ diff --git a/build/src/H5WB.lo b/build/src/H5WB.lo new file mode 100644 index 0000000..1f213d1 --- /dev/null +++ b/build/src/H5WB.lo @@ -0,0 +1,12 @@ +# H5WB.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5WB.o' + +# Name of the non-PIC object +non_pic_object='H5WB.o' + diff --git a/build/src/H5WB.o b/build/src/H5WB.o new file mode 100644 index 0000000..4c9320f Binary files /dev/null and b/build/src/H5WB.o differ diff --git a/build/src/H5Z.lo b/build/src/H5Z.lo new file mode 100644 index 0000000..ec6232f --- /dev/null +++ b/build/src/H5Z.lo @@ -0,0 +1,12 @@ +# H5Z.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Z.o' + +# Name of the non-PIC object +non_pic_object='H5Z.o' + diff --git a/build/src/H5Z.o b/build/src/H5Z.o new file mode 100644 index 0000000..36cc42f Binary files /dev/null and b/build/src/H5Z.o differ diff --git a/build/src/H5Zdeflate.lo b/build/src/H5Zdeflate.lo new file mode 100644 index 0000000..9c2ca75 --- /dev/null +++ b/build/src/H5Zdeflate.lo @@ -0,0 +1,12 @@ +# H5Zdeflate.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Zdeflate.o' + +# Name of the non-PIC object +non_pic_object='H5Zdeflate.o' + diff --git a/build/src/H5Zdeflate.o b/build/src/H5Zdeflate.o new file mode 100644 index 0000000..7a69458 Binary files /dev/null and b/build/src/H5Zdeflate.o differ diff --git a/build/src/H5Zfletcher32.lo b/build/src/H5Zfletcher32.lo new file mode 100644 index 0000000..e0ceab3 --- /dev/null +++ b/build/src/H5Zfletcher32.lo @@ -0,0 +1,12 @@ +# H5Zfletcher32.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Zfletcher32.o' + +# Name of the non-PIC object +non_pic_object='H5Zfletcher32.o' + diff --git a/build/src/H5Zfletcher32.o b/build/src/H5Zfletcher32.o new file mode 100644 index 0000000..c500666 Binary files /dev/null and b/build/src/H5Zfletcher32.o differ diff --git a/build/src/H5Znbit.lo b/build/src/H5Znbit.lo new file mode 100644 index 0000000..332a828 --- /dev/null +++ b/build/src/H5Znbit.lo @@ -0,0 +1,12 @@ +# H5Znbit.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Znbit.o' + +# Name of the non-PIC object +non_pic_object='H5Znbit.o' + diff --git a/build/src/H5Znbit.o b/build/src/H5Znbit.o new file mode 100644 index 0000000..d7b5abd Binary files /dev/null and b/build/src/H5Znbit.o differ diff --git a/build/src/H5Zscaleoffset.lo b/build/src/H5Zscaleoffset.lo new file mode 100644 index 0000000..b13c89c --- /dev/null +++ b/build/src/H5Zscaleoffset.lo @@ -0,0 +1,12 @@ +# H5Zscaleoffset.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Zscaleoffset.o' + +# Name of the non-PIC object +non_pic_object='H5Zscaleoffset.o' + diff --git a/build/src/H5Zscaleoffset.o b/build/src/H5Zscaleoffset.o new file mode 100644 index 0000000..71f6029 Binary files /dev/null and b/build/src/H5Zscaleoffset.o differ diff --git a/build/src/H5Zshuffle.lo b/build/src/H5Zshuffle.lo new file mode 100644 index 0000000..7a58981 --- /dev/null +++ b/build/src/H5Zshuffle.lo @@ -0,0 +1,12 @@ +# H5Zshuffle.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Zshuffle.o' + +# Name of the non-PIC object +non_pic_object='H5Zshuffle.o' + diff --git a/build/src/H5Zshuffle.o b/build/src/H5Zshuffle.o new file mode 100644 index 0000000..65b7ba3 Binary files /dev/null and b/build/src/H5Zshuffle.o differ diff --git a/build/src/H5Zszip.lo b/build/src/H5Zszip.lo new file mode 100644 index 0000000..6979118 --- /dev/null +++ b/build/src/H5Zszip.lo @@ -0,0 +1,12 @@ +# H5Zszip.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Zszip.o' + +# Name of the non-PIC object +non_pic_object='H5Zszip.o' + diff --git a/build/src/H5Zszip.o b/build/src/H5Zszip.o new file mode 100644 index 0000000..77993d4 Binary files /dev/null and b/build/src/H5Zszip.o differ diff --git a/build/src/H5Ztrans.lo b/build/src/H5Ztrans.lo new file mode 100644 index 0000000..d61b981 --- /dev/null +++ b/build/src/H5Ztrans.lo @@ -0,0 +1,12 @@ +# H5Ztrans.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5Ztrans.o' + +# Name of the non-PIC object +non_pic_object='H5Ztrans.o' + diff --git a/build/src/H5Ztrans.o b/build/src/H5Ztrans.o new file mode 100644 index 0000000..c8612e0 Binary files /dev/null and b/build/src/H5Ztrans.o differ diff --git a/build/src/H5checksum.lo b/build/src/H5checksum.lo new file mode 100644 index 0000000..f6f82a0 --- /dev/null +++ b/build/src/H5checksum.lo @@ -0,0 +1,12 @@ +# H5checksum.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5checksum.o' + +# Name of the non-PIC object +non_pic_object='H5checksum.o' + diff --git a/build/src/H5checksum.o b/build/src/H5checksum.o new file mode 100644 index 0000000..9b5c5cb Binary files /dev/null and b/build/src/H5checksum.o differ diff --git a/build/src/H5config.h b/build/src/H5config.h new file mode 100644 index 0000000..7cbcccb --- /dev/null +++ b/build/src/H5config.h @@ -0,0 +1,563 @@ +/* src/H5config.h. Generated from H5config.h.in by configure. */ +/* src/H5config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +/* #undef AC_APPLE_UNIVERSAL_BUILD */ + +/* Define if the memory buffers being written to disk should be cleared before + writing. */ +#define CLEAR_MEMORY 1 + +/* Define if C++ compiler recognizes offsetof */ +/* #undef CXX_HAVE_OFFSETOF */ + +/* Define the default plugins path to compile */ +#define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + +/* Define if `dev_t' is a scalar */ +#define DEV_T_IS_SCALAR 1 + +/* Define to dummy `main' function (if any) required to link to the Fortran + libraries. */ +/* #undef FC_DUMMY_MAIN */ + +/* Define if F77 and FC dummy `main' functions are identical. */ +/* #undef FC_DUMMY_MAIN_EQ_F77 */ + +/* Define to a macro mangling the given C identifier (in lower and upper + case), which must not contain underscores, for linking with Fortran. */ +/* #undef FC_FUNC */ + +/* As FC_FUNC, but for C identifiers containing underscores. */ +/* #undef FC_FUNC_ */ + +/* Define to 1 if you have the `alarm' function. */ +#define HAVE_ALARM 1 + +/* Define to 1 if you have the `asprintf' function. */ +#define HAVE_ASPRINTF 1 + +/* Define if the __attribute__(()) extension is present */ +#define HAVE_ATTRIBUTE 1 + +/* Define if the compiler understands C99 designated initialization of structs + and unions */ +#define HAVE_C99_DESIGNATED_INITIALIZER 1 + +/* Define if the compiler understands the __func__ keyword */ +#define HAVE_C99_FUNC 1 + +/* Define to 1 if you have the `clock_gettime' function. */ +#define HAVE_CLOCK_GETTIME 1 + +/* Define if the function stack tracing code is to be compiled in */ +/* #undef HAVE_CODESTACK */ + +/* Define if Darwin or Mac OS X */ +/* #undef HAVE_DARWIN */ + +/* Define to 1 if you have the `difftime' function. */ +#define HAVE_DIFFTIME 1 + +/* Define if the direct I/O virtual file driver (VFD) should be compiled */ +/* #undef HAVE_DIRECT */ + +/* Define to 1 if you have the header file. */ +#define HAVE_DIRENT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_DMALLOC_H */ + +/* Define if library information should be embedded in the executables */ +#define HAVE_EMBEDDED_LIBINFO 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_FEATURES_H 1 + +/* Define if support for deflate (zlib) filter is enabled */ +#define HAVE_FILTER_DEFLATE 1 + +/* Define if support for szip filter is enabled */ +/* #undef HAVE_FILTER_SZIP */ + +/* Define to 1 if you have the `fork' function. */ +#define HAVE_FORK 1 + +/* Define to 1 if you have the `frexpf' function. */ +#define HAVE_FREXPF 1 + +/* Define to 1 if you have the `frexpl' function. */ +#define HAVE_FREXPL 1 + +/* Define if the compiler understands the __FUNCTION__ keyword */ +#define HAVE_FUNCTION 1 + +/* Define to 1 if you have the `GetConsoleScreenBufferInfo' function. */ +/* #undef HAVE_GETCONSOLESCREENBUFFERINFO */ + +/* Define to 1 if you have the `gethostname' function. */ +#define HAVE_GETHOSTNAME 1 + +/* Define to 1 if you have the `getpwuid' function. */ +#define HAVE_GETPWUID 1 + +/* Define to 1 if you have the `getrusage' function. */ +#define HAVE_GETRUSAGE 1 + +/* Define to 1 if you have the `gettextinfo' function. */ +/* #undef HAVE_GETTEXTINFO */ + +/* Define to 1 if you have the `gettimeofday' function. */ +#define HAVE_GETTIMEOFDAY 1 + +/* Define if the compiler understands inline */ +#define HAVE_INLINE 1 + +/* Define if library will contain instrumentation to detect correct + optimization operation */ +#define HAVE_INSTRUMENTED_LIBRARY 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `ioctl' function. */ +#define HAVE_IOCTL 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_IO_H */ + +/* Define to 1 if you have the `dl' library (-ldl). */ +#define HAVE_LIBDL 1 + +/* Define to 1 if you have the `dmalloc' library (-ldmalloc). */ +/* #undef HAVE_LIBDMALLOC */ + +/* Define to 1 if you have the `m' library (-lm). */ +#define HAVE_LIBM 1 + +/* Define to 1 if you have the `mpe' library (-lmpe). */ +/* #undef HAVE_LIBMPE */ + +/* Define to 1 if you have the `pthread' library (-lpthread). */ +/* #undef HAVE_LIBPTHREAD */ + +/* Define to 1 if you have the `sz' library (-lsz). */ +/* #undef HAVE_LIBSZ */ + +/* Define to 1 if you have the `ws2_32' library (-lws2_32). */ +/* #undef HAVE_LIBWS2_32 */ + +/* Define to 1 if you have the `z' library (-lz). */ +#define HAVE_LIBZ 1 + +/* Define to 1 if you have the `longjmp' function. */ +#define HAVE_LONGJMP 1 + +/* Define to 1 if you have the `lstat' function. */ +#define HAVE_LSTAT 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MACH_MACH_TIME_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define if we have MPE support */ +/* #undef HAVE_MPE */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MPE_H */ + +/* Define if `MPI_Comm_c2f' and `MPI_Comm_f2c' exists */ +/* #undef HAVE_MPI_MULTI_LANG_Comm */ + +/* Define if `MPI_Info_c2f' and `MPI_Info_f2c' exists */ +/* #undef HAVE_MPI_MULTI_LANG_Info */ + +/* Define if we have parallel support */ +/* #undef HAVE_PARALLEL */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_PTHREAD_H */ + +/* Define to 1 if you have the `random' function. */ +#define HAVE_RANDOM 1 + +/* Define to 1 if you have the `rand_r' function. */ +#define HAVE_RAND_R 1 + +/* Define to 1 if you have the `setjmp' function. */ +#define HAVE_SETJMP 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SETJMP_H 1 + +/* Define to 1 if you have the `setsysinfo' function. */ +/* #undef HAVE_SETSYSINFO */ + +/* Define to 1 if you have the `siglongjmp' function. */ +#define HAVE_SIGLONGJMP 1 + +/* Define to 1 if you have the `signal' function. */ +#define HAVE_SIGNAL 1 + +/* Define to 1 if you have the `sigprocmask' function. */ +#define HAVE_SIGPROCMASK 1 + +/* Define to 1 if you have the `sigsetjmp' function. */ +/* #undef HAVE_SIGSETJMP */ + +/* Define to 1 if you have the `snprintf' function. */ +#define HAVE_SNPRINTF 1 + +/* Define to 1 if you have the `srandom' function. */ +#define HAVE_SRANDOM 1 + +/* Define if `struct stat' has the `st_blocks' field */ +#define HAVE_STAT_ST_BLOCKS 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDDEF_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strdup' function. */ +#define HAVE_STRDUP 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strtoll' function. */ +#define HAVE_STRTOLL 1 + +/* Define to 1 if you have the `strtoull' function. */ +#define HAVE_STRTOULL 1 + +/* Define if `struct text_info' is defined */ +/* #undef HAVE_STRUCT_TEXT_INFO */ + +/* Define if `struct videoconfig' is defined */ +/* #undef HAVE_STRUCT_VIDEOCONFIG */ + +/* Define to 1 if you have the `symlink' function. */ +#define HAVE_SYMLINK 1 + +/* Define to 1 if you have the `system' function. */ +#define HAVE_SYSTEM 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_IOCTL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_RESOURCE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TIMEB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SZLIB_H */ + +/* Define if we have thread safe support */ +/* #undef HAVE_THREADSAFE */ + +/* Define if `timezone' is a global variable */ +#define HAVE_TIMEZONE 1 + +/* Define if the ioctl TIOCGETD is defined */ +#define HAVE_TIOCGETD 1 + +/* Define if the ioctl TIOGWINSZ is defined */ +#define HAVE_TIOCGWINSZ 1 + +/* Define to 1 if you have the `tmpfile' function. */ +#define HAVE_TMPFILE 1 + +/* Define if `tm_gmtoff' is a member of `struct tm' */ +#define HAVE_TM_GMTOFF 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `vasprintf' function. */ +#define HAVE_VASPRINTF 1 + +/* Define to 1 if you have the `vsnprintf' function. */ +#define HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the `waitpid' function. */ +#define HAVE_WAITPID 1 + +/* Define if your system has window style path name. */ +/* #undef HAVE_WINDOW_PATH */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_WINSOCK2_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ZLIB_H 1 + +/* Define to 1 if you have the `_getvideoconfig' function. */ +/* #undef HAVE__GETVIDEOCONFIG */ + +/* Define to 1 if you have the `_scrsize' function. */ +/* #undef HAVE__SCRSIZE */ + +/* Define if the compiler understands __inline */ +#define HAVE___INLINE 1 + +/* Define if the compiler understands __inline__ */ +#define HAVE___INLINE__ 1 + +/* Define if HDF5's high-level library headers should be included in hdf5.h */ +#define INCLUDE_HL 1 + +/* Define if your system can convert long double to (unsigned) long long + values correctly. */ +#define LDOUBLE_TO_LLONG_ACCURATE 1 + +/* Define if your system converts long double to (unsigned) long values with + special algorithm. */ +/* #undef LDOUBLE_TO_LONG_SPECIAL */ + +/* Define if your system can convert (unsigned) long long to long double + values correctly. */ +#define LLONG_TO_LDOUBLE_CORRECT 1 + +/* Define if your system can convert (unsigned) long to long double values + with special algorithm. */ +/* #undef LONG_TO_LDOUBLE_SPECIAL */ + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#define LT_OBJDIR ".libs/" + +/* Define if the metadata trace file code is to be compiled in */ +/* #undef METADATA_TRACE_FILE */ + +/* Define if we can violate pointer alignment restrictions */ +#define NO_ALIGNMENT_RESTRICTIONS 1 + +/* Define if deprecated public API symbols are disabled */ +/* #undef NO_DEPRECATED_SYMBOLS */ + +/* Name of package */ +#define PACKAGE "hdf5" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "help@hdfgroup.org" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "HDF5" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "HDF5 1.8.21-pre1" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "hdf5" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.8.21-pre1" + +/* Width for printf() for type `long long' or `__int64', use `ll' */ +#define PRINTF_LL_WIDTH "l" + +/* The size of `char', as computed by sizeof. */ +#define SIZEOF_CHAR 1 + +/* The size of `double', as computed by sizeof. */ +#define SIZEOF_DOUBLE 8 + +/* The size of `float', as computed by sizeof. */ +#define SIZEOF_FLOAT 4 + +/* The size of `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of `int16_t', as computed by sizeof. */ +#define SIZEOF_INT16_T 2 + +/* The size of `int32_t', as computed by sizeof. */ +#define SIZEOF_INT32_T 4 + +/* The size of `int64_t', as computed by sizeof. */ +#define SIZEOF_INT64_T 8 + +/* The size of `int8_t', as computed by sizeof. */ +#define SIZEOF_INT8_T 1 + +/* The size of `int_fast16_t', as computed by sizeof. */ +#define SIZEOF_INT_FAST16_T 8 + +/* The size of `int_fast32_t', as computed by sizeof. */ +#define SIZEOF_INT_FAST32_T 8 + +/* The size of `int_fast64_t', as computed by sizeof. */ +#define SIZEOF_INT_FAST64_T 8 + +/* The size of `int_fast8_t', as computed by sizeof. */ +#define SIZEOF_INT_FAST8_T 1 + +/* The size of `int_least16_t', as computed by sizeof. */ +#define SIZEOF_INT_LEAST16_T 2 + +/* The size of `int_least32_t', as computed by sizeof. */ +#define SIZEOF_INT_LEAST32_T 4 + +/* The size of `int_least64_t', as computed by sizeof. */ +#define SIZEOF_INT_LEAST64_T 8 + +/* The size of `int_least8_t', as computed by sizeof. */ +#define SIZEOF_INT_LEAST8_T 1 + +/* The size of `long', as computed by sizeof. */ +#define SIZEOF_LONG 8 + +/* The size of `long double', as computed by sizeof. */ +#define SIZEOF_LONG_DOUBLE 16 + +/* The size of `long long', as computed by sizeof. */ +#define SIZEOF_LONG_LONG 8 + +/* The size of `off_t', as computed by sizeof. */ +#define SIZEOF_OFF_T 8 + +/* The size of `ptrdiff_t', as computed by sizeof. */ +#define SIZEOF_PTRDIFF_T 8 + +/* The size of `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + +/* The size of `size_t', as computed by sizeof. */ +#define SIZEOF_SIZE_T 8 + +/* The size of `ssize_t', as computed by sizeof. */ +#define SIZEOF_SSIZE_T 8 + +/* The size of `uint16_t', as computed by sizeof. */ +#define SIZEOF_UINT16_T 2 + +/* The size of `uint32_t', as computed by sizeof. */ +#define SIZEOF_UINT32_T 4 + +/* The size of `uint64_t', as computed by sizeof. */ +#define SIZEOF_UINT64_T 8 + +/* The size of `uint8_t', as computed by sizeof. */ +#define SIZEOF_UINT8_T 1 + +/* The size of `uint_fast16_t', as computed by sizeof. */ +#define SIZEOF_UINT_FAST16_T 8 + +/* The size of `uint_fast32_t', as computed by sizeof. */ +#define SIZEOF_UINT_FAST32_T 8 + +/* The size of `uint_fast64_t', as computed by sizeof. */ +#define SIZEOF_UINT_FAST64_T 8 + +/* The size of `uint_fast8_t', as computed by sizeof. */ +#define SIZEOF_UINT_FAST8_T 1 + +/* The size of `uint_least16_t', as computed by sizeof. */ +#define SIZEOF_UINT_LEAST16_T 2 + +/* The size of `uint_least32_t', as computed by sizeof. */ +#define SIZEOF_UINT_LEAST32_T 4 + +/* The size of `uint_least64_t', as computed by sizeof. */ +#define SIZEOF_UINT_LEAST64_T 8 + +/* The size of `uint_least8_t', as computed by sizeof. */ +#define SIZEOF_UINT_LEAST8_T 1 + +/* The size of `unsigned', as computed by sizeof. */ +#define SIZEOF_UNSIGNED 4 + +/* The size of `__int64', as computed by sizeof. */ +#define SIZEOF___INT64 0 + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if strict file format checks are enabled */ +#define STRICT_FORMAT_CHECKS 1 + +/* Define if your system supports pthread_attr_setscope(&attribute, + PTHREAD_SCOPE_SYSTEM) call. */ +#define SYSTEM_SCOPE_THREADS 1 + +/* Define to 1 if you can safely include both and . */ +#define TIME_WITH_SYS_TIME 1 + +/* Define using v1.6 public API symbols by default */ +/* #undef USE_16_API_DEFAULT */ + +/* Define if a memory checking tool will be used on the library, to cause + library to be very picky about memory operations and also disable the + internal free list manager code. */ +/* #undef USING_MEMCHECKER */ + +/* Version number of package */ +#define VERSION "1.8.21-pre1" + +/* Data accuracy is prefered to speed during data conversions */ +#define WANT_DATA_ACCURACY 1 + +/* Check exception handling functions during data conversions */ +#define WANT_DCONV_EXCEPTION 1 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +/* #undef _FILE_OFFSET_BITS */ + +/* Define for large files, on AIX-style hosts. */ +/* #undef _LARGE_FILES */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `long int' if does not define. */ +/* #undef off_t */ + +/* Define to `long' if does not define. */ +/* #undef ptrdiff_t */ + +/* Define to `unsigned long' if does not define. */ +/* #undef size_t */ + +/* Define to `long' if does not define. */ +/* #undef ssize_t */ diff --git a/build/src/H5dbg.lo b/build/src/H5dbg.lo new file mode 100644 index 0000000..a0b1ae5 --- /dev/null +++ b/build/src/H5dbg.lo @@ -0,0 +1,12 @@ +# H5dbg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5dbg.o' + +# Name of the non-PIC object +non_pic_object='H5dbg.o' + diff --git a/build/src/H5dbg.o b/build/src/H5dbg.o new file mode 100644 index 0000000..f9d356a Binary files /dev/null and b/build/src/H5dbg.o differ diff --git a/build/src/H5detect b/build/src/H5detect new file mode 100755 index 0000000..37932fb Binary files /dev/null and b/build/src/H5detect differ diff --git a/build/src/H5detect.o b/build/src/H5detect.o new file mode 100644 index 0000000..375f62a Binary files /dev/null and b/build/src/H5detect.o differ diff --git a/build/src/H5lib_settings.c b/build/src/H5lib_settings.c new file mode 100644 index 0000000..7435011 --- /dev/null +++ b/build/src/H5lib_settings.c @@ -0,0 +1,93 @@ +/* Generated automatically by H5make_libsettings -- do not edit */ + + + +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * + * Created: May 14, 2018 + * lrknox + * + * Purpose: This machine-generated source code contains + * information about the library build configuration + * + * Modifications: + * + * DO NOT MAKE MODIFICATIONS TO THIS FILE! + * It was generated by code in `H5make_libsettings.c'. + * + *------------------------------------------------------------------------- + */ + +char H5libhdf5_settings[]= + " SUMMARY OF THE HDF5 CONFIGURATION\n" + " =================================\n" + "\n" + "General Information:\n" + "-------------------\n" + " HDF5 Version: 1.8.21-pre1\n" + " Configured on: Mon May 14 21:05:08 CDT 2018\n" + " Configured by: lrknox@jelly\n" + " Configure mode: development\n" + " Host system: x86_64-unknown-linux-gnu\n" + " Uname information: Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux\n" + " Byte sex: little-endian\n" + " Libraries: static, shared\n" + " Installation point: /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5\n" + "\n" + "Compiling Options:\n" + "------------------\n" + " Compilation Mode: development\n" + " C Compiler: /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 )\n" + " CFLAGS: \n" + " H5_CFLAGS: -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g\n" + " AM_CFLAGS: \n" + " CPPFLAGS: \n" + " H5_CPPFLAGS: -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API\n" + " AM_CPPFLAGS: \n" + " Shared C Library: yes\n" + " Static C Library: yes\n" + " Statically Linked Executables: no\n" + " LDFLAGS: \n" + " H5_LDFLAGS: \n" + " AM_LDFLAGS: \n" + " Extra libraries: -lz -ldl -lm \n" + " Archiver: ar\n" + " Ranlib: ranlib\n" + " Debugged Packages: d,e,f,g,hg,i,mm,o,p,s,t,v,z\n" + " API Tracing: yes\n" + "\n" + "Languages:\n" + "----------\n" + " Fortran: no\n" + "\n" + " C++: no\n" + "\n" + "Features:\n" + "---------\n" + " Parallel HDF5: no\n" + " High Level library: yes\n" + " Threadsafety: no\n" + " Default API Mapping: v18\n" + " With Deprecated Public Symbols: yes\n" + " I/O filters (external): deflate(zlib)\n" + " MPE: no\n" + " Direct VFD: no\n" + " dmalloc: no\n" + "Clear file buffers before write: yes\n" + " Using memory checker: no\n" + " Function Stack Tracing: no\n" + " Strict File Format Checks: yes\n" + " Optimization Instrumentation: yes\n" +; + diff --git a/build/src/H5lib_settings.lo b/build/src/H5lib_settings.lo new file mode 100644 index 0000000..d5a71a5 --- /dev/null +++ b/build/src/H5lib_settings.lo @@ -0,0 +1,12 @@ +# H5lib_settings.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5lib_settings.o' + +# Name of the non-PIC object +non_pic_object='H5lib_settings.o' + diff --git a/build/src/H5lib_settings.o b/build/src/H5lib_settings.o new file mode 100644 index 0000000..58cf603 Binary files /dev/null and b/build/src/H5lib_settings.o differ diff --git a/build/src/H5make_libsettings b/build/src/H5make_libsettings new file mode 100755 index 0000000..900b08a Binary files /dev/null and b/build/src/H5make_libsettings differ diff --git a/build/src/H5make_libsettings.o b/build/src/H5make_libsettings.o new file mode 100644 index 0000000..53b5f1a Binary files /dev/null and b/build/src/H5make_libsettings.o differ diff --git a/build/src/H5pubconf.h b/build/src/H5pubconf.h new file mode 100644 index 0000000..ace9546 --- /dev/null +++ b/build/src/H5pubconf.h @@ -0,0 +1,563 @@ +/* src/H5config.h. Generated from H5config.h.in by configure. */ +/* src/H5config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +/* #undef H5_AC_APPLE_UNIVERSAL_BUILD */ + +/* Define if the memory buffers being written to disk should be cleared before + writing. */ +#define H5_CLEAR_MEMORY 1 + +/* Define if C++ compiler recognizes offsetof */ +/* #undef H5_CXX_HAVE_OFFSETOF */ + +/* Define the default plugins path to compile */ +#define H5_DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" + +/* Define if `dev_t' is a scalar */ +#define H5_DEV_T_IS_SCALAR 1 + +/* Define to dummy `main' function (if any) required to link to the Fortran + libraries. */ +/* #undef H5_FC_DUMMY_MAIN */ + +/* Define if F77 and FC dummy `main' functions are identical. */ +/* #undef H5_FC_DUMMY_MAIN_EQ_F77 */ + +/* Define to a macro mangling the given C identifier (in lower and upper + case), which must not contain underscores, for linking with Fortran. */ +/* #undef H5_FC_FUNC */ + +/* As FC_FUNC, but for C identifiers containing underscores. */ +/* #undef H5_FC_FUNC_ */ + +/* Define to 1 if you have the `alarm' function. */ +#define H5_HAVE_ALARM 1 + +/* Define to 1 if you have the `asprintf' function. */ +#define H5_HAVE_ASPRINTF 1 + +/* Define if the __attribute__(()) extension is present */ +#define H5_HAVE_ATTRIBUTE 1 + +/* Define if the compiler understands C99 designated initialization of structs + and unions */ +#define H5_HAVE_C99_DESIGNATED_INITIALIZER 1 + +/* Define if the compiler understands the __func__ keyword */ +#define H5_HAVE_C99_FUNC 1 + +/* Define to 1 if you have the `clock_gettime' function. */ +#define H5_HAVE_CLOCK_GETTIME 1 + +/* Define if the function stack tracing code is to be compiled in */ +/* #undef H5_HAVE_CODESTACK */ + +/* Define if Darwin or Mac OS X */ +/* #undef H5_HAVE_DARWIN */ + +/* Define to 1 if you have the `difftime' function. */ +#define H5_HAVE_DIFFTIME 1 + +/* Define if the direct I/O virtual file driver (VFD) should be compiled */ +/* #undef H5_HAVE_DIRECT */ + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_DIRENT_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_DMALLOC_H */ + +/* Define if library information should be embedded in the executables */ +#define H5_HAVE_EMBEDDED_LIBINFO 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_FEATURES_H 1 + +/* Define if support for deflate (zlib) filter is enabled */ +#define H5_HAVE_FILTER_DEFLATE 1 + +/* Define if support for szip filter is enabled */ +/* #undef H5_HAVE_FILTER_SZIP */ + +/* Define to 1 if you have the `fork' function. */ +#define H5_HAVE_FORK 1 + +/* Define to 1 if you have the `frexpf' function. */ +#define H5_HAVE_FREXPF 1 + +/* Define to 1 if you have the `frexpl' function. */ +#define H5_HAVE_FREXPL 1 + +/* Define if the compiler understands the __FUNCTION__ keyword */ +#define H5_HAVE_FUNCTION 1 + +/* Define to 1 if you have the `GetConsoleScreenBufferInfo' function. */ +/* #undef H5_HAVE_GETCONSOLESCREENBUFFERINFO */ + +/* Define to 1 if you have the `gethostname' function. */ +#define H5_HAVE_GETHOSTNAME 1 + +/* Define to 1 if you have the `getpwuid' function. */ +#define H5_HAVE_GETPWUID 1 + +/* Define to 1 if you have the `getrusage' function. */ +#define H5_HAVE_GETRUSAGE 1 + +/* Define to 1 if you have the `gettextinfo' function. */ +/* #undef H5_HAVE_GETTEXTINFO */ + +/* Define to 1 if you have the `gettimeofday' function. */ +#define H5_HAVE_GETTIMEOFDAY 1 + +/* Define if the compiler understands inline */ +#define H5_HAVE_INLINE 1 + +/* Define if library will contain instrumentation to detect correct + optimization operation */ +#define H5_HAVE_INSTRUMENTED_LIBRARY 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `ioctl' function. */ +#define H5_HAVE_IOCTL 1 + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_IO_H */ + +/* Define to 1 if you have the `dl' library (-ldl). */ +#define H5_HAVE_LIBDL 1 + +/* Define to 1 if you have the `dmalloc' library (-ldmalloc). */ +/* #undef H5_HAVE_LIBDMALLOC */ + +/* Define to 1 if you have the `m' library (-lm). */ +#define H5_HAVE_LIBM 1 + +/* Define to 1 if you have the `mpe' library (-lmpe). */ +/* #undef H5_HAVE_LIBMPE */ + +/* Define to 1 if you have the `pthread' library (-lpthread). */ +/* #undef H5_HAVE_LIBPTHREAD */ + +/* Define to 1 if you have the `sz' library (-lsz). */ +/* #undef H5_HAVE_LIBSZ */ + +/* Define to 1 if you have the `ws2_32' library (-lws2_32). */ +/* #undef H5_HAVE_LIBWS2_32 */ + +/* Define to 1 if you have the `z' library (-lz). */ +#define H5_HAVE_LIBZ 1 + +/* Define to 1 if you have the `longjmp' function. */ +#define H5_HAVE_LONGJMP 1 + +/* Define to 1 if you have the `lstat' function. */ +#define H5_HAVE_LSTAT 1 + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_MACH_MACH_TIME_H */ + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_MEMORY_H 1 + +/* Define if we have MPE support */ +/* #undef H5_HAVE_MPE */ + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_MPE_H */ + +/* Define if `MPI_Comm_c2f' and `MPI_Comm_f2c' exists */ +/* #undef H5_HAVE_MPI_MULTI_LANG_Comm */ + +/* Define if `MPI_Info_c2f' and `MPI_Info_f2c' exists */ +/* #undef H5_HAVE_MPI_MULTI_LANG_Info */ + +/* Define if we have parallel support */ +/* #undef H5_HAVE_PARALLEL */ + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_PTHREAD_H */ + +/* Define to 1 if you have the `random' function. */ +#define H5_HAVE_RANDOM 1 + +/* Define to 1 if you have the `rand_r' function. */ +#define H5_HAVE_RAND_R 1 + +/* Define to 1 if you have the `setjmp' function. */ +#define H5_HAVE_SETJMP 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SETJMP_H 1 + +/* Define to 1 if you have the `setsysinfo' function. */ +/* #undef H5_HAVE_SETSYSINFO */ + +/* Define to 1 if you have the `siglongjmp' function. */ +#define H5_HAVE_SIGLONGJMP 1 + +/* Define to 1 if you have the `signal' function. */ +#define H5_HAVE_SIGNAL 1 + +/* Define to 1 if you have the `sigprocmask' function. */ +#define H5_HAVE_SIGPROCMASK 1 + +/* Define to 1 if you have the `sigsetjmp' function. */ +/* #undef H5_HAVE_SIGSETJMP */ + +/* Define to 1 if you have the `snprintf' function. */ +#define H5_HAVE_SNPRINTF 1 + +/* Define to 1 if you have the `srandom' function. */ +#define H5_HAVE_SRANDOM 1 + +/* Define if `struct stat' has the `st_blocks' field */ +#define H5_HAVE_STAT_ST_BLOCKS 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_STDDEF_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strdup' function. */ +#define H5_HAVE_STRDUP 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_STRING_H 1 + +/* Define to 1 if you have the `strtoll' function. */ +#define H5_HAVE_STRTOLL 1 + +/* Define to 1 if you have the `strtoull' function. */ +#define H5_HAVE_STRTOULL 1 + +/* Define if `struct text_info' is defined */ +/* #undef H5_HAVE_STRUCT_TEXT_INFO */ + +/* Define if `struct videoconfig' is defined */ +/* #undef H5_HAVE_STRUCT_VIDEOCONFIG */ + +/* Define to 1 if you have the `symlink' function. */ +#define H5_HAVE_SYMLINK 1 + +/* Define to 1 if you have the `system' function. */ +#define H5_HAVE_SYSTEM 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_IOCTL_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_RESOURCE_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_TIMEB_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_SZLIB_H */ + +/* Define if we have thread safe support */ +/* #undef H5_HAVE_THREADSAFE */ + +/* Define if `timezone' is a global variable */ +#define H5_HAVE_TIMEZONE 1 + +/* Define if the ioctl TIOCGETD is defined */ +#define H5_HAVE_TIOCGETD 1 + +/* Define if the ioctl TIOGWINSZ is defined */ +#define H5_HAVE_TIOCGWINSZ 1 + +/* Define to 1 if you have the `tmpfile' function. */ +#define H5_HAVE_TMPFILE 1 + +/* Define if `tm_gmtoff' is a member of `struct tm' */ +#define H5_HAVE_TM_GMTOFF 1 + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `vasprintf' function. */ +#define H5_HAVE_VASPRINTF 1 + +/* Define to 1 if you have the `vsnprintf' function. */ +#define H5_HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the `waitpid' function. */ +#define H5_HAVE_WAITPID 1 + +/* Define if your system has window style path name. */ +/* #undef H5_HAVE_WINDOW_PATH */ + +/* Define to 1 if you have the header file. */ +/* #undef H5_HAVE_WINSOCK2_H */ + +/* Define to 1 if you have the header file. */ +#define H5_HAVE_ZLIB_H 1 + +/* Define to 1 if you have the `_getvideoconfig' function. */ +/* #undef H5_HAVE__GETVIDEOCONFIG */ + +/* Define to 1 if you have the `_scrsize' function. */ +/* #undef H5_HAVE__SCRSIZE */ + +/* Define if the compiler understands __inline */ +#define H5_HAVE___INLINE 1 + +/* Define if the compiler understands __inline__ */ +#define H5_HAVE___INLINE__ 1 + +/* Define if HDF5's high-level library headers should be included in hdf5.h */ +#define H5_INCLUDE_HL 1 + +/* Define if your system can convert long double to (unsigned) long long + values correctly. */ +#define H5_LDOUBLE_TO_LLONG_ACCURATE 1 + +/* Define if your system converts long double to (unsigned) long values with + special algorithm. */ +/* #undef H5_LDOUBLE_TO_LONG_SPECIAL */ + +/* Define if your system can convert (unsigned) long long to long double + values correctly. */ +#define H5_LLONG_TO_LDOUBLE_CORRECT 1 + +/* Define if your system can convert (unsigned) long to long double values + with special algorithm. */ +/* #undef H5_LONG_TO_LDOUBLE_SPECIAL */ + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#define H5_LT_OBJDIR ".libs/" + +/* Define if the metadata trace file code is to be compiled in */ +/* #undef H5_METADATA_TRACE_FILE */ + +/* Define if we can violate pointer alignment restrictions */ +#define H5_NO_ALIGNMENT_RESTRICTIONS 1 + +/* Define if deprecated public API symbols are disabled */ +/* #undef H5_NO_DEPRECATED_SYMBOLS */ + +/* Name of package */ +#define H5_PACKAGE "hdf5" + +/* Define to the address where bug reports for this package should be sent. */ +#define H5_PACKAGE_BUGREPORT "help@hdfgroup.org" + +/* Define to the full name of this package. */ +#define H5_PACKAGE_NAME "HDF5" + +/* Define to the full name and version of this package. */ +#define H5_PACKAGE_STRING "HDF5 1.8.21-pre1" + +/* Define to the one symbol short name of this package. */ +#define H5_PACKAGE_TARNAME "hdf5" + +/* Define to the home page for this package. */ +#define H5_PACKAGE_URL "" + +/* Define to the version of this package. */ +#define H5_PACKAGE_VERSION "1.8.21-pre1" + +/* Width for printf() for type `long long' or `__int64', use `ll' */ +#define H5_PRINTF_LL_WIDTH "l" + +/* The size of `char', as computed by sizeof. */ +#define H5_SIZEOF_CHAR 1 + +/* The size of `double', as computed by sizeof. */ +#define H5_SIZEOF_DOUBLE 8 + +/* The size of `float', as computed by sizeof. */ +#define H5_SIZEOF_FLOAT 4 + +/* The size of `int', as computed by sizeof. */ +#define H5_SIZEOF_INT 4 + +/* The size of `int16_t', as computed by sizeof. */ +#define H5_SIZEOF_INT16_T 2 + +/* The size of `int32_t', as computed by sizeof. */ +#define H5_SIZEOF_INT32_T 4 + +/* The size of `int64_t', as computed by sizeof. */ +#define H5_SIZEOF_INT64_T 8 + +/* The size of `int8_t', as computed by sizeof. */ +#define H5_SIZEOF_INT8_T 1 + +/* The size of `int_fast16_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_FAST16_T 8 + +/* The size of `int_fast32_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_FAST32_T 8 + +/* The size of `int_fast64_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_FAST64_T 8 + +/* The size of `int_fast8_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_FAST8_T 1 + +/* The size of `int_least16_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_LEAST16_T 2 + +/* The size of `int_least32_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_LEAST32_T 4 + +/* The size of `int_least64_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_LEAST64_T 8 + +/* The size of `int_least8_t', as computed by sizeof. */ +#define H5_SIZEOF_INT_LEAST8_T 1 + +/* The size of `long', as computed by sizeof. */ +#define H5_SIZEOF_LONG 8 + +/* The size of `long double', as computed by sizeof. */ +#define H5_SIZEOF_LONG_DOUBLE 16 + +/* The size of `long long', as computed by sizeof. */ +#define H5_SIZEOF_LONG_LONG 8 + +/* The size of `off_t', as computed by sizeof. */ +#define H5_SIZEOF_OFF_T 8 + +/* The size of `ptrdiff_t', as computed by sizeof. */ +#define H5_SIZEOF_PTRDIFF_T 8 + +/* The size of `short', as computed by sizeof. */ +#define H5_SIZEOF_SHORT 2 + +/* The size of `size_t', as computed by sizeof. */ +#define H5_SIZEOF_SIZE_T 8 + +/* The size of `ssize_t', as computed by sizeof. */ +#define H5_SIZEOF_SSIZE_T 8 + +/* The size of `uint16_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT16_T 2 + +/* The size of `uint32_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT32_T 4 + +/* The size of `uint64_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT64_T 8 + +/* The size of `uint8_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT8_T 1 + +/* The size of `uint_fast16_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_FAST16_T 8 + +/* The size of `uint_fast32_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_FAST32_T 8 + +/* The size of `uint_fast64_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_FAST64_T 8 + +/* The size of `uint_fast8_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_FAST8_T 1 + +/* The size of `uint_least16_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_LEAST16_T 2 + +/* The size of `uint_least32_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_LEAST32_T 4 + +/* The size of `uint_least64_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_LEAST64_T 8 + +/* The size of `uint_least8_t', as computed by sizeof. */ +#define H5_SIZEOF_UINT_LEAST8_T 1 + +/* The size of `unsigned', as computed by sizeof. */ +#define H5_SIZEOF_UNSIGNED 4 + +/* The size of `__int64', as computed by sizeof. */ +#define H5_SIZEOF___INT64 0 + +/* Define to 1 if you have the ANSI C header files. */ +#define H5_STDC_HEADERS 1 + +/* Define if strict file format checks are enabled */ +#define H5_STRICT_FORMAT_CHECKS 1 + +/* Define if your system supports pthread_attr_setscope(&attribute, + PTHREAD_SCOPE_SYSTEM) call. */ +#define H5_SYSTEM_SCOPE_THREADS 1 + +/* Define to 1 if you can safely include both and . */ +#define H5_TIME_WITH_SYS_TIME 1 + +/* Define using v1.6 public API symbols by default */ +/* #undef H5_USE_16_API_DEFAULT */ + +/* Define if a memory checking tool will be used on the library, to cause + library to be very picky about memory operations and also disable the + internal free list manager code. */ +/* #undef H5_USING_MEMCHECKER */ + +/* Version number of package */ +#define H5_VERSION "1.8.21-pre1" + +/* Data accuracy is prefered to speed during data conversions */ +#define H5_WANT_DATA_ACCURACY 1 + +/* Check exception handling functions during data conversions */ +#define H5_WANT_DCONV_EXCEPTION 1 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +/* #undef H5__FILE_OFFSET_BITS */ + +/* Define for large files, on AIX-style hosts. */ +/* #undef H5__LARGE_FILES */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef H5_const */ + +/* Define to `long int' if does not define. */ +/* #undef H5_off_t */ + +/* Define to `long' if does not define. */ +/* #undef H5_ptrdiff_t */ + +/* Define to `unsigned long' if does not define. */ +/* #undef H5_size_t */ + +/* Define to `long' if does not define. */ +/* #undef H5_ssize_t */ diff --git a/build/src/H5system.lo b/build/src/H5system.lo new file mode 100644 index 0000000..035fd11 --- /dev/null +++ b/build/src/H5system.lo @@ -0,0 +1,12 @@ +# H5system.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5system.o' + +# Name of the non-PIC object +non_pic_object='H5system.o' + diff --git a/build/src/H5system.o b/build/src/H5system.o new file mode 100644 index 0000000..4b4c589 Binary files /dev/null and b/build/src/H5system.o differ diff --git a/build/src/H5timer.lo b/build/src/H5timer.lo new file mode 100644 index 0000000..aa4b4d0 --- /dev/null +++ b/build/src/H5timer.lo @@ -0,0 +1,12 @@ +# H5timer.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5timer.o' + +# Name of the non-PIC object +non_pic_object='H5timer.o' + diff --git a/build/src/H5timer.o b/build/src/H5timer.o new file mode 100644 index 0000000..a949c98 Binary files /dev/null and b/build/src/H5timer.o differ diff --git a/build/src/H5trace.lo b/build/src/H5trace.lo new file mode 100644 index 0000000..fa7e826 --- /dev/null +++ b/build/src/H5trace.lo @@ -0,0 +1,12 @@ +# H5trace.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/H5trace.o' + +# Name of the non-PIC object +non_pic_object='H5trace.o' + diff --git a/build/src/H5trace.o b/build/src/H5trace.o new file mode 100644 index 0000000..675fd93 Binary files /dev/null and b/build/src/H5trace.o differ diff --git a/build/src/Makefile b/build/src/Makefile new file mode 100644 index 0000000..21db4d7 --- /dev/null +++ b/build/src/Makefile @@ -0,0 +1,1961 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + + + +VPATH = ../../src +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +noinst_PROGRAMS = H5detect$(EXEEXT) H5make_libsettings$(EXEEXT) +TESTS = +subdir = src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = H5config.h +CONFIG_CLEAN_FILES = libhdf5.settings +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(settingsdir)" \ + "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libhdf5_la_LIBADD = +am_libhdf5_la_OBJECTS = H5.lo H5checksum.lo H5dbg.lo H5system.lo \ + H5timer.lo H5trace.lo H5A.lo H5Abtree2.lo H5Adense.lo \ + H5Adeprec.lo H5Aint.lo H5Atest.lo H5AC.lo H5B.lo H5Bcache.lo \ + H5Bdbg.lo H5B2.lo H5B2cache.lo H5B2dbg.lo H5B2hdr.lo \ + H5B2int.lo H5B2stat.lo H5B2test.lo H5C.lo H5CS.lo H5D.lo \ + H5Dbtree.lo H5Dchunk.lo H5Dcompact.lo H5Dcontig.lo H5Ddbg.lo \ + H5Ddeprec.lo H5Defl.lo H5Dfill.lo H5Dint.lo H5Dio.lo \ + H5Dlayout.lo H5Dmpio.lo H5Doh.lo H5Dscatgath.lo H5Dselect.lo \ + H5Dtest.lo H5E.lo H5Edeprec.lo H5Eint.lo H5F.lo H5Fint.lo \ + H5Faccum.lo H5Fcwfs.lo H5Fdbg.lo H5Fefc.lo H5Ffake.lo H5Fio.lo \ + H5Fmount.lo H5Fmpi.lo H5Fquery.lo H5Fsfile.lo H5Fsuper.lo \ + H5Fsuper_cache.lo H5Ftest.lo H5FD.lo H5FDcore.lo H5FDdirect.lo \ + H5FDfamily.lo H5FDint.lo H5FDlog.lo H5FDmpi.lo H5FDmpio.lo \ + H5FDmulti.lo H5FDsec2.lo H5FDspace.lo H5FDstdio.lo H5FL.lo \ + H5FO.lo H5FS.lo H5FScache.lo H5FSdbg.lo H5FSsection.lo \ + H5FSstat.lo H5FStest.lo H5G.lo H5Gbtree2.lo H5Gcache.lo \ + H5Gcompact.lo H5Gdense.lo H5Gdeprec.lo H5Gent.lo H5Gint.lo \ + H5Glink.lo H5Gloc.lo H5Gname.lo H5Gnode.lo H5Gobj.lo H5Goh.lo \ + H5Groot.lo H5Gstab.lo H5Gtest.lo H5Gtraverse.lo H5HF.lo \ + H5HFbtree2.lo H5HFcache.lo H5HFdbg.lo H5HFdblock.lo \ + H5HFdtable.lo H5HFhdr.lo H5HFhuge.lo H5HFiblock.lo H5HFiter.lo \ + H5HFman.lo H5HFsection.lo H5HFspace.lo H5HFstat.lo H5HFtest.lo \ + H5HFtiny.lo H5HG.lo H5HGcache.lo H5HGdbg.lo H5HGquery.lo \ + H5HL.lo H5HLcache.lo H5HLdbg.lo H5HLint.lo H5HP.lo H5I.lo \ + H5Itest.lo H5L.lo H5Lexternal.lo H5lib_settings.lo H5MF.lo \ + H5MFaggr.lo H5MFdbg.lo H5MFsection.lo H5MM.lo H5MP.lo \ + H5MPtest.lo H5O.lo H5Oainfo.lo H5Oalloc.lo H5Oattr.lo \ + H5Oattribute.lo H5Obogus.lo H5Obtreek.lo H5Ocache.lo \ + H5Ochunk.lo H5Ocont.lo H5Ocopy.lo H5Odbg.lo H5Odrvinfo.lo \ + H5Odtype.lo H5Oefl.lo H5Ofill.lo H5Oginfo.lo H5Olayout.lo \ + H5Olinfo.lo H5Olink.lo H5Omessage.lo H5Omtime.lo H5Oname.lo \ + H5Onull.lo H5Opline.lo H5Orefcount.lo H5Osdspace.lo \ + H5Oshared.lo H5Ostab.lo H5Oshmesg.lo H5Otest.lo H5Ounknown.lo \ + H5P.lo H5Pacpl.lo H5Pdapl.lo H5Pdcpl.lo H5Pdeprec.lo \ + H5Pdxpl.lo H5Pfapl.lo H5Pfcpl.lo H5Pfmpl.lo H5Pgcpl.lo \ + H5Pint.lo H5Plapl.lo H5Plcpl.lo H5Pocpl.lo H5Pocpypl.lo \ + H5Pstrcpl.lo H5Ptest.lo H5PL.lo H5R.lo H5Rdeprec.lo H5RC.lo \ + H5RS.lo H5S.lo H5Sall.lo H5Sdbg.lo H5Shyper.lo H5Smpio.lo \ + H5Snone.lo H5Spoint.lo H5Sselect.lo H5Stest.lo H5SL.lo H5SM.lo \ + H5SMbtree2.lo H5SMcache.lo H5SMmessage.lo H5SMtest.lo H5ST.lo \ + H5T.lo H5Tarray.lo H5Tbit.lo H5Tcommit.lo H5Tcompound.lo \ + H5Tconv.lo H5Tcset.lo H5Tdbg.lo H5Tdeprec.lo H5Tenum.lo \ + H5Tfields.lo H5Tfixed.lo H5Tfloat.lo H5Tinit.lo H5Tnative.lo \ + H5Toffset.lo H5Toh.lo H5Topaque.lo H5Torder.lo H5Tpad.lo \ + H5Tprecis.lo H5Tstrpad.lo H5Tvisit.lo H5Tvlen.lo H5TS.lo \ + H5VM.lo H5WB.lo H5Z.lo H5Zdeflate.lo H5Zfletcher32.lo \ + H5Znbit.lo H5Zshuffle.lo H5Zszip.lo H5Zscaleoffset.lo \ + H5Ztrans.lo +libhdf5_la_OBJECTS = $(am_libhdf5_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libhdf5_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libhdf5_la_LDFLAGS) $(LDFLAGS) -o $@ +PROGRAMS = $(noinst_PROGRAMS) +H5detect_SOURCES = H5detect.c +H5detect_OBJECTS = H5detect.$(OBJEXT) +H5detect_LDADD = $(LDADD) +H5make_libsettings_SOURCES = H5make_libsettings.c +H5make_libsettings_OBJECTS = H5make_libsettings.$(OBJEXT) +H5make_libsettings_LDADD = $(LDADD) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libhdf5_la_SOURCES) H5detect.c H5make_libsettings.c +DIST_SOURCES = $(libhdf5_la_SOURCES) H5detect.c H5make_libsettings.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(settings_DATA) +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)H5config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/H5config.h.in $(srcdir)/Makefile.in \ + $(srcdir)/libhdf5.settings.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am \ + $(top_srcdir)/config/lt_vers.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/src +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../src +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../src +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add libtool shared library version numbers to the HDF5 library +# See libtool versioning documentation online. +# After making changes, run bin/reconfigure to update other configure related +# files like Makefile.in. +LT_VERS_INTERFACE = 13 +LT_VERS_REVISION = 2 +LT_VERS_AGE = 3 +LT_CXX_VERS_INTERFACE = 16 +LT_CXX_VERS_REVISION = 0 +LT_CXX_VERS_AGE = 0 +LT_F_VERS_INTERFACE = 10 +LT_F_VERS_REVISION = 6 +LT_F_VERS_AGE = 0 +LT_HL_VERS_INTERFACE = 12 +LT_HL_VERS_REVISION = 2 +LT_HL_VERS_AGE = 2 +LT_HL_CXX_VERS_INTERFACE = 12 +LT_HL_CXX_VERS_REVISION = 2 +LT_HL_CXX_VERS_AGE = 1 +LT_HL_F_VERS_INTERFACE = 10 +LT_HL_F_VERS_REVISION = 5 +LT_HL_F_VERS_AGE = 0 +LT_TOOLS_VERS_INTERFACE = 10 +LT_TOOLS_VERS_REVISION = 7 +LT_TOOLS_VERS_AGE = 0 + +# Our main target, the HDF5 library +lib_LTLIBRARIES = libhdf5.la + +# Add libtool numbers to the HDF5 library (from config/lt_vers.am) +libhdf5_la_LDFLAGS = -version-info $(LT_VERS_INTERFACE):$(LT_VERS_REVISION):$(LT_VERS_AGE) $(AM_LDFLAGS) + +# H5Tinit.c and H5lib_settings.c are generated files and should be cleaned. +MOSTLYCLEANFILES = H5Tinit.c H5lib_settings.c +# H5pubconf.h is generated by configure, and should be cleaned. +DISTCLEANFILES = H5pubconf.h + +# library sources +libhdf5_la_SOURCES = H5.c H5checksum.c H5dbg.c H5system.c H5timer.c H5trace.c \ + H5A.c H5Abtree2.c H5Adense.c H5Adeprec.c H5Aint.c H5Atest.c \ + H5AC.c H5B.c H5Bcache.c H5Bdbg.c \ + H5B2.c H5B2cache.c H5B2dbg.c H5B2hdr.c H5B2int.c H5B2stat.c H5B2test.c \ + H5C.c H5CS.c \ + H5D.c H5Dbtree.c H5Dchunk.c H5Dcompact.c H5Dcontig.c H5Ddbg.c \ + H5Ddeprec.c H5Defl.c H5Dfill.c H5Dint.c \ + H5Dio.c H5Dlayout.c \ + H5Dmpio.c H5Doh.c H5Dscatgath.c H5Dselect.c H5Dtest.c \ + H5E.c H5Edeprec.c H5Eint.c \ + H5F.c H5Fint.c H5Faccum.c H5Fcwfs.c \ + H5Fdbg.c H5Fefc.c H5Ffake.c H5Fio.c \ + H5Fmount.c H5Fmpi.c H5Fquery.c \ + H5Fsfile.c H5Fsuper.c H5Fsuper_cache.c H5Ftest.c \ + H5FD.c H5FDcore.c \ + H5FDdirect.c H5FDfamily.c H5FDint.c H5FDlog.c H5FDmpi.c H5FDmpio.c \ + H5FDmulti.c H5FDsec2.c H5FDspace.c H5FDstdio.c \ + H5FL.c H5FO.c H5FS.c H5FScache.c H5FSdbg.c H5FSsection.c H5FSstat.c H5FStest.c \ + H5G.c H5Gbtree2.c H5Gcache.c \ + H5Gcompact.c H5Gdense.c H5Gdeprec.c H5Gent.c \ + H5Gint.c H5Glink.c \ + H5Gloc.c H5Gname.c H5Gnode.c H5Gobj.c H5Goh.c H5Groot.c H5Gstab.c H5Gtest.c \ + H5Gtraverse.c \ + H5HF.c H5HFbtree2.c H5HFcache.c H5HFdbg.c H5HFdblock.c H5HFdtable.c \ + H5HFhdr.c H5HFhuge.c H5HFiblock.c H5HFiter.c H5HFman.c H5HFsection.c \ + H5HFspace.c H5HFstat.c H5HFtest.c H5HFtiny.c \ + H5HG.c H5HGcache.c H5HGdbg.c H5HGquery.c \ + H5HL.c H5HLcache.c H5HLdbg.c H5HLint.c \ + H5HP.c H5I.c H5Itest.c H5L.c H5Lexternal.c H5lib_settings.c \ + H5MF.c H5MFaggr.c H5MFdbg.c H5MFsection.c \ + H5MM.c H5MP.c H5MPtest.c \ + H5O.c H5Oainfo.c H5Oalloc.c H5Oattr.c \ + H5Oattribute.c H5Obogus.c H5Obtreek.c H5Ocache.c H5Ochunk.c \ + H5Ocont.c H5Ocopy.c H5Odbg.c H5Odrvinfo.c H5Odtype.c H5Oefl.c \ + H5Ofill.c H5Oginfo.c \ + H5Olayout.c \ + H5Olinfo.c H5Olink.c H5Omessage.c H5Omtime.c \ + H5Oname.c H5Onull.c H5Opline.c H5Orefcount.c \ + H5Osdspace.c H5Oshared.c H5Ostab.c \ + H5Oshmesg.c H5Otest.c H5Ounknown.c \ + H5P.c H5Pacpl.c H5Pdapl.c H5Pdcpl.c \ + H5Pdeprec.c H5Pdxpl.c H5Pfapl.c H5Pfcpl.c H5Pfmpl.c \ + H5Pgcpl.c H5Pint.c \ + H5Plapl.c H5Plcpl.c H5Pocpl.c H5Pocpypl.c H5Pstrcpl.c H5Ptest.c \ + H5PL.c \ + H5R.c H5Rdeprec.c \ + H5RC.c \ + H5RS.c \ + H5S.c H5Sall.c H5Sdbg.c H5Shyper.c H5Smpio.c H5Snone.c H5Spoint.c \ + H5Sselect.c H5Stest.c \ + H5SL.c \ + H5SM.c H5SMbtree2.c H5SMcache.c H5SMmessage.c H5SMtest.c \ + H5ST.c \ + H5T.c H5Tarray.c H5Tbit.c H5Tcommit.c H5Tcompound.c H5Tconv.c \ + H5Tcset.c H5Tdbg.c H5Tdeprec.c H5Tenum.c H5Tfields.c \ + H5Tfixed.c \ + H5Tfloat.c H5Tinit.c H5Tnative.c H5Toffset.c H5Toh.c \ + H5Topaque.c \ + H5Torder.c \ + H5Tpad.c H5Tprecis.c H5Tstrpad.c H5Tvisit.c H5Tvlen.c H5TS.c H5VM.c H5WB.c H5Z.c \ + H5Zdeflate.c H5Zfletcher32.c H5Znbit.c H5Zshuffle.c H5Zszip.c \ + H5Zscaleoffset.c H5Ztrans.c + + +# Public headers +include_HEADERS = hdf5.h H5api_adpt.h H5overflow.h H5pubconf.h H5public.h H5version.h \ + H5Apublic.h H5ACpublic.h \ + H5Cpublic.h H5Dpublic.h \ + H5Epubgen.h H5Epublic.h H5Fpublic.h \ + H5FDpublic.h H5FDcore.h H5FDdirect.h \ + H5FDfamily.h H5FDlog.h H5FDmpi.h H5FDmpio.h \ + H5FDmulti.h H5FDsec2.h H5FDstdio.h \ + H5Gpublic.h H5Ipublic.h H5Lpublic.h \ + H5MMpublic.h H5Opublic.h H5Ppublic.h \ + H5PLextern.h H5PLpublic.h \ + H5Rpublic.h H5Spublic.h \ + H5Tpublic.h H5Zpublic.h + + +# install libhdf5.settings in lib directory +settingsdir = $(libdir) +settings_DATA = libhdf5.settings + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: H5config.h + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +H5config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/H5config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status src/H5config.h +$(srcdir)/H5config.h.in: # $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f H5config.h stamp-h1 +libhdf5.settings: $(top_builddir)/config.status $(srcdir)/libhdf5.settings.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libhdf5.la: $(libhdf5_la_OBJECTS) $(libhdf5_la_DEPENDENCIES) $(EXTRA_libhdf5_la_DEPENDENCIES) + $(AM_V_CCLD)$(libhdf5_la_LINK) -rpath $(libdir) $(libhdf5_la_OBJECTS) $(libhdf5_la_LIBADD) $(LIBS) + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +H5detect$(EXEEXT): $(H5detect_OBJECTS) $(H5detect_DEPENDENCIES) $(EXTRA_H5detect_DEPENDENCIES) + @rm -f H5detect$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(H5detect_OBJECTS) $(H5detect_LDADD) $(LIBS) + +H5make_libsettings$(EXEEXT): $(H5make_libsettings_OBJECTS) $(H5make_libsettings_DEPENDENCIES) $(EXTRA_H5make_libsettings_DEPENDENCIES) + @rm -f H5make_libsettings$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(H5make_libsettings_OBJECTS) $(H5make_libsettings_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/H5.Plo +include ./$(DEPDIR)/H5A.Plo +include ./$(DEPDIR)/H5AC.Plo +include ./$(DEPDIR)/H5Abtree2.Plo +include ./$(DEPDIR)/H5Adense.Plo +include ./$(DEPDIR)/H5Adeprec.Plo +include ./$(DEPDIR)/H5Aint.Plo +include ./$(DEPDIR)/H5Atest.Plo +include ./$(DEPDIR)/H5B.Plo +include ./$(DEPDIR)/H5B2.Plo +include ./$(DEPDIR)/H5B2cache.Plo +include ./$(DEPDIR)/H5B2dbg.Plo +include ./$(DEPDIR)/H5B2hdr.Plo +include ./$(DEPDIR)/H5B2int.Plo +include ./$(DEPDIR)/H5B2stat.Plo +include ./$(DEPDIR)/H5B2test.Plo +include ./$(DEPDIR)/H5Bcache.Plo +include ./$(DEPDIR)/H5Bdbg.Plo +include ./$(DEPDIR)/H5C.Plo +include ./$(DEPDIR)/H5CS.Plo +include ./$(DEPDIR)/H5D.Plo +include ./$(DEPDIR)/H5Dbtree.Plo +include ./$(DEPDIR)/H5Dchunk.Plo +include ./$(DEPDIR)/H5Dcompact.Plo +include ./$(DEPDIR)/H5Dcontig.Plo +include ./$(DEPDIR)/H5Ddbg.Plo +include ./$(DEPDIR)/H5Ddeprec.Plo +include ./$(DEPDIR)/H5Defl.Plo +include ./$(DEPDIR)/H5Dfill.Plo +include ./$(DEPDIR)/H5Dint.Plo +include ./$(DEPDIR)/H5Dio.Plo +include ./$(DEPDIR)/H5Dlayout.Plo +include ./$(DEPDIR)/H5Dmpio.Plo +include ./$(DEPDIR)/H5Doh.Plo +include ./$(DEPDIR)/H5Dscatgath.Plo +include ./$(DEPDIR)/H5Dselect.Plo +include ./$(DEPDIR)/H5Dtest.Plo +include ./$(DEPDIR)/H5E.Plo +include ./$(DEPDIR)/H5Edeprec.Plo +include ./$(DEPDIR)/H5Eint.Plo +include ./$(DEPDIR)/H5F.Plo +include ./$(DEPDIR)/H5FD.Plo +include ./$(DEPDIR)/H5FDcore.Plo +include ./$(DEPDIR)/H5FDdirect.Plo +include ./$(DEPDIR)/H5FDfamily.Plo +include ./$(DEPDIR)/H5FDint.Plo +include ./$(DEPDIR)/H5FDlog.Plo +include ./$(DEPDIR)/H5FDmpi.Plo +include ./$(DEPDIR)/H5FDmpio.Plo +include ./$(DEPDIR)/H5FDmulti.Plo +include ./$(DEPDIR)/H5FDsec2.Plo +include ./$(DEPDIR)/H5FDspace.Plo +include ./$(DEPDIR)/H5FDstdio.Plo +include ./$(DEPDIR)/H5FL.Plo +include ./$(DEPDIR)/H5FO.Plo +include ./$(DEPDIR)/H5FS.Plo +include ./$(DEPDIR)/H5FScache.Plo +include ./$(DEPDIR)/H5FSdbg.Plo +include ./$(DEPDIR)/H5FSsection.Plo +include ./$(DEPDIR)/H5FSstat.Plo +include ./$(DEPDIR)/H5FStest.Plo +include ./$(DEPDIR)/H5Faccum.Plo +include ./$(DEPDIR)/H5Fcwfs.Plo +include ./$(DEPDIR)/H5Fdbg.Plo +include ./$(DEPDIR)/H5Fefc.Plo +include ./$(DEPDIR)/H5Ffake.Plo +include ./$(DEPDIR)/H5Fint.Plo +include ./$(DEPDIR)/H5Fio.Plo +include ./$(DEPDIR)/H5Fmount.Plo +include ./$(DEPDIR)/H5Fmpi.Plo +include ./$(DEPDIR)/H5Fquery.Plo +include ./$(DEPDIR)/H5Fsfile.Plo +include ./$(DEPDIR)/H5Fsuper.Plo +include ./$(DEPDIR)/H5Fsuper_cache.Plo +include ./$(DEPDIR)/H5Ftest.Plo +include ./$(DEPDIR)/H5G.Plo +include ./$(DEPDIR)/H5Gbtree2.Plo +include ./$(DEPDIR)/H5Gcache.Plo +include ./$(DEPDIR)/H5Gcompact.Plo +include ./$(DEPDIR)/H5Gdense.Plo +include ./$(DEPDIR)/H5Gdeprec.Plo +include ./$(DEPDIR)/H5Gent.Plo +include ./$(DEPDIR)/H5Gint.Plo +include ./$(DEPDIR)/H5Glink.Plo +include ./$(DEPDIR)/H5Gloc.Plo +include ./$(DEPDIR)/H5Gname.Plo +include ./$(DEPDIR)/H5Gnode.Plo +include ./$(DEPDIR)/H5Gobj.Plo +include ./$(DEPDIR)/H5Goh.Plo +include ./$(DEPDIR)/H5Groot.Plo +include ./$(DEPDIR)/H5Gstab.Plo +include ./$(DEPDIR)/H5Gtest.Plo +include ./$(DEPDIR)/H5Gtraverse.Plo +include ./$(DEPDIR)/H5HF.Plo +include ./$(DEPDIR)/H5HFbtree2.Plo +include ./$(DEPDIR)/H5HFcache.Plo +include ./$(DEPDIR)/H5HFdbg.Plo +include ./$(DEPDIR)/H5HFdblock.Plo +include ./$(DEPDIR)/H5HFdtable.Plo +include ./$(DEPDIR)/H5HFhdr.Plo +include ./$(DEPDIR)/H5HFhuge.Plo +include ./$(DEPDIR)/H5HFiblock.Plo +include ./$(DEPDIR)/H5HFiter.Plo +include ./$(DEPDIR)/H5HFman.Plo +include ./$(DEPDIR)/H5HFsection.Plo +include ./$(DEPDIR)/H5HFspace.Plo +include ./$(DEPDIR)/H5HFstat.Plo +include ./$(DEPDIR)/H5HFtest.Plo +include ./$(DEPDIR)/H5HFtiny.Plo +include ./$(DEPDIR)/H5HG.Plo +include ./$(DEPDIR)/H5HGcache.Plo +include ./$(DEPDIR)/H5HGdbg.Plo +include ./$(DEPDIR)/H5HGquery.Plo +include ./$(DEPDIR)/H5HL.Plo +include ./$(DEPDIR)/H5HLcache.Plo +include ./$(DEPDIR)/H5HLdbg.Plo +include ./$(DEPDIR)/H5HLint.Plo +include ./$(DEPDIR)/H5HP.Plo +include ./$(DEPDIR)/H5I.Plo +include ./$(DEPDIR)/H5Itest.Plo +include ./$(DEPDIR)/H5L.Plo +include ./$(DEPDIR)/H5Lexternal.Plo +include ./$(DEPDIR)/H5MF.Plo +include ./$(DEPDIR)/H5MFaggr.Plo +include ./$(DEPDIR)/H5MFdbg.Plo +include ./$(DEPDIR)/H5MFsection.Plo +include ./$(DEPDIR)/H5MM.Plo +include ./$(DEPDIR)/H5MP.Plo +include ./$(DEPDIR)/H5MPtest.Plo +include ./$(DEPDIR)/H5O.Plo +include ./$(DEPDIR)/H5Oainfo.Plo +include ./$(DEPDIR)/H5Oalloc.Plo +include ./$(DEPDIR)/H5Oattr.Plo +include ./$(DEPDIR)/H5Oattribute.Plo +include ./$(DEPDIR)/H5Obogus.Plo +include ./$(DEPDIR)/H5Obtreek.Plo +include ./$(DEPDIR)/H5Ocache.Plo +include ./$(DEPDIR)/H5Ochunk.Plo +include ./$(DEPDIR)/H5Ocont.Plo +include ./$(DEPDIR)/H5Ocopy.Plo +include ./$(DEPDIR)/H5Odbg.Plo +include ./$(DEPDIR)/H5Odrvinfo.Plo +include ./$(DEPDIR)/H5Odtype.Plo +include ./$(DEPDIR)/H5Oefl.Plo +include ./$(DEPDIR)/H5Ofill.Plo +include ./$(DEPDIR)/H5Oginfo.Plo +include ./$(DEPDIR)/H5Olayout.Plo +include ./$(DEPDIR)/H5Olinfo.Plo +include ./$(DEPDIR)/H5Olink.Plo +include ./$(DEPDIR)/H5Omessage.Plo +include ./$(DEPDIR)/H5Omtime.Plo +include ./$(DEPDIR)/H5Oname.Plo +include ./$(DEPDIR)/H5Onull.Plo +include ./$(DEPDIR)/H5Opline.Plo +include ./$(DEPDIR)/H5Orefcount.Plo +include ./$(DEPDIR)/H5Osdspace.Plo +include ./$(DEPDIR)/H5Oshared.Plo +include ./$(DEPDIR)/H5Oshmesg.Plo +include ./$(DEPDIR)/H5Ostab.Plo +include ./$(DEPDIR)/H5Otest.Plo +include ./$(DEPDIR)/H5Ounknown.Plo +include ./$(DEPDIR)/H5P.Plo +include ./$(DEPDIR)/H5PL.Plo +include ./$(DEPDIR)/H5Pacpl.Plo +include ./$(DEPDIR)/H5Pdapl.Plo +include ./$(DEPDIR)/H5Pdcpl.Plo +include ./$(DEPDIR)/H5Pdeprec.Plo +include ./$(DEPDIR)/H5Pdxpl.Plo +include ./$(DEPDIR)/H5Pfapl.Plo +include ./$(DEPDIR)/H5Pfcpl.Plo +include ./$(DEPDIR)/H5Pfmpl.Plo +include ./$(DEPDIR)/H5Pgcpl.Plo +include ./$(DEPDIR)/H5Pint.Plo +include ./$(DEPDIR)/H5Plapl.Plo +include ./$(DEPDIR)/H5Plcpl.Plo +include ./$(DEPDIR)/H5Pocpl.Plo +include ./$(DEPDIR)/H5Pocpypl.Plo +include ./$(DEPDIR)/H5Pstrcpl.Plo +include ./$(DEPDIR)/H5Ptest.Plo +include ./$(DEPDIR)/H5R.Plo +include ./$(DEPDIR)/H5RC.Plo +include ./$(DEPDIR)/H5RS.Plo +include ./$(DEPDIR)/H5Rdeprec.Plo +include ./$(DEPDIR)/H5S.Plo +include ./$(DEPDIR)/H5SL.Plo +include ./$(DEPDIR)/H5SM.Plo +include ./$(DEPDIR)/H5SMbtree2.Plo +include ./$(DEPDIR)/H5SMcache.Plo +include ./$(DEPDIR)/H5SMmessage.Plo +include ./$(DEPDIR)/H5SMtest.Plo +include ./$(DEPDIR)/H5ST.Plo +include ./$(DEPDIR)/H5Sall.Plo +include ./$(DEPDIR)/H5Sdbg.Plo +include ./$(DEPDIR)/H5Shyper.Plo +include ./$(DEPDIR)/H5Smpio.Plo +include ./$(DEPDIR)/H5Snone.Plo +include ./$(DEPDIR)/H5Spoint.Plo +include ./$(DEPDIR)/H5Sselect.Plo +include ./$(DEPDIR)/H5Stest.Plo +include ./$(DEPDIR)/H5T.Plo +include ./$(DEPDIR)/H5TS.Plo +include ./$(DEPDIR)/H5Tarray.Plo +include ./$(DEPDIR)/H5Tbit.Plo +include ./$(DEPDIR)/H5Tcommit.Plo +include ./$(DEPDIR)/H5Tcompound.Plo +include ./$(DEPDIR)/H5Tconv.Plo +include ./$(DEPDIR)/H5Tcset.Plo +include ./$(DEPDIR)/H5Tdbg.Plo +include ./$(DEPDIR)/H5Tdeprec.Plo +include ./$(DEPDIR)/H5Tenum.Plo +include ./$(DEPDIR)/H5Tfields.Plo +include ./$(DEPDIR)/H5Tfixed.Plo +include ./$(DEPDIR)/H5Tfloat.Plo +include ./$(DEPDIR)/H5Tinit.Plo +include ./$(DEPDIR)/H5Tnative.Plo +include ./$(DEPDIR)/H5Toffset.Plo +include ./$(DEPDIR)/H5Toh.Plo +include ./$(DEPDIR)/H5Topaque.Plo +include ./$(DEPDIR)/H5Torder.Plo +include ./$(DEPDIR)/H5Tpad.Plo +include ./$(DEPDIR)/H5Tprecis.Plo +include ./$(DEPDIR)/H5Tstrpad.Plo +include ./$(DEPDIR)/H5Tvisit.Plo +include ./$(DEPDIR)/H5Tvlen.Plo +include ./$(DEPDIR)/H5VM.Plo +include ./$(DEPDIR)/H5WB.Plo +include ./$(DEPDIR)/H5Z.Plo +include ./$(DEPDIR)/H5Zdeflate.Plo +include ./$(DEPDIR)/H5Zfletcher32.Plo +include ./$(DEPDIR)/H5Znbit.Plo +include ./$(DEPDIR)/H5Zscaleoffset.Plo +include ./$(DEPDIR)/H5Zshuffle.Plo +include ./$(DEPDIR)/H5Zszip.Plo +include ./$(DEPDIR)/H5Ztrans.Plo +include ./$(DEPDIR)/H5checksum.Plo +include ./$(DEPDIR)/H5dbg.Plo +include ./$(DEPDIR)/H5detect.Po +include ./$(DEPDIR)/H5lib_settings.Plo +include ./$(DEPDIR)/H5make_libsettings.Po +include ./$(DEPDIR)/H5system.Plo +include ./$(DEPDIR)/H5timer.Plo +include ./$(DEPDIR)/H5trace.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-settingsDATA: $(settings_DATA) + @$(NORMAL_INSTALL) + @list='$(settings_DATA)'; test -n "$(settingsdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(settingsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(settingsdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(settingsdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(settingsdir)" || exit $$?; \ + done + +uninstall-settingsDATA: + @$(NORMAL_UNINSTALL) + @list='$(settings_DATA)'; test -n "$(settingsdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(settingsdir)'; $(am__uninstall_files_from_dir) +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) \ + H5config.h all-local +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(settingsdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS install-settingsDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \ + uninstall-settingsDATA + +.MAKE: all check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-includeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-settingsDATA install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-includeHEADERS uninstall-libLTLIBRARIES \ + uninstall-settingsDATA + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# Number format detection +# The LD_LIBRARY_PATH setting is a kludge. +# Things should have been all set during H5detect making. +# Remove the generated .c file if errors occur unless HDF5_Make_Ignore +# is set to ignore the error. +H5Tinit.c: H5detect$(EXEEXT) + LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \ + sed -e 's/-L/:/g' -e 's/ //g'`" \ + $(RUNSERIAL) ./H5detect$(EXEEXT) > $@ || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + ($(RM) $@ ; exit 1) + +# Build configuration header file generation +# The LD_LIBRARY_PATH setting is a kludge. +# Things should have been all set during H5make_libsettings making. +# Remove the generated .c file if errors occur unless HDF5_Make_Ignore +# is set to ignore the error. +H5lib_settings.c: H5make_libsettings$(EXEEXT) libhdf5.settings + LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \ + sed -e 's/-L/:/g' -e 's/ //g'`" \ + $(RUNSERIAL) ./H5make_libsettings$(EXEEXT) > $@ || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + ($(RM) $@ ; exit 1) + +# Error header generation +# +# Actually, H5Einit.h, H5Eterm.h, H5Edefin.h and H5Epubgen.h all +# depend on H5err.txt, but the perl script generates them all, so just +# list one here. +$(top_srcdir)/src/H5Edefin.h: $(top_srcdir)/src/H5err.txt + perl $(top_srcdir)/bin/make_err $? + +# API version macro generation +$(top_srcdir)/src/H5version.h: $(top_srcdir)/src/H5vers.txt + perl $(top_srcdir)/bin/make_vers $? + +# Assignment overflow macro generation +$(top_srcdir)/src/H5overflow.h: $(top_srcdir)/src/H5overflow.txt + perl $(top_srcdir)/bin/make_overflow $? + +# Add TRACE macros to library source files. This is done via the trace script +# in the hdf5/bin directory. If the file contains HDF5 API macros, a "clean" +# version of the source file is saved with a tilde (~) after its name and +# tracing information is inserted. trace should have no effect on files +# without HDF5 macros. +.PHONY: trace + +trace: $(libhdf5_la_SOURCES) + @for dep in $? dummy; do \ + if test $$dep != "dummy" -a -n "$(PERL)"; then \ + case "$$dep" in \ + *.c) \ + $(TRACE) $$dep; \ + ;; \ + esac; \ + fi; \ + done +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/src/libhdf5.la b/build/src/libhdf5.la new file mode 100644 index 0000000..2f1c74c --- /dev/null +++ b/build/src/libhdf5.la @@ -0,0 +1,41 @@ +# libhdf5.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libhdf5.so.10' + +# Names of this library. +library_names='libhdf5.so.10.3.2 libhdf5.so.10 libhdf5.so' + +# The name of the static archive. +old_library='libhdf5.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libhdf5. +current=13 +age=3 +revision=2 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' diff --git a/build/src/libhdf5.settings b/build/src/libhdf5.settings new file mode 100644 index 0000000..f83b068 --- /dev/null +++ b/build/src/libhdf5.settings @@ -0,0 +1,59 @@ + SUMMARY OF THE HDF5 CONFIGURATION + ================================= + +General Information: +------------------- + HDF5 Version: 1.8.21-pre1 + Configured on: Mon May 14 21:05:08 CDT 2018 + Configured by: lrknox@jelly + Configure mode: development + Host system: x86_64-unknown-linux-gnu + Uname information: Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux + Byte sex: little-endian + Libraries: static, shared + Installation point: /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 + +Compiling Options: +------------------ + Compilation Mode: development + C Compiler: /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) + CFLAGS: + H5_CFLAGS: -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + AM_CFLAGS: + CPPFLAGS: + H5_CPPFLAGS: -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API + AM_CPPFLAGS: + Shared C Library: yes + Static C Library: yes + Statically Linked Executables: no + LDFLAGS: + H5_LDFLAGS: + AM_LDFLAGS: + Extra libraries: -lz -ldl -lm + Archiver: ar + Ranlib: ranlib + Debugged Packages: d,e,f,g,hg,i,mm,o,p,s,t,v,z + API Tracing: yes + +Languages: +---------- + Fortran: no + + C++: no + +Features: +--------- + Parallel HDF5: no + High Level library: yes + Threadsafety: no + Default API Mapping: v18 + With Deprecated Public Symbols: yes + I/O filters (external): deflate(zlib) + MPE: no + Direct VFD: no + dmalloc: no +Clear file buffers before write: yes + Using memory checker: no + Function Stack Tracing: no + Strict File Format Checks: yes + Optimization Instrumentation: yes diff --git a/build/src/stamp-h1 b/build/src/stamp-h1 new file mode 100644 index 0000000..8bc7ede --- /dev/null +++ b/build/src/stamp-h1 @@ -0,0 +1 @@ +timestamp for src/H5config.h diff --git a/build/test/.deps/accum.Po b/build/test/.deps/accum.Po new file mode 100644 index 0000000..2548331 --- /dev/null +++ b/build/test/.deps/accum.Po @@ -0,0 +1,400 @@ +accum.o: ../../test/accum.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fpkg.h ../../src/H5Fprivate.h \ + ../../src/H5Bpublic.h ../../src/H5private.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5SLprivate.h ../../src/H5FSprivate.h \ + ../../src/H5FSpublic.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5FDprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5private.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/app_ref.Po b/build/test/.deps/app_ref.Po new file mode 100644 index 0000000..86a3587 --- /dev/null +++ b/build/test/.deps/app_ref.Po @@ -0,0 +1,349 @@ +app_ref.o: ../../test/app_ref.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/big.Po b/build/test/.deps/big.Po new file mode 100644 index 0000000..fb9485e --- /dev/null +++ b/build/test/.deps/big.Po @@ -0,0 +1,349 @@ +big.o: ../../test/big.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/bittests.Po b/build/test/.deps/bittests.Po new file mode 100644 index 0000000..a35fc64 --- /dev/null +++ b/build/test/.deps/bittests.Po @@ -0,0 +1,388 @@ +bittests.o: ../../test/bittests.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ + ../../src/H5private.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5private.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/btree2.Po b/build/test/.deps/btree2.Po new file mode 100644 index 0000000..632e39d --- /dev/null +++ b/build/test/.deps/btree2.Po @@ -0,0 +1,372 @@ +btree2.o: ../../test/btree2.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5ACprivate.h \ + ../../src/H5private.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5FLprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5B2pkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5Fprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5private.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/cache.Po b/build/test/.deps/cache.Po new file mode 100644 index 0000000..8388045 --- /dev/null +++ b/build/test/.deps/cache.Po @@ -0,0 +1,405 @@ +cache.o: ../../test/cache.c /usr/include/stdc-predef.h \ + ../../test/cache_common.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Cpublic.h ../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/xlocale.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Cpkg.h \ + ../../src/H5SLprivate.h ../../src/H5Fpkg.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Iprivate.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5Apublic.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5PLpublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h ../../src/H5private.h + +/usr/include/stdc-predef.h: + +../../test/cache_common.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Cpublic.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Cpkg.h: + +../../src/H5SLprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5PLpublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: diff --git a/build/test/.deps/cache_api.Po b/build/test/.deps/cache_api.Po new file mode 100644 index 0000000..68e23a5 --- /dev/null +++ b/build/test/.deps/cache_api.Po @@ -0,0 +1,405 @@ +cache_api.o: ../../test/cache_api.c /usr/include/stdc-predef.h \ + ../../test/cache_common.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Cpublic.h ../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/xlocale.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Cpkg.h \ + ../../src/H5SLprivate.h ../../src/H5Fpkg.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Iprivate.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5Apublic.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5PLpublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h ../../src/H5private.h + +/usr/include/stdc-predef.h: + +../../test/cache_common.h: + +../../src/H5ACprivate.h: + +../../src/H5ACpublic.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Cpublic.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5Cpkg.h: + +../../src/H5SLprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5PLpublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: diff --git a/build/test/.deps/cache_common.Plo b/build/test/.deps/cache_common.Plo new file mode 100644 index 0000000..2d65f6d --- /dev/null +++ b/build/test/.deps/cache_common.Plo @@ -0,0 +1,409 @@ +cache_common.lo: ../../test/cache_common.c /usr/include/stdc-predef.h \ + ../../src/H5private.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5MFprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ + ../../src/H5Ipublic.h ../../src/H5FDpublic.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ + ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5private.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../test/cache_common.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Cpkg.h \ + ../../src/H5SLprivate.h ../../src/H5Fpkg.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ + ../../src/H5Zprivate.h ../../src/H5Iprivate.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5Apublic.h ../../src/H5Epublic.h \ + ../../src/H5Epubgen.h ../../src/H5PLpublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5MFprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Ipublic.h: + +../../src/H5FDpublic.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5Opublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Zpublic.h: + +../../src/H5private.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../test/cache_common.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Cpkg.h: + +../../src/H5SLprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Spublic.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5PLpublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/cmpd_dset.Po b/build/test/.deps/cmpd_dset.Po new file mode 100644 index 0000000..5e3ae92 --- /dev/null +++ b/build/test/.deps/cmpd_dset.Po @@ -0,0 +1,391 @@ +cmpd_dset.o: ../../test/cmpd_dset.c /usr/include/stdc-predef.h \ + ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5MMpublic.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ + ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ + ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h \ + ../../src/H5Iprivate.h ../../test/h5test.h ../../src/hdf5.h \ + ../../src/H5Apublic.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ + ../../src/H5PLpublic.h ../../src/H5FDcore.h ../../src/H5FDfamily.h \ + ../../src/H5FDlog.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ + ../../src/H5FDmulti.h ../../src/H5FDsec2.h ../../src/H5FDstdio.h \ + ../../src/H5FDdirect.h ../../src/H5private.h + +/usr/include/stdc-predef.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Tpublic.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Ipublic.h: + +../../src/H5MMpublic.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Gprivate.h: + +../../src/H5Gpublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Opublic.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Fpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Rpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Dpublic.h: + +../../src/H5Spublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5PLpublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: diff --git a/build/test/.deps/cross_read.Po b/build/test/.deps/cross_read.Po new file mode 100644 index 0000000..0738472 --- /dev/null +++ b/build/test/.deps/cross_read.Po @@ -0,0 +1,353 @@ +cross_read.o: ../../test/cross_read.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/dangle.Po b/build/test/.deps/dangle.Po new file mode 100644 index 0000000..0656835 --- /dev/null +++ b/build/test/.deps/dangle.Po @@ -0,0 +1,349 @@ +dangle.o: ../../test/dangle.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/dsets.Po b/build/test/.deps/dsets.Po new file mode 100644 index 0000000..c7181f0 --- /dev/null +++ b/build/test/.deps/dsets.Po @@ -0,0 +1,379 @@ +dsets.o: ../../test/dsets.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/bits/timex.h ../../test/h5test.h ../../src/hdf5.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Tprivate.h \ + ../../src/H5private.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/bits/timex.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5private.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: diff --git a/build/test/.deps/dt_arith.Po b/build/test/.deps/dt_arith.Po new file mode 100644 index 0000000..c97bb3b --- /dev/null +++ b/build/test/.deps/dt_arith.Po @@ -0,0 +1,388 @@ +dt_arith.o: ../../test/dt_arith.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ + ../../src/H5private.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5private.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/dtransform.Po b/build/test/.deps/dtransform.Po new file mode 100644 index 0000000..30fb848 --- /dev/null +++ b/build/test/.deps/dtransform.Po @@ -0,0 +1,349 @@ +dtransform.o: ../../test/dtransform.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/dtypes.Po b/build/test/.deps/dtypes.Po new file mode 100644 index 0000000..376e11a --- /dev/null +++ b/build/test/.deps/dtypes.Po @@ -0,0 +1,395 @@ +dtypes.o: ../../test/dtypes.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Iprivate.h ../../src/H5private.h ../../src/H5Tpkg.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Iprivate.h: + +../../src/H5private.h: + +../../src/H5Tpkg.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/dynlib1.Plo b/build/test/.deps/dynlib1.Plo new file mode 100644 index 0000000..a62c4dd --- /dev/null +++ b/build/test/.deps/dynlib1.Plo @@ -0,0 +1,197 @@ +dynlib1.lo: ../../test/dynlib1.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5PLextern.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ + ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5PLextern.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/dynlib2.Plo b/build/test/.deps/dynlib2.Plo new file mode 100644 index 0000000..1c93fdf --- /dev/null +++ b/build/test/.deps/dynlib2.Plo @@ -0,0 +1,197 @@ +dynlib2.lo: ../../test/dynlib2.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5PLextern.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ + ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5PLextern.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/dynlib3.Plo b/build/test/.deps/dynlib3.Plo new file mode 100644 index 0000000..dcbb2b5 --- /dev/null +++ b/build/test/.deps/dynlib3.Plo @@ -0,0 +1,199 @@ +dynlib3.lo: ../../test/dynlib3.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h ../../src/H5PLextern.h ../../src/hdf5.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ + ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +../../src/H5PLextern.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/dynlib4.Plo b/build/test/.deps/dynlib4.Plo new file mode 100644 index 0000000..709e336 --- /dev/null +++ b/build/test/.deps/dynlib4.Plo @@ -0,0 +1,197 @@ +dynlib4.lo: ../../test/dynlib4.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../src/H5PLextern.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ + ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ + ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ + ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ + ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ + ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ + ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5PLextern.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/efc.Po b/build/test/.deps/efc.Po new file mode 100644 index 0000000..8c60c02 --- /dev/null +++ b/build/test/.deps/efc.Po @@ -0,0 +1,398 @@ +efc.o: ../../test/efc.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fpkg.h ../../src/H5Fprivate.h \ + ../../src/H5Bpublic.h ../../src/H5private.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5SLprivate.h ../../src/H5FSprivate.h \ + ../../src/H5FSpublic.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5private.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/enum.Po b/build/test/.deps/enum.Po new file mode 100644 index 0000000..be05bbb --- /dev/null +++ b/build/test/.deps/enum.Po @@ -0,0 +1,349 @@ +enum.o: ../../test/enum.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/err_compat.Po b/build/test/.deps/err_compat.Po new file mode 100644 index 0000000..08300b2 --- /dev/null +++ b/build/test/.deps/err_compat.Po @@ -0,0 +1,349 @@ +err_compat.o: ../../test/err_compat.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/error_test.Po b/build/test/.deps/error_test.Po new file mode 100644 index 0000000..14fceec --- /dev/null +++ b/build/test/.deps/error_test.Po @@ -0,0 +1,353 @@ +error_test.o: ../../test/error_test.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/extend.Po b/build/test/.deps/extend.Po new file mode 100644 index 0000000..8654933 --- /dev/null +++ b/build/test/.deps/extend.Po @@ -0,0 +1,349 @@ +extend.o: ../../test/extend.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/external.Po b/build/test/.deps/external.Po new file mode 100644 index 0000000..0154591 --- /dev/null +++ b/build/test/.deps/external.Po @@ -0,0 +1,349 @@ +external.o: ../../test/external.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/fheap.Po b/build/test/.deps/fheap.Po new file mode 100644 index 0000000..8642b9e --- /dev/null +++ b/build/test/.deps/fheap.Po @@ -0,0 +1,412 @@ +fheap.o: ../../test/fheap.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5HFpkg.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Fprivate.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5private.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5FLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5VMprivate.h \ + ../../src/H5Eprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5HFpkg.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5private.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5MMprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5Eprivate.h: diff --git a/build/test/.deps/file_image.Po b/build/test/.deps/file_image.Po new file mode 100644 index 0000000..708a001 --- /dev/null +++ b/build/test/.deps/file_image.Po @@ -0,0 +1,356 @@ +file_image.o: ../../test/file_image.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Fprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Fprivate.h: diff --git a/build/test/.deps/fillval.Po b/build/test/.deps/fillval.Po new file mode 100644 index 0000000..d2535ad --- /dev/null +++ b/build/test/.deps/fillval.Po @@ -0,0 +1,353 @@ +fillval.o: ../../test/fillval.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/filter_fail.Po b/build/test/.deps/filter_fail.Po new file mode 100644 index 0000000..c514571 --- /dev/null +++ b/build/test/.deps/filter_fail.Po @@ -0,0 +1,353 @@ +filter_fail.o: ../../test/filter_fail.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/flush1.Po b/build/test/.deps/flush1.Po new file mode 100644 index 0000000..ee5e24b --- /dev/null +++ b/build/test/.deps/flush1.Po @@ -0,0 +1,349 @@ +flush1.o: ../../test/flush1.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/flush2.Po b/build/test/.deps/flush2.Po new file mode 100644 index 0000000..7364099 --- /dev/null +++ b/build/test/.deps/flush2.Po @@ -0,0 +1,349 @@ +flush2.o: ../../test/flush2.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/freespace.Po b/build/test/.deps/freespace.Po new file mode 100644 index 0000000..1ec82c9 --- /dev/null +++ b/build/test/.deps/freespace.Po @@ -0,0 +1,405 @@ +freespace.o: ../../test/freespace.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5FSpkg.h ../../src/H5FSprivate.h \ + ../../src/H5FSpublic.h ../../src/H5Fprivate.h ../../src/H5FLprivate.h \ + ../../src/H5ACprivate.h ../../src/H5private.h ../../src/H5Cprivate.h \ + ../../src/H5Pprivate.h ../../src/H5SLprivate.h ../../src/H5Fpkg.h \ + ../../src/H5Bpublic.h ../../src/H5FOprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5Iprivate.h ../../src/H5VMprivate.h \ + ../../src/H5Eprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5FSpkg.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5private.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5FOprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5Eprivate.h: diff --git a/build/test/.deps/gen_bad_offset.Po b/build/test/.deps/gen_bad_offset.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_bad_offset.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_bad_ohdr.Po b/build/test/.deps/gen_bad_ohdr.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_bad_ohdr.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_bogus.Po b/build/test/.deps/gen_bogus.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_bogus.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_cross.Po b/build/test/.deps/gen_cross.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_cross.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_deflate.Po b/build/test/.deps/gen_deflate.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_deflate.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_file_image.Po b/build/test/.deps/gen_file_image.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_file_image.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_filters.Po b/build/test/.deps/gen_filters.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_filters.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_idx.Po b/build/test/.deps/gen_idx.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_idx.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_new_array.Po b/build/test/.deps/gen_new_array.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_new_array.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_new_fill.Po b/build/test/.deps/gen_new_fill.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_new_fill.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_new_group.Po b/build/test/.deps/gen_new_group.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_new_group.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_new_mtime.Po b/build/test/.deps/gen_new_mtime.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_new_mtime.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_new_super.Po b/build/test/.deps/gen_new_super.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_new_super.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_noencoder.Po b/build/test/.deps/gen_noencoder.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_noencoder.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_nullspace.Po b/build/test/.deps/gen_nullspace.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_nullspace.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_sizes_lheap.Po b/build/test/.deps/gen_sizes_lheap.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_sizes_lheap.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/gen_udlinks.Po b/build/test/.deps/gen_udlinks.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/gen_udlinks.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/getname.Po b/build/test/.deps/getname.Po new file mode 100644 index 0000000..9e07ddc --- /dev/null +++ b/build/test/.deps/getname.Po @@ -0,0 +1,407 @@ +getname.o: ../../test/getname.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5private.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Ipkg.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Ipkg.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/gheap.Po b/build/test/.deps/gheap.Po new file mode 100644 index 0000000..13993bf --- /dev/null +++ b/build/test/.deps/gheap.Po @@ -0,0 +1,379 @@ +gheap.o: ../../test/gheap.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../src/H5Fprivate.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5HGprivate.h ../../src/H5HGpublic.h \ + ../../src/H5Iprivate.h ../../src/H5Pprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../src/H5Fprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5HGprivate.h: + +../../src/H5HGpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Pprivate.h: diff --git a/build/test/.deps/h5test.Plo b/build/test/.deps/h5test.Plo new file mode 100644 index 0000000..d515624 --- /dev/null +++ b/build/test/.deps/h5test.Plo @@ -0,0 +1,407 @@ +h5test.lo: ../../test/h5test.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5private.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/test/.deps/hyperslab.Po b/build/test/.deps/hyperslab.Po new file mode 100644 index 0000000..476963c --- /dev/null +++ b/build/test/.deps/hyperslab.Po @@ -0,0 +1,358 @@ +hyperslab.o: ../../test/hyperslab.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../src/H5VMprivate.h ../../src/H5Eprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../src/H5VMprivate.h: + +../../src/H5Eprivate.h: diff --git a/build/test/.deps/istore.Po b/build/test/.deps/istore.Po new file mode 100644 index 0000000..33da6a5 --- /dev/null +++ b/build/test/.deps/istore.Po @@ -0,0 +1,419 @@ +istore.o: ../../test/istore.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5private.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5Sprivate.h ../../src/H5Eprivate.h ../../src/H5Iprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ + ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5Gprivate.h ../../src/H5Oprivate.h ../../src/H5VMprivate.h \ + ../../src/H5Eprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5private.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Eprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5Eprivate.h: diff --git a/build/test/.deps/lheap.Po b/build/test/.deps/lheap.Po new file mode 100644 index 0000000..86291d4 --- /dev/null +++ b/build/test/.deps/lheap.Po @@ -0,0 +1,374 @@ +lheap.o: ../../test/lheap.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5ACprivate.h ../../src/H5private.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Pprivate.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h ../../src/H5ACprivate.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5ACprivate.h: + +../../src/H5private.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/links.Po b/build/test/.deps/links.Po new file mode 100644 index 0000000..90fc40c --- /dev/null +++ b/build/test/.deps/links.Po @@ -0,0 +1,412 @@ +links.o: ../../test/links.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5private.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ + ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ + ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ + ../../src/H5Lprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: diff --git a/build/test/.deps/links_env.Po b/build/test/.deps/links_env.Po new file mode 100644 index 0000000..f480dce --- /dev/null +++ b/build/test/.deps/links_env.Po @@ -0,0 +1,407 @@ +links_env.o: ../../test/links_env.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5private.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ + ../../src/H5Iprivate.h ../../src/H5Lprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: + +../../src/H5Iprivate.h: + +../../src/H5Lprivate.h: diff --git a/build/test/.deps/mf.Po b/build/test/.deps/mf.Po new file mode 100644 index 0000000..96947f0 --- /dev/null +++ b/build/test/.deps/mf.Po @@ -0,0 +1,414 @@ +mf.o: ../../test/mf.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5MFpkg.h ../../src/H5MFprivate.h \ + ../../src/H5Fprivate.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5private.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ + ../../src/H5FLprivate.h ../../src/H5FSpkg.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Fpkg.h \ + ../../src/H5Bpublic.h ../../src/H5FOprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ + ../../src/H5VMprivate.h ../../src/H5Eprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5MFpkg.h: + +../../src/H5MFprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5private.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5FLprivate.h: + +../../src/H5FSpkg.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5Bpublic.h: + +../../src/H5FOprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5VMprivate.h: + +../../src/H5Eprivate.h: diff --git a/build/test/.deps/mount.Po b/build/test/.deps/mount.Po new file mode 100644 index 0000000..cbb4f77 --- /dev/null +++ b/build/test/.deps/mount.Po @@ -0,0 +1,356 @@ +mount.o: ../../test/mount.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Fprivate.h ../../src/H5Iprivate.h \ + ../../src/H5private.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Fprivate.h: + +../../src/H5Iprivate.h: + +../../src/H5private.h: diff --git a/build/test/.deps/mtime.Po b/build/test/.deps/mtime.Po new file mode 100644 index 0000000..9721bf6 --- /dev/null +++ b/build/test/.deps/mtime.Po @@ -0,0 +1,353 @@ +mtime.o: ../../test/mtime.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/ntypes.Po b/build/test/.deps/ntypes.Po new file mode 100644 index 0000000..5686602 --- /dev/null +++ b/build/test/.deps/ntypes.Po @@ -0,0 +1,349 @@ +ntypes.o: ../../test/ntypes.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/objcopy.Po b/build/test/.deps/objcopy.Po new file mode 100644 index 0000000..18d95c2 --- /dev/null +++ b/build/test/.deps/objcopy.Po @@ -0,0 +1,395 @@ +objcopy.o: ../../test/objcopy.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Spkg.h ../../src/H5Sprivate.h \ + ../../src/H5private.h ../../src/H5Fprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5Ppkg.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5private.h: + +../../src/H5Fprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Ppkg.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: diff --git a/build/test/.deps/ohdr.Po b/build/test/.deps/ohdr.Po new file mode 100644 index 0000000..a70b1f5 --- /dev/null +++ b/build/test/.deps/ohdr.Po @@ -0,0 +1,412 @@ +ohdr.o: ../../test/ohdr.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Iprivate.h ../../src/H5private.h ../../src/H5Opkg.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5Pprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h \ + ../../src/H5Gpkg.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ + ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Iprivate.h: + +../../src/H5private.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Gpkg.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/test/.deps/plugin.Po b/build/test/.deps/plugin.Po new file mode 100644 index 0000000..872a7a7 --- /dev/null +++ b/build/test/.deps/plugin.Po @@ -0,0 +1,384 @@ +plugin.o: ../../test/plugin.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5PLpkg.h ../../src/H5PLprivate.h ../../src/H5private.h \ + ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5PLpkg.h: + +../../src/H5PLprivate.h: + +../../src/H5private.h: + +../../src/H5Zpkg.h: + +../../src/H5Zprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: diff --git a/build/test/.deps/pool.Po b/build/test/.deps/pool.Po new file mode 100644 index 0000000..b2d9460 --- /dev/null +++ b/build/test/.deps/pool.Po @@ -0,0 +1,356 @@ +pool.o: ../../test/pool.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5MPpkg.h ../../src/H5MPprivate.h \ + ../../src/H5FLprivate.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5MPpkg.h: + +../../src/H5MPprivate.h: + +../../src/H5FLprivate.h: diff --git a/build/test/.deps/reserved.Po b/build/test/.deps/reserved.Po new file mode 100644 index 0000000..e083a3a --- /dev/null +++ b/build/test/.deps/reserved.Po @@ -0,0 +1,349 @@ +reserved.o: ../../test/reserved.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/set_extent.Po b/build/test/.deps/set_extent.Po new file mode 100644 index 0000000..4eec7f7 --- /dev/null +++ b/build/test/.deps/set_extent.Po @@ -0,0 +1,349 @@ +set_extent.o: ../../test/set_extent.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/space_overflow.Po b/build/test/.deps/space_overflow.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/test/.deps/space_overflow.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/test/.deps/stab.Po b/build/test/.deps/stab.Po new file mode 100644 index 0000000..0317549 --- /dev/null +++ b/build/test/.deps/stab.Po @@ -0,0 +1,402 @@ +stab.o: ../../test/stab.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5private.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/test/.deps/tarray.Po b/build/test/.deps/tarray.Po new file mode 100644 index 0000000..cd6655c --- /dev/null +++ b/build/test/.deps/tarray.Po @@ -0,0 +1,360 @@ +tarray.o: ../../test/tarray.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../test/H5srcdir.h H5srcdir_str.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: diff --git a/build/test/.deps/tattr.Po b/build/test/.deps/tattr.Po new file mode 100644 index 0000000..5a240a1 --- /dev/null +++ b/build/test/.deps/tattr.Po @@ -0,0 +1,418 @@ +tattr.o: ../../test/tattr.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5FLprivate.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ + ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fpkg.h \ + ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Opkg.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5Apkg.h: + +../../src/H5Aprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Fpkg.h: + +../../src/H5FOprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: diff --git a/build/test/.deps/tcheck_version.Po b/build/test/.deps/tcheck_version.Po new file mode 100644 index 0000000..8119068 --- /dev/null +++ b/build/test/.deps/tcheck_version.Po @@ -0,0 +1,349 @@ +tcheck_version.o: ../../test/tcheck_version.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/tchecksum.Po b/build/test/.deps/tchecksum.Po new file mode 100644 index 0000000..ec1fdfe --- /dev/null +++ b/build/test/.deps/tchecksum.Po @@ -0,0 +1,355 @@ +tchecksum.o: ../../test/tchecksum.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/tconfig.Po b/build/test/.deps/tconfig.Po new file mode 100644 index 0000000..767a64d --- /dev/null +++ b/build/test/.deps/tconfig.Po @@ -0,0 +1,356 @@ +tconfig.o: ../../test/tconfig.c /usr/include/stdc-predef.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../test/testhdf5.h ../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h /usr/include/xlocale.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/h5test.h: diff --git a/build/test/.deps/tcoords.Po b/build/test/.deps/tcoords.Po new file mode 100644 index 0000000..878e1db --- /dev/null +++ b/build/test/.deps/tcoords.Po @@ -0,0 +1,355 @@ +tcoords.o: ../../test/tcoords.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/testframe.Plo b/build/test/.deps/testframe.Plo new file mode 100644 index 0000000..434f53b --- /dev/null +++ b/build/test/.deps/testframe.Plo @@ -0,0 +1,355 @@ +testframe.lo: ../../test/testframe.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/testhdf5.Po b/build/test/.deps/testhdf5.Po new file mode 100644 index 0000000..0d58b70 --- /dev/null +++ b/build/test/.deps/testhdf5.Po @@ -0,0 +1,355 @@ +testhdf5.o: ../../test/testhdf5.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/testmeta.Po b/build/test/.deps/testmeta.Po new file mode 100644 index 0000000..646b053 --- /dev/null +++ b/build/test/.deps/testmeta.Po @@ -0,0 +1,180 @@ +testmeta.o: ../../test/testmeta.c /usr/include/stdc-predef.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/tfile.Po b/build/test/.deps/tfile.Po new file mode 100644 index 0000000..66befcb --- /dev/null +++ b/build/test/.deps/tfile.Po @@ -0,0 +1,409 @@ +tfile.o: ../../test/tfile.c /usr/include/stdc-predef.h ../../src/hdf5.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../test/testhdf5.h ../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h /usr/include/xlocale.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/h5test.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ + ../../src/H5RCprivate.h ../../src/H5Pprivate.h ../../src/H5Fpkg.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5SLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Fpkg.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/tgenprop.Po b/build/test/.deps/tgenprop.Po new file mode 100644 index 0000000..0b09bae --- /dev/null +++ b/build/test/.deps/tgenprop.Po @@ -0,0 +1,397 @@ +tgenprop.o: ../../test/tgenprop.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Ppkg.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Ppkg.h: diff --git a/build/test/.deps/th5o.Po b/build/test/.deps/th5o.Po new file mode 100644 index 0000000..daac46e --- /dev/null +++ b/build/test/.deps/th5o.Po @@ -0,0 +1,355 @@ +th5o.o: ../../test/th5o.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/th5s.Po b/build/test/.deps/th5s.Po new file mode 100644 index 0000000..cfbeeab --- /dev/null +++ b/build/test/.deps/th5s.Po @@ -0,0 +1,400 @@ +th5s.o: ../../test/th5s.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../test/H5srcdir.h H5srcdir_str.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ + ../../src/H5Sprivate.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Zprivate.h \ + ../../src/H5Pprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5Sprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Pprivate.h: diff --git a/build/test/.deps/theap.Po b/build/test/.deps/theap.Po new file mode 100644 index 0000000..497ce0f --- /dev/null +++ b/build/test/.deps/theap.Po @@ -0,0 +1,359 @@ +theap.o: ../../test/theap.c /usr/include/stdc-predef.h \ + /usr/include/time.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/time.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/timex.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5HPprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/time.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/time.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/timex.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5HPprivate.h: diff --git a/build/test/.deps/tid.Po b/build/test/.deps/tid.Po new file mode 100644 index 0000000..7c70870 --- /dev/null +++ b/build/test/.deps/tid.Po @@ -0,0 +1,360 @@ +tid.o: ../../test/tid.c /usr/include/stdc-predef.h ../../test/testhdf5.h \ + ../../src/H5private.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Ipkg.h ../../src/H5Iprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Ipkg.h: + +../../src/H5Iprivate.h: diff --git a/build/test/.deps/titerate.Po b/build/test/.deps/titerate.Po new file mode 100644 index 0000000..e490a96 --- /dev/null +++ b/build/test/.deps/titerate.Po @@ -0,0 +1,355 @@ +titerate.o: ../../test/titerate.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/tmeta.Po b/build/test/.deps/tmeta.Po new file mode 100644 index 0000000..54e6904 --- /dev/null +++ b/build/test/.deps/tmeta.Po @@ -0,0 +1,358 @@ +tmeta.o: ../../test/tmeta.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Fprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Fprivate.h: diff --git a/build/test/.deps/tmisc.Po b/build/test/.deps/tmisc.Po new file mode 100644 index 0000000..ab0e19d --- /dev/null +++ b/build/test/.deps/tmisc.Po @@ -0,0 +1,402 @@ +tmisc.o: ../../test/tmisc.c /usr/include/stdc-predef.h ../../src/hdf5.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../test/testhdf5.h ../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h /usr/include/xlocale.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/h5test.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../src/H5Dpkg.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ + ../../src/H5Pprivate.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ + ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ + ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Bprivate.h \ + ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Rprivate.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h + +/usr/include/stdc-predef.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../src/H5Dpkg.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: diff --git a/build/test/.deps/trefer.Po b/build/test/.deps/trefer.Po new file mode 100644 index 0000000..4f9c2ce --- /dev/null +++ b/build/test/.deps/trefer.Po @@ -0,0 +1,355 @@ +trefer.o: ../../test/trefer.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/trefstr.Po b/build/test/.deps/trefstr.Po new file mode 100644 index 0000000..39ebab5 --- /dev/null +++ b/build/test/.deps/trefstr.Po @@ -0,0 +1,360 @@ +trefstr.o: ../../test/trefstr.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5FLprivate.h ../../src/H5RSprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5FLprivate.h: + +../../src/H5RSprivate.h: diff --git a/build/test/.deps/tselect.Po b/build/test/.deps/tselect.Po new file mode 100644 index 0000000..f3b77f9 --- /dev/null +++ b/build/test/.deps/tselect.Po @@ -0,0 +1,393 @@ +tselect.o: ../../test/tselect.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Fprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Spkg.h: + +../../src/H5Sprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/tskiplist.Po b/build/test/.deps/tskiplist.Po new file mode 100644 index 0000000..720d3ad --- /dev/null +++ b/build/test/.deps/tskiplist.Po @@ -0,0 +1,359 @@ +tskiplist.o: ../../test/tskiplist.c /usr/include/stdc-predef.h \ + /usr/include/time.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/time.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/timex.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5SLprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/time.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/time.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/timex.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5SLprivate.h: diff --git a/build/test/.deps/tsohm.Po b/build/test/.deps/tsohm.Po new file mode 100644 index 0000000..14ce80e --- /dev/null +++ b/build/test/.deps/tsohm.Po @@ -0,0 +1,400 @@ +tsohm.o: ../../test/tsohm.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Fpkg.h ../../src/H5Fprivate.h ../../src/H5Bpublic.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5SLprivate.h \ + ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ + ../../src/H5Bprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5Oprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Fpkg.h: + +../../src/H5Fprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5FLprivate.h: + +../../src/H5FOprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5FSprivate.h: + +../../src/H5FSpublic.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: diff --git a/build/test/.deps/ttime.Po b/build/test/.deps/ttime.Po new file mode 100644 index 0000000..7ba2ecb --- /dev/null +++ b/build/test/.deps/ttime.Po @@ -0,0 +1,355 @@ +ttime.o: ../../test/ttime.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/ttsafe.Po b/build/test/.deps/ttsafe.Po new file mode 100644 index 0000000..7d4a7df --- /dev/null +++ b/build/test/.deps/ttsafe.Po @@ -0,0 +1,358 @@ +ttsafe.o: ../../test/ttsafe.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/ttsafe.h ../../src/H5Eprivate.h \ + ../../src/H5private.h ../../test/testhdf5.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/ttsafe.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/testhdf5.h: diff --git a/build/test/.deps/ttsafe_acreate.Po b/build/test/.deps/ttsafe_acreate.Po new file mode 100644 index 0000000..85fea78 --- /dev/null +++ b/build/test/.deps/ttsafe_acreate.Po @@ -0,0 +1,358 @@ +ttsafe_acreate.o: ../../test/ttsafe_acreate.c /usr/include/stdc-predef.h \ + ../../test/ttsafe.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/testhdf5.h ../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../test/ttsafe.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/testhdf5.h: + +../../test/h5test.h: diff --git a/build/test/.deps/ttsafe_cancel.Po b/build/test/.deps/ttsafe_cancel.Po new file mode 100644 index 0000000..7759827 --- /dev/null +++ b/build/test/.deps/ttsafe_cancel.Po @@ -0,0 +1,358 @@ +ttsafe_cancel.o: ../../test/ttsafe_cancel.c /usr/include/stdc-predef.h \ + ../../test/ttsafe.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/testhdf5.h ../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../test/ttsafe.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/testhdf5.h: + +../../test/h5test.h: diff --git a/build/test/.deps/ttsafe_dcreate.Po b/build/test/.deps/ttsafe_dcreate.Po new file mode 100644 index 0000000..d7b4563 --- /dev/null +++ b/build/test/.deps/ttsafe_dcreate.Po @@ -0,0 +1,358 @@ +ttsafe_dcreate.o: ../../test/ttsafe_dcreate.c /usr/include/stdc-predef.h \ + ../../test/ttsafe.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/testhdf5.h ../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../test/ttsafe.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/testhdf5.h: + +../../test/h5test.h: diff --git a/build/test/.deps/ttsafe_error.Po b/build/test/.deps/ttsafe_error.Po new file mode 100644 index 0000000..14d7109 --- /dev/null +++ b/build/test/.deps/ttsafe_error.Po @@ -0,0 +1,358 @@ +ttsafe_error.o: ../../test/ttsafe_error.c /usr/include/stdc-predef.h \ + ../../test/ttsafe.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5private.h \ + ../../test/testhdf5.h ../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../test/ttsafe.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: + +../../test/testhdf5.h: + +../../test/h5test.h: diff --git a/build/test/.deps/ttst.Po b/build/test/.deps/ttst.Po new file mode 100644 index 0000000..fbf720c --- /dev/null +++ b/build/test/.deps/ttst.Po @@ -0,0 +1,359 @@ +ttst.o: ../../test/ttst.c /usr/include/stdc-predef.h /usr/include/time.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/time.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/timex.h \ + /usr/include/xlocale.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/types.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5STprivate.h + +/usr/include/stdc-predef.h: + +/usr/include/time.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/time.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/timex.h: + +/usr/include/xlocale.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/types.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5STprivate.h: diff --git a/build/test/.deps/tunicode.Po b/build/test/.deps/tunicode.Po new file mode 100644 index 0000000..1fb539d --- /dev/null +++ b/build/test/.deps/tunicode.Po @@ -0,0 +1,354 @@ +tunicode.o: ../../test/tunicode.c /usr/include/stdc-predef.h \ + /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/bits/timex.h ../../test/testhdf5.h ../../src/H5private.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/bits/timex.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/tverbounds18.Po b/build/test/.deps/tverbounds18.Po new file mode 100644 index 0000000..94533e3 --- /dev/null +++ b/build/test/.deps/tverbounds18.Po @@ -0,0 +1,360 @@ +tverbounds18.o: ../../test/tverbounds18.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../test/H5srcdir.h H5srcdir_str.h \ + ../../test/testhdf5.h ../../src/H5Eprivate.h ../../src/H5private.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../test/H5srcdir.h: + +H5srcdir_str.h: + +../../test/testhdf5.h: + +../../src/H5Eprivate.h: + +../../src/H5private.h: diff --git a/build/test/.deps/tvlstr.Po b/build/test/.deps/tvlstr.Po new file mode 100644 index 0000000..f9c27e4 --- /dev/null +++ b/build/test/.deps/tvlstr.Po @@ -0,0 +1,355 @@ +tvlstr.o: ../../test/tvlstr.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: diff --git a/build/test/.deps/tvltypes.Po b/build/test/.deps/tvltypes.Po new file mode 100644 index 0000000..360461c --- /dev/null +++ b/build/test/.deps/tvltypes.Po @@ -0,0 +1,395 @@ +tvltypes.o: ../../test/tvltypes.c /usr/include/stdc-predef.h \ + ../../test/testhdf5.h ../../src/H5private.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ + ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5Apublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ + ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ + ../../src/H5Fprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ + ../../src/H5Gprivate.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5Sprivate.h + +/usr/include/stdc-predef.h: + +../../test/testhdf5.h: + +../../src/H5private.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Eprivate.h: + +../../src/H5Epublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Epubgen.h: + +../../src/H5private.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5Apublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5Dprivate.h: + +../../src/H5FDprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Fprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Gprivate.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5Sprivate.h: diff --git a/build/test/.deps/unlink.Po b/build/test/.deps/unlink.Po new file mode 100644 index 0000000..1ff94aa --- /dev/null +++ b/build/test/.deps/unlink.Po @@ -0,0 +1,402 @@ +unlink.o: ../../test/unlink.c /usr/include/stdc-predef.h \ + /usr/include/time.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/time.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/timex.h \ + /usr/include/xlocale.h ../../test/h5test.h ../../src/hdf5.h \ + ../../src/H5public.h ../src/H5pubconf.h ../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ + ../../src/H5private.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ + ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ + ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ + ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ + ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ + ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ + ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h + +/usr/include/stdc-predef.h: + +/usr/include/time.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/time.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/timex.h: + +/usr/include/xlocale.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: + +../../src/H5Gpkg.h: + +../../src/H5Gprivate.h: + +../../src/H5private.h: + +../../src/H5Bprivate.h: + +../../src/H5Bpublic.h: + +../../src/H5Fprivate.h: + +../../src/H5RCprivate.h: + +../../src/H5RSprivate.h: + +../../src/H5B2private.h: + +../../src/H5B2public.h: + +../../src/H5FLprivate.h: + +../../src/H5HFprivate.h: + +../../src/H5HFpublic.h: + +../../src/H5Oprivate.h: + +../../src/H5ACprivate.h: + +../../src/H5Cprivate.h: + +../../src/H5Pprivate.h: + +../../src/H5SLprivate.h: + +../../src/H5Tprivate.h: + +../../src/H5Rprivate.h: + +../../src/H5Zprivate.h: + +../../src/H5HLprivate.h: + +../../src/H5HLpublic.h: diff --git a/build/test/.deps/unregister.Po b/build/test/.deps/unregister.Po new file mode 100644 index 0000000..7ec16d8 --- /dev/null +++ b/build/test/.deps/unregister.Po @@ -0,0 +1,349 @@ +unregister.o: ../../test/unregister.c /usr/include/stdc-predef.h \ + ../../test/h5test.h ../../src/hdf5.h ../../src/H5public.h \ + ../src/H5pubconf.h ../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.deps/vfd.Po b/build/test/.deps/vfd.Po new file mode 100644 index 0000000..11613e7 --- /dev/null +++ b/build/test/.deps/vfd.Po @@ -0,0 +1,349 @@ +vfd.o: ../../test/vfd.c /usr/include/stdc-predef.h ../../test/h5test.h \ + ../../src/hdf5.h ../../src/H5public.h ../src/H5pubconf.h \ + ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ + ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ + ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ + ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ + ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ + ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ + ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ + ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ + ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ + ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ + ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../src/H5win32defs.h \ + ../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../test/h5test.h: + +../../src/hdf5.h: + +../../src/H5public.h: + +../src/H5pubconf.h: + +../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../src/H5api_adpt.h: + +../../src/H5Apublic.h: + +../../src/H5Ipublic.h: + +../../src/H5Opublic.h: + +../../src/H5Lpublic.h: + +../../src/H5Tpublic.h: + +../../src/H5ACpublic.h: + +../../src/H5Cpublic.h: + +../../src/H5Dpublic.h: + +../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../src/H5Epubgen.h: + +../../src/H5Fpublic.h: + +../../src/H5FDpublic.h: + +../../src/H5Gpublic.h: + +../../src/H5MMpublic.h: + +../../src/H5Ppublic.h: + +../../src/H5Zpublic.h: + +../../src/H5PLpublic.h: + +../../src/H5Rpublic.h: + +../../src/H5Spublic.h: + +../../src/H5FDcore.h: + +../../src/H5FDfamily.h: + +../../src/H5FDlog.h: + +../../src/H5FDmpi.h: + +../../src/H5FDmpio.h: + +../../src/H5FDmulti.h: + +../../src/H5FDsec2.h: + +../../src/H5FDstdio.h: + +../../src/H5FDdirect.h: + +../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../src/H5win32defs.h: + +../../src/H5overflow.h: diff --git a/build/test/.libs/accum b/build/test/.libs/accum new file mode 100755 index 0000000..18b61d6 Binary files /dev/null and b/build/test/.libs/accum differ diff --git a/build/test/.libs/app_ref b/build/test/.libs/app_ref new file mode 100755 index 0000000..85fd243 Binary files /dev/null and b/build/test/.libs/app_ref differ diff --git a/build/test/.libs/big b/build/test/.libs/big new file mode 100755 index 0000000..6001388 Binary files /dev/null and b/build/test/.libs/big differ diff --git a/build/test/.libs/bittests b/build/test/.libs/bittests new file mode 100755 index 0000000..0d12447 Binary files /dev/null and b/build/test/.libs/bittests differ diff --git a/build/test/.libs/btree2 b/build/test/.libs/btree2 new file mode 100755 index 0000000..cced5aa Binary files /dev/null and b/build/test/.libs/btree2 differ diff --git a/build/test/.libs/cache b/build/test/.libs/cache new file mode 100755 index 0000000..af016f6 Binary files /dev/null and b/build/test/.libs/cache differ diff --git a/build/test/.libs/cache_api b/build/test/.libs/cache_api new file mode 100755 index 0000000..53e34d6 Binary files /dev/null and b/build/test/.libs/cache_api differ diff --git a/build/test/.libs/cache_common.o b/build/test/.libs/cache_common.o new file mode 100644 index 0000000..639c5ec Binary files /dev/null and b/build/test/.libs/cache_common.o differ diff --git a/build/test/.libs/cmpd_dset b/build/test/.libs/cmpd_dset new file mode 100755 index 0000000..7cac16f Binary files /dev/null and b/build/test/.libs/cmpd_dset differ diff --git a/build/test/.libs/cross_read b/build/test/.libs/cross_read new file mode 100755 index 0000000..562bbcb Binary files /dev/null and b/build/test/.libs/cross_read differ diff --git a/build/test/.libs/dangle b/build/test/.libs/dangle new file mode 100755 index 0000000..0149c62 Binary files /dev/null and b/build/test/.libs/dangle differ diff --git a/build/test/.libs/dsets b/build/test/.libs/dsets new file mode 100755 index 0000000..942339c Binary files /dev/null and b/build/test/.libs/dsets differ diff --git a/build/test/.libs/dt_arith b/build/test/.libs/dt_arith new file mode 100755 index 0000000..319b2aa Binary files /dev/null and b/build/test/.libs/dt_arith differ diff --git a/build/test/.libs/dtransform b/build/test/.libs/dtransform new file mode 100755 index 0000000..c0b0ead Binary files /dev/null and b/build/test/.libs/dtransform differ diff --git a/build/test/.libs/dtypes b/build/test/.libs/dtypes new file mode 100755 index 0000000..eafb71a Binary files /dev/null and b/build/test/.libs/dtypes differ diff --git a/build/test/.libs/dynlib1.o b/build/test/.libs/dynlib1.o new file mode 100644 index 0000000..cdef9a1 Binary files /dev/null and b/build/test/.libs/dynlib1.o differ diff --git a/build/test/.libs/dynlib2.o b/build/test/.libs/dynlib2.o new file mode 100644 index 0000000..88f3077 Binary files /dev/null and b/build/test/.libs/dynlib2.o differ diff --git a/build/test/.libs/dynlib3.o b/build/test/.libs/dynlib3.o new file mode 100644 index 0000000..58308d5 Binary files /dev/null and b/build/test/.libs/dynlib3.o differ diff --git a/build/test/.libs/dynlib4.o b/build/test/.libs/dynlib4.o new file mode 100644 index 0000000..75473a4 Binary files /dev/null and b/build/test/.libs/dynlib4.o differ diff --git a/build/test/.libs/efc b/build/test/.libs/efc new file mode 100755 index 0000000..b787e3c Binary files /dev/null and b/build/test/.libs/efc differ diff --git a/build/test/.libs/enum b/build/test/.libs/enum new file mode 100755 index 0000000..13ae385 Binary files /dev/null and b/build/test/.libs/enum differ diff --git a/build/test/.libs/err_compat b/build/test/.libs/err_compat new file mode 100755 index 0000000..d1a2793 Binary files /dev/null and b/build/test/.libs/err_compat differ diff --git a/build/test/.libs/error_test b/build/test/.libs/error_test new file mode 100755 index 0000000..65a5059 Binary files /dev/null and b/build/test/.libs/error_test differ diff --git a/build/test/.libs/extend b/build/test/.libs/extend new file mode 100755 index 0000000..0262401 Binary files /dev/null and b/build/test/.libs/extend differ diff --git a/build/test/.libs/external b/build/test/.libs/external new file mode 100755 index 0000000..65550f4 Binary files /dev/null and b/build/test/.libs/external differ diff --git a/build/test/.libs/fheap b/build/test/.libs/fheap new file mode 100755 index 0000000..2c4ead1 Binary files /dev/null and b/build/test/.libs/fheap differ diff --git a/build/test/.libs/file_image b/build/test/.libs/file_image new file mode 100755 index 0000000..8661f5b Binary files /dev/null and b/build/test/.libs/file_image differ diff --git a/build/test/.libs/fillval b/build/test/.libs/fillval new file mode 100755 index 0000000..7431c88 Binary files /dev/null and b/build/test/.libs/fillval differ diff --git a/build/test/.libs/filter_fail b/build/test/.libs/filter_fail new file mode 100755 index 0000000..14aee5f Binary files /dev/null and b/build/test/.libs/filter_fail differ diff --git a/build/test/.libs/flush1 b/build/test/.libs/flush1 new file mode 100755 index 0000000..3ca4e06 Binary files /dev/null and b/build/test/.libs/flush1 differ diff --git a/build/test/.libs/flush2 b/build/test/.libs/flush2 new file mode 100755 index 0000000..e1e963a Binary files /dev/null and b/build/test/.libs/flush2 differ diff --git a/build/test/.libs/freespace b/build/test/.libs/freespace new file mode 100755 index 0000000..420bda2 Binary files /dev/null and b/build/test/.libs/freespace differ diff --git a/build/test/.libs/getname b/build/test/.libs/getname new file mode 100755 index 0000000..899bf5e Binary files /dev/null and b/build/test/.libs/getname differ diff --git a/build/test/.libs/gheap b/build/test/.libs/gheap new file mode 100755 index 0000000..bd504c9 Binary files /dev/null and b/build/test/.libs/gheap differ diff --git a/build/test/.libs/h5test.o b/build/test/.libs/h5test.o new file mode 100644 index 0000000..f30f75f Binary files /dev/null and b/build/test/.libs/h5test.o differ diff --git a/build/test/.libs/hyperslab b/build/test/.libs/hyperslab new file mode 100755 index 0000000..8e954da Binary files /dev/null and b/build/test/.libs/hyperslab differ diff --git a/build/test/.libs/istore b/build/test/.libs/istore new file mode 100755 index 0000000..8cde433 Binary files /dev/null and b/build/test/.libs/istore differ diff --git a/build/test/.libs/lheap b/build/test/.libs/lheap new file mode 100755 index 0000000..1f11c22 Binary files /dev/null and b/build/test/.libs/lheap differ diff --git a/build/test/.libs/libdynlib1.la b/build/test/.libs/libdynlib1.la new file mode 120000 index 0000000..a08c6aa --- /dev/null +++ b/build/test/.libs/libdynlib1.la @@ -0,0 +1 @@ +../libdynlib1.la \ No newline at end of file diff --git a/build/test/.libs/libdynlib1.lai b/build/test/.libs/libdynlib1.lai new file mode 100644 index 0000000..37ce1a8 --- /dev/null +++ b/build/test/.libs/libdynlib1.lai @@ -0,0 +1,41 @@ +# libdynlib1.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib1.so' + +# Names of this library. +library_names='libdynlib1.so libdynlib1.so libdynlib1.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib1. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/.libs/libdynlib1.so b/build/test/.libs/libdynlib1.so new file mode 100755 index 0000000..fcf4057 Binary files /dev/null and b/build/test/.libs/libdynlib1.so differ diff --git a/build/test/.libs/libdynlib2.la b/build/test/.libs/libdynlib2.la new file mode 120000 index 0000000..2d06db0 --- /dev/null +++ b/build/test/.libs/libdynlib2.la @@ -0,0 +1 @@ +../libdynlib2.la \ No newline at end of file diff --git a/build/test/.libs/libdynlib2.lai b/build/test/.libs/libdynlib2.lai new file mode 100644 index 0000000..076e242 --- /dev/null +++ b/build/test/.libs/libdynlib2.lai @@ -0,0 +1,41 @@ +# libdynlib2.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib2.so' + +# Names of this library. +library_names='libdynlib2.so libdynlib2.so libdynlib2.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib2. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/.libs/libdynlib2.so b/build/test/.libs/libdynlib2.so new file mode 100755 index 0000000..f58d7c1 Binary files /dev/null and b/build/test/.libs/libdynlib2.so differ diff --git a/build/test/.libs/libdynlib3.la b/build/test/.libs/libdynlib3.la new file mode 120000 index 0000000..d2a36a9 --- /dev/null +++ b/build/test/.libs/libdynlib3.la @@ -0,0 +1 @@ +../libdynlib3.la \ No newline at end of file diff --git a/build/test/.libs/libdynlib3.lai b/build/test/.libs/libdynlib3.lai new file mode 100644 index 0000000..f742050 --- /dev/null +++ b/build/test/.libs/libdynlib3.lai @@ -0,0 +1,41 @@ +# libdynlib3.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib3.so' + +# Names of this library. +library_names='libdynlib3.so libdynlib3.so libdynlib3.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib3. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/.libs/libdynlib3.so b/build/test/.libs/libdynlib3.so new file mode 100755 index 0000000..7b86337 Binary files /dev/null and b/build/test/.libs/libdynlib3.so differ diff --git a/build/test/.libs/libdynlib4.la b/build/test/.libs/libdynlib4.la new file mode 120000 index 0000000..5195b04 --- /dev/null +++ b/build/test/.libs/libdynlib4.la @@ -0,0 +1 @@ +../libdynlib4.la \ No newline at end of file diff --git a/build/test/.libs/libdynlib4.lai b/build/test/.libs/libdynlib4.lai new file mode 100644 index 0000000..daef0e8 --- /dev/null +++ b/build/test/.libs/libdynlib4.lai @@ -0,0 +1,41 @@ +# libdynlib4.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib4.so' + +# Names of this library. +library_names='libdynlib4.so libdynlib4.so libdynlib4.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib4. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/.libs/libdynlib4.so b/build/test/.libs/libdynlib4.so new file mode 100755 index 0000000..74e7213 Binary files /dev/null and b/build/test/.libs/libdynlib4.so differ diff --git a/build/test/.libs/libh5test.a b/build/test/.libs/libh5test.a new file mode 100644 index 0000000..3fc447e Binary files /dev/null and b/build/test/.libs/libh5test.a differ diff --git a/build/test/.libs/libh5test.la b/build/test/.libs/libh5test.la new file mode 120000 index 0000000..a2fc17a --- /dev/null +++ b/build/test/.libs/libh5test.la @@ -0,0 +1 @@ +../libh5test.la \ No newline at end of file diff --git a/build/test/.libs/links b/build/test/.libs/links new file mode 100755 index 0000000..e756cdd Binary files /dev/null and b/build/test/.libs/links differ diff --git a/build/test/.libs/links_env b/build/test/.libs/links_env new file mode 100755 index 0000000..d0fbf68 Binary files /dev/null and b/build/test/.libs/links_env differ diff --git a/build/test/.libs/lt-accum b/build/test/.libs/lt-accum new file mode 100755 index 0000000..0fb79c0 Binary files /dev/null and b/build/test/.libs/lt-accum differ diff --git a/build/test/.libs/lt-app_ref b/build/test/.libs/lt-app_ref new file mode 100755 index 0000000..ec0f7d0 Binary files /dev/null and b/build/test/.libs/lt-app_ref differ diff --git a/build/test/.libs/lt-big b/build/test/.libs/lt-big new file mode 100755 index 0000000..1c24120 Binary files /dev/null and b/build/test/.libs/lt-big differ diff --git a/build/test/.libs/lt-bittests b/build/test/.libs/lt-bittests new file mode 100755 index 0000000..2e05d03 Binary files /dev/null and b/build/test/.libs/lt-bittests differ diff --git a/build/test/.libs/lt-btree2 b/build/test/.libs/lt-btree2 new file mode 100755 index 0000000..859c6a3 Binary files /dev/null and b/build/test/.libs/lt-btree2 differ diff --git a/build/test/.libs/lt-cache b/build/test/.libs/lt-cache new file mode 100755 index 0000000..0e050dc Binary files /dev/null and b/build/test/.libs/lt-cache differ diff --git a/build/test/.libs/lt-cache_api b/build/test/.libs/lt-cache_api new file mode 100755 index 0000000..a99864c Binary files /dev/null and b/build/test/.libs/lt-cache_api differ diff --git a/build/test/.libs/lt-cmpd_dset b/build/test/.libs/lt-cmpd_dset new file mode 100755 index 0000000..36f125b Binary files /dev/null and b/build/test/.libs/lt-cmpd_dset differ diff --git a/build/test/.libs/lt-cross_read b/build/test/.libs/lt-cross_read new file mode 100755 index 0000000..7adccbb Binary files /dev/null and b/build/test/.libs/lt-cross_read differ diff --git a/build/test/.libs/lt-dangle b/build/test/.libs/lt-dangle new file mode 100755 index 0000000..fcc8fe4 Binary files /dev/null and b/build/test/.libs/lt-dangle differ diff --git a/build/test/.libs/lt-dsets b/build/test/.libs/lt-dsets new file mode 100755 index 0000000..46b1dbf Binary files /dev/null and b/build/test/.libs/lt-dsets differ diff --git a/build/test/.libs/lt-dt_arith b/build/test/.libs/lt-dt_arith new file mode 100755 index 0000000..316726e Binary files /dev/null and b/build/test/.libs/lt-dt_arith differ diff --git a/build/test/.libs/lt-dtransform b/build/test/.libs/lt-dtransform new file mode 100755 index 0000000..456984a Binary files /dev/null and b/build/test/.libs/lt-dtransform differ diff --git a/build/test/.libs/lt-dtypes b/build/test/.libs/lt-dtypes new file mode 100755 index 0000000..5a331cd Binary files /dev/null and b/build/test/.libs/lt-dtypes differ diff --git a/build/test/.libs/lt-efc b/build/test/.libs/lt-efc new file mode 100755 index 0000000..6b128fd Binary files /dev/null and b/build/test/.libs/lt-efc differ diff --git a/build/test/.libs/lt-enum b/build/test/.libs/lt-enum new file mode 100755 index 0000000..cc685db Binary files /dev/null and b/build/test/.libs/lt-enum differ diff --git a/build/test/.libs/lt-err_compat b/build/test/.libs/lt-err_compat new file mode 100755 index 0000000..f9a6098 Binary files /dev/null and b/build/test/.libs/lt-err_compat differ diff --git a/build/test/.libs/lt-error_test b/build/test/.libs/lt-error_test new file mode 100755 index 0000000..5979636 Binary files /dev/null and b/build/test/.libs/lt-error_test differ diff --git a/build/test/.libs/lt-extend b/build/test/.libs/lt-extend new file mode 100755 index 0000000..b29bf4e Binary files /dev/null and b/build/test/.libs/lt-extend differ diff --git a/build/test/.libs/lt-external b/build/test/.libs/lt-external new file mode 100755 index 0000000..7d0a3f7 Binary files /dev/null and b/build/test/.libs/lt-external differ diff --git a/build/test/.libs/lt-fheap b/build/test/.libs/lt-fheap new file mode 100755 index 0000000..71ae2c3 Binary files /dev/null and b/build/test/.libs/lt-fheap differ diff --git a/build/test/.libs/lt-file_image b/build/test/.libs/lt-file_image new file mode 100755 index 0000000..8cc7899 Binary files /dev/null and b/build/test/.libs/lt-file_image differ diff --git a/build/test/.libs/lt-fillval b/build/test/.libs/lt-fillval new file mode 100755 index 0000000..34cdfc0 Binary files /dev/null and b/build/test/.libs/lt-fillval differ diff --git a/build/test/.libs/lt-filter_fail b/build/test/.libs/lt-filter_fail new file mode 100755 index 0000000..3ca8287 Binary files /dev/null and b/build/test/.libs/lt-filter_fail differ diff --git a/build/test/.libs/lt-flush1 b/build/test/.libs/lt-flush1 new file mode 100755 index 0000000..af0b0d1 Binary files /dev/null and b/build/test/.libs/lt-flush1 differ diff --git a/build/test/.libs/lt-flush2 b/build/test/.libs/lt-flush2 new file mode 100755 index 0000000..e98c5c0 Binary files /dev/null and b/build/test/.libs/lt-flush2 differ diff --git a/build/test/.libs/lt-freespace b/build/test/.libs/lt-freespace new file mode 100755 index 0000000..9d0025c Binary files /dev/null and b/build/test/.libs/lt-freespace differ diff --git a/build/test/.libs/lt-getname b/build/test/.libs/lt-getname new file mode 100755 index 0000000..ea19837 Binary files /dev/null and b/build/test/.libs/lt-getname differ diff --git a/build/test/.libs/lt-gheap b/build/test/.libs/lt-gheap new file mode 100755 index 0000000..830fda5 Binary files /dev/null and b/build/test/.libs/lt-gheap differ diff --git a/build/test/.libs/lt-hyperslab b/build/test/.libs/lt-hyperslab new file mode 100755 index 0000000..edc1f07 Binary files /dev/null and b/build/test/.libs/lt-hyperslab differ diff --git a/build/test/.libs/lt-istore b/build/test/.libs/lt-istore new file mode 100755 index 0000000..edfad64 Binary files /dev/null and b/build/test/.libs/lt-istore differ diff --git a/build/test/.libs/lt-lheap b/build/test/.libs/lt-lheap new file mode 100755 index 0000000..a305a84 Binary files /dev/null and b/build/test/.libs/lt-lheap differ diff --git a/build/test/.libs/lt-links b/build/test/.libs/lt-links new file mode 100755 index 0000000..3e27e1b Binary files /dev/null and b/build/test/.libs/lt-links differ diff --git a/build/test/.libs/lt-links_env b/build/test/.libs/lt-links_env new file mode 100755 index 0000000..a6d8fed Binary files /dev/null and b/build/test/.libs/lt-links_env differ diff --git a/build/test/.libs/lt-mf b/build/test/.libs/lt-mf new file mode 100755 index 0000000..f9d1c69 Binary files /dev/null and b/build/test/.libs/lt-mf differ diff --git a/build/test/.libs/lt-mount b/build/test/.libs/lt-mount new file mode 100755 index 0000000..69c64b3 Binary files /dev/null and b/build/test/.libs/lt-mount differ diff --git a/build/test/.libs/lt-mtime b/build/test/.libs/lt-mtime new file mode 100755 index 0000000..d1427bb Binary files /dev/null and b/build/test/.libs/lt-mtime differ diff --git a/build/test/.libs/lt-ntypes b/build/test/.libs/lt-ntypes new file mode 100755 index 0000000..3b099a2 Binary files /dev/null and b/build/test/.libs/lt-ntypes differ diff --git a/build/test/.libs/lt-objcopy b/build/test/.libs/lt-objcopy new file mode 100755 index 0000000..e0dd82d Binary files /dev/null and b/build/test/.libs/lt-objcopy differ diff --git a/build/test/.libs/lt-ohdr b/build/test/.libs/lt-ohdr new file mode 100755 index 0000000..3589b8c Binary files /dev/null and b/build/test/.libs/lt-ohdr differ diff --git a/build/test/.libs/lt-plugin b/build/test/.libs/lt-plugin new file mode 100755 index 0000000..3f5619d Binary files /dev/null and b/build/test/.libs/lt-plugin differ diff --git a/build/test/.libs/lt-pool b/build/test/.libs/lt-pool new file mode 100755 index 0000000..9cf2367 Binary files /dev/null and b/build/test/.libs/lt-pool differ diff --git a/build/test/.libs/lt-reserved b/build/test/.libs/lt-reserved new file mode 100755 index 0000000..3317fc8 Binary files /dev/null and b/build/test/.libs/lt-reserved differ diff --git a/build/test/.libs/lt-set_extent b/build/test/.libs/lt-set_extent new file mode 100755 index 0000000..57fca66 Binary files /dev/null and b/build/test/.libs/lt-set_extent differ diff --git a/build/test/.libs/lt-stab b/build/test/.libs/lt-stab new file mode 100755 index 0000000..0b1804f Binary files /dev/null and b/build/test/.libs/lt-stab differ diff --git a/build/test/.libs/lt-tcheck_version b/build/test/.libs/lt-tcheck_version new file mode 100755 index 0000000..206a1c0 Binary files /dev/null and b/build/test/.libs/lt-tcheck_version differ diff --git a/build/test/.libs/lt-testhdf5 b/build/test/.libs/lt-testhdf5 new file mode 100755 index 0000000..2f3aec7 Binary files /dev/null and b/build/test/.libs/lt-testhdf5 differ diff --git a/build/test/.libs/lt-ttsafe b/build/test/.libs/lt-ttsafe new file mode 100755 index 0000000..abf029f Binary files /dev/null and b/build/test/.libs/lt-ttsafe differ diff --git a/build/test/.libs/lt-unlink b/build/test/.libs/lt-unlink new file mode 100755 index 0000000..b27fb60 Binary files /dev/null and b/build/test/.libs/lt-unlink differ diff --git a/build/test/.libs/lt-unregister b/build/test/.libs/lt-unregister new file mode 100755 index 0000000..dd35f97 Binary files /dev/null and b/build/test/.libs/lt-unregister differ diff --git a/build/test/.libs/lt-vfd b/build/test/.libs/lt-vfd new file mode 100755 index 0000000..94c0816 Binary files /dev/null and b/build/test/.libs/lt-vfd differ diff --git a/build/test/.libs/mf b/build/test/.libs/mf new file mode 100755 index 0000000..69b1b08 Binary files /dev/null and b/build/test/.libs/mf differ diff --git a/build/test/.libs/mount b/build/test/.libs/mount new file mode 100755 index 0000000..b973afc Binary files /dev/null and b/build/test/.libs/mount differ diff --git a/build/test/.libs/mtime b/build/test/.libs/mtime new file mode 100755 index 0000000..1b39282 Binary files /dev/null and b/build/test/.libs/mtime differ diff --git a/build/test/.libs/ntypes b/build/test/.libs/ntypes new file mode 100755 index 0000000..efadb1c Binary files /dev/null and b/build/test/.libs/ntypes differ diff --git a/build/test/.libs/objcopy b/build/test/.libs/objcopy new file mode 100755 index 0000000..d55d5fc Binary files /dev/null and b/build/test/.libs/objcopy differ diff --git a/build/test/.libs/ohdr b/build/test/.libs/ohdr new file mode 100755 index 0000000..c007f95 Binary files /dev/null and b/build/test/.libs/ohdr differ diff --git a/build/test/.libs/plugin b/build/test/.libs/plugin new file mode 100755 index 0000000..e29e8fc Binary files /dev/null and b/build/test/.libs/plugin differ diff --git a/build/test/.libs/pool b/build/test/.libs/pool new file mode 100755 index 0000000..0e704f8 Binary files /dev/null and b/build/test/.libs/pool differ diff --git a/build/test/.libs/reserved b/build/test/.libs/reserved new file mode 100755 index 0000000..2e082c0 Binary files /dev/null and b/build/test/.libs/reserved differ diff --git a/build/test/.libs/set_extent b/build/test/.libs/set_extent new file mode 100755 index 0000000..52a8d8a Binary files /dev/null and b/build/test/.libs/set_extent differ diff --git a/build/test/.libs/stab b/build/test/.libs/stab new file mode 100755 index 0000000..5aecc1b Binary files /dev/null and b/build/test/.libs/stab differ diff --git a/build/test/.libs/tcheck_version b/build/test/.libs/tcheck_version new file mode 100755 index 0000000..0e2ea76 Binary files /dev/null and b/build/test/.libs/tcheck_version differ diff --git a/build/test/.libs/testframe.o b/build/test/.libs/testframe.o new file mode 100644 index 0000000..2cbbfb7 Binary files /dev/null and b/build/test/.libs/testframe.o differ diff --git a/build/test/.libs/testhdf5 b/build/test/.libs/testhdf5 new file mode 100755 index 0000000..4b70c75 Binary files /dev/null and b/build/test/.libs/testhdf5 differ diff --git a/build/test/.libs/testmeta b/build/test/.libs/testmeta new file mode 100755 index 0000000..8ac2468 Binary files /dev/null and b/build/test/.libs/testmeta differ diff --git a/build/test/.libs/ttsafe b/build/test/.libs/ttsafe new file mode 100755 index 0000000..efef8b1 Binary files /dev/null and b/build/test/.libs/ttsafe differ diff --git a/build/test/.libs/unlink b/build/test/.libs/unlink new file mode 100755 index 0000000..0b6394a Binary files /dev/null and b/build/test/.libs/unlink differ diff --git a/build/test/.libs/unregister b/build/test/.libs/unregister new file mode 100755 index 0000000..a03fcee Binary files /dev/null and b/build/test/.libs/unregister differ diff --git a/build/test/.libs/vfd b/build/test/.libs/vfd new file mode 100755 index 0000000..bb0f28e Binary files /dev/null and b/build/test/.libs/vfd differ diff --git a/build/test/H5srcdir_str.h b/build/test/H5srcdir_str.h new file mode 100644 index 0000000..d3a40d6 --- /dev/null +++ b/build/test/H5srcdir_str.h @@ -0,0 +1,20 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by The HDF Group. * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the COPYING file, which can be found at the root of the source code * + * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * + * If you do not have access to either file, you may request a copy from * + * help@hdfgroup.org. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/* If you are reading this file and it has a '.h' suffix, it was automatically + * generated from the '.in' version. Make changes there. + */ + +/* Set the 'srcdir' path from configure time */ +static const char *config_srcdir = "../../test"; + diff --git a/build/test/Makefile b/build/test/Makefile new file mode 100644 index 0000000..f64625e --- /dev/null +++ b/build/test/Makefile @@ -0,0 +1,2650 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Test Makefile(.in) +# + + +VPATH = ../../test +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +am__append_1 = test_plugin.sh +am__append_2 = plugin$(EXEEXT) +check_PROGRAMS = $(am__EXEEXT_1) error_test$(EXEEXT) \ + err_compat$(EXEEXT) tcheck_version$(EXEEXT) testmeta$(EXEEXT) \ + links_env$(EXEEXT) $(am__EXEEXT_2) +am__append_3 = plugin +#noinst_PROGRAMS = $(am__EXEEXT_3) +#am__append_4 = direct +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = testcheck_version.sh testerror.sh H5srcdir_str.h \ + testlibinfo.sh testlinks_env.sh test_plugin.sh +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libdynlib1_la_LIBADD = +am__libdynlib1_la_SOURCES_DIST = dynlib1.c +am_libdynlib1_la_OBJECTS = dynlib1.lo +libdynlib1_la_OBJECTS = $(am_libdynlib1_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libdynlib1_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libdynlib1_la_LDFLAGS) $(LDFLAGS) -o $@ +am_libdynlib1_la_rpath = +libdynlib2_la_LIBADD = +am__libdynlib2_la_SOURCES_DIST = dynlib2.c +am_libdynlib2_la_OBJECTS = dynlib2.lo +libdynlib2_la_OBJECTS = $(am_libdynlib2_la_OBJECTS) +libdynlib2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libdynlib2_la_LDFLAGS) $(LDFLAGS) -o $@ +am_libdynlib2_la_rpath = +libdynlib3_la_LIBADD = +am__libdynlib3_la_SOURCES_DIST = dynlib3.c +am_libdynlib3_la_OBJECTS = dynlib3.lo +libdynlib3_la_OBJECTS = $(am_libdynlib3_la_OBJECTS) +libdynlib3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libdynlib3_la_LDFLAGS) $(LDFLAGS) -o $@ +am_libdynlib3_la_rpath = +libdynlib4_la_LIBADD = +am__libdynlib4_la_SOURCES_DIST = dynlib4.c +am_libdynlib4_la_OBJECTS = dynlib4.lo +libdynlib4_la_OBJECTS = $(am_libdynlib4_la_OBJECTS) +libdynlib4_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libdynlib4_la_LDFLAGS) $(LDFLAGS) -o $@ +am_libdynlib4_la_rpath = +libh5test_la_LIBADD = +am_libh5test_la_OBJECTS = h5test.lo testframe.lo cache_common.lo +libh5test_la_OBJECTS = $(am_libh5test_la_OBJECTS) +#am_libh5test_la_rpath = +am_libh5test_la_rpath = +am__EXEEXT_1 = testhdf5$(EXEEXT) lheap$(EXEEXT) ohdr$(EXEEXT) \ + stab$(EXEEXT) gheap$(EXEEXT) cache$(EXEEXT) cache_api$(EXEEXT) \ + pool$(EXEEXT) accum$(EXEEXT) hyperslab$(EXEEXT) \ + istore$(EXEEXT) bittests$(EXEEXT) dt_arith$(EXEEXT) \ + dtypes$(EXEEXT) dsets$(EXEEXT) cmpd_dset$(EXEEXT) \ + filter_fail$(EXEEXT) extend$(EXEEXT) external$(EXEEXT) \ + efc$(EXEEXT) objcopy$(EXEEXT) links$(EXEEXT) unlink$(EXEEXT) \ + big$(EXEEXT) mtime$(EXEEXT) fillval$(EXEEXT) mount$(EXEEXT) \ + flush1$(EXEEXT) flush2$(EXEEXT) app_ref$(EXEEXT) enum$(EXEEXT) \ + set_extent$(EXEEXT) ttsafe$(EXEEXT) getname$(EXEEXT) \ + vfd$(EXEEXT) ntypes$(EXEEXT) dangle$(EXEEXT) \ + dtransform$(EXEEXT) reserved$(EXEEXT) cross_read$(EXEEXT) \ + freespace$(EXEEXT) mf$(EXEEXT) btree2$(EXEEXT) fheap$(EXEEXT) \ + file_image$(EXEEXT) unregister$(EXEEXT) +am__EXEEXT_2 = plugin$(EXEEXT) +am__EXEEXT_3 = gen_bad_ohdr$(EXEEXT) gen_bogus$(EXEEXT) \ + gen_cross$(EXEEXT) gen_deflate$(EXEEXT) gen_filters$(EXEEXT) \ + gen_idx$(EXEEXT) gen_new_array$(EXEEXT) gen_new_fill$(EXEEXT) \ + gen_new_group$(EXEEXT) gen_new_mtime$(EXEEXT) \ + gen_new_super$(EXEEXT) gen_noencoder$(EXEEXT) \ + gen_nullspace$(EXEEXT) gen_udlinks$(EXEEXT) \ + space_overflow$(EXEEXT) gen_sizes_lheap$(EXEEXT) \ + gen_file_image$(EXEEXT) gen_bad_offset$(EXEEXT) +PROGRAMS = $(noinst_PROGRAMS) +accum_SOURCES = accum.c +accum_OBJECTS = accum.$(OBJEXT) +accum_LDADD = $(LDADD) +accum_DEPENDENCIES = libh5test.la $(LIBHDF5) +app_ref_SOURCES = app_ref.c +app_ref_OBJECTS = app_ref.$(OBJEXT) +app_ref_LDADD = $(LDADD) +app_ref_DEPENDENCIES = libh5test.la $(LIBHDF5) +big_SOURCES = big.c +big_OBJECTS = big.$(OBJEXT) +big_LDADD = $(LDADD) +big_DEPENDENCIES = libh5test.la $(LIBHDF5) +bittests_SOURCES = bittests.c +bittests_OBJECTS = bittests.$(OBJEXT) +bittests_LDADD = $(LDADD) +bittests_DEPENDENCIES = libh5test.la $(LIBHDF5) +btree2_SOURCES = btree2.c +btree2_OBJECTS = btree2.$(OBJEXT) +btree2_LDADD = $(LDADD) +btree2_DEPENDENCIES = libh5test.la $(LIBHDF5) +cache_SOURCES = cache.c +cache_OBJECTS = cache.$(OBJEXT) +cache_LDADD = $(LDADD) +cache_DEPENDENCIES = libh5test.la $(LIBHDF5) +cache_api_SOURCES = cache_api.c +cache_api_OBJECTS = cache_api.$(OBJEXT) +cache_api_LDADD = $(LDADD) +cache_api_DEPENDENCIES = libh5test.la $(LIBHDF5) +cmpd_dset_SOURCES = cmpd_dset.c +cmpd_dset_OBJECTS = cmpd_dset.$(OBJEXT) +cmpd_dset_LDADD = $(LDADD) +cmpd_dset_DEPENDENCIES = libh5test.la $(LIBHDF5) +cross_read_SOURCES = cross_read.c +cross_read_OBJECTS = cross_read.$(OBJEXT) +cross_read_LDADD = $(LDADD) +cross_read_DEPENDENCIES = libh5test.la $(LIBHDF5) +dangle_SOURCES = dangle.c +dangle_OBJECTS = dangle.$(OBJEXT) +dangle_LDADD = $(LDADD) +dangle_DEPENDENCIES = libh5test.la $(LIBHDF5) +dsets_SOURCES = dsets.c +dsets_OBJECTS = dsets.$(OBJEXT) +dsets_LDADD = $(LDADD) +dsets_DEPENDENCIES = libh5test.la $(LIBHDF5) +dt_arith_SOURCES = dt_arith.c +dt_arith_OBJECTS = dt_arith.$(OBJEXT) +dt_arith_LDADD = $(LDADD) +dt_arith_DEPENDENCIES = libh5test.la $(LIBHDF5) +dtransform_SOURCES = dtransform.c +dtransform_OBJECTS = dtransform.$(OBJEXT) +dtransform_LDADD = $(LDADD) +dtransform_DEPENDENCIES = libh5test.la $(LIBHDF5) +dtypes_SOURCES = dtypes.c +dtypes_OBJECTS = dtypes.$(OBJEXT) +dtypes_LDADD = $(LDADD) +dtypes_DEPENDENCIES = libh5test.la $(LIBHDF5) +efc_SOURCES = efc.c +efc_OBJECTS = efc.$(OBJEXT) +efc_LDADD = $(LDADD) +efc_DEPENDENCIES = libh5test.la $(LIBHDF5) +enum_SOURCES = enum.c +enum_OBJECTS = enum.$(OBJEXT) +enum_LDADD = $(LDADD) +enum_DEPENDENCIES = libh5test.la $(LIBHDF5) +err_compat_SOURCES = err_compat.c +err_compat_OBJECTS = err_compat.$(OBJEXT) +err_compat_LDADD = $(LDADD) +err_compat_DEPENDENCIES = libh5test.la $(LIBHDF5) +error_test_SOURCES = error_test.c +error_test_OBJECTS = error_test.$(OBJEXT) +error_test_LDADD = $(LDADD) +error_test_DEPENDENCIES = libh5test.la $(LIBHDF5) +extend_SOURCES = extend.c +extend_OBJECTS = extend.$(OBJEXT) +extend_LDADD = $(LDADD) +extend_DEPENDENCIES = libh5test.la $(LIBHDF5) +external_SOURCES = external.c +external_OBJECTS = external.$(OBJEXT) +external_LDADD = $(LDADD) +external_DEPENDENCIES = libh5test.la $(LIBHDF5) +fheap_SOURCES = fheap.c +fheap_OBJECTS = fheap.$(OBJEXT) +fheap_LDADD = $(LDADD) +fheap_DEPENDENCIES = libh5test.la $(LIBHDF5) +file_image_SOURCES = file_image.c +file_image_OBJECTS = file_image.$(OBJEXT) +file_image_LDADD = $(LDADD) +file_image_DEPENDENCIES = libh5test.la $(LIBHDF5) +fillval_SOURCES = fillval.c +fillval_OBJECTS = fillval.$(OBJEXT) +fillval_LDADD = $(LDADD) +fillval_DEPENDENCIES = libh5test.la $(LIBHDF5) +filter_fail_SOURCES = filter_fail.c +filter_fail_OBJECTS = filter_fail.$(OBJEXT) +filter_fail_LDADD = $(LDADD) +filter_fail_DEPENDENCIES = libh5test.la $(LIBHDF5) +flush1_SOURCES = flush1.c +flush1_OBJECTS = flush1.$(OBJEXT) +flush1_LDADD = $(LDADD) +flush1_DEPENDENCIES = libh5test.la $(LIBHDF5) +flush2_SOURCES = flush2.c +flush2_OBJECTS = flush2.$(OBJEXT) +flush2_LDADD = $(LDADD) +flush2_DEPENDENCIES = libh5test.la $(LIBHDF5) +freespace_SOURCES = freespace.c +freespace_OBJECTS = freespace.$(OBJEXT) +freespace_LDADD = $(LDADD) +freespace_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_bad_offset_SOURCES = gen_bad_offset.c +gen_bad_offset_OBJECTS = gen_bad_offset.$(OBJEXT) +gen_bad_offset_LDADD = $(LDADD) +gen_bad_offset_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_bad_ohdr_SOURCES = gen_bad_ohdr.c +gen_bad_ohdr_OBJECTS = gen_bad_ohdr.$(OBJEXT) +gen_bad_ohdr_LDADD = $(LDADD) +gen_bad_ohdr_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_bogus_SOURCES = gen_bogus.c +gen_bogus_OBJECTS = gen_bogus.$(OBJEXT) +gen_bogus_LDADD = $(LDADD) +gen_bogus_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_cross_SOURCES = gen_cross.c +gen_cross_OBJECTS = gen_cross.$(OBJEXT) +gen_cross_LDADD = $(LDADD) +gen_cross_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_deflate_SOURCES = gen_deflate.c +gen_deflate_OBJECTS = gen_deflate.$(OBJEXT) +gen_deflate_LDADD = $(LDADD) +gen_deflate_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_file_image_SOURCES = gen_file_image.c +gen_file_image_OBJECTS = gen_file_image.$(OBJEXT) +gen_file_image_LDADD = $(LDADD) +gen_file_image_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_filters_SOURCES = gen_filters.c +gen_filters_OBJECTS = gen_filters.$(OBJEXT) +gen_filters_LDADD = $(LDADD) +gen_filters_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_idx_SOURCES = gen_idx.c +gen_idx_OBJECTS = gen_idx.$(OBJEXT) +gen_idx_LDADD = $(LDADD) +gen_idx_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_new_array_SOURCES = gen_new_array.c +gen_new_array_OBJECTS = gen_new_array.$(OBJEXT) +gen_new_array_LDADD = $(LDADD) +gen_new_array_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_new_fill_SOURCES = gen_new_fill.c +gen_new_fill_OBJECTS = gen_new_fill.$(OBJEXT) +gen_new_fill_LDADD = $(LDADD) +gen_new_fill_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_new_group_SOURCES = gen_new_group.c +gen_new_group_OBJECTS = gen_new_group.$(OBJEXT) +gen_new_group_LDADD = $(LDADD) +gen_new_group_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_new_mtime_SOURCES = gen_new_mtime.c +gen_new_mtime_OBJECTS = gen_new_mtime.$(OBJEXT) +gen_new_mtime_LDADD = $(LDADD) +gen_new_mtime_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_new_super_SOURCES = gen_new_super.c +gen_new_super_OBJECTS = gen_new_super.$(OBJEXT) +gen_new_super_LDADD = $(LDADD) +gen_new_super_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_noencoder_SOURCES = gen_noencoder.c +gen_noencoder_OBJECTS = gen_noencoder.$(OBJEXT) +gen_noencoder_LDADD = $(LDADD) +gen_noencoder_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_nullspace_SOURCES = gen_nullspace.c +gen_nullspace_OBJECTS = gen_nullspace.$(OBJEXT) +gen_nullspace_LDADD = $(LDADD) +gen_nullspace_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_sizes_lheap_SOURCES = gen_sizes_lheap.c +gen_sizes_lheap_OBJECTS = gen_sizes_lheap.$(OBJEXT) +gen_sizes_lheap_LDADD = $(LDADD) +gen_sizes_lheap_DEPENDENCIES = libh5test.la $(LIBHDF5) +gen_udlinks_SOURCES = gen_udlinks.c +gen_udlinks_OBJECTS = gen_udlinks.$(OBJEXT) +gen_udlinks_LDADD = $(LDADD) +gen_udlinks_DEPENDENCIES = libh5test.la $(LIBHDF5) +getname_SOURCES = getname.c +getname_OBJECTS = getname.$(OBJEXT) +getname_LDADD = $(LDADD) +getname_DEPENDENCIES = libh5test.la $(LIBHDF5) +gheap_SOURCES = gheap.c +gheap_OBJECTS = gheap.$(OBJEXT) +gheap_LDADD = $(LDADD) +gheap_DEPENDENCIES = libh5test.la $(LIBHDF5) +hyperslab_SOURCES = hyperslab.c +hyperslab_OBJECTS = hyperslab.$(OBJEXT) +hyperslab_LDADD = $(LDADD) +hyperslab_DEPENDENCIES = libh5test.la $(LIBHDF5) +istore_SOURCES = istore.c +istore_OBJECTS = istore.$(OBJEXT) +istore_LDADD = $(LDADD) +istore_DEPENDENCIES = libh5test.la $(LIBHDF5) +lheap_SOURCES = lheap.c +lheap_OBJECTS = lheap.$(OBJEXT) +lheap_LDADD = $(LDADD) +lheap_DEPENDENCIES = libh5test.la $(LIBHDF5) +links_SOURCES = links.c +links_OBJECTS = links.$(OBJEXT) +links_LDADD = $(LDADD) +links_DEPENDENCIES = libh5test.la $(LIBHDF5) +links_env_SOURCES = links_env.c +links_env_OBJECTS = links_env.$(OBJEXT) +links_env_LDADD = $(LDADD) +links_env_DEPENDENCIES = libh5test.la $(LIBHDF5) +mf_SOURCES = mf.c +mf_OBJECTS = mf.$(OBJEXT) +mf_LDADD = $(LDADD) +mf_DEPENDENCIES = libh5test.la $(LIBHDF5) +mount_SOURCES = mount.c +mount_OBJECTS = mount.$(OBJEXT) +mount_LDADD = $(LDADD) +mount_DEPENDENCIES = libh5test.la $(LIBHDF5) +mtime_SOURCES = mtime.c +mtime_OBJECTS = mtime.$(OBJEXT) +mtime_LDADD = $(LDADD) +mtime_DEPENDENCIES = libh5test.la $(LIBHDF5) +ntypes_SOURCES = ntypes.c +ntypes_OBJECTS = ntypes.$(OBJEXT) +ntypes_LDADD = $(LDADD) +ntypes_DEPENDENCIES = libh5test.la $(LIBHDF5) +objcopy_SOURCES = objcopy.c +objcopy_OBJECTS = objcopy.$(OBJEXT) +objcopy_LDADD = $(LDADD) +objcopy_DEPENDENCIES = libh5test.la $(LIBHDF5) +ohdr_SOURCES = ohdr.c +ohdr_OBJECTS = ohdr.$(OBJEXT) +ohdr_LDADD = $(LDADD) +ohdr_DEPENDENCIES = libh5test.la $(LIBHDF5) +plugin_SOURCES = plugin.c +plugin_OBJECTS = plugin.$(OBJEXT) +plugin_LDADD = $(LDADD) +plugin_DEPENDENCIES = libh5test.la $(LIBHDF5) +pool_SOURCES = pool.c +pool_OBJECTS = pool.$(OBJEXT) +pool_LDADD = $(LDADD) +pool_DEPENDENCIES = libh5test.la $(LIBHDF5) +reserved_SOURCES = reserved.c +reserved_OBJECTS = reserved.$(OBJEXT) +reserved_LDADD = $(LDADD) +reserved_DEPENDENCIES = libh5test.la $(LIBHDF5) +set_extent_SOURCES = set_extent.c +set_extent_OBJECTS = set_extent.$(OBJEXT) +set_extent_LDADD = $(LDADD) +set_extent_DEPENDENCIES = libh5test.la $(LIBHDF5) +space_overflow_SOURCES = space_overflow.c +space_overflow_OBJECTS = space_overflow.$(OBJEXT) +space_overflow_LDADD = $(LDADD) +space_overflow_DEPENDENCIES = libh5test.la $(LIBHDF5) +stab_SOURCES = stab.c +stab_OBJECTS = stab.$(OBJEXT) +stab_LDADD = $(LDADD) +stab_DEPENDENCIES = libh5test.la $(LIBHDF5) +tcheck_version_SOURCES = tcheck_version.c +tcheck_version_OBJECTS = tcheck_version.$(OBJEXT) +tcheck_version_LDADD = $(LDADD) +tcheck_version_DEPENDENCIES = libh5test.la $(LIBHDF5) +am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) tarray.$(OBJEXT) \ + tattr.$(OBJEXT) tchecksum.$(OBJEXT) tconfig.$(OBJEXT) \ + tfile.$(OBJEXT) tgenprop.$(OBJEXT) th5o.$(OBJEXT) \ + th5s.$(OBJEXT) tcoords.$(OBJEXT) theap.$(OBJEXT) tid.$(OBJEXT) \ + titerate.$(OBJEXT) tmeta.$(OBJEXT) tmisc.$(OBJEXT) \ + trefer.$(OBJEXT) trefstr.$(OBJEXT) tselect.$(OBJEXT) \ + tskiplist.$(OBJEXT) tsohm.$(OBJEXT) ttime.$(OBJEXT) \ + ttst.$(OBJEXT) tunicode.$(OBJEXT) tvlstr.$(OBJEXT) \ + tvltypes.$(OBJEXT) tverbounds18.$(OBJEXT) +testhdf5_OBJECTS = $(am_testhdf5_OBJECTS) +testhdf5_LDADD = $(LDADD) +testhdf5_DEPENDENCIES = libh5test.la $(LIBHDF5) +testmeta_SOURCES = testmeta.c +testmeta_OBJECTS = testmeta.$(OBJEXT) +testmeta_LDADD = $(LDADD) +testmeta_DEPENDENCIES = libh5test.la $(LIBHDF5) +am_ttsafe_OBJECTS = ttsafe.$(OBJEXT) ttsafe_dcreate.$(OBJEXT) \ + ttsafe_error.$(OBJEXT) ttsafe_cancel.$(OBJEXT) \ + ttsafe_acreate.$(OBJEXT) +ttsafe_OBJECTS = $(am_ttsafe_OBJECTS) +ttsafe_LDADD = $(LDADD) +ttsafe_DEPENDENCIES = libh5test.la $(LIBHDF5) +unlink_SOURCES = unlink.c +unlink_OBJECTS = unlink.$(OBJEXT) +unlink_LDADD = $(LDADD) +unlink_DEPENDENCIES = libh5test.la $(LIBHDF5) +unregister_SOURCES = unregister.c +unregister_OBJECTS = unregister.$(OBJEXT) +unregister_LDADD = $(LDADD) +unregister_DEPENDENCIES = libh5test.la $(LIBHDF5) +vfd_SOURCES = vfd.c +vfd_OBJECTS = vfd.$(OBJEXT) +vfd_LDADD = $(LDADD) +vfd_DEPENDENCIES = libh5test.la $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdynlib1_la_SOURCES) $(libdynlib2_la_SOURCES) \ + $(libdynlib3_la_SOURCES) $(libdynlib4_la_SOURCES) \ + $(libh5test_la_SOURCES) accum.c app_ref.c big.c bittests.c \ + btree2.c cache.c cache_api.c cmpd_dset.c cross_read.c dangle.c \ + dsets.c dt_arith.c dtransform.c dtypes.c efc.c enum.c \ + err_compat.c error_test.c extend.c external.c fheap.c \ + file_image.c fillval.c filter_fail.c flush1.c flush2.c \ + freespace.c gen_bad_offset.c gen_bad_ohdr.c gen_bogus.c \ + gen_cross.c gen_deflate.c gen_file_image.c gen_filters.c \ + gen_idx.c gen_new_array.c gen_new_fill.c gen_new_group.c \ + gen_new_mtime.c gen_new_super.c gen_noencoder.c \ + gen_nullspace.c gen_sizes_lheap.c gen_udlinks.c getname.c \ + gheap.c hyperslab.c istore.c lheap.c links.c links_env.c mf.c \ + mount.c mtime.c ntypes.c objcopy.c ohdr.c plugin.c pool.c \ + reserved.c set_extent.c space_overflow.c stab.c \ + tcheck_version.c $(testhdf5_SOURCES) testmeta.c \ + $(ttsafe_SOURCES) unlink.c unregister.c vfd.c +DIST_SOURCES = $(am__libdynlib1_la_SOURCES_DIST) \ + $(am__libdynlib2_la_SOURCES_DIST) \ + $(am__libdynlib3_la_SOURCES_DIST) \ + $(am__libdynlib4_la_SOURCES_DIST) $(libh5test_la_SOURCES) \ + accum.c app_ref.c big.c bittests.c btree2.c cache.c \ + cache_api.c cmpd_dset.c cross_read.c dangle.c dsets.c \ + dt_arith.c dtransform.c dtypes.c efc.c enum.c err_compat.c \ + error_test.c extend.c external.c fheap.c file_image.c \ + fillval.c filter_fail.c flush1.c flush2.c freespace.c \ + gen_bad_offset.c gen_bad_ohdr.c gen_bogus.c gen_cross.c \ + gen_deflate.c gen_file_image.c gen_filters.c gen_idx.c \ + gen_new_array.c gen_new_fill.c gen_new_group.c gen_new_mtime.c \ + gen_new_super.c gen_noencoder.c gen_nullspace.c \ + gen_sizes_lheap.c gen_udlinks.c getname.c gheap.c hyperslab.c \ + istore.c lheap.c links.c links_env.c mf.c mount.c mtime.c \ + ntypes.c objcopy.c ohdr.c plugin.c pool.c reserved.c \ + set_extent.c space_overflow.c stab.c tcheck_version.c \ + $(testhdf5_SOURCES) testmeta.c $(ttsafe_SOURCES) unlink.c \ + unregister.c vfd.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/H5srcdir_str.h.in $(srcdir)/Makefile.in \ + $(srcdir)/test_plugin.sh.in $(srcdir)/testcheck_version.sh.in \ + $(srcdir)/testerror.sh.in $(srcdir)/testlibinfo.sh.in \ + $(srcdir)/testlinks_env.sh.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_builddir)/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/test +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../test +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../test +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. These files are the ones created by setting the +# HDF5_NOCLEANUP environment variable and running `make test' without +# specifying a file prefix or low-level driver. Changing the file +# prefix or low-level driver with environment variables will influence +# the temporary file name in ways that the makefile is not aware of. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 accum.h5 \ + cmpd_dset.h5 compact_dataset.h5 dataset.h5 dset_offset.h5 \ + max_compact_dataset.h5 simple.h5 set_local.h5 random_chunks.h5 \ + huge_chunks.h5 chunk_cache.h5 big_chunk.h5 chunk_expand.h5 \ + copy_dcpl_newfile.h5 extend.h5 istore.h5 extlinks*.h5 \ + frspace.h5 links*.h5 sys_file1 tfile[1-7].h5 th5s[1-4].h5 \ + lheap.h5 fheap.h5 ohdr.h5 stab.h5 extern_[1-4].h5 \ + extern_[1-4][ab].raw gheap[0-4].h5 dt_arith[1-2] links.h5 \ + links[0-6]*.h5 extlinks[0-15].h5 tmp big.data \ + big[0-9][0-9][0-9][0-9][0-9].h5 stdio.h5 sec2.h5 \ + dtypes[0-9].h5 dtypes1[0].h5 dt_arith[1-2].h5 tattr.h5 \ + tselect.h5 mtime.h5 unlink.h5 unicode.h5 coord.h5 \ + fillval_[0-9].h5 fillval.raw mount_[0-9].h5 testmeta.h5 \ + ttime.h5 trefer[1-3].h5 tvltypes.h5 tvlstr.h5 tvlstr2.h5 \ + flush.h5 enum1.h5 titerate.h5 ttsafe.h5 tarray1.h5 tgenprop.h5 \ + tmisc[0-9]*.h5 set_extent[1-5].h5 ext[12].bin getname.h5 \ + getname[1-3].h5 sec2_file.h5 direct_file.h5 \ + family_file000[0-3][0-9].h5 new_family_v16_000[0-3][0-9].h5 \ + multi_file-[rs].h5 core_file plugin.h5 new_move_[ab].h5 \ + ntypes.h5 dangle.h5 error_test.h5 err_compat.h5 dtransform.h5 \ + test_filters.h5 get_file_name.h5 tstint[1-2].h5 \ + unlink_chunked.h5 btree2.h5 objcopy_src.h5 objcopy_dst.h5 \ + objcopy_ext.dat trefer1.h5 trefer2.h5 app_ref.h5 \ + tcheck_version_*.out tcheck_version_*.err efc[0-5].h5 \ + log_vfd_out.log new_multi_file_v16-r.h5 \ + new_multi_file_v16-s.h5 split_get_file_image_test-m.h5 \ + split_get_file_image_test-r.h5 file_image_core_test.h5.copy \ + unregister_filter_1.h5 unregister_filter_2.h5 + +# Test script for error_test and err_compat +TEST_SCRIPT = testerror.sh testlibinfo.sh testcheck_version.sh \ + testlinks_env.sh $(am__append_1) +SCRIPT_DEPEND = error_test$(EXEEXT) err_compat$(EXEEXT) \ + links_env$(EXEEXT) $(am__append_2) +check_SCRIPTS = $(TEST_SCRIPT) + +# These are our main targets. They should be listed in the order to be +# executed, generally most specific tests to least specific tests. +# As an exception, long-running tests should occur earlier in the list. +# This gives them more time to run when tests are executing in parallel. +# These tests (fheap, btree2) are under development and are not used by +# the library yet. Move them to the end so that their failure do not block +# other current library code tests. +TEST_PROG = testhdf5 lheap ohdr stab gheap cache cache_api \ + pool accum hyperslab istore bittests dt_arith \ + dtypes dsets cmpd_dset filter_fail extend external efc objcopy links unlink \ + big mtime fillval mount flush1 flush2 app_ref enum \ + set_extent ttsafe \ + getname vfd ntypes dangle dtransform reserved cross_read \ + freespace mf btree2 fheap file_image unregister + + +# These programs generate test files for the tests. They don't need to be +# compiled every time we want to test the library. However, putting +# them in a conditional causes automake to generate rules so that they +# can be built by hand. They can also be built by specifying +# --enable-build-all at configure time. +# The gen_old_* files can only be compiled with older versions of the library +# so do not appear in this list. +BUILD_ALL_PROGS = gen_bad_ohdr gen_bogus gen_cross gen_deflate gen_filters gen_idx \ + gen_new_array gen_new_fill gen_new_group gen_new_mtime gen_new_super \ + gen_noencoder gen_nullspace gen_udlinks space_overflow gen_sizes_lheap \ + gen_file_image gen_bad_offset + +#noinst_LTLIBRARIES = libh5test.la +noinst_LTLIBRARIES = libh5test.la libdynlib1.la libdynlib2.la libdynlib3.la libdynlib4.la +libdynlib1_la_SOURCES = dynlib1.c +libdynlib2_la_SOURCES = dynlib2.c +libdynlib3_la_SOURCES = dynlib3.c +libdynlib4_la_SOURCES = dynlib4.c +libdynlib1_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +libdynlib2_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +libdynlib3_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +libdynlib4_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +libh5test_la_SOURCES = h5test.c testframe.c cache_common.c + +# Use libhd5test.la to compile all of the tests +LDADD = libh5test.la $(LIBHDF5) + +# List the source files for tests that have more than one +ttsafe_SOURCES = ttsafe.c ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c \ + ttsafe_acreate.c + +VFD_LIST = sec2 stdio core core_paged split multi family \ + $(am__append_4) + +# Sources for testhdf5 executable +testhdf5_SOURCES = testhdf5.c tarray.c tattr.c tchecksum.c tconfig.c tfile.c \ + tgenprop.c th5o.c th5s.c tcoords.c theap.c tid.c titerate.c tmeta.c tmisc.c \ + trefer.c trefstr.c tselect.c tskiplist.c tsohm.c ttime.c ttst.c tunicode.c \ + tvlstr.c tvltypes.c tverbounds18.c + + +# Temporary files. +DISTCLEANFILES = testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_plugin.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +testcheck_version.sh: $(top_builddir)/config.status $(srcdir)/testcheck_version.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testerror.sh: $(top_builddir)/config.status $(srcdir)/testerror.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +H5srcdir_str.h: $(top_builddir)/config.status $(srcdir)/H5srcdir_str.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testlibinfo.sh: $(top_builddir)/config.status $(srcdir)/testlibinfo.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testlinks_env.sh: $(top_builddir)/config.status $(srcdir)/testlinks_env.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +test_plugin.sh: $(top_builddir)/config.status $(srcdir)/test_plugin.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +#libdynlib1.la: $(libdynlib1_la_OBJECTS) $(libdynlib1_la_DEPENDENCIES) $(EXTRA_libdynlib1_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib1_la_LINK) $(am_libdynlib1_la_rpath) $(libdynlib1_la_OBJECTS) $(libdynlib1_la_LIBADD) $(LIBS) + +#libdynlib1.la: $(libdynlib1_la_OBJECTS) $(libdynlib1_la_DEPENDENCIES) $(EXTRA_libdynlib1_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib1_la_LINK) $(am_libdynlib1_la_rpath) $(libdynlib1_la_OBJECTS) $(libdynlib1_la_LIBADD) $(LIBS) + +#libdynlib2.la: $(libdynlib2_la_OBJECTS) $(libdynlib2_la_DEPENDENCIES) $(EXTRA_libdynlib2_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib2_la_LINK) $(am_libdynlib2_la_rpath) $(libdynlib2_la_OBJECTS) $(libdynlib2_la_LIBADD) $(LIBS) + +#libdynlib2.la: $(libdynlib2_la_OBJECTS) $(libdynlib2_la_DEPENDENCIES) $(EXTRA_libdynlib2_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib2_la_LINK) $(am_libdynlib2_la_rpath) $(libdynlib2_la_OBJECTS) $(libdynlib2_la_LIBADD) $(LIBS) + +#libdynlib3.la: $(libdynlib3_la_OBJECTS) $(libdynlib3_la_DEPENDENCIES) $(EXTRA_libdynlib3_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib3_la_LINK) $(am_libdynlib3_la_rpath) $(libdynlib3_la_OBJECTS) $(libdynlib3_la_LIBADD) $(LIBS) + +#libdynlib3.la: $(libdynlib3_la_OBJECTS) $(libdynlib3_la_DEPENDENCIES) $(EXTRA_libdynlib3_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib3_la_LINK) $(am_libdynlib3_la_rpath) $(libdynlib3_la_OBJECTS) $(libdynlib3_la_LIBADD) $(LIBS) + +#libdynlib4.la: $(libdynlib4_la_OBJECTS) $(libdynlib4_la_DEPENDENCIES) $(EXTRA_libdynlib4_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib4_la_LINK) $(am_libdynlib4_la_rpath) $(libdynlib4_la_OBJECTS) $(libdynlib4_la_LIBADD) $(LIBS) + +#libdynlib4.la: $(libdynlib4_la_OBJECTS) $(libdynlib4_la_DEPENDENCIES) $(EXTRA_libdynlib4_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlib4_la_LINK) $(am_libdynlib4_la_rpath) $(libdynlib4_la_OBJECTS) $(libdynlib4_la_LIBADD) $(LIBS) + +libh5test.la: $(libh5test_la_OBJECTS) $(libh5test_la_DEPENDENCIES) $(EXTRA_libh5test_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(am_libh5test_la_rpath) $(libh5test_la_OBJECTS) $(libh5test_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +accum$(EXEEXT): $(accum_OBJECTS) $(accum_DEPENDENCIES) $(EXTRA_accum_DEPENDENCIES) + @rm -f accum$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(accum_OBJECTS) $(accum_LDADD) $(LIBS) + +app_ref$(EXEEXT): $(app_ref_OBJECTS) $(app_ref_DEPENDENCIES) $(EXTRA_app_ref_DEPENDENCIES) + @rm -f app_ref$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(app_ref_OBJECTS) $(app_ref_LDADD) $(LIBS) + +big$(EXEEXT): $(big_OBJECTS) $(big_DEPENDENCIES) $(EXTRA_big_DEPENDENCIES) + @rm -f big$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(big_OBJECTS) $(big_LDADD) $(LIBS) + +bittests$(EXEEXT): $(bittests_OBJECTS) $(bittests_DEPENDENCIES) $(EXTRA_bittests_DEPENDENCIES) + @rm -f bittests$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(bittests_OBJECTS) $(bittests_LDADD) $(LIBS) + +btree2$(EXEEXT): $(btree2_OBJECTS) $(btree2_DEPENDENCIES) $(EXTRA_btree2_DEPENDENCIES) + @rm -f btree2$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(btree2_OBJECTS) $(btree2_LDADD) $(LIBS) + +cache$(EXEEXT): $(cache_OBJECTS) $(cache_DEPENDENCIES) $(EXTRA_cache_DEPENDENCIES) + @rm -f cache$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(cache_OBJECTS) $(cache_LDADD) $(LIBS) + +cache_api$(EXEEXT): $(cache_api_OBJECTS) $(cache_api_DEPENDENCIES) $(EXTRA_cache_api_DEPENDENCIES) + @rm -f cache_api$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(cache_api_OBJECTS) $(cache_api_LDADD) $(LIBS) + +cmpd_dset$(EXEEXT): $(cmpd_dset_OBJECTS) $(cmpd_dset_DEPENDENCIES) $(EXTRA_cmpd_dset_DEPENDENCIES) + @rm -f cmpd_dset$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(cmpd_dset_OBJECTS) $(cmpd_dset_LDADD) $(LIBS) + +cross_read$(EXEEXT): $(cross_read_OBJECTS) $(cross_read_DEPENDENCIES) $(EXTRA_cross_read_DEPENDENCIES) + @rm -f cross_read$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(cross_read_OBJECTS) $(cross_read_LDADD) $(LIBS) + +dangle$(EXEEXT): $(dangle_OBJECTS) $(dangle_DEPENDENCIES) $(EXTRA_dangle_DEPENDENCIES) + @rm -f dangle$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(dangle_OBJECTS) $(dangle_LDADD) $(LIBS) + +dsets$(EXEEXT): $(dsets_OBJECTS) $(dsets_DEPENDENCIES) $(EXTRA_dsets_DEPENDENCIES) + @rm -f dsets$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(dsets_OBJECTS) $(dsets_LDADD) $(LIBS) + +dt_arith$(EXEEXT): $(dt_arith_OBJECTS) $(dt_arith_DEPENDENCIES) $(EXTRA_dt_arith_DEPENDENCIES) + @rm -f dt_arith$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(dt_arith_OBJECTS) $(dt_arith_LDADD) $(LIBS) + +dtransform$(EXEEXT): $(dtransform_OBJECTS) $(dtransform_DEPENDENCIES) $(EXTRA_dtransform_DEPENDENCIES) + @rm -f dtransform$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(dtransform_OBJECTS) $(dtransform_LDADD) $(LIBS) + +dtypes$(EXEEXT): $(dtypes_OBJECTS) $(dtypes_DEPENDENCIES) $(EXTRA_dtypes_DEPENDENCIES) + @rm -f dtypes$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(dtypes_OBJECTS) $(dtypes_LDADD) $(LIBS) + +efc$(EXEEXT): $(efc_OBJECTS) $(efc_DEPENDENCIES) $(EXTRA_efc_DEPENDENCIES) + @rm -f efc$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(efc_OBJECTS) $(efc_LDADD) $(LIBS) + +enum$(EXEEXT): $(enum_OBJECTS) $(enum_DEPENDENCIES) $(EXTRA_enum_DEPENDENCIES) + @rm -f enum$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(enum_OBJECTS) $(enum_LDADD) $(LIBS) + +err_compat$(EXEEXT): $(err_compat_OBJECTS) $(err_compat_DEPENDENCIES) $(EXTRA_err_compat_DEPENDENCIES) + @rm -f err_compat$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(err_compat_OBJECTS) $(err_compat_LDADD) $(LIBS) + +error_test$(EXEEXT): $(error_test_OBJECTS) $(error_test_DEPENDENCIES) $(EXTRA_error_test_DEPENDENCIES) + @rm -f error_test$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(error_test_OBJECTS) $(error_test_LDADD) $(LIBS) + +extend$(EXEEXT): $(extend_OBJECTS) $(extend_DEPENDENCIES) $(EXTRA_extend_DEPENDENCIES) + @rm -f extend$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(extend_OBJECTS) $(extend_LDADD) $(LIBS) + +external$(EXEEXT): $(external_OBJECTS) $(external_DEPENDENCIES) $(EXTRA_external_DEPENDENCIES) + @rm -f external$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(external_OBJECTS) $(external_LDADD) $(LIBS) + +fheap$(EXEEXT): $(fheap_OBJECTS) $(fheap_DEPENDENCIES) $(EXTRA_fheap_DEPENDENCIES) + @rm -f fheap$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(fheap_OBJECTS) $(fheap_LDADD) $(LIBS) + +file_image$(EXEEXT): $(file_image_OBJECTS) $(file_image_DEPENDENCIES) $(EXTRA_file_image_DEPENDENCIES) + @rm -f file_image$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(file_image_OBJECTS) $(file_image_LDADD) $(LIBS) + +fillval$(EXEEXT): $(fillval_OBJECTS) $(fillval_DEPENDENCIES) $(EXTRA_fillval_DEPENDENCIES) + @rm -f fillval$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(fillval_OBJECTS) $(fillval_LDADD) $(LIBS) + +filter_fail$(EXEEXT): $(filter_fail_OBJECTS) $(filter_fail_DEPENDENCIES) $(EXTRA_filter_fail_DEPENDENCIES) + @rm -f filter_fail$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(filter_fail_OBJECTS) $(filter_fail_LDADD) $(LIBS) + +flush1$(EXEEXT): $(flush1_OBJECTS) $(flush1_DEPENDENCIES) $(EXTRA_flush1_DEPENDENCIES) + @rm -f flush1$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(flush1_OBJECTS) $(flush1_LDADD) $(LIBS) + +flush2$(EXEEXT): $(flush2_OBJECTS) $(flush2_DEPENDENCIES) $(EXTRA_flush2_DEPENDENCIES) + @rm -f flush2$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(flush2_OBJECTS) $(flush2_LDADD) $(LIBS) + +freespace$(EXEEXT): $(freespace_OBJECTS) $(freespace_DEPENDENCIES) $(EXTRA_freespace_DEPENDENCIES) + @rm -f freespace$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(freespace_OBJECTS) $(freespace_LDADD) $(LIBS) + +gen_bad_offset$(EXEEXT): $(gen_bad_offset_OBJECTS) $(gen_bad_offset_DEPENDENCIES) $(EXTRA_gen_bad_offset_DEPENDENCIES) + @rm -f gen_bad_offset$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_bad_offset_OBJECTS) $(gen_bad_offset_LDADD) $(LIBS) + +gen_bad_ohdr$(EXEEXT): $(gen_bad_ohdr_OBJECTS) $(gen_bad_ohdr_DEPENDENCIES) $(EXTRA_gen_bad_ohdr_DEPENDENCIES) + @rm -f gen_bad_ohdr$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_bad_ohdr_OBJECTS) $(gen_bad_ohdr_LDADD) $(LIBS) + +gen_bogus$(EXEEXT): $(gen_bogus_OBJECTS) $(gen_bogus_DEPENDENCIES) $(EXTRA_gen_bogus_DEPENDENCIES) + @rm -f gen_bogus$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_bogus_OBJECTS) $(gen_bogus_LDADD) $(LIBS) + +gen_cross$(EXEEXT): $(gen_cross_OBJECTS) $(gen_cross_DEPENDENCIES) $(EXTRA_gen_cross_DEPENDENCIES) + @rm -f gen_cross$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_cross_OBJECTS) $(gen_cross_LDADD) $(LIBS) + +gen_deflate$(EXEEXT): $(gen_deflate_OBJECTS) $(gen_deflate_DEPENDENCIES) $(EXTRA_gen_deflate_DEPENDENCIES) + @rm -f gen_deflate$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_deflate_OBJECTS) $(gen_deflate_LDADD) $(LIBS) + +gen_file_image$(EXEEXT): $(gen_file_image_OBJECTS) $(gen_file_image_DEPENDENCIES) $(EXTRA_gen_file_image_DEPENDENCIES) + @rm -f gen_file_image$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_file_image_OBJECTS) $(gen_file_image_LDADD) $(LIBS) + +gen_filters$(EXEEXT): $(gen_filters_OBJECTS) $(gen_filters_DEPENDENCIES) $(EXTRA_gen_filters_DEPENDENCIES) + @rm -f gen_filters$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_filters_OBJECTS) $(gen_filters_LDADD) $(LIBS) + +gen_idx$(EXEEXT): $(gen_idx_OBJECTS) $(gen_idx_DEPENDENCIES) $(EXTRA_gen_idx_DEPENDENCIES) + @rm -f gen_idx$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_idx_OBJECTS) $(gen_idx_LDADD) $(LIBS) + +gen_new_array$(EXEEXT): $(gen_new_array_OBJECTS) $(gen_new_array_DEPENDENCIES) $(EXTRA_gen_new_array_DEPENDENCIES) + @rm -f gen_new_array$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_new_array_OBJECTS) $(gen_new_array_LDADD) $(LIBS) + +gen_new_fill$(EXEEXT): $(gen_new_fill_OBJECTS) $(gen_new_fill_DEPENDENCIES) $(EXTRA_gen_new_fill_DEPENDENCIES) + @rm -f gen_new_fill$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_new_fill_OBJECTS) $(gen_new_fill_LDADD) $(LIBS) + +gen_new_group$(EXEEXT): $(gen_new_group_OBJECTS) $(gen_new_group_DEPENDENCIES) $(EXTRA_gen_new_group_DEPENDENCIES) + @rm -f gen_new_group$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_new_group_OBJECTS) $(gen_new_group_LDADD) $(LIBS) + +gen_new_mtime$(EXEEXT): $(gen_new_mtime_OBJECTS) $(gen_new_mtime_DEPENDENCIES) $(EXTRA_gen_new_mtime_DEPENDENCIES) + @rm -f gen_new_mtime$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_new_mtime_OBJECTS) $(gen_new_mtime_LDADD) $(LIBS) + +gen_new_super$(EXEEXT): $(gen_new_super_OBJECTS) $(gen_new_super_DEPENDENCIES) $(EXTRA_gen_new_super_DEPENDENCIES) + @rm -f gen_new_super$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_new_super_OBJECTS) $(gen_new_super_LDADD) $(LIBS) + +gen_noencoder$(EXEEXT): $(gen_noencoder_OBJECTS) $(gen_noencoder_DEPENDENCIES) $(EXTRA_gen_noencoder_DEPENDENCIES) + @rm -f gen_noencoder$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_noencoder_OBJECTS) $(gen_noencoder_LDADD) $(LIBS) + +gen_nullspace$(EXEEXT): $(gen_nullspace_OBJECTS) $(gen_nullspace_DEPENDENCIES) $(EXTRA_gen_nullspace_DEPENDENCIES) + @rm -f gen_nullspace$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_nullspace_OBJECTS) $(gen_nullspace_LDADD) $(LIBS) + +gen_sizes_lheap$(EXEEXT): $(gen_sizes_lheap_OBJECTS) $(gen_sizes_lheap_DEPENDENCIES) $(EXTRA_gen_sizes_lheap_DEPENDENCIES) + @rm -f gen_sizes_lheap$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_sizes_lheap_OBJECTS) $(gen_sizes_lheap_LDADD) $(LIBS) + +gen_udlinks$(EXEEXT): $(gen_udlinks_OBJECTS) $(gen_udlinks_DEPENDENCIES) $(EXTRA_gen_udlinks_DEPENDENCIES) + @rm -f gen_udlinks$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gen_udlinks_OBJECTS) $(gen_udlinks_LDADD) $(LIBS) + +getname$(EXEEXT): $(getname_OBJECTS) $(getname_DEPENDENCIES) $(EXTRA_getname_DEPENDENCIES) + @rm -f getname$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(getname_OBJECTS) $(getname_LDADD) $(LIBS) + +gheap$(EXEEXT): $(gheap_OBJECTS) $(gheap_DEPENDENCIES) $(EXTRA_gheap_DEPENDENCIES) + @rm -f gheap$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(gheap_OBJECTS) $(gheap_LDADD) $(LIBS) + +hyperslab$(EXEEXT): $(hyperslab_OBJECTS) $(hyperslab_DEPENDENCIES) $(EXTRA_hyperslab_DEPENDENCIES) + @rm -f hyperslab$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(hyperslab_OBJECTS) $(hyperslab_LDADD) $(LIBS) + +istore$(EXEEXT): $(istore_OBJECTS) $(istore_DEPENDENCIES) $(EXTRA_istore_DEPENDENCIES) + @rm -f istore$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(istore_OBJECTS) $(istore_LDADD) $(LIBS) + +lheap$(EXEEXT): $(lheap_OBJECTS) $(lheap_DEPENDENCIES) $(EXTRA_lheap_DEPENDENCIES) + @rm -f lheap$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(lheap_OBJECTS) $(lheap_LDADD) $(LIBS) + +links$(EXEEXT): $(links_OBJECTS) $(links_DEPENDENCIES) $(EXTRA_links_DEPENDENCIES) + @rm -f links$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(links_OBJECTS) $(links_LDADD) $(LIBS) + +links_env$(EXEEXT): $(links_env_OBJECTS) $(links_env_DEPENDENCIES) $(EXTRA_links_env_DEPENDENCIES) + @rm -f links_env$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(links_env_OBJECTS) $(links_env_LDADD) $(LIBS) + +mf$(EXEEXT): $(mf_OBJECTS) $(mf_DEPENDENCIES) $(EXTRA_mf_DEPENDENCIES) + @rm -f mf$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(mf_OBJECTS) $(mf_LDADD) $(LIBS) + +mount$(EXEEXT): $(mount_OBJECTS) $(mount_DEPENDENCIES) $(EXTRA_mount_DEPENDENCIES) + @rm -f mount$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(mount_OBJECTS) $(mount_LDADD) $(LIBS) + +mtime$(EXEEXT): $(mtime_OBJECTS) $(mtime_DEPENDENCIES) $(EXTRA_mtime_DEPENDENCIES) + @rm -f mtime$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(mtime_OBJECTS) $(mtime_LDADD) $(LIBS) + +ntypes$(EXEEXT): $(ntypes_OBJECTS) $(ntypes_DEPENDENCIES) $(EXTRA_ntypes_DEPENDENCIES) + @rm -f ntypes$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ntypes_OBJECTS) $(ntypes_LDADD) $(LIBS) + +objcopy$(EXEEXT): $(objcopy_OBJECTS) $(objcopy_DEPENDENCIES) $(EXTRA_objcopy_DEPENDENCIES) + @rm -f objcopy$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(objcopy_OBJECTS) $(objcopy_LDADD) $(LIBS) + +ohdr$(EXEEXT): $(ohdr_OBJECTS) $(ohdr_DEPENDENCIES) $(EXTRA_ohdr_DEPENDENCIES) + @rm -f ohdr$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ohdr_OBJECTS) $(ohdr_LDADD) $(LIBS) + +plugin$(EXEEXT): $(plugin_OBJECTS) $(plugin_DEPENDENCIES) $(EXTRA_plugin_DEPENDENCIES) + @rm -f plugin$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(plugin_OBJECTS) $(plugin_LDADD) $(LIBS) + +pool$(EXEEXT): $(pool_OBJECTS) $(pool_DEPENDENCIES) $(EXTRA_pool_DEPENDENCIES) + @rm -f pool$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(pool_OBJECTS) $(pool_LDADD) $(LIBS) + +reserved$(EXEEXT): $(reserved_OBJECTS) $(reserved_DEPENDENCIES) $(EXTRA_reserved_DEPENDENCIES) + @rm -f reserved$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(reserved_OBJECTS) $(reserved_LDADD) $(LIBS) + +set_extent$(EXEEXT): $(set_extent_OBJECTS) $(set_extent_DEPENDENCIES) $(EXTRA_set_extent_DEPENDENCIES) + @rm -f set_extent$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(set_extent_OBJECTS) $(set_extent_LDADD) $(LIBS) + +space_overflow$(EXEEXT): $(space_overflow_OBJECTS) $(space_overflow_DEPENDENCIES) $(EXTRA_space_overflow_DEPENDENCIES) + @rm -f space_overflow$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(space_overflow_OBJECTS) $(space_overflow_LDADD) $(LIBS) + +stab$(EXEEXT): $(stab_OBJECTS) $(stab_DEPENDENCIES) $(EXTRA_stab_DEPENDENCIES) + @rm -f stab$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(stab_OBJECTS) $(stab_LDADD) $(LIBS) + +tcheck_version$(EXEEXT): $(tcheck_version_OBJECTS) $(tcheck_version_DEPENDENCIES) $(EXTRA_tcheck_version_DEPENDENCIES) + @rm -f tcheck_version$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(tcheck_version_OBJECTS) $(tcheck_version_LDADD) $(LIBS) + +testhdf5$(EXEEXT): $(testhdf5_OBJECTS) $(testhdf5_DEPENDENCIES) $(EXTRA_testhdf5_DEPENDENCIES) + @rm -f testhdf5$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(testhdf5_OBJECTS) $(testhdf5_LDADD) $(LIBS) + +testmeta$(EXEEXT): $(testmeta_OBJECTS) $(testmeta_DEPENDENCIES) $(EXTRA_testmeta_DEPENDENCIES) + @rm -f testmeta$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(testmeta_OBJECTS) $(testmeta_LDADD) $(LIBS) + +ttsafe$(EXEEXT): $(ttsafe_OBJECTS) $(ttsafe_DEPENDENCIES) $(EXTRA_ttsafe_DEPENDENCIES) + @rm -f ttsafe$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ttsafe_OBJECTS) $(ttsafe_LDADD) $(LIBS) + +unlink$(EXEEXT): $(unlink_OBJECTS) $(unlink_DEPENDENCIES) $(EXTRA_unlink_DEPENDENCIES) + @rm -f unlink$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(unlink_OBJECTS) $(unlink_LDADD) $(LIBS) + +unregister$(EXEEXT): $(unregister_OBJECTS) $(unregister_DEPENDENCIES) $(EXTRA_unregister_DEPENDENCIES) + @rm -f unregister$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(unregister_OBJECTS) $(unregister_LDADD) $(LIBS) + +vfd$(EXEEXT): $(vfd_OBJECTS) $(vfd_DEPENDENCIES) $(EXTRA_vfd_DEPENDENCIES) + @rm -f vfd$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(vfd_OBJECTS) $(vfd_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/accum.Po +include ./$(DEPDIR)/app_ref.Po +include ./$(DEPDIR)/big.Po +include ./$(DEPDIR)/bittests.Po +include ./$(DEPDIR)/btree2.Po +include ./$(DEPDIR)/cache.Po +include ./$(DEPDIR)/cache_api.Po +include ./$(DEPDIR)/cache_common.Plo +include ./$(DEPDIR)/cmpd_dset.Po +include ./$(DEPDIR)/cross_read.Po +include ./$(DEPDIR)/dangle.Po +include ./$(DEPDIR)/dsets.Po +include ./$(DEPDIR)/dt_arith.Po +include ./$(DEPDIR)/dtransform.Po +include ./$(DEPDIR)/dtypes.Po +include ./$(DEPDIR)/dynlib1.Plo +include ./$(DEPDIR)/dynlib2.Plo +include ./$(DEPDIR)/dynlib3.Plo +include ./$(DEPDIR)/dynlib4.Plo +include ./$(DEPDIR)/efc.Po +include ./$(DEPDIR)/enum.Po +include ./$(DEPDIR)/err_compat.Po +include ./$(DEPDIR)/error_test.Po +include ./$(DEPDIR)/extend.Po +include ./$(DEPDIR)/external.Po +include ./$(DEPDIR)/fheap.Po +include ./$(DEPDIR)/file_image.Po +include ./$(DEPDIR)/fillval.Po +include ./$(DEPDIR)/filter_fail.Po +include ./$(DEPDIR)/flush1.Po +include ./$(DEPDIR)/flush2.Po +include ./$(DEPDIR)/freespace.Po +include ./$(DEPDIR)/gen_bad_offset.Po +include ./$(DEPDIR)/gen_bad_ohdr.Po +include ./$(DEPDIR)/gen_bogus.Po +include ./$(DEPDIR)/gen_cross.Po +include ./$(DEPDIR)/gen_deflate.Po +include ./$(DEPDIR)/gen_file_image.Po +include ./$(DEPDIR)/gen_filters.Po +include ./$(DEPDIR)/gen_idx.Po +include ./$(DEPDIR)/gen_new_array.Po +include ./$(DEPDIR)/gen_new_fill.Po +include ./$(DEPDIR)/gen_new_group.Po +include ./$(DEPDIR)/gen_new_mtime.Po +include ./$(DEPDIR)/gen_new_super.Po +include ./$(DEPDIR)/gen_noencoder.Po +include ./$(DEPDIR)/gen_nullspace.Po +include ./$(DEPDIR)/gen_sizes_lheap.Po +include ./$(DEPDIR)/gen_udlinks.Po +include ./$(DEPDIR)/getname.Po +include ./$(DEPDIR)/gheap.Po +include ./$(DEPDIR)/h5test.Plo +include ./$(DEPDIR)/hyperslab.Po +include ./$(DEPDIR)/istore.Po +include ./$(DEPDIR)/lheap.Po +include ./$(DEPDIR)/links.Po +include ./$(DEPDIR)/links_env.Po +include ./$(DEPDIR)/mf.Po +include ./$(DEPDIR)/mount.Po +include ./$(DEPDIR)/mtime.Po +include ./$(DEPDIR)/ntypes.Po +include ./$(DEPDIR)/objcopy.Po +include ./$(DEPDIR)/ohdr.Po +include ./$(DEPDIR)/plugin.Po +include ./$(DEPDIR)/pool.Po +include ./$(DEPDIR)/reserved.Po +include ./$(DEPDIR)/set_extent.Po +include ./$(DEPDIR)/space_overflow.Po +include ./$(DEPDIR)/stab.Po +include ./$(DEPDIR)/tarray.Po +include ./$(DEPDIR)/tattr.Po +include ./$(DEPDIR)/tcheck_version.Po +include ./$(DEPDIR)/tchecksum.Po +include ./$(DEPDIR)/tconfig.Po +include ./$(DEPDIR)/tcoords.Po +include ./$(DEPDIR)/testframe.Plo +include ./$(DEPDIR)/testhdf5.Po +include ./$(DEPDIR)/testmeta.Po +include ./$(DEPDIR)/tfile.Po +include ./$(DEPDIR)/tgenprop.Po +include ./$(DEPDIR)/th5o.Po +include ./$(DEPDIR)/th5s.Po +include ./$(DEPDIR)/theap.Po +include ./$(DEPDIR)/tid.Po +include ./$(DEPDIR)/titerate.Po +include ./$(DEPDIR)/tmeta.Po +include ./$(DEPDIR)/tmisc.Po +include ./$(DEPDIR)/trefer.Po +include ./$(DEPDIR)/trefstr.Po +include ./$(DEPDIR)/tselect.Po +include ./$(DEPDIR)/tskiplist.Po +include ./$(DEPDIR)/tsohm.Po +include ./$(DEPDIR)/ttime.Po +include ./$(DEPDIR)/ttsafe.Po +include ./$(DEPDIR)/ttsafe_acreate.Po +include ./$(DEPDIR)/ttsafe_cancel.Po +include ./$(DEPDIR)/ttsafe_dcreate.Po +include ./$(DEPDIR)/ttsafe_error.Po +include ./$(DEPDIR)/ttst.Po +include ./$(DEPDIR)/tunicode.Po +include ./$(DEPDIR)/tverbounds18.Po +include ./$(DEPDIR)/tvlstr.Po +include ./$(DEPDIR)/tvltypes.Po +include ./$(DEPDIR)/unlink.Po +include ./$(DEPDIR)/unregister.Po +include ./$(DEPDIR)/vfd.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +testhdf5.log: testhdf5$(EXEEXT) + @p='testhdf5$(EXEEXT)'; \ + b='testhdf5'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +lheap.log: lheap$(EXEEXT) + @p='lheap$(EXEEXT)'; \ + b='lheap'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +ohdr.log: ohdr$(EXEEXT) + @p='ohdr$(EXEEXT)'; \ + b='ohdr'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +stab.log: stab$(EXEEXT) + @p='stab$(EXEEXT)'; \ + b='stab'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +gheap.log: gheap$(EXEEXT) + @p='gheap$(EXEEXT)'; \ + b='gheap'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +cache.log: cache$(EXEEXT) + @p='cache$(EXEEXT)'; \ + b='cache'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +cache_api.log: cache_api$(EXEEXT) + @p='cache_api$(EXEEXT)'; \ + b='cache_api'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +pool.log: pool$(EXEEXT) + @p='pool$(EXEEXT)'; \ + b='pool'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +accum.log: accum$(EXEEXT) + @p='accum$(EXEEXT)'; \ + b='accum'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +hyperslab.log: hyperslab$(EXEEXT) + @p='hyperslab$(EXEEXT)'; \ + b='hyperslab'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +istore.log: istore$(EXEEXT) + @p='istore$(EXEEXT)'; \ + b='istore'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +bittests.log: bittests$(EXEEXT) + @p='bittests$(EXEEXT)'; \ + b='bittests'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +dt_arith.log: dt_arith$(EXEEXT) + @p='dt_arith$(EXEEXT)'; \ + b='dt_arith'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +dtypes.log: dtypes$(EXEEXT) + @p='dtypes$(EXEEXT)'; \ + b='dtypes'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +dsets.log: dsets$(EXEEXT) + @p='dsets$(EXEEXT)'; \ + b='dsets'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +cmpd_dset.log: cmpd_dset$(EXEEXT) + @p='cmpd_dset$(EXEEXT)'; \ + b='cmpd_dset'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +filter_fail.log: filter_fail$(EXEEXT) + @p='filter_fail$(EXEEXT)'; \ + b='filter_fail'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +extend.log: extend$(EXEEXT) + @p='extend$(EXEEXT)'; \ + b='extend'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +external.log: external$(EXEEXT) + @p='external$(EXEEXT)'; \ + b='external'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +efc.log: efc$(EXEEXT) + @p='efc$(EXEEXT)'; \ + b='efc'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +objcopy.log: objcopy$(EXEEXT) + @p='objcopy$(EXEEXT)'; \ + b='objcopy'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +links.log: links$(EXEEXT) + @p='links$(EXEEXT)'; \ + b='links'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +unlink.log: unlink$(EXEEXT) + @p='unlink$(EXEEXT)'; \ + b='unlink'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +big.log: big$(EXEEXT) + @p='big$(EXEEXT)'; \ + b='big'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +mtime.log: mtime$(EXEEXT) + @p='mtime$(EXEEXT)'; \ + b='mtime'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fillval.log: fillval$(EXEEXT) + @p='fillval$(EXEEXT)'; \ + b='fillval'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +mount.log: mount$(EXEEXT) + @p='mount$(EXEEXT)'; \ + b='mount'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +flush1.log: flush1$(EXEEXT) + @p='flush1$(EXEEXT)'; \ + b='flush1'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +flush2.log: flush2$(EXEEXT) + @p='flush2$(EXEEXT)'; \ + b='flush2'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +app_ref.log: app_ref$(EXEEXT) + @p='app_ref$(EXEEXT)'; \ + b='app_ref'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +enum.log: enum$(EXEEXT) + @p='enum$(EXEEXT)'; \ + b='enum'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +set_extent.log: set_extent$(EXEEXT) + @p='set_extent$(EXEEXT)'; \ + b='set_extent'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +ttsafe.log: ttsafe$(EXEEXT) + @p='ttsafe$(EXEEXT)'; \ + b='ttsafe'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +getname.log: getname$(EXEEXT) + @p='getname$(EXEEXT)'; \ + b='getname'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +vfd.log: vfd$(EXEEXT) + @p='vfd$(EXEEXT)'; \ + b='vfd'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +ntypes.log: ntypes$(EXEEXT) + @p='ntypes$(EXEEXT)'; \ + b='ntypes'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +dangle.log: dangle$(EXEEXT) + @p='dangle$(EXEEXT)'; \ + b='dangle'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +dtransform.log: dtransform$(EXEEXT) + @p='dtransform$(EXEEXT)'; \ + b='dtransform'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +reserved.log: reserved$(EXEEXT) + @p='reserved$(EXEEXT)'; \ + b='reserved'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +cross_read.log: cross_read$(EXEEXT) + @p='cross_read$(EXEEXT)'; \ + b='cross_read'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +freespace.log: freespace$(EXEEXT) + @p='freespace$(EXEEXT)'; \ + b='freespace'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +mf.log: mf$(EXEEXT) + @p='mf$(EXEEXT)'; \ + b='mf'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +btree2.log: btree2$(EXEEXT) + @p='btree2$(EXEEXT)'; \ + b='btree2'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +fheap.log: fheap$(EXEEXT) + @p='fheap$(EXEEXT)'; \ + b='fheap'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +file_image.log: file_image$(EXEEXT) + @p='file_image$(EXEEXT)'; \ + b='file_image'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +unregister.log: unregister$(EXEEXT) + @p='unregister$(EXEEXT)'; \ + b='unregister'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + + # The libdynlib1, libdynlib2, libdynlib3, and libdynlib4 library for testing plugin module plugin.c. + # Build it as shared library if configure is enabled for shared library. + +libdynlib1.la: $(libdynlib1_la_OBJECTS) $(libdynlib1_la_DEPENDENCIES) $(EXTRA_libdynlib1_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlib1_la_LINK) $(am_libdynlib1_la_rpath) $(libdynlib1_la_OBJECTS) $(libdynlib1_la_LIBADD) + +libdynlib2.la: $(libdynlib2_la_OBJECTS) $(libdynlib2_la_DEPENDENCIES) $(EXTRA_libdynlib2_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlib2_la_LINK) $(am_libdynlib2_la_rpath) $(libdynlib2_la_OBJECTS) $(libdynlib2_la_LIBADD) + +libdynlib3.la: $(libdynlib3_la_OBJECTS) $(libdynlib3_la_DEPENDENCIES) $(EXTRA_libdynlib3_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlib3_la_LINK) $(am_libdynlib3_la_rpath) $(libdynlib3_la_OBJECTS) $(libdynlib3_la_LIBADD) + +libdynlib4.la: $(libdynlib4_la_OBJECTS) $(libdynlib4_la_DEPENDENCIES) $(EXTRA_libdynlib4_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlib4_la_LINK) $(am_libdynlib4_la_rpath) $(libdynlib4_la_OBJECTS) $(libdynlib4_la_LIBADD) +# # The libh5test library provides common support code for the tests. + +# Additional target for running timing test +timings _timings: testmeta + @for timing in $(TIMINGS) dummy; do \ + if test $$timing != dummy; then \ + echo "Running $$timing $(TEST_FLAGS)"; \ + $(RUNEXEC) ./$$timing $(TEST_FLAGS) || exit 1; \ + fi; \ + done; + +# The flush1 test must run before the flush2 test +flush2.chkexe_: flush1.chkexe_ +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/test/accum b/build/test/accum new file mode 100755 index 0000000..a7ae7ad --- /dev/null +++ b/build/test/accum @@ -0,0 +1,228 @@ +#! /bin/sh + +# accum - temporary wrapper script for .libs/accum +# Generated by libtool (GNU libtool) 2.4.6 +# +# The accum program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file accum.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "accum:accum:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "accum:accum:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "accum:accum:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'accum' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/accum.chkexe b/build/test/accum.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/accum.chklog b/build/test/accum.chklog new file mode 100644 index 0000000..75ac72f --- /dev/null +++ b/build/test/accum.chklog @@ -0,0 +1,22 @@ +============================ + accum Test Log +============================ +Testing the metadata accumulator +Testing simple write/read to/from metadata accumulator PASSED +Testing simple write/read to/from before metadata accumulator PASSED +Testing simple write/read to/from after metadata accumulator PASSED +Testing overlapping write to metadata accumulator PASSED +Testing overlapping write to partially clean metadata accumulator PASSED +Testing overlapping write to accumulator larger then accum_size PASSED +Testing non-overlapping write to accumulator larger then accum_size PASSED +Testing accumulator adjustments after append/prepend of data PASSED +Testing reading data from both accumulator and disk PASSED +Testing simple freeing metadata accumulator PASSED +Testing large metadata I/O operations PASSED +Testing random writes to accumulator PASSED +All metadata accumulator tests passed. +0.10user 0.08system 0:00.23elapsed 83%CPU (0avgtext+0avgdata 24972maxresident)k +0inputs+13488outputs (0major+16017minor)pagefaults 0swaps + +Finished testing accum +============================ diff --git a/build/test/accum.o b/build/test/accum.o new file mode 100644 index 0000000..26045aa Binary files /dev/null and b/build/test/accum.o differ diff --git a/build/test/app_ref b/build/test/app_ref new file mode 100755 index 0000000..56056d7 --- /dev/null +++ b/build/test/app_ref @@ -0,0 +1,228 @@ +#! /bin/sh + +# app_ref - temporary wrapper script for .libs/app_ref +# Generated by libtool (GNU libtool) 2.4.6 +# +# The app_ref program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file app_ref.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "app_ref:app_ref:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "app_ref:app_ref:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "app_ref:app_ref:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'app_ref' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/app_ref.chkexe b/build/test/app_ref.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/app_ref.chklog b/build/test/app_ref.chklog new file mode 100644 index 0000000..1cace06 --- /dev/null +++ b/build/test/app_ref.chklog @@ -0,0 +1,9 @@ +============================ + app_ref Test Log +============================ +Testing library shutdown with reference count > 1 PASSED +0.05user 0.02system 0:00.07elapsed 103%CPU (0avgtext+0avgdata 7012maxresident)k +0inputs+144outputs (0major+8660minor)pagefaults 0swaps + +Finished testing app_ref +============================ diff --git a/build/test/app_ref.o b/build/test/app_ref.o new file mode 100644 index 0000000..baceaab Binary files /dev/null and b/build/test/app_ref.o differ diff --git a/build/test/big b/build/test/big new file mode 100755 index 0000000..b7aa5b3 --- /dev/null +++ b/build/test/big @@ -0,0 +1,228 @@ +#! /bin/sh + +# big - temporary wrapper script for .libs/big +# Generated by libtool (GNU libtool) 2.4.6 +# +# The big program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file big.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "big:big:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "big:big:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "big:big:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'big' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/big.chkexe b/build/test/big.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/big.chklog b/build/test/big.chklog new file mode 100644 index 0000000..dbbac38 --- /dev/null +++ b/build/test/big.chklog @@ -0,0 +1,61 @@ +============================ + big Test Log +============================ +Testing big file with the SEC2 Driver +Testing Huge dataset write PASSED +#000 0x0000000178020bcc PASSED +#001 0x00000001f33ce9ab PASSED +#002 0x000000003ad87e13 PASSED +#003 0x00000001d92205ec PASSED +#004 0x00000000b8cd62b8 PASSED +#005 0x00000000a486b06c PASSED +#006 0x000000000cd2f556 PASSED +#007 0x000000004f69ceec PASSED +#008 0x0000000029367eae PASSED +#009 0x000000016d5d0374 PASSED +#010 0x00000001b8e174dd PASSED +#011 0x00000000a92a0650 PASSED +#012 0x000000011aa20743 PASSED +#013 0x00000000dc408e84 PASSED +#014 0x00000001017a0312 PASSED +#015 0x00000001ad32fbba PASSED +#016 0x00000000194e381b PASSED +#017 0x00000001ac13c2af PASSED +#018 0x000000015176bb6e PASSED +#019 0x00000001d9271f50 PASSED +#020 0x00000000985f16dc PASSED +#021 0x00000000cde4a1c0 PASSED +#022 0x000000015a3b8d30 PASSED +#023 0x000000005a81e900 PASSED +#024 0x000000011b40a53c PASSED +#025 0x000000016b7c1388 PASSED +#026 0x000000006d8f3b5c PASSED +#027 0x00000001e2e45943 PASSED +#028 0x0000000082d95723 PASSED +#029 0x00000001e1bfd2ec PASSED +#030 0x00000001eb56041c PASSED +#031 0x00000001d2ec019c PASSED +#032 0x000000009b5331a2 PASSED +#033 0x00000001b82bc2ac PASSED +#034 0x0000000008b5c0a8 PASSED +#035 0x00000000424a94b0 PASSED +#036 0x000000019c4e493c PASSED +#037 0x00000001236967f7 PASSED +#038 0x00000000f8a18c5c PASSED +#039 0x00000001d6decdb3 PASSED +#040 0x00000000639a5de2 PASSED +#041 0x00000000727f8ca0 PASSED +#042 0x0000000017a9b3bc PASSED +#043 0x0000000162229fe0 PASSED +#044 0x000000008e15ebb4 PASSED +#045 0x00000001244b45d8 PASSED +#046 0x0000000118af5ff0 PASSED +#047 0x000000001ff424d3 PASSED +#048 0x00000001b4a8cc84 PASSED +#049 0x000000014cab9a70 PASSED +Test passed with the SEC2 Driver. +0.05user 0.04system 0:00.11elapsed 77%CPU (0avgtext+0avgdata 7020maxresident)k +0inputs+9320outputs (0major+8896minor)pagefaults 0swaps + +Finished testing big +============================ diff --git a/build/test/big.o b/build/test/big.o new file mode 100644 index 0000000..51ac2ba Binary files /dev/null and b/build/test/big.o differ diff --git a/build/test/bittests b/build/test/bittests new file mode 100755 index 0000000..6e280f9 --- /dev/null +++ b/build/test/bittests @@ -0,0 +1,228 @@ +#! /bin/sh + +# bittests - temporary wrapper script for .libs/bittests +# Generated by libtool (GNU libtool) 2.4.6 +# +# The bittests program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file bittests.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "bittests:bittests:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "bittests:bittests:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "bittests:bittests:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'bittests' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/bittests.chkexe b/build/test/bittests.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/bittests.chklog b/build/test/bittests.chklog new file mode 100644 index 0000000..8e09c31 --- /dev/null +++ b/build/test/bittests.chklog @@ -0,0 +1,17 @@ +============================ + bittests Test Log +============================ +Testing bit search operations PASSED +Testing bit set operations PASSED +Testing bit clear operations PASSED +Testing bit copy operations PASSED +Testing bit shift operations PASSED +Testing bit increment operations PASSED +Testing bit decrement operations PASSED +Testing bit negate operations PASSED +All bit tests passed. +0.26user 0.02system 0:00.28elapsed 101%CPU (0avgtext+0avgdata 6908maxresident)k +0inputs+64outputs (0major+8248minor)pagefaults 0swaps + +Finished testing bittests +============================ diff --git a/build/test/bittests.o b/build/test/bittests.o new file mode 100644 index 0000000..b544933 Binary files /dev/null and b/build/test/bittests.o differ diff --git a/build/test/btree2 b/build/test/btree2 new file mode 100755 index 0000000..3965534 --- /dev/null +++ b/build/test/btree2 @@ -0,0 +1,228 @@ +#! /bin/sh + +# btree2 - temporary wrapper script for .libs/btree2 +# Generated by libtool (GNU libtool) 2.4.6 +# +# The btree2 program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file btree2.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "btree2:btree2:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "btree2:btree2:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "btree2:btree2:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'btree2' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/btree2.chkexe b/build/test/btree2.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/btree2.chklog b/build/test/btree2.chklog new file mode 100644 index 0000000..00e93db --- /dev/null +++ b/build/test/btree2.chklog @@ -0,0 +1,163 @@ +============================ + btree2 Test Log +============================ +Testing without reopening B-tree: +Testing B-tree creation PASSED +Testing B-tree iteration: empty B-tree PASSED +Testing B-tree insert: first record PASSED +Testing B-tree insert: several records PASSED +Testing B-tree insert: split root PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED +Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED +Testing B-tree insert: make level 2 B-tree PASSED +Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED +Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split middle leaf in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED +Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED +Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED +Testing B-tree insert: create random level 4 B-tree PASSED +Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED +Testing B-tree remove: record from empty B-tree PASSED +Testing B-tree remove: non-existant record from 1 record B-tree PASSED +Testing B-tree remove: existant record from 1 record B-tree PASSED +Testing B-tree remove: adding records to B-tree after removal PASSED +Testing B-tree remove: non-existant record from level-0 B-tree PASSED +Testing B-tree remove: mult. existant records from level-0 B-tree PASSED +Testing B-tree remove: non-existant record from level-1 B-tree PASSED +Testing B-tree remove: record from right leaf of level-1 B-tree PASSED +Testing B-tree remove: record from left leaf of level-1 B-tree PASSED +Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED +Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED +Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED +Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED +Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED +Testing B-tree remove: promote record from root of level-2 B-tree PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED +Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED +Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED +Testing B-tree find: nearest neighbor less than a value PASSED +Testing B-tree find: nearest neighbor greater than a value PASSED +Testing B-tree delete: delete empty B-tree PASSED +Testing B-tree delete: delete level-0 B-tree PASSED +Testing B-tree delete: delete level-1 B-tree PASSED +Testing B-tree delete: delete level-2 B-tree PASSED +Testing B-tree modify: attempt to modify non-existant record PASSED +Testing B-tree modify: modify record in leaf node PASSED +Testing B-tree modify: modify record in internal node PASSED +Testing B-tree modify: modify record in root node PASSED +Testing with reopening B-tree: +Testing B-tree creation PASSED +Testing B-tree iteration: empty B-tree PASSED +Testing B-tree insert: first record PASSED +Testing B-tree insert: several records PASSED +Testing B-tree insert: split root PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED +Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED +Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED +Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED +Testing B-tree insert: make level 2 B-tree PASSED +Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED +Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED +Testing B-tree insert: split middle leaf in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED +Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED +Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED +Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED +Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED +Testing B-tree insert: create random level 4 B-tree PASSED +Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED +Testing B-tree remove: record from empty B-tree PASSED +Testing B-tree remove: non-existant record from 1 record B-tree PASSED +Testing B-tree remove: existant record from 1 record B-tree PASSED +Testing B-tree remove: adding records to B-tree after removal PASSED +Testing B-tree remove: non-existant record from level-0 B-tree PASSED +Testing B-tree remove: mult. existant records from level-0 B-tree PASSED +Testing B-tree remove: non-existant record from level-1 B-tree PASSED +Testing B-tree remove: record from right leaf of level-1 B-tree PASSED +Testing B-tree remove: record from left leaf of level-1 B-tree PASSED +Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED +Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED +Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED +Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED +Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED +Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED +Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED +Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED +Testing B-tree remove: promote record from root of level-2 B-tree PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED +Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED +Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED +Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED +Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED +Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED +Testing B-tree find: nearest neighbor less than a value PASSED +Testing B-tree find: nearest neighbor greater than a value PASSED +Testing B-tree delete: delete empty B-tree PASSED +Testing B-tree delete: delete level-0 B-tree PASSED +Testing B-tree delete: delete level-1 B-tree PASSED +Testing B-tree delete: delete level-2 B-tree PASSED +Testing B-tree modify: attempt to modify non-existant record PASSED +Testing B-tree modify: modify record in leaf node PASSED +Testing B-tree modify: modify record in internal node PASSED +Testing B-tree modify: modify record in root node PASSED +All v2 B-tree tests passed. +33.39user 3.04system 0:37.72elapsed 96%CPU (0avgtext+0avgdata 35680maxresident)k +0inputs+285336outputs (0major+45071minor)pagefaults 0swaps + +Finished testing btree2 +============================ diff --git a/build/test/btree2.o b/build/test/btree2.o new file mode 100644 index 0000000..9d41748 Binary files /dev/null and b/build/test/btree2.o differ diff --git a/build/test/cache b/build/test/cache new file mode 100755 index 0000000..62c80ff --- /dev/null +++ b/build/test/cache @@ -0,0 +1,228 @@ +#! /bin/sh + +# cache - temporary wrapper script for .libs/cache +# Generated by libtool (GNU libtool) 2.4.6 +# +# The cache program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file cache.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "cache:cache:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "cache:cache:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "cache:cache:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'cache' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/cache.chkexe b/build/test/cache.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/cache.chklog b/build/test/cache.chklog new file mode 100644 index 0000000..41bf4a1 --- /dev/null +++ b/build/test/cache.chklog @@ -0,0 +1,52 @@ +============================ + cache Test Log +============================ +Testing smoke check #1 -- all clean, ins, dest, ren, 4/2 MB cache PASSED +Testing smoke check #2 -- ~1/2 dirty, ins, dest, ren, 4/2 MB cache PASSED +Testing smoke check #3 -- all clean, ins, dest, ren, 2/1 KB cache PASSED +Testing smoke check #4 -- ~1/2 dirty, ins, dest, ren, 2/1 KB cache PASSED +Testing smoke check #5 -- all clean, ins, prot, unprot, AR cache 1 PASSED +Testing smoke check #6 -- ~1/2 dirty, ins, prot, unprot, AR cache 1 PASSED +Testing smoke check #7 -- all clean, ins, prot, unprot, AR cache 2 PASSED +Testing smoke check #8 -- ~1/2 dirty, ins, prot, unprot, AR cache 2 PASSED +Testing smoke check #9 -- all clean, ins, dest, ren, 4/2 MB, corked PASSED +Testing smoke check #10 -- ~1/2 dirty, ins, dest, ren, 4/2 MB, corked PASSED +Testing write permitted check -- 1/0 MB cache -SKIP- + Clean and dirty LRU lists disabled. +Testing H5C_insert_entry() functionality PASSED +Testing H5C_flush_cache() functionality PASSED +Testing H5C_get_entry_status() functionality PASSED +Testing H5C_expunge_entry() functionality PASSED +Testing multiple read only protects on a single entry PASSED +Testing H5C_move_entry() functionality PASSED +Testing H5C_pin_protected_entry() functionality PASSED +Testing entry resize functionality PASSED +Testing evictions enabled/disabled functionality PASSED +Testing flush cache with protected entry error PASSED +Testing destroy cache with permanently pinned entry error PASSED +Testing destroy cache with protected entry error PASSED +Testing duplicate entry insertion error PASSED +Testing move to existing entry errors PASSED +Testing pin a pinned entry error PASSED +Testing unpin an unpinned entry error PASSED +Testing pin entry related errors PASSED +Testing protect a protected entry error PASSED +Testing unprotect an unprotected entry error PASSED +Testing mark entry dirty related errors PASSED +Testing expunge entry related errors PASSED +Testing resize entry related errors PASSED +Testing unprotect a read only entry dirty error PASSED +Testing protect a read only entry rw error PASSED +Testing get/set evictions enabled errors PASSED +Testing automatic cache resizing PASSED +Testing automatic cache resize disable PASSED +Testing automatic cache resize epoch marker management PASSED +Testing automatic cache resize input errors PASSED +Testing automatic cache resize auxilary functions PASSED +Testing to ensure metadata blizzard absence when inserting PASSED +Testing to ensure metadata blizzard absence on protect/unprotect PASSED +12.18user 0.16system 0:13.18elapsed 93%CPU (0avgtext+0avgdata 128752maxresident)k +0inputs+1600outputs (0major+76670minor)pagefaults 0swaps + +Finished testing cache +============================ diff --git a/build/test/cache.o b/build/test/cache.o new file mode 100644 index 0000000..c96eaf5 Binary files /dev/null and b/build/test/cache.o differ diff --git a/build/test/cache_api b/build/test/cache_api new file mode 100755 index 0000000..266eec1 --- /dev/null +++ b/build/test/cache_api @@ -0,0 +1,228 @@ +#! /bin/sh + +# cache_api - temporary wrapper script for .libs/cache_api +# Generated by libtool (GNU libtool) 2.4.6 +# +# The cache_api program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file cache_api.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "cache_api:cache_api:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "cache_api:cache_api:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "cache_api:cache_api:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'cache_api' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/cache_api.chkexe b/build/test/cache_api.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/cache_api.chklog b/build/test/cache_api.chklog new file mode 100644 index 0000000..01a788a --- /dev/null +++ b/build/test/cache_api.chklog @@ -0,0 +1,14 @@ +============================ + cache_api Test Log +============================ +Testing MDC/FAPL related API calls PASSED +Testing MDC/FILE related API calls PASSED +Testing MDC API smoke check -SKIP- + Long tests disabled. +Testing MDC/FAPL related API input errors PASSED +Testing MDC/FILE related API input errors PASSED +0.04user 0.03system 0:00.12elapsed 65%CPU (0avgtext+0avgdata 7164maxresident)k +0inputs+584outputs (0major+8767minor)pagefaults 0swaps + +Finished testing cache_api +============================ diff --git a/build/test/cache_api.o b/build/test/cache_api.o new file mode 100644 index 0000000..f6a646b Binary files /dev/null and b/build/test/cache_api.o differ diff --git a/build/test/cache_common.lo b/build/test/cache_common.lo new file mode 100644 index 0000000..5e77ba4 --- /dev/null +++ b/build/test/cache_common.lo @@ -0,0 +1,12 @@ +# cache_common.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/cache_common.o' + +# Name of the non-PIC object +non_pic_object='cache_common.o' + diff --git a/build/test/cache_common.o b/build/test/cache_common.o new file mode 100644 index 0000000..ff0ac48 Binary files /dev/null and b/build/test/cache_common.o differ diff --git a/build/test/cmpd_dset b/build/test/cmpd_dset new file mode 100755 index 0000000..ec78f4f --- /dev/null +++ b/build/test/cmpd_dset @@ -0,0 +1,228 @@ +#! /bin/sh + +# cmpd_dset - temporary wrapper script for .libs/cmpd_dset +# Generated by libtool (GNU libtool) 2.4.6 +# +# The cmpd_dset program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file cmpd_dset.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "cmpd_dset:cmpd_dset:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "cmpd_dset:cmpd_dset:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "cmpd_dset:cmpd_dset:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'cmpd_dset' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/cmpd_dset.chkexe b/build/test/cmpd_dset.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/cmpd_dset.chklog b/build/test/cmpd_dset.chklog new file mode 100644 index 0000000..ba9f0ea --- /dev/null +++ b/build/test/cmpd_dset.chklog @@ -0,0 +1,47 @@ +============================ + cmpd_dset Test Log +============================ +Testing compound dataset: +Testing basic compound write PASSED +Testing basic compound read PASSED +Testing reversal of struct members PASSED +Testing subset struct read PASSED +Testing partially initialized superset read PASSED +Testing partially initialized superset optimized read PASSED +Testing partially initialized superset write PASSED +Testing explicit data space PASSED +Testing hyperslab partial read to array PASSED +Testing hyperslab partial read to another hyperslab PASSED +Testing hyperslab to hyperslab part initialized read PASSED +Testing hyperslab part initialized write PASSED +Testing the optimization of when the source type is a subset of the dest: +Testing writing data to contiguous and chunked datasets PASSED +Testing rewriting data with a subset of original data type PASSED +Testing reading data with a subset of original data type PASSED +Testing the optimization of when the dest type is a subset of the source: +Testing writing data to contiguous and chunked datasets PASSED +Testing rewriting data with a subset of original data type PASSED +Testing reading data with a subset of original data type PASSED +Testing that compound types can be packed out of order: +Without extra space at the end of compound... +Testing random member insertion with empty compound subtype PASSED +Testing random member insertion with full compound subtype PASSED +Testing reverse member insertion with empty compound subtype PASSED +Testing reverse member insertion with full compound subtype PASSED +Testing forward member insertion with empty compound subtype PASSED +Testing forward member insertion with full compound subtype PASSED +With extra space at the end of compound... +Testing random member insertion with empty compound subtype PASSED +Testing random member insertion with full compound subtype PASSED +Testing reverse member insertion with empty compound subtype PASSED +Testing reverse member insertion with full compound subtype PASSED +Testing forward member insertion with empty compound subtype PASSED +Testing forward member insertion with full compound subtype PASSED +Testing compound member ordering: +Testing that compound member insertion order is preserved PASSED +All compound dataset tests passed. +0.28user 0.71system 0:01.04elapsed 96%CPU (0avgtext+0avgdata 156292maxresident)k +0inputs+329472outputs (0major+71472minor)pagefaults 0swaps + +Finished testing cmpd_dset +============================ diff --git a/build/test/cmpd_dset.o b/build/test/cmpd_dset.o new file mode 100644 index 0000000..948a187 Binary files /dev/null and b/build/test/cmpd_dset.o differ diff --git a/build/test/core_file.h5 b/build/test/core_file.h5 new file mode 100644 index 0000000..936a96d Binary files /dev/null and b/build/test/core_file.h5 differ diff --git a/build/test/cross_read b/build/test/cross_read new file mode 100755 index 0000000..ea40ce1 --- /dev/null +++ b/build/test/cross_read @@ -0,0 +1,228 @@ +#! /bin/sh + +# cross_read - temporary wrapper script for .libs/cross_read +# Generated by libtool (GNU libtool) 2.4.6 +# +# The cross_read program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file cross_read.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "cross_read:cross_read:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "cross_read:cross_read:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "cross_read:cross_read:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'cross_read' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/cross_read.chkexe b/build/test/cross_read.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/cross_read.chklog b/build/test/cross_read.chklog new file mode 100644 index 0000000..d8a2719 --- /dev/null +++ b/build/test/cross_read.chklog @@ -0,0 +1,63 @@ +============================ + cross_read Test Log +============================ +Testing reading data created on Linux +Testing regular dataset of LE DOUBLE PASSED +Testing regular dataset of BE DOUBLE PASSED +Testing dataset of LE FLOAT with scale-offset filter PASSED +Testing dataset of BE FLOAT with scale-offset filter PASSED +Testing dataset of LE DOUBLE with scale-offset filter PASSED +Testing dataset of BE DOUBLE with scale-offset filter PASSED +Testing dataset of LE CHAR with scale-offset filter PASSED +Testing dataset of BE CHAR with scale-offset filter PASSED +Testing dataset of LE SHORT with scale-offset filter PASSED +Testing dataset of BE SHORT with scale-offset filter PASSED +Testing dataset of LE INT with scale-offset filter PASSED +Testing dataset of BE INT with scale-offset filter PASSED +Testing dataset of LE LONG LONG with scale-offset filter PASSED +Testing dataset of BE LONG LONG with scale-offset filter PASSED +Testing dataset of LE FLOAT with Fletcher32 filter PASSED +Testing dataset of BE FLOAT with Fletcher32 filter PASSED +Testing dataset of LE FLOAT with Deflate filter PASSED +Testing dataset of BE FLOAT with Deflate filter PASSED +Testing dataset of LE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of BE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of LE FLOAT with Shuffle filter PASSED +Testing dataset of BE FLOAT with Shuffle filter PASSED +Testing dataset of LE FLOAT with Nbit filter PASSED +Testing dataset of BE FLOAT with Nbit filter PASSED +Testing reading data created on Solaris +Testing regular dataset of LE DOUBLE PASSED +Testing regular dataset of BE DOUBLE PASSED +Testing dataset of LE FLOAT with scale-offset filter PASSED +Testing dataset of BE FLOAT with scale-offset filter PASSED +Testing dataset of LE DOUBLE with scale-offset filter PASSED +Testing dataset of BE DOUBLE with scale-offset filter PASSED +Testing dataset of LE CHAR with scale-offset filter PASSED +Testing dataset of BE CHAR with scale-offset filter PASSED +Testing dataset of LE SHORT with scale-offset filter PASSED +Testing dataset of BE SHORT with scale-offset filter PASSED +Testing dataset of LE INT with scale-offset filter PASSED +Testing dataset of BE INT with scale-offset filter PASSED +Testing dataset of LE LONG LONG with scale-offset filter PASSED +Testing dataset of BE LONG LONG with scale-offset filter PASSED +Testing dataset of LE FLOAT with Fletcher32 filter PASSED +Testing dataset of BE FLOAT with Fletcher32 filter PASSED +Testing dataset of LE FLOAT with Deflate filter PASSED +Testing dataset of BE FLOAT with Deflate filter PASSED +Testing dataset of LE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of BE FLOAT with Szip filter -SKIP- + filter is not enabled. +Testing dataset of LE FLOAT with Shuffle filter PASSED +Testing dataset of BE FLOAT with Shuffle filter PASSED +Testing dataset of LE FLOAT with Nbit filter PASSED +Testing dataset of BE FLOAT with Nbit filter PASSED +All data type tests passed. +0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+128outputs (0major+8914minor)pagefaults 0swaps + +Finished testing cross_read +============================ diff --git a/build/test/cross_read.o b/build/test/cross_read.o new file mode 100644 index 0000000..dfd5850 Binary files /dev/null and b/build/test/cross_read.o differ diff --git a/build/test/dangle b/build/test/dangle new file mode 100755 index 0000000..a33f0a3 --- /dev/null +++ b/build/test/dangle @@ -0,0 +1,228 @@ +#! /bin/sh + +# dangle - temporary wrapper script for .libs/dangle +# Generated by libtool (GNU libtool) 2.4.6 +# +# The dangle program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file dangle.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "dangle:dangle:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "dangle:dangle:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "dangle:dangle:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'dangle' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/dangle.chkexe b/build/test/dangle.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/dangle.chklog b/build/test/dangle.chklog new file mode 100644 index 0000000..e33f5a3 --- /dev/null +++ b/build/test/dangle.chklog @@ -0,0 +1,27 @@ +============================ + dangle Test Log +============================ +Testing dangling objects with weak file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +Testing dangling objects with semi file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +Testing dangling objects with strong file close: +Testing dangling dataset IDs PASSED +Testing dangling group IDs PASSED +Testing dangling named datatype IDs PASSED +Testing dangling named datatype ID used by dataset PASSED +Testing dangling attribute IDs PASSED +All dangling ID tests passed. +0.33user 0.03system 0:00.46elapsed 80%CPU (0avgtext+0avgdata 7024maxresident)k +0inputs+376outputs (0major+8913minor)pagefaults 0swaps + +Finished testing dangle +============================ diff --git a/build/test/dangle.o b/build/test/dangle.o new file mode 100644 index 0000000..9ff967d Binary files /dev/null and b/build/test/dangle.o differ diff --git a/build/test/dsets b/build/test/dsets new file mode 100755 index 0000000..3b0c69e --- /dev/null +++ b/build/test/dsets @@ -0,0 +1,228 @@ +#! /bin/sh + +# dsets - temporary wrapper script for .libs/dsets +# Generated by libtool (GNU libtool) 2.4.6 +# +# The dsets program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file dsets.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "dsets:dsets:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "dsets:dsets:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "dsets:dsets:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'dsets' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/dsets.chkexe b/build/test/dsets.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/dsets.chklog b/build/test/dsets.chklog new file mode 100644 index 0000000..3c8338c --- /dev/null +++ b/build/test/dsets.chklog @@ -0,0 +1,326 @@ +============================ + dsets Test Log +============================ +Testing with old file format: +Testing create, open, close PASSED +Testing simple I/O PASSED +Testing compact dataset I/O PASSED +Testing compact dataset of maximal size PASSED +Testing compact dataset repeated open/close and dirty flag PASSED +Testing data type conversion buffer size PASSED +Testing data type conversion PASSED +Testing H5Zget_filter_info PASSED +Testing 'null' filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(enabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(disabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(when data is corrupted) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing szip filter -SKIP- + Szip filter not enabled +Testing shuffle filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum first) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum last) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+szip+fletcher32 filters -SKIP- + szip filter not enabled +Testing 8-bit shuffling (setup) PASSED +Testing 8-bit shuffling (write) PASSED +Testing 8-bit shuffling (read) PASSED +Testing nbit filter +Testing nbit int (setup) PASSED +Testing nbit int (write) PASSED +Testing nbit int (read) PASSED +Testing nbit float (setup) PASSED +Testing nbit float (write) PASSED +Testing nbit float (read) PASSED +Testing nbit double (setup) PASSED +Testing nbit double (write) PASSED +Testing nbit double (read) PASSED +Testing nbit array (setup) PASSED +Testing nbit array (write) PASSED +Testing nbit array (read) PASSED +Testing nbit compound (setup) PASSED +Testing nbit compound (write) PASSED +Testing nbit compound (read) PASSED +Testing nbit compound complex (setup) PASSED +Testing nbit compound complex (write) PASSED +Testing nbit compound complex (read) PASSED +Testing nbit compound with no-op type (setup) PASSED +Testing nbit compound with no-op type (write) PASSED +Testing nbit compound with no-op type (read) PASSED +Testing nbit integer dataset size PASSED +Testing nbit floating-number dataset size PASSED +Testing scaleoffset filter +Testing scaleoffset int without fill value (setup) PASSED +Testing scaleoffset int without fill value (write) PASSED +Testing scaleoffset int without fill value (read) PASSED +Testing scaleoffset int with fill value (setup) PASSED +Testing scaleoffset int with fill value (write) PASSED +Testing scaleoffset int with fill value (read) PASSED +Testing scaleoffset float without fill value, D-scaling (setup) PASSED +Testing scaleoffset float without fill value, D-scaling (write) PASSED +Testing scaleoffset float without fill value, D-scaling (read) PASSED +Testing scaleoffset float with fill value, D-scaling (setup) PASSED +Testing scaleoffset float with fill value, D-scaling (write) PASSED +Testing scaleoffset float with fill value, D-scaling (read) PASSED +Testing scaleoffset double without fill value, D-scaling (setup) PASSED +Testing scaleoffset double without fill value, D-scaling (write) PASSED +Testing scaleoffset double without fill value, D-scaling (read) PASSED +Testing scaleoffset double with fill value, D-scaling (setup) PASSED +Testing scaleoffset double with fill value, D-scaling (write) PASSED +Testing scaleoffset double with fill value, D-scaling (read) PASSED +Testing multi-open with extending PASSED +Testing various datatypes PASSED +Testing dataset offset with user block PASSED +Testing dataset access with missing filter PASSED +Testing dataset filter 'can apply' callback PASSED +Testing dataset filter 'can apply' callback second PASSED +Testing dataset filter 'set local' callback PASSED +Testing dataset szip filter 'can apply' callback -SKIP- + Szip filter is not enabled. +Testing comparing dataset creation property lists PASSED +Testing copying dataset creation property lists PASSED +Testing filter deletion PASSED +Testing filters with big-endian/little-endian data PASSED +Testing I/O on datasets with zero-sized dims PASSED +Testing Read dataset with unwritten chunk & undefined fill value PASSED +Testing Write/read on randomly selected chunks PASSED +Testing deprecated API routines +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing creating dataset with >4GB chunks PASSED +Testing dataset chunk cache configuration PASSED +Testing big chunks bypassing the cache PASSED +Testing filter expanding chunks too much PASSED +Testing Compatibility for datasets that use Fixed Array indexing + PASSED +Testing extendible dataset with various layout PASSED +Testing shrinking large chunk PASSED +Testing shrinking large chunk PASSED + +Testing with new file format: +Testing create, open, close PASSED +Testing simple I/O PASSED +Testing compact dataset I/O PASSED +Testing compact dataset of maximal size PASSED +Testing compact dataset repeated open/close and dirty flag PASSED +Testing data type conversion buffer size PASSED +Testing data type conversion PASSED +Testing H5Zget_filter_info PASSED +Testing 'null' filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(enabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(disabled for read) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing Fletcher32 checksum(when data is corrupted) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing szip filter -SKIP- + Szip filter not enabled +Testing shuffle filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum first) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+deflate+checksum filters(checksum last) +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing shuffle+szip+fletcher32 filters -SKIP- + szip filter not enabled +Testing 8-bit shuffling (setup) PASSED +Testing 8-bit shuffling (write) PASSED +Testing 8-bit shuffling (read) PASSED +Testing nbit filter +Testing nbit int (setup) PASSED +Testing nbit int (write) PASSED +Testing nbit int (read) PASSED +Testing nbit float (setup) PASSED +Testing nbit float (write) PASSED +Testing nbit float (read) PASSED +Testing nbit double (setup) PASSED +Testing nbit double (write) PASSED +Testing nbit double (read) PASSED +Testing nbit array (setup) PASSED +Testing nbit array (write) PASSED +Testing nbit array (read) PASSED +Testing nbit compound (setup) PASSED +Testing nbit compound (write) PASSED +Testing nbit compound (read) PASSED +Testing nbit compound complex (setup) PASSED +Testing nbit compound complex (write) PASSED +Testing nbit compound complex (read) PASSED +Testing nbit compound with no-op type (setup) PASSED +Testing nbit compound with no-op type (write) PASSED +Testing nbit compound with no-op type (read) PASSED +Testing nbit integer dataset size PASSED +Testing nbit floating-number dataset size PASSED +Testing scaleoffset filter +Testing scaleoffset int without fill value (setup) PASSED +Testing scaleoffset int without fill value (write) PASSED +Testing scaleoffset int without fill value (read) PASSED +Testing scaleoffset int with fill value (setup) PASSED +Testing scaleoffset int with fill value (write) PASSED +Testing scaleoffset int with fill value (read) PASSED +Testing scaleoffset float without fill value, D-scaling (setup) PASSED +Testing scaleoffset float without fill value, D-scaling (write) PASSED +Testing scaleoffset float without fill value, D-scaling (read) PASSED +Testing scaleoffset float with fill value, D-scaling (setup) PASSED +Testing scaleoffset float with fill value, D-scaling (write) PASSED +Testing scaleoffset float with fill value, D-scaling (read) PASSED +Testing scaleoffset double without fill value, D-scaling (setup) PASSED +Testing scaleoffset double without fill value, D-scaling (write) PASSED +Testing scaleoffset double without fill value, D-scaling (read) PASSED +Testing scaleoffset double with fill value, D-scaling (setup) PASSED +Testing scaleoffset double with fill value, D-scaling (write) PASSED +Testing scaleoffset double with fill value, D-scaling (read) PASSED +Testing multi-open with extending PASSED +Testing various datatypes PASSED +Testing dataset offset with user block PASSED +Testing dataset access with missing filter PASSED +Testing dataset filter 'can apply' callback PASSED +Testing dataset filter 'can apply' callback second PASSED +Testing dataset filter 'set local' callback PASSED +Testing dataset szip filter 'can apply' callback -SKIP- + Szip filter is not enabled. +Testing comparing dataset creation property lists PASSED +Testing copying dataset creation property lists PASSED +Testing filter deletion PASSED +Testing filters with big-endian/little-endian data PASSED +Testing I/O on datasets with zero-sized dims PASSED +Testing Read dataset with unwritten chunk & undefined fill value PASSED +Testing Write/read on randomly selected chunks PASSED +Testing deprecated API routines +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing creating dataset with >4GB chunks PASSED +Testing dataset chunk cache configuration PASSED +Testing big chunks bypassing the cache PASSED +Testing filter expanding chunks too much PASSED +Testing Compatibility for datasets that use Fixed Array indexing + PASSED +Testing extendible dataset with various layout PASSED +Testing shrinking large chunk PASSED +Testing shrinking large chunk PASSED +Testing H5Dscatter() PASSED +Testing H5Dgather() PASSED +Testing H5Dscatter() error conditions PASSED +Testing H5Dgather() error conditions PASSED +All dataset tests passed. +0.95user 0.59system 0:02.02elapsed 76%CPU (0avgtext+0avgdata 70832maxresident)k +0inputs+112992outputs (0major+45676minor)pagefaults 0swaps + +Finished testing dsets +============================ diff --git a/build/test/dsets.o b/build/test/dsets.o new file mode 100644 index 0000000..0299858 Binary files /dev/null and b/build/test/dsets.o differ diff --git a/build/test/dt_arith b/build/test/dt_arith new file mode 100755 index 0000000..9618737 --- /dev/null +++ b/build/test/dt_arith @@ -0,0 +1,228 @@ +#! /bin/sh + +# dt_arith - temporary wrapper script for .libs/dt_arith +# Generated by libtool (GNU libtool) 2.4.6 +# +# The dt_arith program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file dt_arith.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "dt_arith:dt_arith:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "dt_arith:dt_arith:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "dt_arith:dt_arith:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'dt_arith' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/dt_arith.chkexe b/build/test/dt_arith.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/dt_arith.chklog b/build/test/dt_arith.chklog new file mode 100644 index 0000000..14cb043 --- /dev/null +++ b/build/test/dt_arith.chklog @@ -0,0 +1,359 @@ +============================ + dt_arith Test Log +============================ +Testing non-aligned conversions (ALIGNMENT=1).... +Testing query functions of compiler conversion PASSED +Testing user-define and query functions of floating-point types PASSED +Testing user-define and query functions of integer types PASSED +Floating-point overflow cases will be tested. +Testing noop float -> float conversions PASSED +Testing noop double -> double conversions PASSED +Testing noop long double -> long double conversions PASSED +Testing hard normalized float -> double conversions PASSED +Testing hard normalized double -> float conversions PASSED +Testing hard normalized float -> long double conversions PASSED +Testing hard normalized double -> long double conversions PASSED +Testing hard normalized long double -> float conversions PASSED +Testing hard normalized long double -> double conversions PASSED +Testing hard denormalized float -> double conversions PASSED +Testing hard denormalized double -> float conversions PASSED +Testing hard denormalized float -> long double conversions PASSED +Testing hard denormalized double -> long double conversions PASSED +Testing hard denormalized long double -> float conversions PASSED +Testing hard denormalized long double -> double conversions PASSED +Testing hard special float -> double conversions PASSED +Testing hard special double -> float conversions PASSED +Testing hard special float -> long double conversions PASSED +Testing hard special double -> long double conversions PASSED +Testing hard special long double -> float conversions PASSED +Testing hard special long double -> double conversions PASSED +Testing hard signed char -> unsigned char conversions PASSED +Testing hard signed char -> short conversions PASSED +Testing hard signed char -> unsigned short conversions PASSED +Testing hard signed char -> int conversions PASSED +Testing hard signed char -> unsigned int conversions PASSED +Testing hard signed char -> long conversions PASSED +Testing hard signed char -> unsigned long conversions PASSED +Testing hard unsigned char -> signed char conversions PASSED +Testing hard unsigned char -> short conversions PASSED +Testing hard unsigned char -> unsigned short conversions PASSED +Testing hard unsigned char -> int conversions PASSED +Testing hard unsigned char -> unsigned int conversions PASSED +Testing hard unsigned char -> long conversions PASSED +Testing hard unsigned char -> unsigned long conversions PASSED +Testing hard short -> signed char conversions PASSED +Testing hard short -> unsigned char conversions PASSED +Testing hard short -> unsigned short conversions PASSED +Testing hard short -> int conversions PASSED +Testing hard short -> unsigned int conversions PASSED +Testing hard short -> long conversions PASSED +Testing hard short -> unsigned long conversions PASSED +Testing hard unsigned short -> signed char conversions PASSED +Testing hard unsigned short -> unsigned char conversions PASSED +Testing hard unsigned short -> short conversions PASSED +Testing hard unsigned short -> int conversions PASSED +Testing hard unsigned short -> unsigned int conversions PASSED +Testing hard unsigned short -> long conversions PASSED +Testing hard unsigned short -> unsigned long conversions PASSED +Testing hard int -> signed char conversions PASSED +Testing hard int -> unsigned char conversions PASSED +Testing hard int -> short conversions PASSED +Testing hard int -> unsigned short conversions PASSED +Testing hard int -> unsigned int conversions PASSED +Testing hard int -> long conversions PASSED +Testing hard int -> unsigned long conversions PASSED +Testing hard unsigned int -> signed char conversions PASSED +Testing hard unsigned int -> unsigned char conversions PASSED +Testing hard unsigned int -> short conversions PASSED +Testing hard unsigned int -> unsigned short conversions PASSED +Testing hard unsigned int -> int conversions PASSED +Testing hard unsigned int -> long conversions PASSED +Testing hard unsigned int -> unsigned long conversions PASSED +Testing hard long -> signed char conversions PASSED +Testing hard long -> unsigned char conversions PASSED +Testing hard long -> short conversions PASSED +Testing hard long -> unsigned short conversions PASSED +Testing hard long -> int conversions PASSED +Testing hard long -> unsigned int conversions PASSED +Testing hard long -> unsigned long conversions PASSED +Testing hard unsigned long -> signed char conversions PASSED +Testing hard unsigned long -> unsigned char conversions PASSED +Testing hard unsigned long -> short conversions PASSED +Testing hard unsigned long -> unsigned short conversions PASSED +Testing hard unsigned long -> int conversions PASSED +Testing hard unsigned long -> unsigned int conversions PASSED +Testing hard unsigned long -> long conversions PASSED +Testing hard signed char -> float conversions PASSED +Testing hard signed char -> double conversions PASSED +Testing hard unsigned char -> float conversions PASSED +Testing hard unsigned char -> double conversions PASSED +Testing hard short -> float conversions PASSED +Testing hard short -> double conversions PASSED +Testing hard unsigned short -> float conversions PASSED +Testing hard unsigned short -> double conversions PASSED +Testing hard int -> float conversions PASSED +Testing hard int -> double conversions PASSED +Testing hard unsigned int -> float conversions PASSED +Testing hard unsigned int -> double conversions PASSED +Testing hard long -> float conversions PASSED +Testing hard long -> double conversions PASSED +Testing hard unsigned long -> float conversions PASSED +Testing hard unsigned long -> double conversions PASSED +Testing hard signed char -> long double conversions PASSED +Testing hard unsigned char -> long double conversions PASSED +Testing hard short -> long double conversions PASSED +Testing hard unsigned short -> long double conversions PASSED +Testing hard int -> long double conversions PASSED +Testing hard unsigned int -> long double conversions PASSED +Testing hard long -> long double conversions PASSED +Testing hard unsigned long -> long double conversions PASSED +Testing hard normalized float -> signed char conversions PASSED +Testing hard normalized double -> signed char conversions PASSED +Testing hard normalized float -> unsigned char conversions PASSED +Testing hard normalized double -> unsigned char conversions PASSED +Testing hard normalized float -> short conversions PASSED +Testing hard normalized double -> short conversions PASSED +Testing hard normalized float -> unsigned short conversions PASSED +Testing hard normalized double -> unsigned short conversions PASSED +Testing hard normalized float -> int conversions PASSED +Testing hard normalized double -> int conversions PASSED +Testing hard normalized float -> unsigned int conversions PASSED +Testing hard normalized double -> unsigned int conversions PASSED +Testing hard normalized float -> long conversions PASSED +Testing hard normalized double -> long conversions PASSED +Testing hard normalized float -> unsigned long conversions PASSED +Testing hard normalized double -> unsigned long conversions PASSED +Testing hard normalized long double -> signed char conversions PASSED +Testing hard normalized long double -> unsigned char conversions PASSED +Testing hard normalized long double -> short conversions PASSED +Testing hard normalized long double -> unsigned short conversions PASSED +Testing hard normalized long double -> int conversions PASSED +Testing hard normalized long double -> unsigned int conversions PASSED +Testing hard normalized long double -> long conversions PASSED +Testing hard normalized long double -> unsigned long conversions PASSED +Testing hard denormalized float -> signed char conversions PASSED +Testing hard denormalized double -> signed char conversions PASSED +Testing hard denormalized float -> unsigned char conversions PASSED +Testing hard denormalized double -> unsigned char conversions PASSED +Testing hard denormalized float -> short conversions PASSED +Testing hard denormalized double -> short conversions PASSED +Testing hard denormalized float -> unsigned short conversions PASSED +Testing hard denormalized double -> unsigned short conversions PASSED +Testing hard denormalized float -> int conversions PASSED +Testing hard denormalized double -> int conversions PASSED +Testing hard denormalized float -> unsigned int conversions PASSED +Testing hard denormalized double -> unsigned int conversions PASSED +Testing hard denormalized float -> long conversions PASSED +Testing hard denormalized double -> long conversions PASSED +Testing hard denormalized float -> unsigned long conversions PASSED +Testing hard denormalized double -> unsigned long conversions PASSED +Testing hard denormalized long double -> signed char conversions PASSED +Testing hard denormalized long double -> unsigned char conversions PASSED +Testing hard denormalized long double -> short conversions PASSED +Testing hard denormalized long double -> unsigned short conversions PASSED +Testing hard denormalized long double -> int conversions PASSED +Testing hard denormalized long double -> unsigned int conversions PASSED +Testing hard denormalized long double -> long conversions PASSED +Testing hard denormalized long double -> unsigned long conversions PASSED +Testing hard special float -> signed char conversions PASSED +Testing hard special double -> signed char conversions PASSED +Testing hard special float -> unsigned char conversions PASSED +Testing hard special double -> unsigned char conversions PASSED +Testing hard special float -> short conversions PASSED +Testing hard special double -> short conversions PASSED +Testing hard special float -> unsigned short conversions PASSED +Testing hard special double -> unsigned short conversions PASSED +Testing hard special float -> int conversions PASSED +Testing hard special double -> int conversions PASSED +Testing hard special float -> unsigned int conversions PASSED +Testing hard special double -> unsigned int conversions PASSED +Testing hard special float -> long conversions PASSED +Testing hard special double -> long conversions PASSED +Testing hard special float -> unsigned long conversions PASSED +Testing hard special double -> unsigned long conversions PASSED +Testing hard special long double -> signed char conversions PASSED +Testing hard special long double -> unsigned char conversions PASSED +Testing hard special long double -> short conversions PASSED +Testing hard special long double -> unsigned short conversions PASSED +Testing hard special long double -> int conversions PASSED +Testing hard special long double -> unsigned int conversions PASSED +Testing hard special long double -> long conversions PASSED +Testing hard special long double -> unsigned long conversions PASSED +Testing hard particular floating number -> integer conversions PASSED +Testing soft normalized float -> double conversions PASSED +Testing soft normalized double -> float conversions PASSED +Testing soft normalized float -> long double conversions PASSED +Testing soft normalized double -> long double conversions PASSED +Testing soft normalized long double -> float conversions PASSED +Testing soft normalized long double -> double conversions PASSED +Testing soft denormalized float -> double conversions PASSED +Testing soft denormalized double -> float conversions PASSED +Testing soft denormalized float -> long double conversions PASSED +Testing soft denormalized double -> long double conversions PASSED +Testing soft denormalized long double -> float conversions PASSED +Testing soft denormalized long double -> double conversions PASSED +Testing soft special float -> double conversions PASSED +Testing soft special double -> float conversions PASSED +Testing soft special float -> long double conversions PASSED +Testing soft special double -> long double conversions PASSED +Testing soft special long double -> float conversions PASSED +Testing soft special long double -> double conversions PASSED +Testing overlap calculations PASSED +Testing soft signed char -> unsigned char conversions PASSED +Testing soft signed char -> short conversions PASSED +Testing soft signed char -> unsigned short conversions PASSED +Testing soft signed char -> int conversions PASSED +Testing soft signed char -> unsigned int conversions PASSED +Testing soft signed char -> long conversions PASSED +Testing soft signed char -> unsigned long conversions PASSED +Testing soft unsigned char -> signed char conversions PASSED +Testing soft unsigned char -> short conversions PASSED +Testing soft unsigned char -> unsigned short conversions PASSED +Testing soft unsigned char -> int conversions PASSED +Testing soft unsigned char -> unsigned int conversions PASSED +Testing soft unsigned char -> long conversions PASSED +Testing soft unsigned char -> unsigned long conversions PASSED +Testing soft short -> signed char conversions PASSED +Testing soft short -> unsigned char conversions PASSED +Testing soft short -> unsigned short conversions PASSED +Testing soft short -> int conversions PASSED +Testing soft short -> unsigned int conversions PASSED +Testing soft short -> long conversions PASSED +Testing soft short -> unsigned long conversions PASSED +Testing soft unsigned short -> signed char conversions PASSED +Testing soft unsigned short -> unsigned char conversions PASSED +Testing soft unsigned short -> short conversions PASSED +Testing soft unsigned short -> int conversions PASSED +Testing soft unsigned short -> unsigned int conversions PASSED +Testing soft unsigned short -> long conversions PASSED +Testing soft unsigned short -> unsigned long conversions PASSED +Testing soft int -> signed char conversions PASSED +Testing soft int -> unsigned char conversions PASSED +Testing soft int -> short conversions PASSED +Testing soft int -> unsigned short conversions PASSED +Testing soft int -> unsigned int conversions PASSED +Testing soft int -> long conversions PASSED +Testing soft int -> unsigned long conversions PASSED +Testing soft unsigned int -> signed char conversions PASSED +Testing soft unsigned int -> unsigned char conversions PASSED +Testing soft unsigned int -> short conversions PASSED +Testing soft unsigned int -> unsigned short conversions PASSED +Testing soft unsigned int -> int conversions PASSED +Testing soft unsigned int -> long conversions PASSED +Testing soft unsigned int -> unsigned long conversions PASSED +Testing soft long -> signed char conversions PASSED +Testing soft long -> unsigned char conversions PASSED +Testing soft long -> short conversions PASSED +Testing soft long -> unsigned short conversions PASSED +Testing soft long -> int conversions PASSED +Testing soft long -> unsigned int conversions PASSED +Testing soft long -> unsigned long conversions PASSED +Testing soft unsigned long -> signed char conversions PASSED +Testing soft unsigned long -> unsigned char conversions PASSED +Testing soft unsigned long -> short conversions PASSED +Testing soft unsigned long -> unsigned short conversions PASSED +Testing soft unsigned long -> int conversions PASSED +Testing soft unsigned long -> unsigned int conversions PASSED +Testing soft unsigned long -> long conversions PASSED +Testing soft normalized float -> signed char conversions PASSED +Testing soft normalized double -> signed char conversions PASSED +Testing soft normalized float -> unsigned char conversions PASSED +Testing soft normalized double -> unsigned char conversions PASSED +Testing soft normalized float -> short conversions PASSED +Testing soft normalized double -> short conversions PASSED +Testing soft normalized float -> unsigned short conversions PASSED +Testing soft normalized double -> unsigned short conversions PASSED +Testing soft normalized float -> int conversions PASSED +Testing soft normalized double -> int conversions PASSED +Testing soft normalized float -> unsigned int conversions PASSED +Testing soft normalized double -> unsigned int conversions PASSED +Testing soft normalized float -> long conversions PASSED +Testing soft normalized double -> long conversions PASSED +Testing soft normalized float -> unsigned long conversions PASSED +Testing soft normalized double -> unsigned long conversions PASSED +Testing soft normalized long double -> signed char conversions PASSED +Testing soft normalized long double -> unsigned char conversions PASSED +Testing soft normalized long double -> short conversions PASSED +Testing soft normalized long double -> unsigned short conversions PASSED +Testing soft normalized long double -> int conversions PASSED +Testing soft normalized long double -> unsigned int conversions PASSED +Testing soft normalized long double -> long conversions PASSED +Testing soft normalized long double -> unsigned long conversions PASSED +Testing soft denormalized float -> signed char conversions PASSED +Testing soft denormalized double -> signed char conversions PASSED +Testing soft denormalized float -> unsigned char conversions PASSED +Testing soft denormalized double -> unsigned char conversions PASSED +Testing soft denormalized float -> short conversions PASSED +Testing soft denormalized double -> short conversions PASSED +Testing soft denormalized float -> unsigned short conversions PASSED +Testing soft denormalized double -> unsigned short conversions PASSED +Testing soft denormalized float -> int conversions PASSED +Testing soft denormalized double -> int conversions PASSED +Testing soft denormalized float -> unsigned int conversions PASSED +Testing soft denormalized double -> unsigned int conversions PASSED +Testing soft denormalized float -> long conversions PASSED +Testing soft denormalized double -> long conversions PASSED +Testing soft denormalized float -> unsigned long conversions PASSED +Testing soft denormalized double -> unsigned long conversions PASSED +Testing soft denormalized long double -> signed char conversions PASSED +Testing soft denormalized long double -> unsigned char conversions PASSED +Testing soft denormalized long double -> short conversions PASSED +Testing soft denormalized long double -> unsigned short conversions PASSED +Testing soft denormalized long double -> int conversions PASSED +Testing soft denormalized long double -> unsigned int conversions PASSED +Testing soft denormalized long double -> long conversions PASSED +Testing soft denormalized long double -> unsigned long conversions PASSED +Testing soft special float -> signed char conversions PASSED +Testing soft special double -> signed char conversions PASSED +Testing soft special float -> unsigned char conversions PASSED +Testing soft special double -> unsigned char conversions PASSED +Testing soft special float -> short conversions PASSED +Testing soft special double -> short conversions PASSED +Testing soft special float -> unsigned short conversions PASSED +Testing soft special double -> unsigned short conversions PASSED +Testing soft special float -> int conversions PASSED +Testing soft special double -> int conversions PASSED +Testing soft special float -> unsigned int conversions PASSED +Testing soft special double -> unsigned int conversions PASSED +Testing soft special float -> long conversions PASSED +Testing soft special double -> long conversions PASSED +Testing soft special float -> unsigned long conversions PASSED +Testing soft special double -> unsigned long conversions PASSED +Testing soft special long double -> signed char conversions PASSED +Testing soft special long double -> unsigned char conversions PASSED +Testing soft special long double -> short conversions PASSED +Testing soft special long double -> unsigned short conversions PASSED +Testing soft special long double -> int conversions PASSED +Testing soft special long double -> unsigned int conversions PASSED +Testing soft special long double -> long conversions PASSED +Testing soft special long double -> unsigned long conversions PASSED +Testing soft signed char -> float conversions PASSED +Testing soft signed char -> double conversions PASSED +Testing soft unsigned char -> float conversions PASSED +Testing soft unsigned char -> double conversions PASSED +Testing soft short -> float conversions PASSED +Testing soft short -> double conversions PASSED +Testing soft unsigned short -> float conversions PASSED +Testing soft unsigned short -> double conversions PASSED +Testing soft int -> float conversions PASSED +Testing soft int -> double conversions PASSED +Testing soft unsigned int -> float conversions PASSED +Testing soft unsigned int -> double conversions PASSED +Testing soft long -> float conversions PASSED +Testing soft long -> double conversions PASSED +Testing soft unsigned long -> float conversions PASSED +Testing soft unsigned long -> double conversions PASSED +Testing soft signed char -> long double conversions PASSED +Testing soft unsigned char -> long double conversions PASSED +Testing soft short -> long double conversions PASSED +Testing soft unsigned short -> long double conversions PASSED +Testing soft int -> long double conversions PASSED +Testing soft unsigned int -> long double conversions PASSED +Testing soft long -> long double conversions PASSED +Testing soft unsigned long -> long double conversions PASSED +All data type tests passed. +1.63user 0.06system 0:01.73elapsed 98%CPU (0avgtext+0avgdata 7116maxresident)k +0inputs+528outputs (0major+25485minor)pagefaults 0swaps + +Finished testing dt_arith +============================ diff --git a/build/test/dt_arith.o b/build/test/dt_arith.o new file mode 100644 index 0000000..e61aef3 Binary files /dev/null and b/build/test/dt_arith.o differ diff --git a/build/test/dt_arith1.h5 b/build/test/dt_arith1.h5 new file mode 100644 index 0000000..74a9bf4 Binary files /dev/null and b/build/test/dt_arith1.h5 differ diff --git a/build/test/dt_arith2.h5 b/build/test/dt_arith2.h5 new file mode 100644 index 0000000..64a836e Binary files /dev/null and b/build/test/dt_arith2.h5 differ diff --git a/build/test/dtransform b/build/test/dtransform new file mode 100755 index 0000000..b15872a --- /dev/null +++ b/build/test/dtransform @@ -0,0 +1,228 @@ +#! /bin/sh + +# dtransform - temporary wrapper script for .libs/dtransform +# Generated by libtool (GNU libtool) 2.4.6 +# +# The dtransform program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file dtransform.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "dtransform:dtransform:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "dtransform:dtransform:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "dtransform:dtransform:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'dtransform' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/dtransform.chkexe b/build/test/dtransform.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/dtransform.chklog b/build/test/dtransform.chklog new file mode 100644 index 0000000..4834cca --- /dev/null +++ b/build/test/dtransform.chklog @@ -0,0 +1,87 @@ +============================ + dtransform Test Log +============================ +Testing Intializing test... PASSED +Testing H5Pget_data_transform (get before set) PASSED +Testing H5Pset_data_transform (set with NULL transform) PASSED +Testing H5Pset_data_transform (set with invalid transform 1) PASSED +Testing H5Pset_data_transform (set with invalid transform 2) PASSED +Testing H5Pset_data_transform (set with invalid transform 3) PASSED +Testing H5Pset_data_transform (set with invalid transform 4) PASSED +Testing H5Pset_data_transform (set with invalid transform 5) PASSED +Testing H5Pset_data_transform (set with invalid transform 6) PASSED +Testing H5Pset_data_transform (set with invalid transform 7) PASSED +Testing H5Pset_data_transform (set with invalid transform 8) PASSED +Testing contiguous, no data type conversion (char->char) PASSED +Testing contiguous, byte order conversion (char->char) PASSED +Testing contiguous, no data type conversion (uchar->uchar) PASSED +Testing contiguous, byte order conversion (uchar->uchar) PASSED +Testing contiguous, no data type conversion (schar->schar) PASSED +Testing contiguous, byte order conversion (schar->schar) PASSED +Testing contiguous, with type conversion (float->schar) PASSED +Testing contiguous, no data type conversion (short->short) PASSED +Testing contiguous, byte order conversion (short->short) PASSED +Testing contiguous, with type conversion (float->short) PASSED +Testing contiguous, no data type conversion (ushort->ushort) PASSED +Testing contiguous, byte order conversion (ushort->ushort) PASSED +Testing contiguous, no data type conversion (int->int) PASSED +Testing contiguous, byte order conversion (int->int) PASSED +Testing contiguous, with type conversion (float->int) PASSED +Testing contiguous, no data type conversion (uint->uint) PASSED +Testing contiguous, byte order conversion (uint->uint) PASSED +Testing contiguous, no data type conversion (long->long) PASSED +Testing contiguous, byte order conversion (long->long) PASSED +Testing contiguous, with type conversion (float->long) PASSED +Testing contiguous, no data type conversion (ulong->ulong) PASSED +Testing contiguous, byte order conversion (ulong->ulong) PASSED +Testing contiguous, no data type conversion (llong->llong) PASSED +Testing contiguous, byte order conversion (llong->llong) PASSED +Testing contiguous, with type conversion (float->llong) PASSED +Testing contiguous, no data type conversion (ullong->ullong) PASSED +Testing contiguous, byte order conversion (ullong->ullong) PASSED +Testing contiguous, no data type conversion (float->float) PASSED +Testing contiguous, byte order conversion (float->float) PASSED +Testing contiguous, with type conversion (float->float) PASSED +Testing contiguous, no data type conversion (double->double) PASSED +Testing contiguous, byte order conversion (double->double) PASSED +Testing contiguous, with type conversion (float->double) PASSED +Testing contiguous, no data type conversion (ldouble->ldouble) PASSED +Testing contiguous, byte order conversion (ldouble->ldouble) PASSED +Testing contiguous, with type conversion (float->ldouble) PASSED +Testing chunked, no data type conversion (char->char) PASSED +Testing chunked, no data type conversion (uchar->uchar) PASSED +Testing chunked, no data type conversion (schar->schar) PASSED +Testing chunked, with type conversion (float->schar) PASSED +Testing chunked, no data type conversion (short->short) PASSED +Testing chunked, with type conversion (float->short) PASSED +Testing chunked, no data type conversion (ushort->ushort) PASSED +Testing chunked, no data type conversion (int->int) PASSED +Testing chunked, with type conversion (float->int) PASSED +Testing chunked, no data type conversion (uint->uint) PASSED +Testing chunked, no data type conversion (long->long) PASSED +Testing chunked, with type conversion (float->long) PASSED +Testing chunked, no data type conversion (ulong->ulong) PASSED +Testing chunked, no data type conversion (llong->llong) PASSED +Testing chunked, with type conversion (float->llong) PASSED +Testing chunked, no data type conversion (ullong->ullong) PASSED +Testing chunked, no data type conversion (float->float) PASSED +Testing chunked, with type conversion (float->float) PASSED +Testing chunked, no data type conversion (double->double) PASSED +Testing chunked, with type conversion (float->double) PASSED +Testing chunked, no data type conversion (ldouble->ldouble) PASSED +Testing chunked, with type conversion (float->ldouble) PASSED +Testing data transform, linear transform w/ copied property PASSED +Testing data transform, polynomial transform w/ copied property PASSED +Testing data transform, trivial transform, without type conversion PASSED +Testing data transform, trivial transform, with type conversion PASSED +Testing data transform, polynomial transform (int->float) PASSED +Testing data transform, polynomial transform (float->int) PASSED +Testing H5Pget_data_transform PASSED +Testing data transform, read after reseting of transform property PASSED +Testing H5Pget_data_transform, after resetting transform property PASSED +Testing data transform of some special cases PASSED +0.06user 0.03system 0:00.09elapsed 103%CPU (0avgtext+0avgdata 7088maxresident)k +0inputs+536outputs (0major+9003minor)pagefaults 0swaps + +Finished testing dtransform +============================ diff --git a/build/test/dtransform.h5 b/build/test/dtransform.h5 new file mode 100644 index 0000000..6e672aa Binary files /dev/null and b/build/test/dtransform.h5 differ diff --git a/build/test/dtransform.o b/build/test/dtransform.o new file mode 100644 index 0000000..0adc2c3 Binary files /dev/null and b/build/test/dtransform.o differ diff --git a/build/test/dtypes b/build/test/dtypes new file mode 100755 index 0000000..e0cf7ed --- /dev/null +++ b/build/test/dtypes @@ -0,0 +1,228 @@ +#! /bin/sh + +# dtypes - temporary wrapper script for .libs/dtypes +# Generated by libtool (GNU libtool) 2.4.6 +# +# The dtypes program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file dtypes.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "dtypes:dtypes:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "dtypes:dtypes:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "dtypes:dtypes:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'dtypes' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/dtypes.chkexe b/build/test/dtypes.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/dtypes.chklog b/build/test/dtypes.chklog new file mode 100644 index 0000000..4448a95 --- /dev/null +++ b/build/test/dtypes.chklog @@ -0,0 +1,55 @@ +============================ + dtypes Test Log +============================ +Testing non-aligned conversions (ALIGNMENT=1).... +Testing H5Tget_class() PASSED +Testing H5Tcopy() PASSED +Testing H5Tdetect_class() PASSED +Testing compound datatypes PASSED +Testing query functions of compound and enumeration types PASSED +Testing transient datatypes PASSED +Testing named datatypes PASSED +Testing functions of encoding and decoding datatypes PASSED +Testing encoding datatypes with the 'use the latest format' flag PASSED +Testing exceptions for int <-> float conversions PASSED +Testing indirectly reopening committed datatypes PASSED +Testing indirectly reopening recursively committed datatypes including file reopening PASSED +Testing deleting objects that use named datatypes PASSED +Testing deleting objects that use named datatypes PASSED +Testing H5Tset/get_order for compound type PASSED +Testing string type creation using H5Tcreate PASSED +Testing deprected API routines for datatypes PASSED +Testing string conversions PASSED +Testing random string conversion speed PASSED +Testing some type functions for string PASSED +Testing compound element reordering PASSED +Testing compound subset conversions PASSED +Testing compound element shrinking & reordering PASSED +Testing optimized struct converter PASSED +Testing compound element growing PASSED +Testing compound element insertion PASSED +Testing packing compound datatypes PASSED +Testing compound datatype with VL string PASSED +Testing array datatype of compound type with VL string PASSED +Testing registering type conversion routine with compound conversions PASSED +Testing adjust size of compound datatypes PASSED +Testing compound datatypes of boundary size with latest format PASSED +Testing unaligned VL strings in compound PASSED +Testing compound subset conversion with extra space in source PASSED +Testing visibility of internally registered type ids PASSED +Testing that H5Tpack removes trailing bytes PASSED +Testing accessing objects with compound datatypes that have no fields PASSED +Testing random enum conversion O(N) PASSED +Testing random enum conversion O(N log N) PASSED +Testing non-native enumeration type conversion PASSED +Testing bitfield conversions PASSED +Testing some type functions for bitfield PASSED +Testing opaque datatypes PASSED +Testing H5Tset/get_order PASSED +Testing string conversion between ASCII and UTF PASSED +All datatype tests passed. +0.40user 0.06system 0:00.56elapsed 82%CPU (0avgtext+0avgdata 25384maxresident)k +0inputs+1096outputs (0major+20170minor)pagefaults 0swaps + +Finished testing dtypes +============================ diff --git a/build/test/dtypes.o b/build/test/dtypes.o new file mode 100644 index 0000000..e5e22d0 Binary files /dev/null and b/build/test/dtypes.o differ diff --git a/build/test/dtypes10.h5 b/build/test/dtypes10.h5 new file mode 100644 index 0000000..4895cff Binary files /dev/null and b/build/test/dtypes10.h5 differ diff --git a/build/test/dtypes3.h5 b/build/test/dtypes3.h5 new file mode 100644 index 0000000..6bfd4de Binary files /dev/null and b/build/test/dtypes3.h5 differ diff --git a/build/test/dtypes4.h5 b/build/test/dtypes4.h5 new file mode 100644 index 0000000..0235092 Binary files /dev/null and b/build/test/dtypes4.h5 differ diff --git a/build/test/dynlib1.lo b/build/test/dynlib1.lo new file mode 100644 index 0000000..ac70ba8 --- /dev/null +++ b/build/test/dynlib1.lo @@ -0,0 +1,12 @@ +# dynlib1.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib1.o' + +# Name of the non-PIC object +non_pic_object='dynlib1.o' + diff --git a/build/test/dynlib1.o b/build/test/dynlib1.o new file mode 100644 index 0000000..39a80bb Binary files /dev/null and b/build/test/dynlib1.o differ diff --git a/build/test/dynlib2.lo b/build/test/dynlib2.lo new file mode 100644 index 0000000..527fda2 --- /dev/null +++ b/build/test/dynlib2.lo @@ -0,0 +1,12 @@ +# dynlib2.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib2.o' + +# Name of the non-PIC object +non_pic_object='dynlib2.o' + diff --git a/build/test/dynlib2.o b/build/test/dynlib2.o new file mode 100644 index 0000000..6c68766 Binary files /dev/null and b/build/test/dynlib2.o differ diff --git a/build/test/dynlib3.lo b/build/test/dynlib3.lo new file mode 100644 index 0000000..ec0980f --- /dev/null +++ b/build/test/dynlib3.lo @@ -0,0 +1,12 @@ +# dynlib3.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib3.o' + +# Name of the non-PIC object +non_pic_object='dynlib3.o' + diff --git a/build/test/dynlib3.o b/build/test/dynlib3.o new file mode 100644 index 0000000..485f08f Binary files /dev/null and b/build/test/dynlib3.o differ diff --git a/build/test/dynlib4.lo b/build/test/dynlib4.lo new file mode 100644 index 0000000..b524700 --- /dev/null +++ b/build/test/dynlib4.lo @@ -0,0 +1,12 @@ +# dynlib4.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib4.o' + +# Name of the non-PIC object +non_pic_object='dynlib4.o' + diff --git a/build/test/dynlib4.o b/build/test/dynlib4.o new file mode 100644 index 0000000..f364734 Binary files /dev/null and b/build/test/dynlib4.o differ diff --git a/build/test/efc b/build/test/efc new file mode 100755 index 0000000..2fb17a3 --- /dev/null +++ b/build/test/efc @@ -0,0 +1,228 @@ +#! /bin/sh + +# efc - temporary wrapper script for .libs/efc +# Generated by libtool (GNU libtool) 2.4.6 +# +# The efc program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file efc.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "efc:efc:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "efc:efc:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "efc:efc:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'efc' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/efc.chkexe b/build/test/efc.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/efc.chklog b/build/test/efc.chklog new file mode 100644 index 0000000..7fb986d --- /dev/null +++ b/build/test/efc.chklog @@ -0,0 +1,13 @@ +============================ + efc Test Log +============================ +Testing the external file cache +Testing single EFC PASSED +Testing graph of EFCs without cycles PASSED +Testing graph of EFCs with cycles PASSED +All external file cache tests passed. +0.17user 0.06system 0:01.20elapsed 19%CPU (0avgtext+0avgdata 7320maxresident)k +0inputs+3632outputs (0major+10534minor)pagefaults 0swaps + +Finished testing efc +============================ diff --git a/build/test/efc.o b/build/test/efc.o new file mode 100644 index 0000000..a39694e Binary files /dev/null and b/build/test/efc.o differ diff --git a/build/test/enum b/build/test/enum new file mode 100755 index 0000000..037eb7c --- /dev/null +++ b/build/test/enum @@ -0,0 +1,228 @@ +#! /bin/sh + +# enum - temporary wrapper script for .libs/enum +# Generated by libtool (GNU libtool) 2.4.6 +# +# The enum program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file enum.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "enum:enum:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "enum:enum:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "enum:enum:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'enum' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/enum.chkexe b/build/test/enum.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/enum.chklog b/build/test/enum.chklog new file mode 100644 index 0000000..78d3ab6 --- /dev/null +++ b/build/test/enum.chklog @@ -0,0 +1,15 @@ +============================ + enum Test Log +============================ +Testing named enumeration types PASSED +Testing enumeration conversions PASSED +Testing O(1) conversions PASSED +Testing O(log N) converions PASSED +Testing for non-existing name and value PASSED +Testing some functions with enumeration types PASSED +All enum tests passed. +0.05user 0.02system 0:00.07elapsed 100%CPU (0avgtext+0avgdata 7040maxresident)k +0inputs+192outputs (0major+8910minor)pagefaults 0swaps + +Finished testing enum +============================ diff --git a/build/test/enum.o b/build/test/enum.o new file mode 100644 index 0000000..4a7b21e Binary files /dev/null and b/build/test/enum.o differ diff --git a/build/test/err_compat b/build/test/err_compat new file mode 100755 index 0000000..bb7819f --- /dev/null +++ b/build/test/err_compat @@ -0,0 +1,228 @@ +#! /bin/sh + +# err_compat - temporary wrapper script for .libs/err_compat +# Generated by libtool (GNU libtool) 2.4.6 +# +# The err_compat program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file err_compat.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "err_compat:err_compat:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "err_compat:err_compat:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "err_compat:err_compat:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'err_compat' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/err_compat.o b/build/test/err_compat.o new file mode 100644 index 0000000..096c48c Binary files /dev/null and b/build/test/err_compat.o differ diff --git a/build/test/error_test b/build/test/error_test new file mode 100755 index 0000000..6cf4762 --- /dev/null +++ b/build/test/error_test @@ -0,0 +1,228 @@ +#! /bin/sh + +# error_test - temporary wrapper script for .libs/error_test +# Generated by libtool (GNU libtool) 2.4.6 +# +# The error_test program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file error_test.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "error_test:error_test:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "error_test:error_test:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "error_test:error_test:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'error_test' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/error_test.o b/build/test/error_test.o new file mode 100644 index 0000000..1deea19 Binary files /dev/null and b/build/test/error_test.o differ diff --git a/build/test/extend b/build/test/extend new file mode 100755 index 0000000..c9dbf46 --- /dev/null +++ b/build/test/extend @@ -0,0 +1,228 @@ +#! /bin/sh + +# extend - temporary wrapper script for .libs/extend +# Generated by libtool (GNU libtool) 2.4.6 +# +# The extend program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file extend.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "extend:extend:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "extend:extend:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "extend:extend:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'extend' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/extend.chkexe b/build/test/extend.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extend.chklog b/build/test/extend.chklog new file mode 100644 index 0000000..5d3e1e7 --- /dev/null +++ b/build/test/extend.chklog @@ -0,0 +1,13 @@ +============================ + extend Test Log +============================ +Testing extendible dataset with incr. allocation PASSED +Testing extendible dataset with incr. allocation w/deprec. symbols PASSED +Testing extendible dataset with early allocation PASSED +Testing extendible dataset with early allocation w/deprec. symbols PASSED +All extend tests passed. +0.06user 0.02system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+8016outputs (0major+9214minor)pagefaults 0swaps + +Finished testing extend +============================ diff --git a/build/test/extend.o b/build/test/extend.o new file mode 100644 index 0000000..3266936 Binary files /dev/null and b/build/test/extend.o differ diff --git a/build/test/external b/build/test/external new file mode 100755 index 0000000..e5fefe6 --- /dev/null +++ b/build/test/external @@ -0,0 +1,228 @@ +#! /bin/sh + +# external - temporary wrapper script for .libs/external +# Generated by libtool (GNU libtool) 2.4.6 +# +# The external program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file external.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "external:external:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "external:external:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "external:external:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'external' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/external.chkexe b/build/test/external.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/external.chklog b/build/test/external.chklog new file mode 100644 index 0000000..bf740ab --- /dev/null +++ b/build/test/external.chklog @@ -0,0 +1,40 @@ +============================ + external Test Log +============================ +Testing with the default file format: +Testing fixed-size data space, exact storage PASSED +Testing external storage is too small PASSED +Testing extendible dataspace, exact external size PASSED +Testing extendible dataspace, external storage is too small PASSED +Testing unlimited dataspace, unlimited external storage PASSED +Testing multiple external files PASSED +Testing external file following unlimited file PASSED +Testing address overflow in external files PASSED +Testing read external dataset PASSED +Testing write external dataset PASSED +Testing absolute filenames for external file PASSED +Testing filenames relative to current directory for external file PASSED +Testing filenames relative to HDF5 file for external file PASSED +Testing prefix in HDF5_EXTFILE_PREFIX PASSED + +Testing with the latest file format: +Testing fixed-size data space, exact storage PASSED +Testing external storage is too small PASSED +Testing extendible dataspace, exact external size PASSED +Testing extendible dataspace, external storage is too small PASSED +Testing unlimited dataspace, unlimited external storage PASSED +Testing multiple external files PASSED +Testing external file following unlimited file PASSED +Testing address overflow in external files PASSED +Testing read external dataset PASSED +Testing write external dataset PASSED +Testing absolute filenames for external file PASSED +Testing filenames relative to current directory for external file PASSED +Testing filenames relative to HDF5 file for external file PASSED +Testing prefix in HDF5_EXTFILE_PREFIX PASSED +All external storage tests passed. +0.06user 0.04system 0:00.27elapsed 39%CPU (0avgtext+0avgdata 7076maxresident)k +0inputs+1168outputs (0major+9179minor)pagefaults 0swaps + +Finished testing external +============================ diff --git a/build/test/external.o b/build/test/external.o new file mode 100644 index 0000000..14085ef Binary files /dev/null and b/build/test/external.o differ diff --git a/build/test/extlinks16A00000.h5 b/build/test/extlinks16A00000.h5 new file mode 100644 index 0000000..90d64a0 Binary files /dev/null and b/build/test/extlinks16A00000.h5 differ diff --git a/build/test/extlinks16A00001.h5 b/build/test/extlinks16A00001.h5 new file mode 100644 index 0000000..19ee0b2 Binary files /dev/null and b/build/test/extlinks16A00001.h5 differ diff --git a/build/test/extlinks16A00002.h5 b/build/test/extlinks16A00002.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks16B-b.h5 b/build/test/extlinks16B-b.h5 new file mode 100644 index 0000000..8a25ae7 Binary files /dev/null and b/build/test/extlinks16B-b.h5 differ diff --git a/build/test/extlinks16B-g.h5 b/build/test/extlinks16B-g.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks16B-l.h5 b/build/test/extlinks16B-l.h5 new file mode 100644 index 0000000..fd54b3b Binary files /dev/null and b/build/test/extlinks16B-l.h5 differ diff --git a/build/test/extlinks16B-r.h5 b/build/test/extlinks16B-r.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks16B-s.h5 b/build/test/extlinks16B-s.h5 new file mode 100644 index 0000000..73c6640 Binary files /dev/null and b/build/test/extlinks16B-s.h5 differ diff --git a/build/test/extlinks19B00000.h5 b/build/test/extlinks19B00000.h5 new file mode 100644 index 0000000..02f364a Binary files /dev/null and b/build/test/extlinks19B00000.h5 differ diff --git a/build/test/extlinks19B00001.h5 b/build/test/extlinks19B00001.h5 new file mode 100644 index 0000000..22ece70 Binary files /dev/null and b/build/test/extlinks19B00001.h5 differ diff --git a/build/test/extlinks19B00002.h5 b/build/test/extlinks19B00002.h5 new file mode 100644 index 0000000..9c86d7c Binary files /dev/null and b/build/test/extlinks19B00002.h5 differ diff --git a/build/test/extlinks19B00003.h5 b/build/test/extlinks19B00003.h5 new file mode 100644 index 0000000..2e7e5ac Binary files /dev/null and b/build/test/extlinks19B00003.h5 differ diff --git a/build/test/extlinks19B00004.h5 b/build/test/extlinks19B00004.h5 new file mode 100644 index 0000000..fa7161f Binary files /dev/null and b/build/test/extlinks19B00004.h5 differ diff --git a/build/test/extlinks19B00005.h5 b/build/test/extlinks19B00005.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00006.h5 b/build/test/extlinks19B00006.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00007.h5 b/build/test/extlinks19B00007.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00008.h5 b/build/test/extlinks19B00008.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00009.h5 b/build/test/extlinks19B00009.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00010.h5 b/build/test/extlinks19B00010.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00011.h5 b/build/test/extlinks19B00011.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00012.h5 b/build/test/extlinks19B00012.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00013.h5 b/build/test/extlinks19B00013.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00014.h5 b/build/test/extlinks19B00014.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00015.h5 b/build/test/extlinks19B00015.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00016.h5 b/build/test/extlinks19B00016.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00017.h5 b/build/test/extlinks19B00017.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00018.h5 b/build/test/extlinks19B00018.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00019.h5 b/build/test/extlinks19B00019.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00020.h5 b/build/test/extlinks19B00020.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00021.h5 b/build/test/extlinks19B00021.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00022.h5 b/build/test/extlinks19B00022.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00023.h5 b/build/test/extlinks19B00023.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00024.h5 b/build/test/extlinks19B00024.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00025.h5 b/build/test/extlinks19B00025.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00026.h5 b/build/test/extlinks19B00026.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00027.h5 b/build/test/extlinks19B00027.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/extlinks19B00028.h5 b/build/test/extlinks19B00028.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/test/fheap b/build/test/fheap new file mode 100755 index 0000000..8d99121 --- /dev/null +++ b/build/test/fheap @@ -0,0 +1,228 @@ +#! /bin/sh + +# fheap - temporary wrapper script for .libs/fheap +# Generated by libtool (GNU libtool) 2.4.6 +# +# The fheap program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file fheap.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "fheap:fheap:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "fheap:fheap:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "fheap:fheap:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'fheap' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/fheap.chkexe b/build/test/fheap.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/fheap.chklog b/build/test/fheap.chklog new file mode 100644 index 0000000..d3db3b0 --- /dev/null +++ b/build/test/fheap.chklog @@ -0,0 +1,1016 @@ +============================ + fheap Test Log +============================ +Testing with normal parameters +Testing fractal heap creation PASSED +Testing query heap creation parameters PASSED +Testing create, close & reopen fractal heap PASSED +Testing open fractal heap twice PASSED +Testing deleting open fractal heap PASSED +Testing limits of heap ID lengths PASSED +Testing creating heaps with I/O filters PASSED +Testing querying heap statistics PASSED +Testing reopening header through different file PASSED +Bulk-filling blocks w/large objects +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Bulk-filling blocks w/single object +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Using 'normal' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Using 'small' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Using 'large' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Testing writing objects in heap PASSED +Testing writing objects in heap with compressed blocks PASSED +Testing with reopen heap flag set +Testing fractal heap creation PASSED +Testing query heap creation parameters PASSED +Testing create, close & reopen fractal heap PASSED +Testing open fractal heap twice PASSED +Testing deleting open fractal heap PASSED +Testing limits of heap ID lengths PASSED +Testing creating heaps with I/O filters PASSED +Testing querying heap statistics PASSED +Testing reopening header through different file PASSED +Bulk-filling blocks w/large objects +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Bulk-filling blocks w/single object +Testing inserting 'weird' sized objects into absolute heap PASSED +Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED +Testing removing bad heap IDs from absolute heap PASSED +Testing removing single object from absolute heap PASSED +Testing removing two objects from absolute heap PASSED +Testing removing single larger object from absolute heap PASSED +Testing removing two larger objects from absolute heap (forward) PASSED +Testing removing two larger objects from absolute heap (reverse) PASSED +Testing removing three larger objects from absolute heap (forward) PASSED +Testing removing three larger objects from absolute heap (reverse) PASSED +Testing incremental object insertion and removal PASSED +Testing removing all objects from root direct block of absolute heap (all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED +Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED +Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED +Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED +Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED +Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED +Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED +Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED +Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED +Using 'normal' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects +Testing insert one huge object, then remove (all - forward) PASSED +Testing insert two huge objects, then remove (all - forward) PASSED +Testing insert three huge objects, then remove (all - forward) PASSED +Testing insert mix of normal & huge objects, then remove (all - forward) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert one tiny object, then remove (all - forward) PASSED +Testing insert two tiny objects, then remove (all - forward) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED +Testing insert one huge object, then remove (all - reverse) PASSED +Testing insert two huge objects, then remove (all - reverse) PASSED +Testing insert three huge objects, then remove (all - reverse) PASSED +Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert one tiny object, then remove (all - reverse) PASSED +Testing insert two tiny objects, then remove (all - reverse) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED +Testing insert one huge object, then remove (all - deleting heap) PASSED +Testing insert two huge objects, then remove (all - deleting heap) PASSED +Testing insert three huge objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED +Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert one tiny object, then remove (all - deleting heap) PASSED +Testing insert two tiny objects, then remove (all - deleting heap) PASSED +Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED +Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED +Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED +Using 'small' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Using 'large' heap creation parameters +Testing inserting random-sized objects, then remove all objects (all - random) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED +Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED +Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED +Testing writing objects in heap PASSED +Testing writing objects in heap with compressed blocks PASSED +Testing bug1: inserting several objects & removing one, then re-inserting PASSED +All fractal heap tests passed. +102.77user 8.19system 2:02.41elapsed 90%CPU (0avgtext+0avgdata 70504maxresident)k +0inputs+17255304outputs (0major+93268minor)pagefaults 0swaps + +Finished testing fheap +============================ diff --git a/build/test/fheap.o b/build/test/fheap.o new file mode 100644 index 0000000..f147a36 Binary files /dev/null and b/build/test/fheap.o differ diff --git a/build/test/file_image b/build/test/file_image new file mode 100755 index 0000000..61c82e6 --- /dev/null +++ b/build/test/file_image @@ -0,0 +1,228 @@ +#! /bin/sh + +# file_image - temporary wrapper script for .libs/file_image +# Generated by libtool (GNU libtool) 2.4.6 +# +# The file_image program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file file_image.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "file_image:file_image:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "file_image:file_image:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "file_image:file_image:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'file_image' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/file_image.chkexe b/build/test/file_image.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/file_image.chklog b/build/test/file_image.chklog new file mode 100644 index 0000000..12f9505 --- /dev/null +++ b/build/test/file_image.chklog @@ -0,0 +1,17 @@ +============================ + file_image Test Log +============================ +Testing File Image Functionality. +Testing File image property list functions PASSED +Testing Callback use in property list operations PASSED +Testing Initial file image and callbacks in Core VFD PASSED +Testing H5Fget_file_image() with sec2 driver PASSED +Testing H5Fget_file_image() with stdio driver PASSED +Testing H5Fget_file_image() with core driver PASSED +Testing H5Fget_file_image() error rejection PASSED +All File Image tests passed. +0.06user 0.02system 0:00.12elapsed 70%CPU (0avgtext+0avgdata 7072maxresident)k +0inputs+472outputs (0major+8985minor)pagefaults 0swaps + +Finished testing file_image +============================ diff --git a/build/test/file_image.o b/build/test/file_image.o new file mode 100644 index 0000000..918257a Binary files /dev/null and b/build/test/file_image.o differ diff --git a/build/test/fillval b/build/test/fillval new file mode 100755 index 0000000..5ee8f09 --- /dev/null +++ b/build/test/fillval @@ -0,0 +1,228 @@ +#! /bin/sh + +# fillval - temporary wrapper script for .libs/fillval +# Generated by libtool (GNU libtool) 2.4.6 +# +# The fillval program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file fillval.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "fillval:fillval:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "fillval:fillval:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "fillval:fillval:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'fillval' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/fillval.chkexe b/build/test/fillval.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/fillval.chklog b/build/test/fillval.chklog new file mode 100644 index 0000000..9a53f82 --- /dev/null +++ b/build/test/fillval.chklog @@ -0,0 +1,36 @@ +============================ + fillval Test Log +============================ +Testing property lists PASSED +Testing property lists, with variable-length datatype PASSED +Testing with old file format: +Testing chunked dataset creation PASSED +Testing chunked dataset I/O PASSED +Testing chunked dataset extend PASSED +Testing chunked dataset partially allocated I/O PASSED +Testing contiguous dataset creation PASSED +Testing contiguous dataset I/O PASSED +Testing contiguous dataset extend -SKIP- + Not implemented yet -- needs H5S_SELECT_DIFF operator +Testing contiguous dataset compatibility with v. 1.4 PASSED +Testing compact dataset creation PASSED +Testing compact dataset I/O PASSED + +Testing with new file format: +Testing chunked dataset creation PASSED +Testing chunked dataset I/O PASSED +Testing chunked dataset extend PASSED +Testing chunked dataset partially allocated I/O PASSED +Testing contiguous dataset creation PASSED +Testing contiguous dataset I/O PASSED +Testing contiguous dataset extend -SKIP- + Not implemented yet -- needs H5S_SELECT_DIFF operator +Testing contiguous dataset compatibility with v. 1.4 PASSED +Testing compact dataset creation PASSED +Testing compact dataset I/O PASSED +All fill value tests passed. +4.10user 0.17system 0:04.55elapsed 94%CPU (0avgtext+0avgdata 16352maxresident)k +0inputs+310328outputs (0major+17930minor)pagefaults 0swaps + +Finished testing fillval +============================ diff --git a/build/test/fillval.o b/build/test/fillval.o new file mode 100644 index 0000000..f992cc7 Binary files /dev/null and b/build/test/fillval.o differ diff --git a/build/test/filter_fail b/build/test/filter_fail new file mode 100755 index 0000000..fadf2ac --- /dev/null +++ b/build/test/filter_fail @@ -0,0 +1,228 @@ +#! /bin/sh + +# filter_fail - temporary wrapper script for .libs/filter_fail +# Generated by libtool (GNU libtool) 2.4.6 +# +# The filter_fail program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file filter_fail.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "filter_fail:filter_fail:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "filter_fail:filter_fail:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "filter_fail:filter_fail:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'filter_fail' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/filter_fail.chkexe b/build/test/filter_fail.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/filter_fail.chklog b/build/test/filter_fail.chklog new file mode 100644 index 0000000..1afcb26 --- /dev/null +++ b/build/test/filter_fail.chklog @@ -0,0 +1,12 @@ +============================ + filter_fail Test Log +============================ +Testing data writing when a mandatory filter fails and chunk cache is enabled PASSED +Testing data reading when a mandatory filter fails PASSED +Testing data writing when a mandatory filter fails and chunk cache is disabled PASSED +Testing data reading when a mandatory filter fails PASSED +0.03user 0.02system 0:00.05elapsed 105%CPU (0avgtext+0avgdata 7016maxresident)k +0inputs+152outputs (0major+8904minor)pagefaults 0swaps + +Finished testing filter_fail +============================ diff --git a/build/test/filter_fail.o b/build/test/filter_fail.o new file mode 100644 index 0000000..184c3ee Binary files /dev/null and b/build/test/filter_fail.o differ diff --git a/build/test/flush1 b/build/test/flush1 new file mode 100755 index 0000000..045fe54 --- /dev/null +++ b/build/test/flush1 @@ -0,0 +1,228 @@ +#! /bin/sh + +# flush1 - temporary wrapper script for .libs/flush1 +# Generated by libtool (GNU libtool) 2.4.6 +# +# The flush1 program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file flush1.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "flush1:flush1:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "flush1:flush1:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "flush1:flush1:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'flush1' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/flush1.chkexe b/build/test/flush1.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/flush1.chklog b/build/test/flush1.chklog new file mode 100644 index 0000000..53c1b5f --- /dev/null +++ b/build/test/flush1.chklog @@ -0,0 +1,9 @@ +============================ + flush1 Test Log +============================ +Testing H5Fflush (part1) PASSED +0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7000maxresident)k +0inputs+616outputs (0major+9226minor)pagefaults 0swaps + +Finished testing flush1 +============================ diff --git a/build/test/flush1.o b/build/test/flush1.o new file mode 100644 index 0000000..8c662f6 Binary files /dev/null and b/build/test/flush1.o differ diff --git a/build/test/flush2 b/build/test/flush2 new file mode 100755 index 0000000..6a61d23 --- /dev/null +++ b/build/test/flush2 @@ -0,0 +1,228 @@ +#! /bin/sh + +# flush2 - temporary wrapper script for .libs/flush2 +# Generated by libtool (GNU libtool) 2.4.6 +# +# The flush2 program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file flush2.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "flush2:flush2:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "flush2:flush2:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "flush2:flush2:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'flush2' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/flush2.chkexe b/build/test/flush2.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/flush2.chklog b/build/test/flush2.chklog new file mode 100644 index 0000000..e49aa51 --- /dev/null +++ b/build/test/flush2.chklog @@ -0,0 +1,11 @@ +============================ + flush2 Test Log +============================ +Testing H5Fflush (part2 with flush) PASSED +Testing H5Fflush (part2 without flush) PASSED +Testing H5Fflush (part2 with flush and later addition) PASSED +0.04user 0.02system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 6996maxresident)k +0inputs+128outputs (0major+8823minor)pagefaults 0swaps + +Finished testing flush2 +============================ diff --git a/build/test/flush2.o b/build/test/flush2.o new file mode 100644 index 0000000..e7d1b87 Binary files /dev/null and b/build/test/flush2.o differ diff --git a/build/test/freespace b/build/test/freespace new file mode 100755 index 0000000..5764939 --- /dev/null +++ b/build/test/freespace @@ -0,0 +1,228 @@ +#! /bin/sh + +# freespace - temporary wrapper script for .libs/freespace +# Generated by libtool (GNU libtool) 2.4.6 +# +# The freespace program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file freespace.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "freespace:freespace:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "freespace:freespace:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "freespace:freespace:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'freespace' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/freespace.chkexe b/build/test/freespace.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/freespace.chklog b/build/test/freespace.chklog new file mode 100644 index 0000000..d038c93 --- /dev/null +++ b/build/test/freespace.chklog @@ -0,0 +1,31 @@ +============================ + freespace Test Log +============================ +Testing the creation/close/reopen/deletion of the free-space manager PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 1 PASSED +Testing adding a section via H5FS_sect_add() to free-space with H5FS_CLS_GHOST_OBJ: test 2 PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 3 PASSED +Testing adding a section via H5FS_sect_add() to free-space: test 4 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 1 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 3 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 1 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing shrinking of sections when H5FS_sect_add() to free-space: test 3 PASSED +Testing H5FS_sect_find(): free-space is empty PASSED +Testing H5FS_sect_find() a section equal to requested-size from free-space PASSED +Testing H5FS_sect_find() a section greater than requested-size from free-space PASSED +Testing H5FS_sect_find(): cannot find a section with requested-size from free-space PASSED +Testing the change of section class via H5FS_sect_change_class() in free-space: Test 1 PASSED +Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED +Testing a block's extension by requested-size which is = adjoining free section's size: Test 1 PASSED +Testing a block's extension by requested-size which is > adjoining free section's size: Test 2 PASSED +Testing a block's extension by requested-size which is < adjoining free section's size: Test 3 PASSED +Testing a block's extension by requested-size which does not adjoin any free section: Test 4 PASSED +Testing iteration of sections in the free-space manager PASSED +All free-space tests passed. +0.06user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7124maxresident)k +0inputs+456outputs (0major+8926minor)pagefaults 0swaps + +Finished testing freespace +============================ diff --git a/build/test/freespace.o b/build/test/freespace.o new file mode 100644 index 0000000..2c3d52c Binary files /dev/null and b/build/test/freespace.o differ diff --git a/build/test/getname b/build/test/getname new file mode 100755 index 0000000..b6d66ac --- /dev/null +++ b/build/test/getname @@ -0,0 +1,228 @@ +#! /bin/sh + +# getname - temporary wrapper script for .libs/getname +# Generated by libtool (GNU libtool) 2.4.6 +# +# The getname program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file getname.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "getname:getname:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "getname:getname:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "getname:getname:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'getname' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/getname.chkexe b/build/test/getname.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/getname.chklog b/build/test/getname.chklog new file mode 100644 index 0000000..2200304 --- /dev/null +++ b/build/test/getname.chklog @@ -0,0 +1,68 @@ +============================ + getname Test Log +============================ +Testing H5Iget_name with one group PASSED +Testing H5Iget_name with more than one group PASSED +Testing H5Iget_name with H5Gopen2 PASSED +Testing H5Iget_name with H5Dcreate2 PASSED +Testing H5Iget_name with H5Dopen2 PASSED +Testing H5Iget_name with a long path PASSED +Testing H5Iget_name with H5Tcommit2 PASSED +Testing H5Iget_name with H5Topen2 PASSED +Testing H5Iget_name with H5Lmove and H5Gopen2 PASSED +Testing H5Iget_name with H5Lmove and H5Dopen2 PASSED +Testing H5Iget_name with H5Lmove and H5Topen2 PASSED +Testing H5Iget_name with H5Lmove and relative names PASSED +Testing H5Iget_name with H5Lmove and a long path PASSED +Testing H5Iget_name with H5Lmove and a long path #2 PASSED +Testing H5Iget_name with H5Ldelete PASSED +Testing H5Iget_name with H5Ldelete and a long path PASSED +Testing H5Iget_name with H5Ldelete, same names PASSED +Testing H5Iget_name with H5Fmount; with IDs on the list PASSED +Testing H5Iget_name with H5Fmount; long name PASSED +Testing H5Iget_name with H5Funmount PASSED +Testing H5Iget_name with a defined type dataset PASSED +Testing H5Iget_name with datasets that have two names PASSED +Testing H5Iget_name with different files PASSED +Testing H5Iget_name with different files #2 PASSED +Testing H5Iget_name with a small buffer for name PASSED +Testing H5Iget_name with a dynamic buffer for name PASSED +Testing H5Iget_name with invalid IDs PASSED +Testing H5Iget_name with added names with mounting PASSED +Testing H5Iget_name with H5Fclose PASSED +Testing H5Iget_name with H5Fmount and H5Ldelete PASSED +Testing H5Iget_name with H5Fmount and H5Lmove PASSED +Testing H5Iget_name with H5Lcreate_hard PASSED +Testing H5Iget_name with H5Lcreate_soft PASSED +Testing H5Iget_name with H5Lcreate_soft and move target PASSED +Testing H5Iget_name with H5Lcreate_soft and move source PASSED +Testing H5Iget_name with H5Lcreate_soft and unlink target PASSED +Testing H5Iget_name with H5Lcreate_soft and unlink source PASSED +Testing H5Iget_name with several nested mounted files PASSED +Testing H5Iget_name and H5Lmove with repeated path components PASSED +Testing H5Iget_name with higher mounted file PASSED +Testing H5Iget_name with multiple hard links and mounted files PASSED +Testing H5Iget_name with mounted files and unlinking PASSED +Testing H5Iget_name with mounting already mounted files PASSED +Testing H5Iget_name with opening object in unmounted file PASSED +Testing H5Iget_name with anonymous datatypes PASSED +Testing getting path to normal dataset in root group PASSED +Testing getting path to dataset in /Group1 PASSED +Testing getting path to /Group1 PASSED +Testing getting path to datatype in /Group1 PASSED +Testing getting path to dataset in nested group PASSED +Testing getting path to nested group PASSED +Testing getting path to dataset created via hard link PASSED +Testing getting path to root group PASSED +Testing getting path to dataset hidden by a mounted file PASSED +Testing getting path to dataset that has been unlinked PASSED +Testing H5Rget_name to get name from region reference(hyperslab) PASSED +Testing H5Iget_name to get name from region reference(hyperslab) PASSED +Testing H5Rget_name to get name from region reference(pnt selec) PASSED +Testing H5Iget_name to get name from region reference(pnt selec) PASSED +All getname tests passed. +0.10user 0.03system 0:00.16elapsed 86%CPU (0avgtext+0avgdata 7264maxresident)k +0inputs+984outputs (0major+11881minor)pagefaults 0swaps + +Finished testing getname +============================ diff --git a/build/test/getname.o b/build/test/getname.o new file mode 100644 index 0000000..611b42e Binary files /dev/null and b/build/test/getname.o differ diff --git a/build/test/gheap b/build/test/gheap new file mode 100755 index 0000000..f3979cc --- /dev/null +++ b/build/test/gheap @@ -0,0 +1,228 @@ +#! /bin/sh + +# gheap - temporary wrapper script for .libs/gheap +# Generated by libtool (GNU libtool) 2.4.6 +# +# The gheap program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file gheap.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "gheap:gheap:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "gheap:gheap:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "gheap:gheap:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'gheap' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/gheap.chkexe b/build/test/gheap.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/gheap.chklog b/build/test/gheap.chklog new file mode 100644 index 0000000..c3b9f90 --- /dev/null +++ b/build/test/gheap.chklog @@ -0,0 +1,14 @@ +============================ + gheap Test Log +============================ +Testing monotonically increasing lengths PASSED +Testing monotonically decreasing lengths PASSED +Testing complete object removal PASSED +Testing partial object removal PASSED +Testing out of order indices PASSED +All global heap tests passed. +7.03user 0.02system 0:07.10elapsed 99%CPU (0avgtext+0avgdata 9492maxresident)k +0inputs+2680outputs (0major+12357minor)pagefaults 0swaps + +Finished testing gheap +============================ diff --git a/build/test/gheap.o b/build/test/gheap.o new file mode 100644 index 0000000..8339b23 Binary files /dev/null and b/build/test/gheap.o differ diff --git a/build/test/h5test.lo b/build/test/h5test.lo new file mode 100644 index 0000000..70a16a0 --- /dev/null +++ b/build/test/h5test.lo @@ -0,0 +1,12 @@ +# h5test.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5test.o' + +# Name of the non-PIC object +non_pic_object='h5test.o' + diff --git a/build/test/h5test.o b/build/test/h5test.o new file mode 100644 index 0000000..465d725 Binary files /dev/null and b/build/test/h5test.o differ diff --git a/build/test/hyperslab b/build/test/hyperslab new file mode 100755 index 0000000..7764187 --- /dev/null +++ b/build/test/hyperslab @@ -0,0 +1,228 @@ +#! /bin/sh + +# hyperslab - temporary wrapper script for .libs/hyperslab +# Generated by libtool (GNU libtool) 2.4.6 +# +# The hyperslab program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file hyperslab.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "hyperslab:hyperslab:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "hyperslab:hyperslab:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "hyperslab:hyperslab:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'hyperslab' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/hyperslab.chkexe b/build/test/hyperslab.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/hyperslab.chklog b/build/test/hyperslab.chklog new file mode 100644 index 0000000..7744e96 --- /dev/null +++ b/build/test/hyperslab.chklog @@ -0,0 +1,53 @@ +============================ + hyperslab Test Log +============================ +Test sizes: SMALL MEDIUM +Testing hyperslab fill 11 variable hyperslab PASSED +Testing hyperslab fill 11x10 variable hyperslab PASSED +Testing hyperslab fill 3x5x5 variable hyperslab PASSED +Testing hyperslab fill 113 variable hyperslab PASSED +Testing hyperslab fill 15x11 variable hyperslab PASSED +Testing hyperslab fill 5x7x7 variable hyperslab PASSED +Testing hyperslab copy 11 variable source PASSED +Testing hyperslab copy 11 variable destination PASSED +Testing hyperslab copy 11 sync source & dest PASSED +Testing hyperslab copy 179 variable source PASSED +Testing hyperslab copy 179 variable destination PASSED +Testing hyperslab copy 179 sync source & dest PASSED +Testing hyperslab copy 11x10 variable source PASSED +Testing hyperslab copy 11x10 variable destination PASSED +Testing hyperslab copy 11x10 sync source & dest PASSED +Testing hyperslab copy 13x19 variable source PASSED +Testing hyperslab copy 13x19 variable destination PASSED +Testing hyperslab copy 13x19 sync source & dest PASSED +Testing hyperslab copy 73x67 variable source PASSED +Testing hyperslab copy 73x67 variable destination PASSED +Testing hyperslab copy 73x67 sync source & dest PASSED +Testing hyperslab copy 3x5x5 variable source PASSED +Testing hyperslab copy 3x5x5 variable destination PASSED +Testing hyperslab copy 3x5x5 sync source & dest PASSED +Testing hyperslab copy 7x9x5 variable source PASSED +Testing hyperslab copy 7x9x5 variable destination PASSED +Testing hyperslab copy 7x9x5 sync source & dest PASSED +Testing multi-byte fill value PASSED +Testing multi-byte fill value PASSED +Testing endian conversion by stride PASSED +Testing 2d transpose by stride 9x9d PASSED +Testing 2d transpose by stride 3x11d PASSED +Testing endian conversion by stride PASSED +Testing 2d transpose by stride 1200x1200d PASSED +Testing 2d transpose by stride 800x1800d PASSED +Testing image sampling 10x20 to 5x10 PASSED +Testing image sampling 5x10 to 10x20 PASSED +Testing image sampling 960x1280 to 480x640 PASSED +Testing image sampling 480x640 to 960x1280 PASSED +Testing array filling 1-9 elements PASSED +Testing array filling 9-257 elements PASSED +Testing array offset 13x 11x 7 elements PASSED +Testing array offset 347x 193x 71 elements PASSED +All hyperslab tests passed. +0.95user 0.23system 0:01.18elapsed 100%CPU (0avgtext+0avgdata 49280maxresident)k +0inputs+45072outputs (0major+24810minor)pagefaults 0swaps + +Finished testing hyperslab +============================ diff --git a/build/test/hyperslab.o b/build/test/hyperslab.o new file mode 100644 index 0000000..d21b0fe Binary files /dev/null and b/build/test/hyperslab.o differ diff --git a/build/test/istore b/build/test/istore new file mode 100755 index 0000000..dad1438 --- /dev/null +++ b/build/test/istore @@ -0,0 +1,228 @@ +#! /bin/sh + +# istore - temporary wrapper script for .libs/istore +# Generated by libtool (GNU libtool) 2.4.6 +# +# The istore program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file istore.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "istore:istore:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "istore:istore:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "istore:istore:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'istore' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/istore.chkexe b/build/test/istore.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/istore.chklog b/build/test/istore.chklog new file mode 100644 index 0000000..96a03dd --- /dev/null +++ b/build/test/istore.chklog @@ -0,0 +1,24 @@ +============================ + istore Test Log +============================ +Test sizes: SMALL MEDIUM LARGE +Testing istore create PASSED +Testing istore extend: 10 PASSED +Testing istore extend: 10x10 PASSED +Testing istore extend: 10x10x10 PASSED +Testing istore extend: 10000 PASSED +Testing istore extend: 2500x10 PASSED +Testing istore extend: 10x400x10 PASSED +Testing istore sparse: 5 PASSED +Testing istore sparse: 3x4 PASSED +Testing istore sparse: 2x3x4 PASSED +Testing istore sparse: 30 PASSED +Testing istore sparse: 7x3 PASSED +Testing istore sparse: 4x2x3 PASSED +Testing istore sparse: 50x50x50 PASSED +All i-store tests passed. +0.47user 0.69system 0:01.16elapsed 100%CPU (0avgtext+0avgdata 11660maxresident)k +0inputs+2093024outputs (0major+10754minor)pagefaults 0swaps + +Finished testing istore +============================ diff --git a/build/test/istore.o b/build/test/istore.o new file mode 100644 index 0000000..1463074 Binary files /dev/null and b/build/test/istore.o differ diff --git a/build/test/lheap b/build/test/lheap new file mode 100755 index 0000000..c520f83 --- /dev/null +++ b/build/test/lheap @@ -0,0 +1,228 @@ +#! /bin/sh + +# lheap - temporary wrapper script for .libs/lheap +# Generated by libtool (GNU libtool) 2.4.6 +# +# The lheap program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file lheap.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "lheap:lheap:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "lheap:lheap:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "lheap:lheap:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'lheap' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/lheap.chkexe b/build/test/lheap.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/lheap.chklog b/build/test/lheap.chklog new file mode 100644 index 0000000..b6978ff --- /dev/null +++ b/build/test/lheap.chklog @@ -0,0 +1,12 @@ +============================ + lheap Test Log +============================ +Testing local heap write PASSED +Testing local heap read PASSED +Testing opening pre-created file with non-default sizes PASSED +All local heap tests passed. +0.04user 0.02system 0:00.12elapsed 60%CPU (0avgtext+0avgdata 7008maxresident)k +0inputs+144outputs (0major+8917minor)pagefaults 0swaps + +Finished testing lheap +============================ diff --git a/build/test/lheap.o b/build/test/lheap.o new file mode 100644 index 0000000..c19198a Binary files /dev/null and b/build/test/lheap.o differ diff --git a/build/test/libdynlib1.la b/build/test/libdynlib1.la new file mode 100644 index 0000000..da17feb --- /dev/null +++ b/build/test/libdynlib1.la @@ -0,0 +1,41 @@ +# libdynlib1.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib1.so' + +# Names of this library. +library_names='libdynlib1.so libdynlib1.so libdynlib1.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib1. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/libdynlib2.la b/build/test/libdynlib2.la new file mode 100644 index 0000000..6e60b60 --- /dev/null +++ b/build/test/libdynlib2.la @@ -0,0 +1,41 @@ +# libdynlib2.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib2.so' + +# Names of this library. +library_names='libdynlib2.so libdynlib2.so libdynlib2.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib2. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/libdynlib3.la b/build/test/libdynlib3.la new file mode 100644 index 0000000..afe4081 --- /dev/null +++ b/build/test/libdynlib3.la @@ -0,0 +1,41 @@ +# libdynlib3.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib3.so' + +# Names of this library. +library_names='libdynlib3.so libdynlib3.so libdynlib3.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib3. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/libdynlib4.la b/build/test/libdynlib4.la new file mode 100644 index 0000000..9bc7fd8 --- /dev/null +++ b/build/test/libdynlib4.la @@ -0,0 +1,41 @@ +# libdynlib4.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlib4.so' + +# Names of this library. +library_names='libdynlib4.so libdynlib4.so libdynlib4.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlib4. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/test/libh5test.la b/build/test/libh5test.la new file mode 100644 index 0000000..b0c3350 --- /dev/null +++ b/build/test/libh5test.la @@ -0,0 +1,41 @@ +# libh5test.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libh5test.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libh5test. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/build/test/links b/build/test/links new file mode 100755 index 0000000..ef41524 --- /dev/null +++ b/build/test/links @@ -0,0 +1,228 @@ +#! /bin/sh + +# links - temporary wrapper script for .libs/links +# Generated by libtool (GNU libtool) 2.4.6 +# +# The links program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file links.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "links:links:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "links:links:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "links:links:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'links' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/links.chkexe b/build/test/links.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/links.chklog b/build/test/links.chklog new file mode 100644 index 0000000..aa2a168 --- /dev/null +++ b/build/test/links.chklog @@ -0,0 +1,284 @@ +============================ + links Test Log +============================ +Testing link creation PASSED +Testing link queries PASSED +Testing H5Lcreate functions PASSED +Testing new link queries PASSED +Testing long names for objects & links PASSED +Testing too many links PASSED +Testing link creation property lists PASSED +Testing H5Lmove PASSED +Testing H5Lcopy PASSED +Testing moving and copying links preserves their properties PASSED +Testing backwards compatibility PASSED +Testing external file cache with external links PASSED +Testing external links across multiple files PASSED +Testing H5Pset/get_elink_acc_flags() PASSED + +---Testing without external file cache--- +Testing external link to root PASSED +Testing external link to object on path PASSED +Testing external link to self PASSED +Testing external links back and forth PASSED +Testing too many external links PASSED +Testing dangling external links PASSED +Testing recursive external links PASSED +Testing query aspects of external link PASSED +Testing unlinking external link in compact group PASSED +Testing unlinking external link in dense group PASSED +Testing move external link PASSED +Testing external link along for the ride PASSED +Testing that external files are closed during traversal PASSED +Testing endianness of external links PASSED +Testing that external files work with strong file close degree PASSED +Testing external links via H5Pset_elink_prefix() PASSED +Testing external links via main file's absolute path PASSED +Testing external links via main file's CWD + relative path PASSED +Testing external links via current working directory PASSED +Testing external links via target's absolute path PASSED +Testing external links via main file's CWD PASSED +Testing external links via main file's CWD + target's relative path PASSED +Testing external links via chdir and found in current working directory PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts PASSED +Testing H5Pset/get_elink_fapl() with same physical layout PASSED +Testing H5Pset/get_fapl() PASSED +Testing H5Pset/get_elink_cb() PASSED +Testing external links w/symlink files PASSED +Testing copying invalid external links to the source file PASSED +Testing that invalid external links don't open the source file PASSED +Testing opening object twice through elink PASSED +Testing attach committed datatype to external group's attribute/dataset PASSED + +---Testing with external file cache--- +Testing external link to root PASSED +Testing external link to object on path PASSED +Testing external link to self PASSED +Testing external links back and forth PASSED +Testing too many external links PASSED +Testing dangling external links PASSED +Testing recursive external links PASSED +Testing query aspects of external link PASSED +Testing unlinking external link in compact group PASSED +Testing unlinking external link in dense group PASSED +Testing move external link PASSED +Testing external link along for the ride PASSED +Testing that external files are closed during traversal PASSED +Testing endianness of external links PASSED +Testing that external files work with strong file close degree PASSED +Testing external links via H5Pset_elink_prefix() PASSED +Testing external links via main file's absolute path PASSED +Testing external links via main file's CWD + relative path PASSED +Testing external links via current working directory PASSED +Testing external links via target's absolute path PASSED +Testing external links via main file's CWD PASSED +Testing external links via main file's CWD + target's relative path PASSED +Testing external links via chdir and found in current working directory PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts PASSED +Testing H5Pset/get_elink_fapl() with same physical layout PASSED +Testing H5Pset/get_fapl() PASSED +Testing H5Pset/get_elink_cb() PASSED +Testing external links w/symlink files PASSED +Testing copying invalid external links to the source file PASSED +Testing that invalid external links don't open the source file PASSED +Testing opening object twice through elink PASSED +Testing attach committed datatype to external group's attribute/dataset PASSED +Testing user-defined link callbacks PASSED +Testing user-defined link error conditions PASSED +Testing user data passed through lapl PASSED +Testing adjusting nlinks with LAPL PASSED +Testing link type field in H5Lget_info PASSED +Testing link visiting PASSED +Testing link visiting by name PASSED +Testing object visiting PASSED +Testing object visiting by name PASSED +Testing stopping object iteration PASSED +Testing group link filters PASSED +Testing object exists PASSED +Testing that all files were closed correctly PASSED +Testing link creation (w/new group format) PASSED +Testing link queries (w/new group format) PASSED +Testing H5Lcreate functions (w/new group format) PASSED +Testing new link queries (w/new group format) PASSED +Testing long names for objects & links (w/new group format) PASSED +Testing too many links (w/new group format) PASSED +Testing link creation property lists (w/new group format) PASSED +Testing H5Lmove (w/new group format) PASSED +Testing H5Lcopy (w/new group format) PASSED +Testing moving and copying links preserves their properties (w/new group format) PASSED +Testing backwards compatibility (w/new group format) PASSED +Testing external file cache with external links (w/new group format) PASSED +Testing external links across multiple files (w/new group format) PASSED +Testing H5Pset/get_elink_acc_flags() (w/new group format) PASSED + +---Testing without external file cache--- +Testing external link to root (w/new group format) PASSED +Testing external link to object on path (w/new group format) PASSED +Testing external link to self (w/new group format) PASSED +Testing external links back and forth (w/new group format) PASSED +Testing too many external links (w/new group format) PASSED +Testing dangling external links (w/new group format) PASSED +Testing recursive external links (w/new group format) PASSED +Testing query aspects of external link (w/new group format) PASSED +Testing unlinking external link in compact group (w/new group format) PASSED +Testing unlinking external link in dense group (w/new group format) PASSED +Testing move external link (w/new group format) PASSED +Testing external link along for the ride (w/new group format) PASSED +Testing that external files are closed during traversal (w/new group format) PASSED +Testing endianness of external links (w/new group format) PASSED +Testing that external files work with strong file close degree (w/new group format) PASSED +Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED +Testing external links via main file's absolute path (w/new group format) PASSED +Testing external links via main file's CWD + relative path(w/new group format) PASSED +Testing external links via current working directory(w/new group format) PASSED +Testing external links via target's absolute path (w/new group format) PASSED +Testing external links via main file's CWD (w/new group format) PASSED +Testing external links via main file's CWD + target's relative path(w/new group format) PASSED +Testing external links via chdir and found in current working directory (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED +Testing H5Pset/get_fapl() (w/new group format) PASSED +Testing H5Pset/get_elink_cb() (w/new group format) PASSED +Testing external links w/symlink files (w/new group format) PASSED +Testing copying invalid external links to the source file (w/new group format) PASSED +Testing that invalid external links don't open the source file (w/new group format) PASSED +Testing opening object twice through elink (w/new group format) PASSED +Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED + +---Testing with external file cache--- +Testing external link to root (w/new group format) PASSED +Testing external link to object on path (w/new group format) PASSED +Testing external link to self (w/new group format) PASSED +Testing external links back and forth (w/new group format) PASSED +Testing too many external links (w/new group format) PASSED +Testing dangling external links (w/new group format) PASSED +Testing recursive external links (w/new group format) PASSED +Testing query aspects of external link (w/new group format) PASSED +Testing unlinking external link in compact group (w/new group format) PASSED +Testing unlinking external link in dense group (w/new group format) PASSED +Testing move external link (w/new group format) PASSED +Testing external link along for the ride (w/new group format) PASSED +Testing that external files are closed during traversal (w/new group format) PASSED +Testing endianness of external links (w/new group format) PASSED +Testing that external files work with strong file close degree (w/new group format) PASSED +Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED +Testing external links via main file's absolute path (w/new group format) PASSED +Testing external links via main file's CWD + relative path(w/new group format) PASSED +Testing external links via current working directory(w/new group format) PASSED +Testing external links via target's absolute path (w/new group format) PASSED +Testing external links via main file's CWD (w/new group format) PASSED +Testing external links via main file's CWD + target's relative path(w/new group format) PASSED +Testing external links via chdir and found in current working directory (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED +Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED +Testing H5Pset/get_fapl() (w/new group format) PASSED +Testing H5Pset/get_elink_cb() (w/new group format) PASSED +Testing external links w/symlink files (w/new group format) PASSED +Testing copying invalid external links to the source file (w/new group format) PASSED +Testing that invalid external links don't open the source file (w/new group format) PASSED +Testing opening object twice through elink (w/new group format) PASSED +Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED +Testing user-defined hard link (w/new group format) PASSED +Testing registering a new class for existing UD links (w/new group format) PASSED +Testing user-defined link callbacks (w/new group format) PASSED +Testing user-defined link error conditions (w/new group format) PASSED +Testing user data passed through lapl (w/new group format) PASSED +Testing adjusting nlinks with LAPL (w/new group format) PASSED +Testing link type field in H5Lget_info (w/new group format) PASSED +Testing link visiting (w/new group format) PASSED +Testing link visiting by name (w/new group format) PASSED +Testing object visiting (w/new group format) PASSED +Testing object visiting by name (w/new group format) PASSED +Testing stopping object iteration (w/new group format) PASSED +Testing group link filters (w/new group format) PASSED +Testing object exists (w/new group format) PASSED +Testing that all files were closed correctly (w/new group format) PASSED +Testing creating empty group with creation order indexing PASSED +Testing creating compact group with creation order indexing PASSED +Testing creating dense group with creation order indexing PASSED +Testing transitioning group with creation order indexing between dense & compact forms PASSED +Testing deleting group with creation order indexing in dense form PASSED +Testing querying info by index w/o creation order index, using soft links PASSED +Testing querying info by index w/creation order index, using soft links PASSED +Testing querying info by index w/o creation order index, using hard links PASSED +Testing querying info by index w/creation order index, using hard links PASSED +Testing deleting links by name index in increasing order w/o creation order index PASSED +Testing deleting links by name index in increasing order w/creation order index PASSED +Testing deleting links by name index in decreasing order w/o creation order index PASSED +Testing deleting links by name index in decreasing order w/creation order index PASSED +Testing deleting links by creation order index in increasing order w/o creation order index PASSED +Testing deleting links by creation order index in increasing order w/creation order index PASSED +Testing deleting links by creation order index in decreasing order w/o creation order index PASSED +Testing deleting links by creation order index in decreasing order w/creation order index PASSED +Testing iterating over links by name index in increasing order w/o creation order index PASSED +Testing iterating over links by name index in increasing order w/creation order index PASSED +Testing iterating over links by name index in decreasing order w/o creation order index PASSED +Testing iterating over links by name index in decreasing order w/creation order index PASSED +Testing iterating over links by name index in native order w/o creation order index PASSED +Testing iterating over links by name index in native order w/creation order index PASSED +Testing iterating over links by creation order index in increasing order w/o creation order index PASSED +Testing iterating over links by creation order index in increasing order w/creation order index PASSED +Testing iterating over links by creation order index in decreasing order w/o creation order index PASSED +Testing iterating over links by creation order index in decreasing order w/creation order index PASSED +Testing iterating over links by creation order index in native order w/o creation order index PASSED +Testing iterating over links by creation order index in native order w/creation order index PASSED +Testing open object by name index in increasing order w/o creation order index PASSED +Testing open object by name index in increasing order w/creation order index PASSED +Testing open object by name index in decreasing order w/o creation order index PASSED +Testing open object by name index in decreasing order w/creation order index PASSED +Testing open object by name index in native order w/o creation order index PASSED +Testing open object by name index in native order w/creation order index PASSED +Testing open object by creation order index in increasing order w/o creation order index PASSED +Testing open object by creation order index in increasing order w/creation order index PASSED +Testing open object by creation order index in decreasing order w/o creation order index PASSED +Testing open object by creation order index in decreasing order w/creation order index PASSED +Testing open object by creation order index in native order w/o creation order index PASSED +Testing open object by creation order index in native order w/creation order index PASSED +Testing query object info by name index in increasing order w/o creation order index PASSED +Testing query object info by name index in increasing order w/creation order index PASSED +Testing query object info by name index in decreasing order w/o creation order index PASSED +Testing query object info by name index in decreasing order w/creation order index PASSED +Testing query object info by name index in native order w/o creation order index PASSED +Testing query object info by name index in native order w/creation order index PASSED +Testing query object info by creation order index in increasing order w/o creation order index PASSED +Testing query object info by creation order index in increasing order w/creation order index PASSED +Testing query object info by creation order index in decreasing order w/o creation order index PASSED +Testing query object info by creation order index in decreasing order w/creation order index PASSED +Testing query object info by creation order index in native order w/o creation order index PASSED +Testing query object info by creation order index in native order w/creation order index PASSED +Testing query group info by name index in increasing order w/o creation order index PASSED +Testing query group info by name index in increasing order w/creation order index PASSED +Testing query group info by name index in decreasing order w/o creation order index PASSED +Testing query group info by name index in decreasing order w/creation order index PASSED +Testing query group info by name index in native order w/o creation order index PASSED +Testing query group info by name index in native order w/creation order index PASSED +Testing query group info by creation order index in increasing order w/o creation order index PASSED +Testing query group info by creation order index in increasing order w/creation order index PASSED +Testing query group info by creation order index in decreasing order w/o creation order index PASSED +Testing query group info by creation order index in decreasing order w/creation order index PASSED +Testing query group info by creation order index in native order w/o creation order index PASSED +Testing query group info by creation order index in native order w/creation order index PASSED +Testing timestamps on objects PASSED +Testing querying info by index in old-style group, using soft links PASSED +Testing querying info by index in old-style group, using hard links PASSED +Testing deleting links by index in increasing order in old-style group PASSED +Testing deleting links by index in decreasing order in old-style group PASSED +Testing iterating over links by name index in increasing order in old-style group PASSED +Testing iterating over links by name index in decreasing order in old-style group PASSED +Testing iterating over links by name index in native order in old-style group PASSED +Testing open object by name index in increasing order in old-style group PASSED +Testing open object by name index in decreasing order in old-style group PASSED +Testing open object by name index in native order in old-style group PASSED +Testing query object info by name index in increasing order in old-style group PASSED +Testing query object info by name index in decreasing order in old-style group PASSED +Testing query object info by name index in native order in old-style group PASSED +Testing query group info by name index in increasing order in old-style group PASSED +Testing query group info by name index in decreasing order in old-style group PASSED +Testing query group info by name index in native order in old-style group PASSED +Testing external links are registered after reset PASSED +All link tests passed. +2.45user 0.15system 0:03.61elapsed 72%CPU (0avgtext+0avgdata 9052maxresident)k +0inputs+15048outputs (0major+24157minor)pagefaults 0swaps + +Finished testing links +============================ diff --git a/build/test/links.o b/build/test/links.o new file mode 100644 index 0000000..13af644 Binary files /dev/null and b/build/test/links.o differ diff --git a/build/test/links_env b/build/test/links_env new file mode 100755 index 0000000..10085ce --- /dev/null +++ b/build/test/links_env @@ -0,0 +1,228 @@ +#! /bin/sh + +# links_env - temporary wrapper script for .libs/links_env +# Generated by libtool (GNU libtool) 2.4.6 +# +# The links_env program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file links_env.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "links_env:links_env:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "links_env:links_env:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "links_env:links_env:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'links_env' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/links_env.o b/build/test/links_env.o new file mode 100644 index 0000000..6f52657 Binary files /dev/null and b/build/test/links_env.o differ diff --git a/build/test/log_vfd_out.log b/build/test/log_vfd_out.log new file mode 100644 index 0000000..00174de --- /dev/null +++ b/build/test/log_vfd_out.log @@ -0,0 +1,23 @@ +Open took: (0.000066 s) +Stat took: (0.000001 s) + 0- 96 ( 96 bytes) (H5FD_MEM_SUPER) Allocated + 96- 2143 ( 2048 bytes) (H5FD_MEM_DEFAULT) Allocated +Seek: From UNDEF To 0 (0.000001 s) + 0- 95 ( 96 bytes) (H5FD_MEM_SUPER) Written (0.000011 s) +Seek: From UNDEF To 96 (0.000001 s) + 96- 799 ( 704 bytes) (H5FD_MEM_DEFAULT) Written (0.000006 s) +Close took: (0.000008 s) +Total number of read operations: 0 +Total number of write operations: 2 +Total number of seek operations: 2 +Total number of truncate operations: 1 +Total time in read operations: 0.000000 s +Total time in write operations: 0.000017 s +Total time in seek operations: 0.000002 s +Dumping write I/O information: + Addr 0- 799 ( 800 bytes) written to 1 times +Dumping read I/O information: + Addr 0- 799 ( 800 bytes) read from 0 times +Dumping I/O flavor information: + Addr 0- 95 ( 96 bytes) flavor is H5FD_MEM_SUPER + Addr 96- 799 ( 704 bytes) flavor is H5FD_MEM_DEFAULT diff --git a/build/test/mf b/build/test/mf new file mode 100755 index 0000000..337f172 --- /dev/null +++ b/build/test/mf @@ -0,0 +1,228 @@ +#! /bin/sh + +# mf - temporary wrapper script for .libs/mf +# Generated by libtool (GNU libtool) 2.4.6 +# +# The mf program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file mf.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "mf:mf:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "mf:mf:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "mf:mf:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'mf' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/mf.chkexe b/build/test/mf.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/mf.chklog b/build/test/mf.chklog new file mode 100644 index 0000000..622cbda --- /dev/null +++ b/build/test/mf.chklog @@ -0,0 +1,66 @@ +============================ + mf Test Log +============================ +Testing H5MM_alloc() of file allocation PASSED +Testing H5MF_try_shrink() of file allocation: test 1 PASSED +Testing H5MF_try_shrink() of file allocation: test 2 PASSED +Testing H5MF_try_shrink() of file allocation: test 3 PASSED +Testing H5MF_try_shrink() of file allocation: test 4 PASSED +Testing H5MF_try_extend() of file allocation: test 1 PASSED +Testing H5MF_try_extend() of file allocation: test 2 PASSED +Testing 'temporary' file space allocation PASSED +Testing H5MF_alloc_create()/H5MF_alloc_open() of free-space manager PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 1 PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 2 PASSED +Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 3 PASSED +Testing H5MF_try_extend() of free-space manager:test 1 PASSED +Testing H5MF_try_extend() of free-space manager:test 2 PASSED +Testing H5MF_try_extend() of free-space manager:test 3 PASSED +Testing H5MF_try_extend() of free-space manager:test 4 PASSED +Testing A free-space section absorbs an aggregator: test 1 PASSED +Testing A free-space section absorbs an aggregator: test 2 PASSED +Testing Allocation from raw or metadata free-space manager PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 6 PASSED +Testing H5MF_alloc() of meta/sdata aggregator:test 7 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 1 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 2 PASSED +Testing H5MF_try_extend() of meta/sdata aggregator: test 3 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 1 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 2 PASSED +Testing H5MF_try_shrink() of meta/sdata aggregator: test 3 PASSED +Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED +Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED +Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED +Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED +Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED +Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED +Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED +Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED +Testing H5MF_alloc() bug 1 PASSED +All free-space manager tests for file memory passed. +0.13user 0.03system 0:00.49elapsed 34%CPU (0avgtext+0avgdata 7228maxresident)k +0inputs+1120outputs (0major+9016minor)pagefaults 0swaps + +Finished testing mf +============================ diff --git a/build/test/mf.o b/build/test/mf.o new file mode 100644 index 0000000..9c339ab Binary files /dev/null and b/build/test/mf.o differ diff --git a/build/test/mount b/build/test/mount new file mode 100755 index 0000000..54f6c3b --- /dev/null +++ b/build/test/mount @@ -0,0 +1,228 @@ +#! /bin/sh + +# mount - temporary wrapper script for .libs/mount +# Generated by libtool (GNU libtool) 2.4.6 +# +# The mount program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file mount.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "mount:mount:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "mount:mount:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "mount:mount:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'mount' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/mount.chkexe b/build/test/mount.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/mount.chklog b/build/test/mount.chklog new file mode 100644 index 0000000..46c1e7c --- /dev/null +++ b/build/test/mount.chklog @@ -0,0 +1,42 @@ +============================ + mount Test Log +============================ +Testing basic functionality PASSED +Testing illegal mount operations PASSED +Testing same file mount operations PASSED +Testing name hiding under mount point PASSED +Testing mount point open PASSED +Testing multi-linked mount point PASSED +Testing mount point unlinking PASSED +Testing object renaming PASSED +Testing mount point renaming PASSED +Testing preopening objects under the mount point PASSED +Testing open object access after unmount PASSED +Testing interfile hard links -SKIP- + Test skipped due file pointer sharing issue (Jira 7638). + PASSED +Testing file handle uniformity PASSED +Testing file handle close PASSED +Testing mounting on group after file is closed PASSED +Testing mounting after file is unmounted PASSED +Testing missing unmount PASSED +Testing hold open w/file PASSED +Testing hold open w/group PASSED +Testing file close degrees must be same PASSED +Testing 'semi' file close degree PASSED +Testing 'strong' file close degree PASSED +Testing access permissions PASSED +Testing multiple mounts PASSED +Testing nested mounts survive PASSED +Testing close parent PASSED +Testing cutting mount graph PASSED +Testing symlinks PASSED +Testing shared mount access PASSED +Testing closing shared mounts PASSED +Testing closing multiple shared mounts PASSED +All mount tests passed. +0.16user 0.05system 0:00.28elapsed 77%CPU (0avgtext+0avgdata 7960maxresident)k +0inputs+1280outputs (0major+12301minor)pagefaults 0swaps + +Finished testing mount +============================ diff --git a/build/test/mount.o b/build/test/mount.o new file mode 100644 index 0000000..40a14a4 Binary files /dev/null and b/build/test/mount.o differ diff --git a/build/test/mtime b/build/test/mtime new file mode 100755 index 0000000..e14a1ef --- /dev/null +++ b/build/test/mtime @@ -0,0 +1,228 @@ +#! /bin/sh + +# mtime - temporary wrapper script for .libs/mtime +# Generated by libtool (GNU libtool) 2.4.6 +# +# The mtime program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file mtime.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "mtime:mtime:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "mtime:mtime:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "mtime:mtime:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'mtime' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/mtime.chkexe b/build/test/mtime.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/mtime.chklog b/build/test/mtime.chklog new file mode 100644 index 0000000..9b609fc --- /dev/null +++ b/build/test/mtime.chklog @@ -0,0 +1,12 @@ +============================ + mtime Test Log +============================ +Testing modification time messages PASSED +Testing accessing old modification time messages PASSED +Testing accessing new modification time messages PASSED +All modification time tests passed. +0.04user 0.03system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 7012maxresident)k +0inputs+144outputs (0major+8816minor)pagefaults 0swaps + +Finished testing mtime +============================ diff --git a/build/test/mtime.o b/build/test/mtime.o new file mode 100644 index 0000000..317730b Binary files /dev/null and b/build/test/mtime.o differ diff --git a/build/test/ntypes b/build/test/ntypes new file mode 100755 index 0000000..670d274 --- /dev/null +++ b/build/test/ntypes @@ -0,0 +1,228 @@ +#! /bin/sh + +# ntypes - temporary wrapper script for .libs/ntypes +# Generated by libtool (GNU libtool) 2.4.6 +# +# The ntypes program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file ntypes.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "ntypes:ntypes:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "ntypes:ntypes:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "ntypes:ntypes:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'ntypes' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/ntypes.chkexe b/build/test/ntypes.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/ntypes.chklog b/build/test/ntypes.chklog new file mode 100644 index 0000000..72dc98e --- /dev/null +++ b/build/test/ntypes.chklog @@ -0,0 +1,25 @@ +============================ + ntypes Test Log +============================ +Testing atomic datatype PASSED +Testing compound datatype PASSED +Testing nested compound datatype PASSED +Testing compound datatype with array as field PASSED +Testing compound datatype with opaque field PASSED +Testing enum datatype PASSED +Testing array of compound datatype PASSED +Testing array of atomic datatype PASSED +Testing variable length datatype PASSED +Testing variable length string datatype PASSED +Testing fixed-length string datatype PASSED +Testing reference datatype PASSED +Testing dataset region reference PASSED +Testing opaque datatype PASSED +Testing bitfield datatype PASSED +Testing native integer PASSED +All native datatype tests passed. +0.11user 0.03system 0:00.16elapsed 98%CPU (0avgtext+0avgdata 11600maxresident)k +0inputs+7416outputs (0major+13350minor)pagefaults 0swaps + +Finished testing ntypes +============================ diff --git a/build/test/ntypes.o b/build/test/ntypes.o new file mode 100644 index 0000000..ad394f4 Binary files /dev/null and b/build/test/ntypes.o differ diff --git a/build/test/objcopy b/build/test/objcopy new file mode 100755 index 0000000..93893d6 --- /dev/null +++ b/build/test/objcopy @@ -0,0 +1,228 @@ +#! /bin/sh + +# objcopy - temporary wrapper script for .libs/objcopy +# Generated by libtool (GNU libtool) 2.4.6 +# +# The objcopy program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file objcopy.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "objcopy:objcopy:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "objcopy:objcopy:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "objcopy:objcopy:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'objcopy' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/objcopy.chkexe b/build/test/objcopy.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/objcopy.chklog b/build/test/objcopy.chklog new file mode 100644 index 0000000..020f5c3 --- /dev/null +++ b/build/test/objcopy.chklog @@ -0,0 +1,1913 @@ +============================ + objcopy Test Log +============================ + +Testing without shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes to the source file PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with oldest file format for source file: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing without dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +Testing H5Ocopy(): named datatype PASSED +Testing H5Ocopy(): named vlen datatype PASSED +Testing H5Ocopy(): named nested vlen datatype PASSED +Testing H5Ocopy(): merging committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes with attributes PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging PASSED +Testing H5Ocopy(): merging various committed datatypes PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED +Testing H5Ocopy(): merging committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED +Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED +Testing H5Ocopy(): merging various committed datatypes with reopen PASSED +Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED +Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED +Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED +Testing H5Ocopy(): external dataset PASSED +Testing H5Ocopy(): dataset that uses named datatype PASSED +Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED +Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED +Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED +Testing H5Ocopy(): variable length attribute PASSED +Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED +Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED +Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED +Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED +Testing H5Ocopy(): named datatype in same file PASSED +Testing H5Ocopy(): dataset with old layout format PASSED +Testing H5Ocopy(): opened dataset with old layout format PASSED +Testing H5Ocopy(): NULL references PASSED +Testing H5Ocopy(): NULL references for opened datasets PASSED +Testing H5Ocopy(): inside H5Literate() callback PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with oldest file format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing without shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing without shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED + +Testing with shared src messages: +Testing with shared dst messages: +Testing with latest format for source file: +Testing with dense attributes: +Testing with latest format for destination file: +Testing H5Ocopy(): simple dataset PASSED +Testing H5Ocopy(): simple dataset within the same file PASSED +Testing H5Ocopy(): empty contiguous dataset PASSED +Testing H5Ocopy(): empty and opened contiguous dataset PASSED +Testing H5Ocopy(): compound dataset PASSED +Testing H5Ocopy(): chunked dataset PASSED +Testing H5Ocopy(): empty chunked dataset PASSED +Testing H5Ocopy(): sparse dataset PASSED +Testing H5Ocopy(): compressed dataset PASSED +Testing H5Ocopy(): compact dataset PASSED +Testing H5Ocopy(): compact and opened dataset PASSED +Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED +Testing H5Ocopy(): objects with attributes using named datatypes PASSED +Testing H5Ocopy(): empty group PASSED +Testing H5Ocopy(): root group PASSED +Testing H5Ocopy(): simple nested groups PASSED +Testing H5Ocopy(): deep nested groups PASSED +Testing H5Ocopy(): nested groups with loop PASSED +Testing H5Ocopy(): wide nested groups with loop PASSED +Testing H5Ocopy(): group with links PASSED +Testing H5Ocopy(): object through soft link PASSED +Testing H5Ocopy(): opened object through soft link PASSED +Testing H5Ocopy(): object through external link PASSED +Testing H5Ocopy(): existing object PASSED +Testing H5Ocopy(): full path PASSED +Testing H5Ocopy(): named datatype with self-referential attribute PASSED +Testing H5Ocopy(): attributes with creation order PASSED +Testing H5Ocopy(): without attributes PASSED +Testing H5Ocopy(): with missing groups PASSED +Testing H5Ocopy(): expand soft link PASSED +Testing H5Ocopy: expand external link PASSED +Testing H5Ocopy: expand soft and external links PASSED +Testing H5Ocopy(): shallow group copy PASSED +Testing H5Ocopy(): expand object reference PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): preserve NULL messages PASSED +Testing H5Ocopy(): copying objects while opened PASSED +All object copying tests passed. +34.50user 2.12system 0:43.99elapsed 83%CPU (0avgtext+0avgdata 38932maxresident)k +0inputs+342256outputs (0major+209520minor)pagefaults 0swaps + +Finished testing objcopy +============================ diff --git a/build/test/objcopy.o b/build/test/objcopy.o new file mode 100644 index 0000000..25d3f2c Binary files /dev/null and b/build/test/objcopy.o differ diff --git a/build/test/objcopy_ext.dat b/build/test/objcopy_ext.dat new file mode 100644 index 0000000..39f7a89 Binary files /dev/null and b/build/test/objcopy_ext.dat differ diff --git a/build/test/ohdr b/build/test/ohdr new file mode 100755 index 0000000..fa013fa --- /dev/null +++ b/build/test/ohdr @@ -0,0 +1,228 @@ +#! /bin/sh + +# ohdr - temporary wrapper script for .libs/ohdr +# Generated by libtool (GNU libtool) 2.4.6 +# +# The ohdr program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file ohdr.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "ohdr:ohdr:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "ohdr:ohdr:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "ohdr:ohdr:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'ohdr' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/ohdr.chkexe b/build/test/ohdr.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/ohdr.chklog b/build/test/ohdr.chklog new file mode 100644 index 0000000..979aab1 --- /dev/null +++ b/build/test/ohdr.chklog @@ -0,0 +1,59 @@ +============================ + ohdr Test Log +============================ +Using default file format: +Testing object header continuation block PASSED +Testing object header creation PASSED +Testing message creation PASSED +Testing message modification PASSED +Testing object header overflow in memory PASSED +Testing close & re-open object header PASSED +Testing object header overflow on disk PASSED +Testing message deletion PASSED +Testing constant message handling PASSED +Testing object header closing PASSED +Testing locking messages PASSED +Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Testing object header creation in cache PASSED +Using new file format: +Testing object header continuation block PASSED +Testing object header creation PASSED +Testing message creation PASSED +Testing message modification PASSED +Testing object header overflow in memory PASSED +Testing close & re-open object header PASSED +Testing object header overflow on disk PASSED +Testing message deletion PASSED +Testing constant message handling PASSED +Testing object header closing PASSED +Testing locking messages PASSED +Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID +Testing object with unknown header message and no flags set PASSED +Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED +Testing object with unknown header message & 'mark if unknown' flag set PASSED +Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED + PASSED +Testing object header creation in cache PASSED +All object header tests passed. +0.09user 0.03system 0:00.17elapsed 72%CPU (0avgtext+0avgdata 7056maxresident)k +0inputs+872outputs (0major+9191minor)pagefaults 0swaps + +Finished testing ohdr +============================ diff --git a/build/test/ohdr.o b/build/test/ohdr.o new file mode 100644 index 0000000..81d3fda Binary files /dev/null and b/build/test/ohdr.o differ diff --git a/build/test/plugin b/build/test/plugin new file mode 100755 index 0000000..e7494a1 --- /dev/null +++ b/build/test/plugin @@ -0,0 +1,228 @@ +#! /bin/sh + +# plugin - temporary wrapper script for .libs/plugin +# Generated by libtool (GNU libtool) 2.4.6 +# +# The plugin program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file plugin.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "plugin:plugin:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "plugin:plugin:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "plugin:plugin:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'plugin' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/plugin.o b/build/test/plugin.o new file mode 100644 index 0000000..d8550bf Binary files /dev/null and b/build/test/plugin.o differ diff --git a/build/test/pool b/build/test/pool new file mode 100755 index 0000000..9ded95c --- /dev/null +++ b/build/test/pool @@ -0,0 +1,228 @@ +#! /bin/sh + +# pool - temporary wrapper script for .libs/pool +# Generated by libtool (GNU libtool) 2.4.6 +# +# The pool program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file pool.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "pool:pool:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "pool:pool:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "pool:pool:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'pool' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/pool.chkexe b/build/test/pool.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/pool.chklog b/build/test/pool.chklog new file mode 100644 index 0000000..6a0e786 --- /dev/null +++ b/build/test/pool.chklog @@ -0,0 +1,18 @@ +============================ + pool Test Log +============================ +Testing memory pool creation PASSED +Testing closing pool with blocks still allocated in one page PASSED +Testing allocating first block in pool PASSED +Testing allocating large first block in pool PASSED +Testing splitting block in pool PASSED +Testing allocating many small blocks PASSED +Testing allocate normal-sized block in new page PASSED +Testing allocate large-sized block in new page PASSED +Testing allocate many random sized blocks PASSED +All memory pool tests passed. +2.16user 0.04system 0:02.21elapsed 100%CPU (0avgtext+0avgdata 37032maxresident)k +0inputs+136outputs (0major+25585minor)pagefaults 0swaps + +Finished testing pool +============================ diff --git a/build/test/pool.o b/build/test/pool.o new file mode 100644 index 0000000..a988521 Binary files /dev/null and b/build/test/pool.o differ diff --git a/build/test/reserved b/build/test/reserved new file mode 100755 index 0000000..0d40390 --- /dev/null +++ b/build/test/reserved @@ -0,0 +1,228 @@ +#! /bin/sh + +# reserved - temporary wrapper script for .libs/reserved +# Generated by libtool (GNU libtool) 2.4.6 +# +# The reserved program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file reserved.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "reserved:reserved:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "reserved:reserved:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "reserved:reserved:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'reserved' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/reserved.chkexe b/build/test/reserved.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/reserved.chklog b/build/test/reserved.chklog new file mode 100644 index 0000000..298fd8f --- /dev/null +++ b/build/test/reserved.chklog @@ -0,0 +1,9 @@ +============================ + reserved Test Log +============================ + -SKIP- +0.03user 0.03system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6896maxresident)k +0inputs+24outputs (0major+7808minor)pagefaults 0swaps + +Finished testing reserved +============================ diff --git a/build/test/reserved.o b/build/test/reserved.o new file mode 100644 index 0000000..977e130 Binary files /dev/null and b/build/test/reserved.o differ diff --git a/build/test/set_extent b/build/test/set_extent new file mode 100755 index 0000000..d95993c --- /dev/null +++ b/build/test/set_extent @@ -0,0 +1,228 @@ +#! /bin/sh + +# set_extent - temporary wrapper script for .libs/set_extent +# Generated by libtool (GNU libtool) 2.4.6 +# +# The set_extent program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file set_extent.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "set_extent:set_extent:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "set_extent:set_extent:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "set_extent:set_extent:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'set_extent' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/set_extent.chkexe b/build/test/set_extent.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/set_extent.chklog b/build/test/set_extent.chklog new file mode 100644 index 0000000..f500806 --- /dev/null +++ b/build/test/set_extent.chklog @@ -0,0 +1,21 @@ +============================ + set_extent Test Log +============================ +Testing with old file format and chunk cache disabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing with old file format and chunk cache enabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing external file use PASSED +Testing storage layout use PASSED +Testing with new file format and chunk cache disabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing with new file format and chunk cache enabled: + Testing datasets with ranks 1 to 4 (all configurations) PASSED +Testing external file use PASSED +Testing storage layout use PASSED +All H5Dset_extent tests passed. +5.71user 0.73system 0:08.25elapsed 78%CPU (0avgtext+0avgdata 7900maxresident)k +0inputs+12008outputs (0major+13438minor)pagefaults 0swaps + +Finished testing set_extent +============================ diff --git a/build/test/set_extent.o b/build/test/set_extent.o new file mode 100644 index 0000000..a15af4d Binary files /dev/null and b/build/test/set_extent.o differ diff --git a/build/test/stab b/build/test/stab new file mode 100755 index 0000000..912b13d --- /dev/null +++ b/build/test/stab @@ -0,0 +1,228 @@ +#! /bin/sh + +# stab - temporary wrapper script for .libs/stab +# Generated by libtool (GNU libtool) 2.4.6 +# +# The stab program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file stab.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "stab:stab:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "stab:stab:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "stab:stab:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'stab' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/stab.chkexe b/build/test/stab.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/stab.chklog b/build/test/stab.chklog new file mode 100644 index 0000000..f695437 --- /dev/null +++ b/build/test/stab.chklog @@ -0,0 +1,22 @@ +============================ + stab Test Log +============================ +Testing miscellaneous group tests PASSED +Testing long names PASSED +Testing large directories PASSED +Testing miscellaneous group tests (w/new group format) PASSED +Testing long names (w/new group format) PASSED +Testing large directories (w/new group format) PASSED +Testing group lifecycle PASSED +Testing long link names in compact groups PASSED +Testing reading old groups PASSED +Testing group without compact form PASSED +Testing setting root group creation properties PASSED +Testing old API routines PASSED +Testing corrupt symbol table message PASSED +All symbol table tests passed. +0.48user 0.05system 0:00.72elapsed 74%CPU (0avgtext+0avgdata 15068maxresident)k +0inputs+11496outputs (0major+11872minor)pagefaults 0swaps + +Finished testing stab +============================ diff --git a/build/test/stab.o b/build/test/stab.o new file mode 100644 index 0000000..93755d7 Binary files /dev/null and b/build/test/stab.o differ diff --git a/build/test/tarray.o b/build/test/tarray.o new file mode 100644 index 0000000..de5e7b9 Binary files /dev/null and b/build/test/tarray.o differ diff --git a/build/test/tattr.o b/build/test/tattr.o new file mode 100644 index 0000000..1b53cc5 Binary files /dev/null and b/build/test/tattr.o differ diff --git a/build/test/tbogus.h5.copy b/build/test/tbogus.h5.copy new file mode 100644 index 0000000..87b183b Binary files /dev/null and b/build/test/tbogus.h5.copy differ diff --git a/build/test/tcheck_version b/build/test/tcheck_version new file mode 100755 index 0000000..a6a0ed7 --- /dev/null +++ b/build/test/tcheck_version @@ -0,0 +1,228 @@ +#! /bin/sh + +# tcheck_version - temporary wrapper script for .libs/tcheck_version +# Generated by libtool (GNU libtool) 2.4.6 +# +# The tcheck_version program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file tcheck_version.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "tcheck_version:tcheck_version:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "tcheck_version:tcheck_version:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "tcheck_version:tcheck_version:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'tcheck_version' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/tcheck_version.o b/build/test/tcheck_version.o new file mode 100644 index 0000000..35e2982 Binary files /dev/null and b/build/test/tcheck_version.o differ diff --git a/build/test/tchecksum.o b/build/test/tchecksum.o new file mode 100644 index 0000000..1026a7a Binary files /dev/null and b/build/test/tchecksum.o differ diff --git a/build/test/tconfig.o b/build/test/tconfig.o new file mode 100644 index 0000000..b9fe0f0 Binary files /dev/null and b/build/test/tconfig.o differ diff --git a/build/test/tcoords.o b/build/test/tcoords.o new file mode 100644 index 0000000..84585cb Binary files /dev/null and b/build/test/tcoords.o differ diff --git a/build/test/test_plugin.sh b/build/test/test_plugin.sh new file mode 100644 index 0000000..70b7c59 --- /dev/null +++ b/build/test/test_plugin.sh @@ -0,0 +1,100 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +srcdir=../../test +TOP_BUILDDIR=.. + +# Determine backward compatibility options enabled +DEPRECATED_SYMBOLS="yes" + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +nerrors=0 +verbose=yes +exit_code=$EXIT_SUCCESS + +TEST_NAME=plugin +TEST_BIN=`pwd`/$TEST_NAME +FROM_DIR=`pwd`/.libs +case $(uname) in + CYGWIN* ) + PLUGIN_LIB1="$FROM_DIR/cygdynlib1* $FROM_DIR/cygdynlib3*" + PLUGIN_LIB2="$FROM_DIR/cygdynlib2* $FROM_DIR/cygdynlib4*" + ;; + *) + PLUGIN_LIB1="$FROM_DIR/libdynlib1.* $FROM_DIR/libdynlib3.*" + PLUGIN_LIB2="$FROM_DIR/libdynlib2.* $FROM_DIR/libdynlib4.*" + ;; +esac +PLUGIN_LIBDIR1=testdir1 +PLUGIN_LIBDIR2=testdir2 +CP="cp -p" # Use -p to preserve mode,ownership,timestamps +RM="rm -rf" + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Main Body +# Create test directories if not exists yet. +test -d $PLUGIN_LIBDIR1 || mkdir -p $PLUGIN_LIBDIR1 +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR1)" + exit $EXIT_FAILURE +fi + +test -d $PLUGIN_LIBDIR2 || mkdir -p $PLUGIN_LIBDIR2 +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR2)" + exit $EXIT_FAILURE +fi + +# copy plugin library for test +$CP $PLUGIN_LIB1 $PLUGIN_LIBDIR1 +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB1) for test." + exit $EXIT_FAILURE +fi + +$CP $PLUGIN_LIB2 $PLUGIN_LIBDIR2 +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB2) for test." + exit $EXIT_FAILURE +fi + +# setup plugin path +ENVCMD="env HDF5_PLUGIN_PATH=${PLUGIN_LIBDIR1}:${PLUGIN_LIBDIR2}" + +# Run the test +$ENVCMD $TEST_BIN +if [ $? != 0 ]; then + nerrors=`expr $nerrors + 1` +fi + +# print results +if test $nerrors -ne 0 ; then + echo "$nerrors errors encountered" + exit_code=$EXIT_FAILURE +else + echo "All Plugin API tests passed." + exit_code=$EXIT_SUCCESS +fi + +# Clean up temporary files/directories and leave +$RM $PLUGIN_LIBDIR1 $PLUGIN_LIBDIR2 + +exit $exit_code diff --git a/build/test/test_plugin.sh.chkexe b/build/test/test_plugin.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/test_plugin.sh.chklog b/build/test/test_plugin.sh.chklog new file mode 100644 index 0000000..4396cd4 --- /dev/null +++ b/build/test/test_plugin.sh.chklog @@ -0,0 +1,104 @@ +============================ +test_plugin.sh Test Log +============================ +Testing with old file format: +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB1 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB2 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB4 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing DYNLIB3 filter for group PASSED + +Testing with new file format: +Testing deflate filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB1 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB2 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED + DYNLIB4 filter +Testing filters (setup) PASSED +Testing filters (uninitialized read) PASSED +Testing filters (write) PASSED +Testing filters (read) PASSED +Testing filters (modify) PASSED +Testing filters (re-open) PASSED +Testing filters (partial I/O) PASSED +Testing DYNLIB3 filter for group PASSED + +Testing reading data with with dynamic plugin filters: +Testing deflate filter PASSED +Testing DYNLIB1 filter PASSED +Testing DYNLIB2 filter PASSED +Testing DYNLIB4 filter PASSED +Testing opening groups with DYNLIB3 filter PASSED +Testing DYNLIB1 filter with plugins disabled PASSED +Testing access to the filter path table +Testing initialize PASSED +Testing remove PASSED +Testing remove (exceed min) PASSED +Testing append PASSED +Testing append (exceed) PASSED +Testing remove (exceed max) PASSED +Testing get (path name) PASSED +Testing get (bounds) PASSED +Testing get (bounds exceed) PASSED +Testing remove (verify for prepend) PASSED +Testing prepend PASSED +Testing prepend (exceed) PASSED +Testing replace PASSED +Testing remove (verify for insert) PASSED +Testing insert PASSED +Testing insert (exceed) PASSED +All plugin tests passed. +All Plugin API tests passed. +0.32user 0.09system 0:00.43elapsed 95%CPU (0avgtext+0avgdata 11296maxresident)k +0inputs+3720outputs (0major+29904minor)pagefaults 0swaps + +Finished testing test_plugin.sh +============================ diff --git a/build/test/testcheck_version.sh b/build/test/testcheck_version.sh new file mode 100644 index 0000000..30f99b0 --- /dev/null +++ b/build/test/testcheck_version.sh @@ -0,0 +1,261 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + +# +# Tests for the H5check_version function. +# +# Programmer: Albert Cheng +# Sep 28, 2009 + +srcdir=../../test + +# Variables filled in by the configure process. +# Determine the configure options of the hdf5 library and executables. +Shared_Lib=yes +Static_Lib=yes +Static_exec=no +h5haveexitcode=yes # default is yes + +CMP='cmp -s' +DIFF='diff -c' +RM='rm -f' + +# Function definitions +# +# Show the purpose of this test script and a note about the abort messages. +PURPOSE() { + echo "Tests for the H5check_version function." + echo "Note that abort messages may appear due to the expected termination" + echo "of the program when it is tested with mis-matched version numnbers." +} + +# Print a line-line message left justified in a field of 70 characters. +# +LINEMSG() { + SPACES=" " + echo "$* $SPACES" | cut -c1-70 | tr -d '\012' +} + + +# Print a "SKIP" message +SKIP() { + LINEMSG $* + echo " -SKIP-" +} + + +# Print warning message of version mismatch. +WarnMesg(){ + echo "Warning! ***HDF5 library version mismatched error***" + echo "The HDF5 header files used to compile this application do not match" + echo "the version used by the HDF5 library to which this application is linked." + echo "Data corruption or segmentation faults may occur if the application continues." + echo "This can happen when an application was compiled by one version of HDF5 but" + echo "linked with a different version of static or shared HDF5 library." + echo "You should recompile the application or check your shared library related" + echo "settings such as 'LD_LIBRARY_PATH'." + echo "You can, at your own risk, disable this warning by setting the environment" + echo "variable 'HDF5_DISABLE_VERSION_CHECK' to a value of '1'." + echo "Setting it to 2 or higher will suppress the warning messages totally." + echo "Headers are $xxh5versmajor.$xxh5versminor.$xxh5versrelease, library is $h5versmajor.$h5versminor.$h5versrelease" + test -n "$H5_HAVE_EMBEDDED_LIBINFO" && cat $h5libsettings + echo "Bye..." +} + + +# Print warning message2 of version mismatch. +WarnMesg2(){ + echo "Warning! ***HDF5 library version mismatched error***" + echo "The HDF5 header files used to compile this application do not match" + echo "the version used by the HDF5 library to which this application is linked." + echo "Data corruption or segmentation faults may occur if the application continues." + echo "This can happen when an application was compiled by one version of HDF5 but" + echo "linked with a different version of static or shared HDF5 library." + echo "You should recompile the application or check your shared library related" + echo "settings such as 'LD_LIBRARY_PATH'." + echo "'HDF5_DISABLE_VERSION_CHECK' environment variable is set to 1, application will" + echo "continue at your own risk." + echo "Headers are $xxh5versmajor.$xxh5versminor.$xxh5versrelease, library is $h5versmajor.$h5versminor.$h5versrelease" + test -n "$H5_HAVE_EMBEDDED_LIBINFO" && cat $h5libsettings +} + + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output generated according to the parameter values and compared +# against actual output. +# The expected and actual output files are removed unless $HDF5_NOCLEANUP +# has a non-zero value. +# $1: the set value of $HDF5_DISABLE_VERSION_CHECK. (unset means not to set +# it at all. +# $2: Change the version number(s) to cause a mismatch. (none means no +# mismatch). +# +# Expected results: +# Value of $HDF5_DISABLE_VERSION_CHECK +# unset "" -1 0 1 2 3 +# Matched OK OK OK OK OK OK OK +# Mismatched W/A W/A W/A W/A W2/OK OK W2/OK +# Result codes: +# OK: No warning, exit 0. +# W/A: Warning, abort and exit non-0. +# W2/OK: Different Warning, exit 0. +# +# Implemented only exit code matching. Still need to match output. +TESTING() { + DEBUGPRINT command is $0 $* + TEST_NAME=tcheck_version # The test name + TEST_BIN=`pwd`/$TEST_NAME # The path of the test binary + + expect=${TEST_NAME}_expect.out + actual=${TEST_NAME}_actual.out + actual_err=${TEST_NAME}_actual.err + arguments= + + h5DisableVersion="$1" + wrongversionnumbers="$2" + xxh5versmajor=$h5versmajor + xxh5versminor=$h5versminor + xxh5versrelease=$h5versrelease + + if [ "$h5DisableVersion" = unset ]; then + envcmd="" # noop + else + envcmd="env HDF5_DISABLE_VERSION_CHECK=$h5DisableVersion" + fi + + if [ "$wrongversionnumbers" = none ]; then + # OK: No warning, exit 0 + cp /dev/null $expect + expect_code=0 + else + arguments=-t"$wrongversionnumbers" + # calculate mismatched version numbers by listing. + case $wrongversionnumbers in + "M") xxh5versmajor=`expr $h5versmajor + 1` + ;; + "m") xxh5versminor=`expr $h5versminor + 1` + ;; + "r") xxh5versrelease=`expr $h5versrelease + 1` + ;; + esac + case "$h5DisableVersion" in + 1) + # W2/OK: Different Warning, exit 0. + WarnMesg2 > $expect + expect_code=0 + ;; + [2-9]|[1-9][0-9]*) + # OK: No warning, exit 0 + cp /dev/null $expect + expect_code=0 + ;; + *) # W/A: Warning, abort and exit non-0. + WarnMesg > $expect + expect_code=6 # Signal Abort exit code (128+6) + ;; + esac + fi + + # Run test. + LINEMSG $envcmd $TEST_NAME $arguments + ( + $envcmd $RUNSERIAL $TEST_BIN $arguments + ) >$actual 2>$actual_err + ret_code=$? + cat $actual_err >> $actual + + if [ $h5haveexitcode = 'yes' -a \( $expect_code -ne $ret_code \) ]; then + echo "*FAILED*" + echo " Expected exit code ($expect_code) differs from actual code ($ret_code)" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result differs from actual result" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file. + # Also clean the core file generated by H5check_version's abort. + if test -z "$HDF5_NOCLEANUP"; then + $RM $expect $actual $actual_err + $RM core + fi +} + + +# Echo parameters for debugging if verbose mode is on. +DEBUGPRINT() { + if [ -n "$debugmode" ]; then + echo $* + fi +} + + +# MAIN Body +nerrors=0 +verbose=yes # default on +debugmode= # default off +H5_HAVE_EMBEDDED_LIBINFO=`grep '#define H5_HAVE_EMBEDDED_LIBINFO ' ../src/H5pubconf.h` +h5libsettings=../src/libhdf5.settings + +PURPOSE + +# Figure out library version numbers from the header file. +h5versmajor=`grep '#define H5_VERS_MAJOR' $srcdir/../src/H5public.h | cut -f2` +h5versminor=`grep '#define H5_VERS_MINOR' $srcdir/../src/H5public.h | cut -f2` +h5versrelease=`grep '#define H5_VERS_RELEASE' $srcdir/../src/H5public.h | cut -f2` +DEBUGPRINT $h5versmajor.$h5versminor.$h5versrelease +case "$h5versmajor$h5versminor$h5versrelease" in + [0-9]*) # good. noop. + ;; + *) + echo "Illegal library version numbers($h5versmajor.$h5versminor.$h5versrelease)" + echo "Test aborted" + exit 1 + ;; +esac + +# RUNSERIAL is used. Check if it can return exit code from executalbe correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell corretly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# Three Categories of tests: +# Normal: where the version numbers all matched (wrong_version == none). +# Mismatched version numbers (could be Major or minor version +# or release numbers or a combination of all three.) +# Test all the above with different values of the environment variable, +# HDF5_DISABLE_VERSION_CHECK, as unset, "", -1, 0, 1, 2, 3 + +for val_disable_version_check in unset "" -1 0 1 2 3; do + for wrong_version in none M m r; do + TESTING "$val_disable_version_check" "$wrong_version" + done +done + + +# Check and report results. +if [ $nerrors -gt 0 ]; then + echo "***$nerrors errors encountered***" + exit 1 +else + echo "No error encountered" + exit 0 +fi diff --git a/build/test/testcheck_version.sh.chkexe b/build/test/testcheck_version.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/testcheck_version.sh.chklog b/build/test/testcheck_version.sh.chklog new file mode 100644 index 0000000..7d96649 --- /dev/null +++ b/build/test/testcheck_version.sh.chklog @@ -0,0 +1,40 @@ +============================ +testcheck_version.sh Test Log +============================ +Tests for the H5check_version function. +Note that abort messages may appear due to the expected termination +of the program when it is tested with mis-matched version numnbers. +tcheck_version PASSED +tcheck_version -tM PASSED +tcheck_version -tm PASSED +tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tr PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tM PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tm PASSED +env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tr PASSED +No error encountered +0.35user 0.74system 0:00.89elapsed 122%CPU (0avgtext+0avgdata 6900maxresident)k +0inputs+480outputs (0major+219470minor)pagefaults 0swaps + +Finished testing testcheck_version.sh +============================ diff --git a/build/test/testerror.sh b/build/test/testerror.sh new file mode 100644 index 0000000..a06b7a2 --- /dev/null +++ b/build/test/testerror.sh @@ -0,0 +1,118 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for test_error and err_compat + +srcdir=../../test + +# Determine backward compatibility options eneabled +DEPRECATED_SYMBOLS="yes" + +CMP='cmp -s' +DIFF='diff -c' + +# Skip plugin module to test missing filter +ENVCMD="env HDF5_PLUGIN_PRELOAD=::" + +nerrors=0 +verbose=yes + +test -d ./testfiles || mkdir ./testfiles + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +TEST() { + TEST_ERR=$1 # The test name + TEST_ERR_BIN=`pwd`/$TEST_ERR # The path of the test binary + + expect1="$srcdir/testfiles/$1_1" + expect2="$srcdir/testfiles/$1_2" + actual="./`basename $1`.out" + actual_err="./`basename $1`.err" + actual_ext="./`basename $1`.ext" + shift + + # Run test. + TESTING $TEST_ERR + ( + # Skip the plugin for testing missing filter. + $ENVCMD $RUNSERIAL $TEST_ERR_BIN + ) >$actual 2>$actual_err + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + cat $actual_ext >> $actual + + if $CMP $expect1 $actual; then + echo " PASSED" + elif $CMP $expect2 $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result differs from actual result" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect1 $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_ext + fi +} + +# Print a "SKIP" message +SKIP() { + TESTING $@ + echo " -SKIP-" +} + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## + +# test for err_compat +if test $DEPRECATED_SYMBOLS != "yes"; then +SKIP err_compat +else +TEST err_compat +fi + +# test for error_test. Skip the plugin for testing missing filter. +TEST error_test + +if test $nerrors -eq 0 ; then + echo "All Error API tests passed." +fi + +exit $nerrors diff --git a/build/test/testerror.sh.chkexe b/build/test/testerror.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/testerror.sh.chklog b/build/test/testerror.sh.chklog new file mode 100644 index 0000000..a9136f2 --- /dev/null +++ b/build/test/testerror.sh.chklog @@ -0,0 +1,11 @@ +============================ +testerror.sh Test Log +============================ +Testing err_compat PASSED +Testing error_test PASSED +All Error API tests passed. +0.10user 0.09system 0:00.20elapsed 95%CPU (0avgtext+0avgdata 7036maxresident)k +0inputs+360outputs (0major+25599minor)pagefaults 0swaps + +Finished testing testerror.sh +============================ diff --git a/build/test/testframe.lo b/build/test/testframe.lo new file mode 100644 index 0000000..7d5f2fe --- /dev/null +++ b/build/test/testframe.lo @@ -0,0 +1,12 @@ +# testframe.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/testframe.o' + +# Name of the non-PIC object +non_pic_object='testframe.o' + diff --git a/build/test/testframe.o b/build/test/testframe.o new file mode 100644 index 0000000..ad34242 Binary files /dev/null and b/build/test/testframe.o differ diff --git a/build/test/testhdf5 b/build/test/testhdf5 new file mode 100755 index 0000000..5fa9d99 --- /dev/null +++ b/build/test/testhdf5 @@ -0,0 +1,228 @@ +#! /bin/sh + +# testhdf5 - temporary wrapper script for .libs/testhdf5 +# Generated by libtool (GNU libtool) 2.4.6 +# +# The testhdf5 program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file testhdf5.o tarray.o tattr.o tchecksum.o tconfig.o tfile.o tgenprop.o th5o.o th5s.o tcoords.o theap.o tid.o titerate.o tmeta.o tmisc.o trefer.o trefstr.o tselect.o tskiplist.o tsohm.o ttime.o ttst.o tunicode.o tvlstr.o tvltypes.o tverbounds18.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "testhdf5:testhdf5:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "testhdf5:testhdf5:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "testhdf5:testhdf5:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'testhdf5' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/testhdf5.chkexe b/build/test/testhdf5.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/testhdf5.chklog b/build/test/testhdf5.chklog new file mode 100644 index 0000000..1dfbe72 --- /dev/null +++ b/build/test/testhdf5.chklog @@ -0,0 +1,43 @@ +============================ + testhdf5 Test Log +============================ + +For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-testhdf5 -help +Linked with hdf5 version 1.8 release 21 +Testing -- Configure definitions (config) +Testing -- Encoding/decoding metadata (metadata) +Testing -- Checksum algorithm (checksum) +Testing -- Ternary Search Trees (tst) +Testing -- Memory Heaps (heap) +Testing -- Skip Lists (skiplist) +Testing -- Reference Counted Strings (refstr) +Testing -- Low-Level File I/O (file) +Testing -- Generic Object Functions (objects) +Testing -- Dataspaces (h5s) +Testing -- Dataspace coordinates (coords) +Testing -- Shared Object Header Messages (sohm) +Testing -- Attributes (attr) +Testing -- Selections (select) +Testing -- Time Datatypes (time) +Testing -- References (reference) +Testing -- Variable-Length Datatypes (vltypes) +Testing -- Variable-Length Strings (vlstrings) +Testing -- Group & Attribute Iteration (iterate) +Testing -- Array Datatypes (array) +Testing -- Generic Properties (genprop) +Testing -- UTF-8 Encoding (unicode) +Testing -- User-Created Identifiers (id) +Testing -- Miscellaneous (misc) +Testing -- Version Bounds (verbounds18) + + +All tests were successful. + + +Cleaning Up temp files... + +86.48user 0.58system 1:34.41elapsed 92%CPU (0avgtext+0avgdata 103160maxresident)k +0inputs+150264outputs (0major+58425minor)pagefaults 0swaps + +Finished testing testhdf5 +============================ diff --git a/build/test/testhdf5.o b/build/test/testhdf5.o new file mode 100644 index 0000000..d4354b2 Binary files /dev/null and b/build/test/testhdf5.o differ diff --git a/build/test/testlibinfo.sh b/build/test/testlibinfo.sh new file mode 100644 index 0000000..f632484 --- /dev/null +++ b/build/test/testlibinfo.sh @@ -0,0 +1,120 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. + + +# +# Tests for the embedded library information feature. +# Part 1: +# Verify the HDF5 library does contains an exact copy of the content of the +# libhdf5.settings file. +# Part 2: +# If executable is linked with the static hdf5 library (how to determine?), +# verify an executable indeed contains an exact copy of hte content of the +# libhdf5.settings file. +# +# Programmer: Albert Cheng +# Sep 18, 2009 + +srcdir=../../test + +# Determine the configure options of the hdf5 library and executables. + +Shared_Lib=yes +Static_Lib=yes +Static_exec=no + + +# Print a line-line message left justified in a field of 70 characters. +# +LINEMSG() { + SPACES=" " + echo "Check file $* $SPACES" | cut -c1-70 | tr -d '\012' +} + + +# Print a "SKIP" message +SKIP() { + LINEMSG $* + echo " -SKIP-" +} + +# Function definitions +CHECK_LIBINFO(){ + LINEMSG $1 + # Some systems, like Mac, the strings command inspects library files. Older + # versions of strings may not know newer library format, resulting in + # command errors. Make it read the file as stdin to avoid the problem. + if strings < $1 | grep "SUMMARY OF THE HDF5 CONFIGURATION" > /dev/null; then + echo " PASSED" + else + echo " FAILED" + nerrors=`expr $nerrors + 1` + fi +} + + +# MAIN Body +nerrors=0 +H5_HAVE_EMBEDDED_LIBINFO=`grep '#define H5_HAVE_EMBEDDED_LIBINFO ' ../src/H5pubconf.h` + +# Skip the rest if embedded-libinfo is not enabled. +if [ -z "$H5_HAVE_EMBEDDED_LIBINFO" ]; then + echo "embedded-libinfo is not enabled. Test skipped." + exit 0 +fi + +# The location of HDF library file(s) depends on whether shared lib is +# built too. +if [ -n $Shared_Lib ]; then + h5libdir=../src/.libs + shlib=$(grep dlname ../src/libhdf5.la | sed -e "s/dlname='//" -e "s/'//") +else + h5libdir=../src +fi + +h5libsettings=../src/libhdf5.settings + +# Part 1: +# Verify the HDF5 library does contains an exact copy of the content of the +# libhdf5.settings file. +# Check dynamic library file if built. +if [ x-$Shared_Lib = x-yes ]; then + CHECK_LIBINFO ${h5libdir}/${shlib} +else + SKIP shlib +fi + +# Though rare, libhdf5.a may not have been built. +if [ x-$Static_Lib = x-yes ]; then + CHECK_LIBINFO ${h5libdir}/libhdf5.a +else + SKIP ${h5libdir}/libhdf5.a +fi + +# Check if executables has the lib information only if shared lib is not +# built or static-exec is used. (Don't care static-exec since it affects +# tools binary only.) +if [ x-$Shared_Lib != x-yes ]; then + CHECK_LIBINFO testhdf5 +else + SKIP testhdf5 +fi + + +if [ $nerrors -gt 0 ]; then + echo "***$nerrors errors encountered***" + exit 1 +else + echo "No error encountered" + exit 0 +fi diff --git a/build/test/testlibinfo.sh.chkexe b/build/test/testlibinfo.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/testlibinfo.sh.chklog b/build/test/testlibinfo.sh.chklog new file mode 100644 index 0000000..7363ebb --- /dev/null +++ b/build/test/testlibinfo.sh.chklog @@ -0,0 +1,12 @@ +============================ +testlibinfo.sh Test Log +============================ +Check file ../src/.libs/libhdf5.so.10 PASSED +Check file ../src/.libs/libhdf5.a PASSED +Check file testhdf5 -SKIP- +No error encountered +0.27user 0.04system 0:00.29elapsed 109%CPU (0avgtext+0avgdata 1492maxresident)k +0inputs+0outputs (0major+6132minor)pagefaults 0swaps + +Finished testing testlibinfo.sh +============================ diff --git a/build/test/testlinks_env.sh b/build/test/testlinks_env.sh new file mode 100644 index 0000000..69d5a72 --- /dev/null +++ b/build/test/testlinks_env.sh @@ -0,0 +1,41 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Test for external link with environment variable: HDF5_EXT_PREFIX + +srcdir=../../test + +nerrors=0 + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## + +# test for external links with HDF5_EXT_PREFIX +echo "Testing external link with HDF5_EXT_PREFIX" +TEST_NAME=links_env # The test name +TEST_BIN=`pwd`/$TEST_NAME # The path of the test binary +ENVCMD="env HDF5_EXT_PREFIX=.:tmp" # The environment variable & value +# +# Run the test +$ENVCMD $RUNSERIAL $TEST_BIN +exitcode=$? +if [ $exitcode -eq 0 ]; then + echo "Test for HDF5_EXT_PREFIX PASSED" + else + nerrors="`expr $nerrors + 1`" + echo "***Error encountered for HDF5_EXT_PREFIX test***" +fi +exit $nerrors diff --git a/build/test/testlinks_env.sh.chkexe b/build/test/testlinks_env.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/testlinks_env.sh.chklog b/build/test/testlinks_env.sh.chklog new file mode 100644 index 0000000..fee4ed1 --- /dev/null +++ b/build/test/testlinks_env.sh.chklog @@ -0,0 +1,13 @@ +============================ +testlinks_env.sh Test Log +============================ +Testing external link with HDF5_EXT_PREFIX +Testing external links via environment variable PASSED +Testing external links via environment variable (w/new group format) PASSED +All external Link (HDF5_EXT_PREFIX) tests passed. +Test for HDF5_EXT_PREFIX PASSED +0.05user 0.03system 0:00.09elapsed 94%CPU (0avgtext+0avgdata 7000maxresident)k +0inputs+184outputs (0major+9907minor)pagefaults 0swaps + +Finished testing testlinks_env.sh +============================ diff --git a/build/test/testmeta b/build/test/testmeta new file mode 100755 index 0000000..c43069d --- /dev/null +++ b/build/test/testmeta @@ -0,0 +1,228 @@ +#! /bin/sh + +# testmeta - temporary wrapper script for .libs/testmeta +# Generated by libtool (GNU libtool) 2.4.6 +# +# The testmeta program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file testmeta.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "testmeta:testmeta:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "testmeta:testmeta:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "testmeta:testmeta:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'testmeta' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/testmeta.o b/build/test/testmeta.o new file mode 100644 index 0000000..4cf5fdf Binary files /dev/null and b/build/test/testmeta.o differ diff --git a/build/test/tfile.o b/build/test/tfile.o new file mode 100644 index 0000000..4b27d24 Binary files /dev/null and b/build/test/tfile.o differ diff --git a/build/test/tfile5.h5 b/build/test/tfile5.h5 new file mode 100644 index 0000000..82daee0 Binary files /dev/null and b/build/test/tfile5.h5 differ diff --git a/build/test/tfile6.h5 b/build/test/tfile6.h5 new file mode 100644 index 0000000..bc7cbf4 Binary files /dev/null and b/build/test/tfile6.h5 differ diff --git a/build/test/tgenprop.o b/build/test/tgenprop.o new file mode 100644 index 0000000..4ecf8c8 Binary files /dev/null and b/build/test/tgenprop.o differ diff --git a/build/test/th5o.o b/build/test/th5o.o new file mode 100644 index 0000000..0733e32 Binary files /dev/null and b/build/test/th5o.o differ diff --git a/build/test/th5s.o b/build/test/th5s.o new file mode 100644 index 0000000..01c3f4c Binary files /dev/null and b/build/test/th5s.o differ diff --git a/build/test/theap.o b/build/test/theap.o new file mode 100644 index 0000000..7d2cf28 Binary files /dev/null and b/build/test/theap.o differ diff --git a/build/test/tid.o b/build/test/tid.o new file mode 100644 index 0000000..3c7550f Binary files /dev/null and b/build/test/tid.o differ diff --git a/build/test/titerate.o b/build/test/titerate.o new file mode 100644 index 0000000..34e9603 Binary files /dev/null and b/build/test/titerate.o differ diff --git a/build/test/tmeta.o b/build/test/tmeta.o new file mode 100644 index 0000000..bbcdbd3 Binary files /dev/null and b/build/test/tmeta.o differ diff --git a/build/test/tmisc.o b/build/test/tmisc.o new file mode 100644 index 0000000..7a9a1eb Binary files /dev/null and b/build/test/tmisc.o differ diff --git a/build/test/trefer.o b/build/test/trefer.o new file mode 100644 index 0000000..cf948b7 Binary files /dev/null and b/build/test/trefer.o differ diff --git a/build/test/trefstr.o b/build/test/trefstr.o new file mode 100644 index 0000000..8713ef1 Binary files /dev/null and b/build/test/trefstr.o differ diff --git a/build/test/tselect.o b/build/test/tselect.o new file mode 100644 index 0000000..ddf7555 Binary files /dev/null and b/build/test/tselect.o differ diff --git a/build/test/tskiplist.o b/build/test/tskiplist.o new file mode 100644 index 0000000..12df42f Binary files /dev/null and b/build/test/tskiplist.o differ diff --git a/build/test/tsohm.o b/build/test/tsohm.o new file mode 100644 index 0000000..527fb78 Binary files /dev/null and b/build/test/tsohm.o differ diff --git a/build/test/tstint1.h5 b/build/test/tstint1.h5 new file mode 100644 index 0000000..aa453cd Binary files /dev/null and b/build/test/tstint1.h5 differ diff --git a/build/test/tstint2.h5 b/build/test/tstint2.h5 new file mode 100644 index 0000000..aa453cd Binary files /dev/null and b/build/test/tstint2.h5 differ diff --git a/build/test/ttime.o b/build/test/ttime.o new file mode 100644 index 0000000..2650d4e Binary files /dev/null and b/build/test/ttime.o differ diff --git a/build/test/ttsafe b/build/test/ttsafe new file mode 100755 index 0000000..47a6c92 --- /dev/null +++ b/build/test/ttsafe @@ -0,0 +1,228 @@ +#! /bin/sh + +# ttsafe - temporary wrapper script for .libs/ttsafe +# Generated by libtool (GNU libtool) 2.4.6 +# +# The ttsafe program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file ttsafe.o ttsafe_dcreate.o ttsafe_error.o ttsafe_cancel.o ttsafe_acreate.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "ttsafe:ttsafe:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "ttsafe:ttsafe:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "ttsafe:ttsafe:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'ttsafe' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/ttsafe.chkexe b/build/test/ttsafe.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/ttsafe.chklog b/build/test/ttsafe.chklog new file mode 100644 index 0000000..aa65d5e --- /dev/null +++ b/build/test/ttsafe.chklog @@ -0,0 +1,20 @@ +============================ + ttsafe Test Log +============================ +Most thread-safety tests skipped because THREADSAFE not enabled + +For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-ttsafe -help +Linked with hdf5 version 1.8 release 21 +Testing -- library threadsafe status (is_threadsafe) + + +All tests were successful. + + +Cleaning Up temp files... + +0.04user 0.02system 0:00.07elapsed 102%CPU (0avgtext+0avgdata 7072maxresident)k +0inputs+104outputs (0major+8293minor)pagefaults 0swaps + +Finished testing ttsafe +============================ diff --git a/build/test/ttsafe.o b/build/test/ttsafe.o new file mode 100644 index 0000000..a612bad Binary files /dev/null and b/build/test/ttsafe.o differ diff --git a/build/test/ttsafe_acreate.o b/build/test/ttsafe_acreate.o new file mode 100644 index 0000000..f7a9060 Binary files /dev/null and b/build/test/ttsafe_acreate.o differ diff --git a/build/test/ttsafe_cancel.o b/build/test/ttsafe_cancel.o new file mode 100644 index 0000000..e352cbe Binary files /dev/null and b/build/test/ttsafe_cancel.o differ diff --git a/build/test/ttsafe_dcreate.o b/build/test/ttsafe_dcreate.o new file mode 100644 index 0000000..9e32c07 Binary files /dev/null and b/build/test/ttsafe_dcreate.o differ diff --git a/build/test/ttsafe_error.o b/build/test/ttsafe_error.o new file mode 100644 index 0000000..90f0345 Binary files /dev/null and b/build/test/ttsafe_error.o differ diff --git a/build/test/ttst.o b/build/test/ttst.o new file mode 100644 index 0000000..177d387 Binary files /dev/null and b/build/test/ttst.o differ diff --git a/build/test/tunicode.o b/build/test/tunicode.o new file mode 100644 index 0000000..88ad795 Binary files /dev/null and b/build/test/tunicode.o differ diff --git a/build/test/tverbounds18.o b/build/test/tverbounds18.o new file mode 100644 index 0000000..e9c35ae Binary files /dev/null and b/build/test/tverbounds18.o differ diff --git a/build/test/tvlstr.o b/build/test/tvlstr.o new file mode 100644 index 0000000..c5dcf6b Binary files /dev/null and b/build/test/tvlstr.o differ diff --git a/build/test/tvltypes.o b/build/test/tvltypes.o new file mode 100644 index 0000000..d66f605 Binary files /dev/null and b/build/test/tvltypes.o differ diff --git a/build/test/unlink b/build/test/unlink new file mode 100755 index 0000000..31c8bc3 --- /dev/null +++ b/build/test/unlink @@ -0,0 +1,228 @@ +#! /bin/sh + +# unlink - temporary wrapper script for .libs/unlink +# Generated by libtool (GNU libtool) 2.4.6 +# +# The unlink program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file unlink.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "unlink:unlink:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "unlink:unlink:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "unlink:unlink:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'unlink' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/unlink.chkexe b/build/test/unlink.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/unlink.chklog b/build/test/unlink.chklog new file mode 100644 index 0000000..1bd9a58 --- /dev/null +++ b/build/test/unlink.chklog @@ -0,0 +1,93 @@ +============================ + unlink Test Log +============================ +Testing with old group format: +Testing unlink by absolute name PASSED +Testing unlink by local name PASSED +Testing unlink without a name PASSED +Testing forward unlink PASSED +Testing backward unlink PASSED +Testing inward unlink PASSED +Testing outward unlink PASSED +Testing symlink removal PASSED +Testing object renaming PASSED +Testing symlink renaming PASSED +Testing new move PASSED +Testing check new move function PASSED +Testing file space gets reused: +Testing contiguous dataset with late allocation PASSED +Testing contiguous dataset with early allocation PASSED +Testing chunked dataset with late allocation PASSED +Testing chunked dataset with early allocation PASSED +Testing compressed, chunked dataset PASSED +Testing re-writing compressed, chunked dataset PASSED +Testing compact dataset PASSED +Testing object header continuations PASSED +Testing named datatype PASSED +Testing single group PASSED +Testing multiple groups PASSED +Testing simple group hierarchy PASSED +Testing complex group hierarchy PASSED +Testing duplicate dataset PASSED +Testing duplicate group PASSED +Testing duplicate named datatype PASSED +Testing duplicate attribute PASSED +Testing create and unlink large number of objects PASSED +Testing create and unlink large number of objects with small cache PASSED +Testing creating links with multiple slashes PASSED +Testing deleting links with multiple slashes PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing deleting right-most child in non-leaf B-tree node PASSED +Testing resurrecting dataset after deletion PASSED +Testing resurrecting datatype after deletion PASSED +Testing resurrecting group after deletion PASSED +Testing unlinking chunked dataset PASSED + +Testing with new group format: +Testing unlink by absolute name PASSED +Testing unlink by local name PASSED +Testing unlink without a name PASSED +Testing forward unlink PASSED +Testing backward unlink PASSED +Testing inward unlink PASSED +Testing outward unlink PASSED +Testing symlink removal PASSED +Testing object renaming PASSED +Testing symlink renaming PASSED +Testing new move PASSED +Testing check new move function PASSED +Testing file space gets reused: +Testing contiguous dataset with late allocation PASSED +Testing contiguous dataset with early allocation PASSED +Testing chunked dataset with late allocation PASSED +Testing chunked dataset with early allocation PASSED +Testing compressed, chunked dataset PASSED +Testing re-writing compressed, chunked dataset PASSED +Testing compact dataset PASSED +Testing object header continuations PASSED +Testing named datatype PASSED +Testing single group PASSED +Testing multiple groups PASSED +Testing simple group hierarchy PASSED +Testing complex group hierarchy PASSED +Testing duplicate dataset PASSED +Testing duplicate group PASSED +Testing duplicate named datatype PASSED +Testing duplicate attribute PASSED +Testing create and unlink large number of objects PASSED +Testing create and unlink large number of objects with small cache PASSED +Testing creating links with multiple slashes PASSED +Testing deleting links with multiple slashes PASSED +Testing resurrecting dataset after deletion PASSED +Testing resurrecting datatype after deletion PASSED +Testing resurrecting group after deletion PASSED +Testing unlinking chunked dataset PASSED +Testing unlinking non-empty compact group PASSED +Testing unlinking non-empty dense group PASSED +All unlink tests passed. +4.35user 0.18system 0:05.59elapsed 81%CPU (0avgtext+0avgdata 27912maxresident)k +0inputs+36392outputs (0major+25383minor)pagefaults 0swaps + +Finished testing unlink +============================ diff --git a/build/test/unlink.o b/build/test/unlink.o new file mode 100644 index 0000000..3efab59 Binary files /dev/null and b/build/test/unlink.o differ diff --git a/build/test/unregister b/build/test/unregister new file mode 100755 index 0000000..d9816aa --- /dev/null +++ b/build/test/unregister @@ -0,0 +1,228 @@ +#! /bin/sh + +# unregister - temporary wrapper script for .libs/unregister +# Generated by libtool (GNU libtool) 2.4.6 +# +# The unregister program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file unregister.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "unregister:unregister:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "unregister:unregister:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "unregister:unregister:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'unregister' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/unregister.chkexe b/build/test/unregister.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/unregister.chklog b/build/test/unregister.chklog new file mode 100644 index 0000000..a6957c3 --- /dev/null +++ b/build/test/unregister.chklog @@ -0,0 +1,10 @@ +============================ + unregister Test Log +============================ +Testing Unregistering filter PASSED +All filter unregistration tests passed. +0.11user 0.03system 0:00.17elapsed 88%CPU (0avgtext+0avgdata 10652maxresident)k +0inputs+2000outputs (0major+10375minor)pagefaults 0swaps + +Finished testing unregister +============================ diff --git a/build/test/unregister.o b/build/test/unregister.o new file mode 100644 index 0000000..09675b7 Binary files /dev/null and b/build/test/unregister.o differ diff --git a/build/test/vfd b/build/test/vfd new file mode 100755 index 0000000..1229880 --- /dev/null +++ b/build/test/vfd @@ -0,0 +1,228 @@ +#! /bin/sh + +# vfd - temporary wrapper script for .libs/vfd +# Generated by libtool (GNU libtool) 2.4.6 +# +# The vfd program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file vfd.o ./.libs/libh5test.a ../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "vfd:vfd:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "vfd:vfd:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "vfd:vfd:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'vfd' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/test/vfd.chkexe b/build/test/vfd.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/test/vfd.chklog b/build/test/vfd.chklog new file mode 100644 index 0000000..9a79476 --- /dev/null +++ b/build/test/vfd.chklog @@ -0,0 +1,20 @@ +============================ + vfd Test Log +============================ +Testing basic Virtual File Driver functionality. +Testing SEC2 file driver PASSED +Testing CORE file driver PASSED +Testing FAMILY file driver PASSED +Testing FAMILY file driver backward compatibility PASSED +Testing MULTI file driver PASSED +Testing MULTI file driver backward compatibility PASSED +Testing DIRECT I/O file driver -SKIP- +Testing LOG file driver PASSED +Testing STDIO file driver PASSED +Testing WINDOWS file driver -SKIP- +All Virtual File Driver tests passed. +0.07user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7060maxresident)k +0inputs+1152outputs (0major+9322minor)pagefaults 0swaps + +Finished testing vfd +============================ diff --git a/build/test/vfd.o b/build/test/vfd.o new file mode 100644 index 0000000..521aeb2 Binary files /dev/null and b/build/test/vfd.o differ diff --git a/build/testpar/.deps/t_cache.Po b/build/testpar/.deps/t_cache.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_cache.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_chunk_alloc.Po b/build/testpar/.deps/t_chunk_alloc.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_chunk_alloc.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_coll_chunk.Po b/build/testpar/.deps/t_coll_chunk.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_coll_chunk.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_dset.Po b/build/testpar/.deps/t_dset.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_dset.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_file.Po b/build/testpar/.deps/t_file.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_file.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_file_image.Po b/build/testpar/.deps/t_file_image.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_file_image.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_filter_read.Po b/build/testpar/.deps/t_filter_read.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_filter_read.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_init_term.Po b/build/testpar/.deps/t_init_term.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_init_term.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_mdset.Po b/build/testpar/.deps/t_mdset.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_mdset.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_mpi.Po b/build/testpar/.deps/t_mpi.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_mpi.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_pflush1.Po b/build/testpar/.deps/t_pflush1.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_pflush1.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_pflush2.Po b/build/testpar/.deps/t_pflush2.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_pflush2.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_ph5basic.Po b/build/testpar/.deps/t_ph5basic.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_ph5basic.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_prestart.Po b/build/testpar/.deps/t_prestart.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_prestart.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_pshutdown.Po b/build/testpar/.deps/t_pshutdown.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_pshutdown.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_shapesame.Po b/build/testpar/.deps/t_shapesame.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_shapesame.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/t_span_tree.Po b/build/testpar/.deps/t_span_tree.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/t_span_tree.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/.deps/testphdf5.Po b/build/testpar/.deps/testphdf5.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/testpar/.deps/testphdf5.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/testpar/Makefile b/build/testpar/Makefile new file mode 100644 index 0000000..d2f21f2 --- /dev/null +++ b/build/testpar/Makefile @@ -0,0 +1,1469 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# testpar/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# hdf5 Parallel Library Test Makefile(.in) +# +VPATH = ../../testpar +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = +subdir = testpar +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__EXEEXT_1 = t_mpi$(EXEEXT) testphdf5$(EXEEXT) t_cache$(EXEEXT) \ + t_pflush1$(EXEEXT) t_pflush2$(EXEEXT) t_pshutdown$(EXEEXT) \ + t_prestart$(EXEEXT) t_init_term$(EXEEXT) t_shapesame$(EXEEXT) +t_cache_SOURCES = t_cache.c +t_cache_OBJECTS = t_cache.$(OBJEXT) +t_cache_LDADD = $(LDADD) +t_cache_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +t_init_term_SOURCES = t_init_term.c +t_init_term_OBJECTS = t_init_term.$(OBJEXT) +t_init_term_LDADD = $(LDADD) +t_init_term_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_mpi_SOURCES = t_mpi.c +t_mpi_OBJECTS = t_mpi.$(OBJEXT) +t_mpi_LDADD = $(LDADD) +t_mpi_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_pflush1_SOURCES = t_pflush1.c +t_pflush1_OBJECTS = t_pflush1.$(OBJEXT) +t_pflush1_LDADD = $(LDADD) +t_pflush1_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_pflush2_SOURCES = t_pflush2.c +t_pflush2_OBJECTS = t_pflush2.$(OBJEXT) +t_pflush2_LDADD = $(LDADD) +t_pflush2_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_prestart_SOURCES = t_prestart.c +t_prestart_OBJECTS = t_prestart.$(OBJEXT) +t_prestart_LDADD = $(LDADD) +t_prestart_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_pshutdown_SOURCES = t_pshutdown.c +t_pshutdown_OBJECTS = t_pshutdown.$(OBJEXT) +t_pshutdown_LDADD = $(LDADD) +t_pshutdown_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +t_shapesame_SOURCES = t_shapesame.c +t_shapesame_OBJECTS = t_shapesame.$(OBJEXT) +t_shapesame_LDADD = $(LDADD) +t_shapesame_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +am_testphdf5_OBJECTS = testphdf5.$(OBJEXT) t_dset.$(OBJEXT) \ + t_file.$(OBJEXT) t_file_image.$(OBJEXT) t_mdset.$(OBJEXT) \ + t_ph5basic.$(OBJEXT) t_coll_chunk.$(OBJEXT) \ + t_span_tree.$(OBJEXT) t_chunk_alloc.$(OBJEXT) \ + t_filter_read.$(OBJEXT) +testphdf5_OBJECTS = $(am_testphdf5_OBJECTS) +testphdf5_LDADD = $(LDADD) +testphdf5_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = t_cache.c t_init_term.c t_mpi.c t_pflush1.c t_pflush2.c \ + t_prestart.c t_pshutdown.c t_shapesame.c $(testphdf5_SOURCES) +DIST_SOURCES = t_cache.c t_init_term.c t_mpi.c t_pflush1.c t_pflush2.c \ + t_prestart.c t_pshutdown.c t_shapesame.c $(testphdf5_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/test +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/testpar +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../testpar +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../testpar +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files +# MPItest.h5 is from t_mpi +# Para*.h5 are from testphdf +# shutdown.h5 is from t_pshutdown +# after_mpi_fin.h5 is from t_init_term +# go is used for debugging. See testphdf5.c. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 MPItest.h5 \ + Para*.h5 CacheTestDummy.h5 shutdown.h5 after_mpi_fin.h5 go + +# Test programs. These are our main targets. +# +TEST_PROG_PARA = t_mpi testphdf5 t_cache t_pflush1 t_pflush2 t_pshutdown t_prestart t_init_term t_shapesame +testphdf5_SOURCES = testphdf5.c t_dset.c t_file.c t_file_image.c t_mdset.c \ + t_ph5basic.c t_coll_chunk.c t_span_tree.c t_chunk_alloc.c t_filter_read.c + + +# The tests all depend on the hdf5 library and the test library +LDADD = $(LIBH5TEST) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign testpar/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign testpar/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +t_cache$(EXEEXT): $(t_cache_OBJECTS) $(t_cache_DEPENDENCIES) $(EXTRA_t_cache_DEPENDENCIES) + @rm -f t_cache$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_cache_OBJECTS) $(t_cache_LDADD) $(LIBS) + +t_init_term$(EXEEXT): $(t_init_term_OBJECTS) $(t_init_term_DEPENDENCIES) $(EXTRA_t_init_term_DEPENDENCIES) + @rm -f t_init_term$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_init_term_OBJECTS) $(t_init_term_LDADD) $(LIBS) + +t_mpi$(EXEEXT): $(t_mpi_OBJECTS) $(t_mpi_DEPENDENCIES) $(EXTRA_t_mpi_DEPENDENCIES) + @rm -f t_mpi$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_mpi_OBJECTS) $(t_mpi_LDADD) $(LIBS) + +t_pflush1$(EXEEXT): $(t_pflush1_OBJECTS) $(t_pflush1_DEPENDENCIES) $(EXTRA_t_pflush1_DEPENDENCIES) + @rm -f t_pflush1$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_pflush1_OBJECTS) $(t_pflush1_LDADD) $(LIBS) + +t_pflush2$(EXEEXT): $(t_pflush2_OBJECTS) $(t_pflush2_DEPENDENCIES) $(EXTRA_t_pflush2_DEPENDENCIES) + @rm -f t_pflush2$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_pflush2_OBJECTS) $(t_pflush2_LDADD) $(LIBS) + +t_prestart$(EXEEXT): $(t_prestart_OBJECTS) $(t_prestart_DEPENDENCIES) $(EXTRA_t_prestart_DEPENDENCIES) + @rm -f t_prestart$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_prestart_OBJECTS) $(t_prestart_LDADD) $(LIBS) + +t_pshutdown$(EXEEXT): $(t_pshutdown_OBJECTS) $(t_pshutdown_DEPENDENCIES) $(EXTRA_t_pshutdown_DEPENDENCIES) + @rm -f t_pshutdown$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_pshutdown_OBJECTS) $(t_pshutdown_LDADD) $(LIBS) + +t_shapesame$(EXEEXT): $(t_shapesame_OBJECTS) $(t_shapesame_DEPENDENCIES) $(EXTRA_t_shapesame_DEPENDENCIES) + @rm -f t_shapesame$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(t_shapesame_OBJECTS) $(t_shapesame_LDADD) $(LIBS) + +testphdf5$(EXEEXT): $(testphdf5_OBJECTS) $(testphdf5_DEPENDENCIES) $(EXTRA_testphdf5_DEPENDENCIES) + @rm -f testphdf5$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(testphdf5_OBJECTS) $(testphdf5_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/t_cache.Po +include ./$(DEPDIR)/t_chunk_alloc.Po +include ./$(DEPDIR)/t_coll_chunk.Po +include ./$(DEPDIR)/t_dset.Po +include ./$(DEPDIR)/t_file.Po +include ./$(DEPDIR)/t_file_image.Po +include ./$(DEPDIR)/t_filter_read.Po +include ./$(DEPDIR)/t_init_term.Po +include ./$(DEPDIR)/t_mdset.Po +include ./$(DEPDIR)/t_mpi.Po +include ./$(DEPDIR)/t_pflush1.Po +include ./$(DEPDIR)/t_pflush2.Po +include ./$(DEPDIR)/t_ph5basic.Po +include ./$(DEPDIR)/t_prestart.Po +include ./$(DEPDIR)/t_pshutdown.Po +include ./$(DEPDIR)/t_shapesame.Po +include ./$(DEPDIR)/t_span_tree.Po +include ./$(DEPDIR)/testphdf5.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/Makefile b/build/tools/Makefile new file mode 100644 index 0000000..aade522 --- /dev/null +++ b/build/tools/Makefile @@ -0,0 +1,1402 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tools HDF5 Makefile(.in) +# +VPATH = ../../tools +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +TESTS = +subdir = tools +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + check recheck distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +DIST_SUBDIRS = $(SUBDIRS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../tools +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = ../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 +CONFIG = ordered + +# All subdirectories +SUBDIRS = lib h5diff h5ls h5dump misc h5import h5repack h5jam h5copy h5stat \ + perform + + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .log .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-recursive +all-am: Makefile all-local +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-TESTS check-am clean clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5copy/.deps/h5copy.Po b/build/tools/h5copy/.deps/h5copy.Po new file mode 100644 index 0000000..18d7cfa --- /dev/null +++ b/build/tools/h5copy/.deps/h5copy.Po @@ -0,0 +1,362 @@ +h5copy.o: ../../../tools/h5copy/h5copy.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5copy/.deps/h5copygentest.Po b/build/tools/h5copy/.deps/h5copygentest.Po new file mode 100644 index 0000000..0b26255 --- /dev/null +++ b/build/tools/h5copy/.deps/h5copygentest.Po @@ -0,0 +1,350 @@ +h5copygentest.o: ../../../tools/h5copy/h5copygentest.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/h5copy/.libs/h5copy b/build/tools/h5copy/.libs/h5copy new file mode 100755 index 0000000..1e3b567 Binary files /dev/null and b/build/tools/h5copy/.libs/h5copy differ diff --git a/build/tools/h5copy/.libs/h5copygentest b/build/tools/h5copy/.libs/h5copygentest new file mode 100755 index 0000000..c7e0bab Binary files /dev/null and b/build/tools/h5copy/.libs/h5copygentest differ diff --git a/build/tools/h5copy/.libs/lt-h5copy b/build/tools/h5copy/.libs/lt-h5copy new file mode 100755 index 0000000..6f47ce7 Binary files /dev/null and b/build/tools/h5copy/.libs/lt-h5copy differ diff --git a/build/tools/h5copy/.libs/lt-h5copygentest b/build/tools/h5copy/.libs/lt-h5copygentest new file mode 100755 index 0000000..16da598 Binary files /dev/null and b/build/tools/h5copy/.libs/lt-h5copygentest differ diff --git a/build/tools/h5copy/Makefile b/build/tools/h5copy/Makefile new file mode 100644 index 0000000..52ac476 --- /dev/null +++ b/build/tools/h5copy/Makefile @@ -0,0 +1,1463 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5copy/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + +VPATH = ../../../tools/h5copy +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +bin_PROGRAMS = h5copy$(EXEEXT) +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/h5copy +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = testh5copy.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5copygentest$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +h5copy_SOURCES = h5copy.c +h5copy_OBJECTS = h5copy.$(OBJEXT) +h5copy_LDADD = $(LDADD) +h5copy_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +h5copy_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5copy_LDFLAGS) $(LDFLAGS) -o $@ +am_h5copygentest_OBJECTS = h5copygentest.$(OBJEXT) +h5copygentest_OBJECTS = $(am_h5copygentest_OBJECTS) +h5copygentest_LDADD = $(LDADD) +h5copygentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = h5copy.c $(h5copygentest_SOURCES) +DIST_SOURCES = h5copy.c $(h5copygentest_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/testh5copy.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5copy +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5copy +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by h5dumpgentest. They should +# copied to the testfiles/ directory if update is required. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 + +# Test programs and scripts +TEST_PROG = h5copygentest +TEST_SCRIPT = testh5copy.sh +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5copy$(EXEEXT) + +# Add h5copy specific linker flags here +h5copy_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# source file for the test file generator +h5copygentest_SOURCES = h5copygentest.c + +# All programs depend on the hdf5 and h5tools libraries +LDADD = $(LIBH5TOOLS) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5copy/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5copy/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +testh5copy.sh: $(top_builddir)/config.status $(srcdir)/testh5copy.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5copy$(EXEEXT): $(h5copy_OBJECTS) $(h5copy_DEPENDENCIES) $(EXTRA_h5copy_DEPENDENCIES) + @rm -f h5copy$(EXEEXT) + $(AM_V_CCLD)$(h5copy_LINK) $(h5copy_OBJECTS) $(h5copy_LDADD) $(LIBS) + +h5copygentest$(EXEEXT): $(h5copygentest_OBJECTS) $(h5copygentest_DEPENDENCIES) $(EXTRA_h5copygentest_DEPENDENCIES) + @rm -f h5copygentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5copygentest_OBJECTS) $(h5copygentest_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/h5copy.Po +include ./$(DEPDIR)/h5copygentest.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5copygentest.log: h5copygentest$(EXEEXT) + @p='h5copygentest$(EXEEXT)'; \ + b='h5copygentest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5copy/h5copy b/build/tools/h5copy/h5copy new file mode 100755 index 0000000..7d11076 --- /dev/null +++ b/build/tools/h5copy/h5copy @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5copy - temporary wrapper script for .libs/h5copy +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5copy program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5copy.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5copy:h5copy:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5copy:h5copy:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5copy:h5copy:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5copy' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5copy/h5copy.o b/build/tools/h5copy/h5copy.o new file mode 100644 index 0000000..56607ec Binary files /dev/null and b/build/tools/h5copy/h5copy.o differ diff --git a/build/tools/h5copy/h5copy_extlinks_src.h5 b/build/tools/h5copy/h5copy_extlinks_src.h5 new file mode 100644 index 0000000..d676447 Binary files /dev/null and b/build/tools/h5copy/h5copy_extlinks_src.h5 differ diff --git a/build/tools/h5copy/h5copy_extlinks_trg.h5 b/build/tools/h5copy/h5copy_extlinks_trg.h5 new file mode 100644 index 0000000..4b26781 Binary files /dev/null and b/build/tools/h5copy/h5copy_extlinks_trg.h5 differ diff --git a/build/tools/h5copy/h5copy_ref.h5 b/build/tools/h5copy/h5copy_ref.h5 new file mode 100644 index 0000000..e30aa94 Binary files /dev/null and b/build/tools/h5copy/h5copy_ref.h5 differ diff --git a/build/tools/h5copy/h5copygentest b/build/tools/h5copy/h5copygentest new file mode 100755 index 0000000..1346ce7 --- /dev/null +++ b/build/tools/h5copy/h5copygentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5copygentest - temporary wrapper script for .libs/h5copygentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5copygentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5copygentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5copygentest:h5copygentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5copygentest:h5copygentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5copygentest:h5copygentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5copygentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5copy/h5copygentest.chkexe b/build/tools/h5copy/h5copygentest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5copy/h5copygentest.chklog b/build/tools/h5copy/h5copygentest.chklog new file mode 100644 index 0000000..5744ba1 --- /dev/null +++ b/build/tools/h5copy/h5copygentest.chklog @@ -0,0 +1,8 @@ +============================ + h5copygentest Test Log +============================ +0.05user 0.02system 0:00.12elapsed 66%CPU (0avgtext+0avgdata 6924maxresident)k +0inputs+184outputs (0major+9711minor)pagefaults 0swaps + +Finished testing h5copygentest +============================ diff --git a/build/tools/h5copy/h5copygentest.o b/build/tools/h5copy/h5copygentest.o new file mode 100644 index 0000000..9d0029a Binary files /dev/null and b/build/tools/h5copy/h5copygentest.o differ diff --git a/build/tools/h5copy/h5copytst.h5 b/build/tools/h5copy/h5copytst.h5 new file mode 100644 index 0000000..bfa2143 Binary files /dev/null and b/build/tools/h5copy/h5copytst.h5 differ diff --git a/build/tools/h5copy/testh5copy.sh b/build/tools/h5copy/testh5copy.sh new file mode 100644 index 0000000..d645524 --- /dev/null +++ b/build/tools/h5copy/testh5copy.sh @@ -0,0 +1,620 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5copy tool +# +# Pedro Vicente Nunes (pvn@hdfgroup.org), Albert Cheng (acheng@hdfgroup.org) +# Thursday, July 20, 2006 +# + +srcdir=../../../tools/h5copy + +# Determine which filters are available +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTNAME=h5copy +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +# List of files that will be copied over to local test dir +LIST_HDF5_TEST_FILES=" +$SRC_H5COPY_TESTFILES/h5copytst.h5 +$SRC_H5COPY_TESTFILES/h5copy_ref.h5 +$SRC_H5COPY_TESTFILES/h5copy_extlinks_src.h5 +$SRC_H5COPY_TESTFILES/h5copy_extlinks_trg.h5 +" + +# List of expect files that will be copied over to local test dir +LIST_OTHER_TEST_FILES=" +$SRC_H5COPY_TESTFILES/h5copy_misc1.out +" + +H5COPY=h5copy # The tool name +H5COPY_BIN=`pwd`/$H5COPY # The path of the tool binary +H5DIFF=h5diff # The h5diff tool name +H5DIFF_BIN=`pwd`/../h5diff/$H5DIFF # The path of the h5diff tool binary +H5LS=h5ls # The h5ls tool name +H5LS_ARGS=-Svr # Arguments to the h5ls tool +H5LS_BIN=`pwd`/../h5ls/$H5LS # The path of the h5ls tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +# RUNSERIAL is used. Check if it can return exit code from executalbe correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell corretly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5COPY_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + + +# Print a "SKIP" message +SKIP() { + TESTING $H5COPY $@ + echo " -SKIP-" +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +TESTING() +{ + SPACES=" " + echo "Testing $* $SPACES" |cut -c1-70 |tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY() +{ + SPACES=" " + echo "Verifying h5diff output $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY_OUTPUT() +{ + SPACES=" " + echo "Verifying output files $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If h5copy can complete +# with exit status 0, consider it pass. If a test fails then increment +# the `nerrors' global variable. +# Assumed arguments: +# $1 is -i +# $2 is input file +# $3 is -o +# $4 is output file +# $* everything else arguments for h5copy. + +TOOLTEST() +{ + actualout="$TESTDIR/tooltest.actualout" + actualerr="$TESTDIR/tooltest.actualerr" + runh5diff=yes + if [ "$1" = -i ]; then + inputfile=$2 + else + if [ "$1" = -f ]; then + inputfile=$4 + else + inputfile=$3 + fi + runh5diff=no + fi + if [ "$3" = -o ]; then + outputfile=$4 + else + if [ "$1" = -f ]; then + outputfile=$6 + else + outputfile=$5 + fi + runh5diff=no + fi + + TESTING $H5COPY $@ + ( + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + $RUNSERIAL $H5COPY_BIN $@ + ) > $actualout 2> $actualerr + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + + if [ $runh5diff != no ]; then + H5DIFFTEST $inputfile $outputfile $7 $9 + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actualout $actualerr $outputfile + fi + fi +} + +# TOOLTEST back-to-back +TOOLTEST_PREFILL() +{ + actualout="$TESTDIR/tooltest.actualout" + actualerr="$TESTDIR/tooltest.actualerr" + runh5diff=yes + if [ "$1" = -i ]; then + inputfile=$2 + else + runh5diff=no + fi + if [ "$3" = -o ]; then + outputfile=$4 + else + runh5diff=no + fi + + grp_name=$5 + grp_name2=$6 + obj_name=$7 + obj_name2=$8 + + TESTING $H5COPY $@ + ( + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + $RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $grp_name -d $grp_name2 + ) > $actualout 2> $actualerr + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + else + TESTING $H5COPY $@ + ( + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + $RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $obj_name -d $obj_name2 + ) > $actualout 2> $actualerr + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + + if [ $runh5diff != no ]; then + H5DIFFTEST $inputfile $outputfile $obj_name $obj_name2 + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actualout $actualerr $outputfile + fi + fi + fi +} + +# TOOLTEST back-to-back +TOOLTEST_SAME() +{ + actualout="$TESTDIR/tooltest.actualout" + actualerr="$TESTDIR/tooltest.actualerr" + runh5diff=yes + if [ "$1" = -i ]; then + inputfile=$2 + else + runh5diff=no + fi + if [ "$3" = -o ]; then + outputfile=$4 + else + runh5diff=no + fi + + grp_name=$5 + grp_name2=$6 + + TESTING $H5COPY $@ + ( + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + $RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $grp_name -d $grp_name + ) > $actualout 2> $actualerr + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + else + TESTING $H5COPY $@ + ( + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + $RUNSERIAL $H5COPY_BIN -i $outputfile -o $outputfile -v -s $grp_name -d $grp_name2 + ) > $actualout 2> $actualerr + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + + if [ $runh5diff != no ]; then + H5DIFFTEST $outputfile $outputfile $grp_name $grp_name2 + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actualout $actualerr $outputfile + fi + fi + fi +} + + +# Compare the two text files +# PASS if same +# FAIL if different, and show the diff +# +# Assumed arguments: +# $1 is text file1 (expected output) +# $2 is text file2 (actual output) +CMP_OUTPUT() +{ + expect=$1 + actual=$2 + + VERIFY_OUTPUT $@ + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected output differs from actual output" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi +} + +TOOLTEST_FAIL() +{ + expectout="$TESTDIR/$1" + actualout="$TESTDIR/$1.actualout" + actualerr="$TESTDIR/$1.actualerr" + actualout_sav=${actualout}-sav + actualerr_sav=${actualerr}-sav + shift + if [ "$1" = -i ]; then + inputfile=$2 + fi + if [ "$3" = -o ]; then + outputfile=$4 + fi + + TESTING $H5COPY $@ + ( + #echo "#############################" + #echo " output for '$H5COPY $@'" + #echo "#############################" + $RUNSERIAL $H5COPY_BIN $@ + ) > $actualout 2> $actualerr + + RET=$? + # save actualout and actualerr in case they are needed later. + cp $actualout $actualout_sav + STDOUT_FILTER $actualout + cp $actualerr $actualerr_sav + STDERR_FILTER $actualerr + if [ $RET != 0 ]; then + echo " PASSED" + # Verifying output text from h5copy + if [ "$expectout" != "SKIP" ]; then + # combine stderr to stdout to compare the output at once. + # We may seperate stdout and stderr later. + cat $actualerr >> $actualout + CMP_OUTPUT $expectout $actualout + fi + else + echo "*FAILED*" + echo "failed result is:" + cat $actualout + nerrors="`expr $nerrors + 1`" + fi + + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actualout $actualerr $actualout_sav $actualerr_sav $outputfile + fi +} + + +# Call the h5diff tool +# +H5DIFFTEST() +{ + VERIFY $@ + $RUNSERIAL $H5DIFF_BIN -q "$@" + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi +} + +# Call the h5diff tool with a call that is expected to fail +# +H5DIFFTEST_FAIL() +{ + VERIFY $@ + $RUNSERIAL $H5DIFF_BIN -q "$@" + RET=$? + + if [ $h5haveexitcode = 'yes' -a $RET != 1 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi +} + +# Copy single datasets of various forms from one group to another, +# adding object copied to the destination file each time +# +# Assumed arguments: +# +COPY_OBJECTS() +{ + TESTFILE="$TESTDIR/h5copytst.h5" + + echo "Test copying various forms of datasets" + TOOLTEST -i $TESTFILE -o $TESTDIR/simple.out.h5 -v -s simple -d simple + TOOLTEST -i $TESTFILE -o $TESTDIR/chunk.out.h5 -v -s chunk -d chunk + TOOLTEST -i $TESTFILE -o $TESTDIR/compact.out.h5 -v -s compact -d compact + TOOLTEST -i $TESTFILE -o $TESTDIR/compound.out.h5 -v -s compound -d compound +if test $USE_FILTER_DEFLATE = "yes" ; then + TOOLTEST -i $TESTFILE -o $TESTDIR/compressed.out.h5 -v -s compressed -d compressed +fi + TOOLTEST -i $TESTFILE -o $TESTDIR/named_vl.out.h5 -v -s named_vl -d named_vl + TOOLTEST -i $TESTFILE -o $TESTDIR/nested_vl.out.h5 -v -s nested_vl -d nested_vl + TOOLTEST -i $TESTFILE -o $TESTDIR/dset_attr.out.h5 -v -s /dset_attr -d /dset_attr + + echo "Test copying dataset within group in source file to root of destination" + TOOLTEST -i $TESTFILE -o $TESTDIR/simple_top.out.h5 -v -s grp_dsets/simple -d simple_top + + echo "Test copying & renaming dataset" + TOOLTEST -i $TESTFILE -o $TESTDIR/dsrename.out.h5 -v -s compound -d rename + + echo "Test copying empty, 'full' & 'nested' groups" +if test $USE_FILTER_DEFLATE = "yes" ; then + TOOLTEST -i $TESTFILE -o $TESTDIR/grp_empty.out.h5 -v -s grp_empty -d grp_empty +fi + TOOLTEST -i $TESTFILE -o $TESTDIR/grp_dsets.out.h5 -v -s grp_dsets -d grp_dsets + TOOLTEST -i $TESTFILE -o $TESTDIR/grp_nested.out.h5 -v -s grp_nested -d grp_nested + TOOLTEST -i $TESTFILE -o $TESTDIR/grp_attr.out.h5 -v -s grp_attr -d grp_attr + +if test $USE_FILTER_DEFLATE = "yes" ; then + echo "Test copying dataset within group in source file to group in destination" + TOOLTEST_PREFILL -i $TESTFILE -o $TESTDIR/simple_group.out.h5 grp_dsets grp_dsets /grp_dsets/simple /grp_dsets/simple_group + echo "Test copying & renaming group" + TOOLTEST -i $TESTFILE -o $TESTDIR/grp_rename.out.h5 -v -s grp_dsets -d grp_rename +fi + + echo "Test copying 'full' group hierarchy into group in destination file" + TOOLTEST_PREFILL -i $TESTFILE -o $TESTDIR/grp_dsets_rename.out.h5 grp_dsets grp_rename grp_dsets /grp_rename/grp_dsets + + echo "Test copying objects into group hier. that doesn't exist yet in destination file" + TOOLTEST -i $TESTFILE -o $TESTDIR/A_B1_simple.out.h5 -vp -s simple -d /A/B1/simple + TOOLTEST -i $TESTFILE -o $TESTDIR/A_B2_simple2.out.h5 -vp -s simple -d /A/B2/simple2 + TOOLTEST -i $TESTFILE -o $TESTDIR/C_D_simple.out.h5 -vp -s /grp_dsets/simple -d /C/D/simple +if test $USE_FILTER_DEFLATE = "yes" ; then + TOOLTEST -i $TESTFILE -o $TESTDIR/E_F_grp_dsets.out.h5 -vp -s /grp_dsets -d /E/F/grp_dsets + TOOLTEST -i $TESTFILE -o $TESTDIR/G_H_grp_nested.out.h5 -vp -s /grp_nested -d /G/H/grp_nested +fi +} + +# Copy references in various way. +# +# Assumed arguments: +# +COPY_REFERENCES() +{ + TESTFILE="$TESTDIR/h5copy_ref.h5" + + echo "Test copying object and region references" + TOOLTEST -f ref -i $TESTFILE -o $TESTDIR/region_ref.out.h5 -v -s / -d /COPY +} + +# Copy external links. +# adding to the destination file each time compare the result +# +# Assumed arguments: +# +COPY_EXT_LINKS() +{ + TESTFILE="$TESTDIR/h5copy_extlinks_src.h5" + + echo "Test copying external link directly without -f ext" + TOOLTEST -v -i $TESTFILE -o $TESTDIR/ext_link.out.h5 -s /group_ext/extlink_dset -d /copy1_dset + + echo "Test copying external link directly with -f ext" + TOOLTEST -f ext -i $TESTFILE -o $TESTDIR/ext_link_f.out.h5 -v -s /group_ext/extlink_dset -d /copy2_dset + + echo "Test copying dangling external link (no obj) directly without -f ext" + TOOLTEST -v -i $TESTFILE -o $TESTDIR/ext_dangle_noobj.out.h5 -s /group_ext/extlink_notyet1 -d /copy_dangle1_1 + + echo "Test copying dangling external link (no obj) directly with -f ext" + TOOLTEST -f ext -i $TESTFILE -o $TESTDIR/ext_dangle_noobj_f.out.h5 -v -s /group_ext/extlink_notyet1 -d /copy_dangle1_2 + + echo "Test copying dangling external link (no file) directly without -f ext" + TOOLTEST -v -i $TESTFILE -o $TESTDIR/ext_dangle_nofile.out.h5 -s /group_ext/extlink_notyet2 -d /copy_dangle2_1 + + echo "Test copying dangling external link (no file) directly with -f ext" + TOOLTEST -f ext -i $TESTFILE -o $TESTDIR/ext_dangle_nofile_f.out.h5 -v -s /group_ext/extlink_notyet2 -d /copy_dangle2_2 + + echo "Test copying a group contains external links without -f ext" + TOOLTEST -v -i $TESTFILE -o $TESTDIR/ext_link_group.out.h5 -s /group_ext -d /copy1_group + + echo "Test copying a group contains external links with -f ext" + TOOLTEST -f ext -i $TESTFILE -o $TESTDIR/ext_link_group_f.out.h5 -v -s /group_ext -d /copy2_group +} + +# Test misc. +# +# Assumed arguments: +# +TEST_MISC() +{ + TESTFILE="$TESTDIR/h5copytst.h5" + + echo "Test copying object into group which doesn't exist, without -p" + TOOLTEST_FAIL h5copy_misc1.out -i $TESTFILE -o $TESTDIR/h5copy_misc1.out.h5 -v -s /simple -d /g1/g2/simple + + echo "Test copying objects to the same file " + TOOLTEST_SAME -i $TESTFILE -o $TESTDIR/samefile1.out.h5 /simple /simple_cp +if test $USE_FILTER_DEFLATE = "yes" ; then + TOOLTEST_SAME -i $TESTFILE -o $TESTDIR/samefile2.out.h5 /grp_dsets /grp_dsets_cp +fi +} + +############################################################################## +### T H E T E S T S ### +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Start tests +COPY_OBJECTS +COPY_REFERENCES +COPY_EXT_LINKS +TEST_MISC + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5copy/testh5copy.sh.chkexe b/build/tools/h5copy/testh5copy.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5copy/testh5copy.sh.chklog b/build/tools/h5copy/testh5copy.sh.chklog new file mode 100644 index 0000000..82f70d7 --- /dev/null +++ b/build/tools/h5copy/testh5copy.sh.chklog @@ -0,0 +1,87 @@ +============================ +testh5copy.sh Test Log +============================ +Test copying various forms of datasets +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple.out.h PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple.ou PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/chunk.out.h5 PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/chunk.out PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compact.out. PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compact.o PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compound.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compound. PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compressed.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compresse PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/named_vl.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/named_vl. PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/nested_vl.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/nested_vl PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dset_attr.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dset_attr PASSED +Test copying dataset within group in source file to root of destination +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_top.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_to PASSED +Test copying & renaming dataset +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dsrename.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dsrename. PASSED +Test copying empty, 'full' & 'nested' groups +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_empty.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_empty PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets.ou PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_nested.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_neste PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_attr.out PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_attr. PASSED +Test copying dataset within group in source file to group in destination +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_groupTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_group PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_gr PASSED +Test copying & renaming group +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_rename.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_renam PASSED +Test copying 'full' group hierarchy into group in destination file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_reTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_re PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED +Test copying objects into group hier. that doesn't exist yet in destination file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B1_simple. PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B1_simp PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B2_simple2 PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B2_simp PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/C_D_simple.o PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/C_D_simpl PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/E_F_grp_dset PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/E_F_grp_d PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/G_H_grp_nest PASSED +Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/G_H_grp_n PASSED +Test copying object and region references +Testing h5copy -f ref -i ./testfiles/h5copy_ref.h5 -o ./testfiles/regi PASSED +Test copying external link directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying external link directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying dangling external link (no obj) directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying dangling external link (no obj) directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying dangling external link (no file) directly without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying dangling external link (no file) directly with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying a group contains external links without -f ext +Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED +Test copying a group contains external links with -f ext +Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED +Test copying object into group which doesn't exist, without -p +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/h5copy_misc1 PASSED +Verifying output files ./testfiles/h5copy_misc1.out ./testfiles/h5copy PASSED +Test copying objects to the same file +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ou PASSED +Verifying h5diff output ./testfiles/samefile1.out.h5 ./testfiles/samef PASSED +Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ou PASSED +Verifying h5diff output ./testfiles/samefile2.out.h5 ./testfiles/samef PASSED +All h5copy tests passed. +1.04user 1.45system 0:02.15elapsed 115%CPU (0avgtext+0avgdata 7300maxresident)k +0inputs+1992outputs (0major+445647minor)pagefaults 0swaps + +Finished testing testh5copy.sh +============================ diff --git a/build/tools/h5diff/.deps/dynlib_diff.Plo b/build/tools/h5diff/.deps/dynlib_diff.Plo new file mode 100644 index 0000000..81301a6 --- /dev/null +++ b/build/tools/h5diff/.deps/dynlib_diff.Plo @@ -0,0 +1,201 @@ +dynlib_diff.lo: ../../../tools/h5diff/dynlib_diff.c \ + /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../src/H5PLextern.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5PLextern.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5diff/.deps/h5diff_common.Po b/build/tools/h5diff/.deps/h5diff_common.Po new file mode 100644 index 0000000..2f6a9b8 --- /dev/null +++ b/build/tools/h5diff/.deps/h5diff_common.Po @@ -0,0 +1,371 @@ +h5diff_common.o: ../../../tools/h5diff/h5diff_common.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5diff.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5trav.h ../../../tools/h5diff/h5diff_common.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5diff.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/h5diff/h5diff_common.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5diff/.deps/h5diff_main.Po b/build/tools/h5diff/.deps/h5diff_main.Po new file mode 100644 index 0000000..367ccea --- /dev/null +++ b/build/tools/h5diff/.deps/h5diff_main.Po @@ -0,0 +1,371 @@ +h5diff_main.o: ../../../tools/h5diff/h5diff_main.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5diff.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5trav.h ../../../tools/h5diff/h5diff_common.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5diff.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/h5diff/h5diff_common.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5diff/.deps/h5diffgentest.Po b/build/tools/h5diff/.deps/h5diffgentest.Po new file mode 100644 index 0000000..d450d1b --- /dev/null +++ b/build/tools/h5diff/.deps/h5diffgentest.Po @@ -0,0 +1,349 @@ +h5diffgentest.o: ../../../tools/h5diff/h5diffgentest.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/sys/time.h /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/h5diff/.deps/ph5diff_main.Po b/build/tools/h5diff/.deps/ph5diff_main.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/tools/h5diff/.deps/ph5diff_main.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/tools/h5diff/.libs/dynlib_diff.o b/build/tools/h5diff/.libs/dynlib_diff.o new file mode 100644 index 0000000..9b47f61 Binary files /dev/null and b/build/tools/h5diff/.libs/dynlib_diff.o differ diff --git a/build/tools/h5diff/.libs/h5diff b/build/tools/h5diff/.libs/h5diff new file mode 100755 index 0000000..0706c4f Binary files /dev/null and b/build/tools/h5diff/.libs/h5diff differ diff --git a/build/tools/h5diff/.libs/h5diffgentest b/build/tools/h5diff/.libs/h5diffgentest new file mode 100755 index 0000000..e099e54 Binary files /dev/null and b/build/tools/h5diff/.libs/h5diffgentest differ diff --git a/build/tools/h5diff/.libs/libdynlibdiff.la b/build/tools/h5diff/.libs/libdynlibdiff.la new file mode 120000 index 0000000..57e3b1f --- /dev/null +++ b/build/tools/h5diff/.libs/libdynlibdiff.la @@ -0,0 +1 @@ +../libdynlibdiff.la \ No newline at end of file diff --git a/build/tools/h5diff/.libs/libdynlibdiff.lai b/build/tools/h5diff/.libs/libdynlibdiff.lai new file mode 100644 index 0000000..bb59ec6 --- /dev/null +++ b/build/tools/h5diff/.libs/libdynlibdiff.lai @@ -0,0 +1,41 @@ +# libdynlibdiff.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibdiff.so' + +# Names of this library. +library_names='libdynlibdiff.so libdynlibdiff.so libdynlibdiff.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibdiff. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5diff/.libs/libdynlibdiff.so b/build/tools/h5diff/.libs/libdynlibdiff.so new file mode 100755 index 0000000..1b591c5 Binary files /dev/null and b/build/tools/h5diff/.libs/libdynlibdiff.so differ diff --git a/build/tools/h5diff/.libs/lt-h5diff b/build/tools/h5diff/.libs/lt-h5diff new file mode 100755 index 0000000..8c17504 Binary files /dev/null and b/build/tools/h5diff/.libs/lt-h5diff differ diff --git a/build/tools/h5diff/.libs/lt-h5diffgentest b/build/tools/h5diff/.libs/lt-h5diffgentest new file mode 100755 index 0000000..bf4e253 Binary files /dev/null and b/build/tools/h5diff/.libs/lt-h5diffgentest differ diff --git a/build/tools/h5diff/Makefile b/build/tools/h5diff/Makefile new file mode 100644 index 0000000..f1b7700 --- /dev/null +++ b/build/tools/h5diff/Makefile @@ -0,0 +1,1530 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5diff/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/h5diff +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +bin_PROGRAMS = h5diff$(EXEEXT) $(am__EXEEXT_1) +check_PROGRAMS = $(am__EXEEXT_2) +am__append_1 = h5diff_plugin.sh +TESTS = $(am__EXEEXT_2) $(TEST_SCRIPT) +subdir = tools/h5diff +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5diff_plugin.sh testh5diff.sh testph5diff.sh +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libdynlibdiff_la_LIBADD = +am__libdynlibdiff_la_SOURCES_DIST = dynlib_diff.c +am_libdynlibdiff_la_OBJECTS = dynlib_diff.lo +libdynlibdiff_la_OBJECTS = $(am_libdynlibdiff_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libdynlibdiff_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libdynlibdiff_la_LDFLAGS) $(LDFLAGS) \ + -o $@ +am_libdynlibdiff_la_rpath = +#am__EXEEXT_1 = ph5diff$(EXEEXT) +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_2 = h5diffgentest$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +am_h5diff_OBJECTS = h5diff_main.$(OBJEXT) h5diff_common.$(OBJEXT) +h5diff_OBJECTS = $(am_h5diff_OBJECTS) +h5diff_LDADD = $(LDADD) +h5diff_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5diff_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5diff_LDFLAGS) $(LDFLAGS) -o $@ +am_h5diffgentest_OBJECTS = h5diffgentest.$(OBJEXT) +h5diffgentest_OBJECTS = $(am_h5diffgentest_OBJECTS) +h5diffgentest_LDADD = $(LDADD) +h5diffgentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +am_ph5diff_OBJECTS = ph5diff_main.$(OBJEXT) h5diff_common.$(OBJEXT) +ph5diff_OBJECTS = $(am_ph5diff_OBJECTS) +ph5diff_LDADD = $(LDADD) +ph5diff_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdynlibdiff_la_SOURCES) $(h5diff_SOURCES) \ + $(h5diffgentest_SOURCES) $(ph5diff_SOURCES) +DIST_SOURCES = $(am__libdynlibdiff_la_SOURCES_DIST) $(h5diff_SOURCES) \ + $(h5diffgentest_SOURCES) $(ph5diff_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5diff_plugin.sh.in \ + $(srcdir)/testh5diff.sh.in $(srcdir)/testph5diff.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5diff +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5diff +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by h5diff. They should +# be copied to the testfiles/ directory if update is required +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 expect_sorted \ + actual_sorted + +# Always build and test h5diff but build and test ph5diff only if parallel +# is enabled. +#H5PDIFF = ph5diff +#TEST_SCRIPT_PARA = testph5diff.sh + +# Add h5diff specific linker flags here +h5diff_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# Test programs and scripts +TEST_PROG = h5diffgentest +TEST_SCRIPT = testh5diff.sh $(am__append_1) +check_SCRIPTS = $(TEST_SCRIPT) $(TEST_SCRIPT_PARA) +# The parallel test script testph5diff.sh actually depends on testh5diff.sh. +SCRIPT_DEPEND = h5diff$(EXEEXT) $(H5PDIFF) testh5diff.sh + +# Source files for the program +h5diff_SOURCES = h5diff_main.c h5diff_common.c +ph5diff_SOURCES = ph5diff_main.c h5diff_common.c +h5diffgentest_SOURCES = h5diffgentest.c + +# Programs depend on the main HDF5 library and tools library +LDADD = $(LIBH5TOOLS) $(LIBHDF5) +noinst_LTLIBRARIES = libdynlibdiff.la +libdynlibdiff_la_SOURCES = dynlib_diff.c +libdynlibdiff_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +DISTCLEANFILES = h5diff_plugin.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5diff/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5diff/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5diff_plugin.sh: $(top_builddir)/config.status $(srcdir)/h5diff_plugin.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5diff.sh: $(top_builddir)/config.status $(srcdir)/testh5diff.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testph5diff.sh: $(top_builddir)/config.status $(srcdir)/testph5diff.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +#libdynlibdiff.la: $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_DEPENDENCIES) $(EXTRA_libdynlibdiff_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibdiff_la_LINK) $(am_libdynlibdiff_la_rpath) $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_LIBADD) $(LIBS) + +#libdynlibdiff.la: $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_DEPENDENCIES) $(EXTRA_libdynlibdiff_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibdiff_la_LINK) $(am_libdynlibdiff_la_rpath) $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_LIBADD) $(LIBS) +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5diff$(EXEEXT): $(h5diff_OBJECTS) $(h5diff_DEPENDENCIES) $(EXTRA_h5diff_DEPENDENCIES) + @rm -f h5diff$(EXEEXT) + $(AM_V_CCLD)$(h5diff_LINK) $(h5diff_OBJECTS) $(h5diff_LDADD) $(LIBS) + +h5diffgentest$(EXEEXT): $(h5diffgentest_OBJECTS) $(h5diffgentest_DEPENDENCIES) $(EXTRA_h5diffgentest_DEPENDENCIES) + @rm -f h5diffgentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5diffgentest_OBJECTS) $(h5diffgentest_LDADD) $(LIBS) + +ph5diff$(EXEEXT): $(ph5diff_OBJECTS) $(ph5diff_DEPENDENCIES) $(EXTRA_ph5diff_DEPENDENCIES) + @rm -f ph5diff$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ph5diff_OBJECTS) $(ph5diff_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/dynlib_diff.Plo +include ./$(DEPDIR)/h5diff_common.Po +include ./$(DEPDIR)/h5diff_main.Po +include ./$(DEPDIR)/h5diffgentest.Po +include ./$(DEPDIR)/ph5diff_main.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5diffgentest.log: h5diffgentest$(EXEEXT) + @p='h5diffgentest$(EXEEXT)'; \ + b='h5diffgentest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + + # Build it as shared library if configure is enabled for shared library. + +libdynlibdiff.la: $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_DEPENDENCIES) $(EXTRA_libdynlibdiff_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibdiff_la_LINK) $(am_libdynlibdiff_la_rpath) $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_LIBADD) +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5diff/compounds_array_vlen1.h5 b/build/tools/h5diff/compounds_array_vlen1.h5 new file mode 100644 index 0000000..e0888e9 Binary files /dev/null and b/build/tools/h5diff/compounds_array_vlen1.h5 differ diff --git a/build/tools/h5diff/compounds_array_vlen2.h5 b/build/tools/h5diff/compounds_array_vlen2.h5 new file mode 100644 index 0000000..c7fe74e Binary files /dev/null and b/build/tools/h5diff/compounds_array_vlen2.h5 differ diff --git a/build/tools/h5diff/diff_strings1.h5 b/build/tools/h5diff/diff_strings1.h5 new file mode 100644 index 0000000..f0dc6a6 Binary files /dev/null and b/build/tools/h5diff/diff_strings1.h5 differ diff --git a/build/tools/h5diff/diff_strings2.h5 b/build/tools/h5diff/diff_strings2.h5 new file mode 100644 index 0000000..0436400 Binary files /dev/null and b/build/tools/h5diff/diff_strings2.h5 differ diff --git a/build/tools/h5diff/dynlib_diff.lo b/build/tools/h5diff/dynlib_diff.lo new file mode 100644 index 0000000..bee0ce5 --- /dev/null +++ b/build/tools/h5diff/dynlib_diff.lo @@ -0,0 +1,12 @@ +# dynlib_diff.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib_diff.o' + +# Name of the non-PIC object +non_pic_object='dynlib_diff.o' + diff --git a/build/tools/h5diff/dynlib_diff.o b/build/tools/h5diff/dynlib_diff.o new file mode 100644 index 0000000..12a31ab Binary files /dev/null and b/build/tools/h5diff/dynlib_diff.o differ diff --git a/build/tools/h5diff/h5diff b/build/tools/h5diff/h5diff new file mode 100755 index 0000000..9e69f25 --- /dev/null +++ b/build/tools/h5diff/h5diff @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5diff - temporary wrapper script for .libs/h5diff +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5diff program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5diff_main.o h5diff_common.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5diff:h5diff:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5diff:h5diff:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5diff:h5diff:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5diff' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5diff/h5diff_attr1.h5 b/build/tools/h5diff/h5diff_attr1.h5 new file mode 100644 index 0000000..29f1767 Binary files /dev/null and b/build/tools/h5diff/h5diff_attr1.h5 differ diff --git a/build/tools/h5diff/h5diff_attr2.h5 b/build/tools/h5diff/h5diff_attr2.h5 new file mode 100644 index 0000000..b625589 Binary files /dev/null and b/build/tools/h5diff/h5diff_attr2.h5 differ diff --git a/build/tools/h5diff/h5diff_attr3.h5 b/build/tools/h5diff/h5diff_attr3.h5 new file mode 100644 index 0000000..d3a68d4 Binary files /dev/null and b/build/tools/h5diff/h5diff_attr3.h5 differ diff --git a/build/tools/h5diff/h5diff_attr_v_level1.h5 b/build/tools/h5diff/h5diff_attr_v_level1.h5 new file mode 100644 index 0000000..9f5a694 Binary files /dev/null and b/build/tools/h5diff/h5diff_attr_v_level1.h5 differ diff --git a/build/tools/h5diff/h5diff_attr_v_level2.h5 b/build/tools/h5diff/h5diff_attr_v_level2.h5 new file mode 100644 index 0000000..042cbae Binary files /dev/null and b/build/tools/h5diff/h5diff_attr_v_level2.h5 differ diff --git a/build/tools/h5diff/h5diff_basic1.h5 b/build/tools/h5diff/h5diff_basic1.h5 new file mode 100644 index 0000000..80c4f07 Binary files /dev/null and b/build/tools/h5diff/h5diff_basic1.h5 differ diff --git a/build/tools/h5diff/h5diff_basic2.h5 b/build/tools/h5diff/h5diff_basic2.h5 new file mode 100644 index 0000000..ddf4bcc Binary files /dev/null and b/build/tools/h5diff/h5diff_basic2.h5 differ diff --git a/build/tools/h5diff/h5diff_common.o b/build/tools/h5diff/h5diff_common.o new file mode 100644 index 0000000..20c6f4d Binary files /dev/null and b/build/tools/h5diff/h5diff_common.o differ diff --git a/build/tools/h5diff/h5diff_comp_vl_strs.h5 b/build/tools/h5diff/h5diff_comp_vl_strs.h5 new file mode 100644 index 0000000..32ee6a1 Binary files /dev/null and b/build/tools/h5diff/h5diff_comp_vl_strs.h5 differ diff --git a/build/tools/h5diff/h5diff_danglelinks1.h5 b/build/tools/h5diff/h5diff_danglelinks1.h5 new file mode 100644 index 0000000..d985704 Binary files /dev/null and b/build/tools/h5diff/h5diff_danglelinks1.h5 differ diff --git a/build/tools/h5diff/h5diff_danglelinks2.h5 b/build/tools/h5diff/h5diff_danglelinks2.h5 new file mode 100644 index 0000000..62c7546 Binary files /dev/null and b/build/tools/h5diff/h5diff_danglelinks2.h5 differ diff --git a/build/tools/h5diff/h5diff_dset1.h5 b/build/tools/h5diff/h5diff_dset1.h5 new file mode 100644 index 0000000..1bd9c33 Binary files /dev/null and b/build/tools/h5diff/h5diff_dset1.h5 differ diff --git a/build/tools/h5diff/h5diff_dset2.h5 b/build/tools/h5diff/h5diff_dset2.h5 new file mode 100644 index 0000000..b12d984 Binary files /dev/null and b/build/tools/h5diff/h5diff_dset2.h5 differ diff --git a/build/tools/h5diff/h5diff_dset3.h5 b/build/tools/h5diff/h5diff_dset3.h5 new file mode 100644 index 0000000..6806be4 Binary files /dev/null and b/build/tools/h5diff/h5diff_dset3.h5 differ diff --git a/build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 b/build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 new file mode 100644 index 0000000..2cde151 Binary files /dev/null and b/build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 differ diff --git a/build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 b/build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 new file mode 100644 index 0000000..f459e35 Binary files /dev/null and b/build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 differ diff --git a/build/tools/h5diff/h5diff_dtypes.h5 b/build/tools/h5diff/h5diff_dtypes.h5 new file mode 100644 index 0000000..d49095e Binary files /dev/null and b/build/tools/h5diff/h5diff_dtypes.h5 differ diff --git a/build/tools/h5diff/h5diff_empty.h5 b/build/tools/h5diff/h5diff_empty.h5 new file mode 100644 index 0000000..82daee0 Binary files /dev/null and b/build/tools/h5diff/h5diff_empty.h5 differ diff --git a/build/tools/h5diff/h5diff_enum_invalid_values.h5 b/build/tools/h5diff/h5diff_enum_invalid_values.h5 new file mode 100644 index 0000000..b690b63 Binary files /dev/null and b/build/tools/h5diff/h5diff_enum_invalid_values.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude1-1.h5 b/build/tools/h5diff/h5diff_exclude1-1.h5 new file mode 100644 index 0000000..fb16bc1 Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude1-1.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude1-2.h5 b/build/tools/h5diff/h5diff_exclude1-2.h5 new file mode 100644 index 0000000..43021de Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude1-2.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude2-1.h5 b/build/tools/h5diff/h5diff_exclude2-1.h5 new file mode 100644 index 0000000..f7e8d44 Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude2-1.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude2-2.h5 b/build/tools/h5diff/h5diff_exclude2-2.h5 new file mode 100644 index 0000000..73414f3 Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude2-2.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude3-1.h5 b/build/tools/h5diff/h5diff_exclude3-1.h5 new file mode 100644 index 0000000..29965fa Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude3-1.h5 differ diff --git a/build/tools/h5diff/h5diff_exclude3-2.h5 b/build/tools/h5diff/h5diff_exclude3-2.h5 new file mode 100644 index 0000000..42ae833 Binary files /dev/null and b/build/tools/h5diff/h5diff_exclude3-2.h5 differ diff --git a/build/tools/h5diff/h5diff_ext2softlink_src.h5 b/build/tools/h5diff/h5diff_ext2softlink_src.h5 new file mode 100644 index 0000000..887281b Binary files /dev/null and b/build/tools/h5diff/h5diff_ext2softlink_src.h5 differ diff --git a/build/tools/h5diff/h5diff_ext2softlink_trg.h5 b/build/tools/h5diff/h5diff_ext2softlink_trg.h5 new file mode 100644 index 0000000..b6b0f5e Binary files /dev/null and b/build/tools/h5diff/h5diff_ext2softlink_trg.h5 differ diff --git a/build/tools/h5diff/h5diff_extlink_src.h5 b/build/tools/h5diff/h5diff_extlink_src.h5 new file mode 100644 index 0000000..cabfd7d Binary files /dev/null and b/build/tools/h5diff/h5diff_extlink_src.h5 differ diff --git a/build/tools/h5diff/h5diff_extlink_trg.h5 b/build/tools/h5diff/h5diff_extlink_trg.h5 new file mode 100644 index 0000000..552a7a2 Binary files /dev/null and b/build/tools/h5diff/h5diff_extlink_trg.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse1.h5 b/build/tools/h5diff/h5diff_grp_recurse1.h5 new file mode 100644 index 0000000..9f9b453 Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse1.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse2.h5 b/build/tools/h5diff/h5diff_grp_recurse2.h5 new file mode 100644 index 0000000..bd8859f Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse2.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse_ext1.h5 b/build/tools/h5diff/h5diff_grp_recurse_ext1.h5 new file mode 100644 index 0000000..27837eb Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse_ext1.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 b/build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 new file mode 100644 index 0000000..7dd9ebe Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 b/build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 new file mode 100644 index 0000000..b90ec0f Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 differ diff --git a/build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 b/build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 new file mode 100644 index 0000000..83122f8 Binary files /dev/null and b/build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 differ diff --git a/build/tools/h5diff/h5diff_hyper1.h5 b/build/tools/h5diff/h5diff_hyper1.h5 new file mode 100644 index 0000000..7386367 Binary files /dev/null and b/build/tools/h5diff/h5diff_hyper1.h5 differ diff --git a/build/tools/h5diff/h5diff_hyper2.h5 b/build/tools/h5diff/h5diff_hyper2.h5 new file mode 100644 index 0000000..09e23b3 Binary files /dev/null and b/build/tools/h5diff/h5diff_hyper2.h5 differ diff --git a/build/tools/h5diff/h5diff_linked_softlink.h5 b/build/tools/h5diff/h5diff_linked_softlink.h5 new file mode 100644 index 0000000..15b55d3 Binary files /dev/null and b/build/tools/h5diff/h5diff_linked_softlink.h5 differ diff --git a/build/tools/h5diff/h5diff_links.h5 b/build/tools/h5diff/h5diff_links.h5 new file mode 100644 index 0000000..6944941 Binary files /dev/null and b/build/tools/h5diff/h5diff_links.h5 differ diff --git a/build/tools/h5diff/h5diff_main.o b/build/tools/h5diff/h5diff_main.o new file mode 100644 index 0000000..fcee156 Binary files /dev/null and b/build/tools/h5diff/h5diff_main.o differ diff --git a/build/tools/h5diff/h5diff_plugin.sh b/build/tools/h5diff/h5diff_plugin.sh new file mode 100644 index 0000000..8ac5978 --- /dev/null +++ b/build/tools/h5diff/h5diff_plugin.sh @@ -0,0 +1,314 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +srcdir=../../../tools/h5diff +TOP_BUILDDIR=../.. + +# Determine backward compatibility options enabled +DEPRECATED_SYMBOLS="yes" + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5DIFF=h5diff # The tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the tool binary + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes + +TEST_NAME=h5diff_ud_plugin +FROM_DIR=`pwd`/.libs +PLUGIN_LIB="$FROM_DIR/libdynlibdiff.*" +PLUGIN_LIBDIR=testdir3 + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# source dirs +SRC_TOOLS="$srcdir/.." + +# testfiles source dirs for tools +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" + +TESTDIR=./testplug +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5DIFF_TESTFILES/tudfilter.h5 +$SRC_H5DIFF_TESTFILES/tudfilter2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_ud.txt +$SRC_H5DIFF_TESTFILES/h5diff_udfail.txt +" + +# Main Body +# Create test directories if not exists yet. +test -d $PLUGIN_LIBDIR || mkdir -p $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR)" + exit $EXIT_FAILURE +fi + +# copy plugin library for test +$CP $PLUGIN_LIB $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB) for test." + exit $EXIT_FAILURE +fi + +# setup plugin path +ENVCMD="env HDF5_PLUGIN_PATH=../${PLUGIN_LIBDIR}" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DIFF_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Parse option +# -p run ph5diff tests +# -h print help page +while [ $# -gt 0 ]; do + case "$1" in + -p) # reset the tool name and bin to run ph5diff tests + TESTNAME=ph5diff + H5DIFF=ph5diff # The tool name + H5DIFF_BIN=`pwd`/$H5DIFF + pmode=yes + shift + ;; + -h) # print help page + echo "$0 [-p] [-h]" + echo " -p run ph5diff tests" + echo " -h print help page" + shift + exit 0 + ;; + *) # unknown option + echo "$0: Unknown option ($1)" + exit 1 + ;; + esac +done + +# RUNSERIAL is used. Check if it can return exit code from executalbe correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell corretly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + + +# Print a $* message left justified in a field of 70 characters +# +MESSAGE() { + SPACES=" " + echo "$* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY() { + MESSAGE "Verifying $*" +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +# Need eval before the RUNCMD command because some machines like +# AIX, has RUNPARALLEL in the style as +# MP_PROCS=3 MP_TASKS_PER_NODE=3 poe ./a.out +# that throws the shell script off. +# +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .txt`.out" + actual_err="$TESTDIR/`basename $1 .txt`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + if test -n "$pmode"; then + RUNCMD=$RUNPARALLEL + else + RUNCMD=$RUNSERIAL + fi + + # Run test. + TESTING $H5DIFF $@ + ( + #echo "#############################" + #echo "Expected output for '$H5DIFF $@'" + #echo "#############################" + cd $TESTDIR + eval $ENVCMD $RUNCMD $H5DIFF_BIN "$@" + ) >$actual 2>$actual_err + EXIT_CODE=$? + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + # don't add exit code check in pmode, as it causes failure. (exit code + # is from mpirun not tool) + # if any problem occurs relate to an exit code, it will be caught in + # serial mode, so the test is fullfilled. + if test $h5haveexitcode = 'yes' -a -z "$pmode"; then + echo "EXIT CODE: $EXIT_CODE" >> $actual + fi + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + elif test $h5haveexitcode = 'yes' -a -z "$pmode"; then + echo "*FAILED*" + echo " Expected result ($expect) differs from actual result ($actual)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + else + # parallel mode output are often of different ordering from serial + # output. If the sorted expected and actual files compare the same, + # it is safe to assume the actual output match the expected file. + expect_sorted=expect_sorted + actual_sorted=actual_sorted + sort $expect -o $expect_sorted + sort $actual -o $actual_sorted + # remove "EXIT CODE:" line from expect file. test for exit code + # is done by serial mode. + grep -v "EXIT CODE:" $expect_sorted > $expect_sorted.noexit + mv $expect_sorted.noexit $expect_sorted + if $CMP $expect_sorted $actual_sorted; then + echo " PASSED" + else + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + if test yes = "$verbose"; then + echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)" + $DIFF $expect_sorted $actual_sorted |sed 's/^/ /' + echo "====The actual output ($actual_sav)" + sed 's/^/ /' < $actual_sav + echo "====The actual stderr ($actual_err_sav)" + sed 's/^/ /' < $actual_err_sav + echo "====End of actual stderr ($actual_err_sav)" + echo "" + fi + fi + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + rm -f $actual_sorted $expect_sorted + fi +} + +############################################################################## +### T H E T E S T S +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Run the test +TOOLTEST h5diff_ud.txt -v tudfilter.h5 tudfilter2.h5 + +# print results +if test $nerrors -ne 0 ; then + echo "$nerrors errors encountered" + exit_code=$EXIT_FAILURE +else + echo "All Plugin API tests passed." + exit_code=$EXIT_SUCCESS +fi + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Clean up temporary files/directories and leave +$RM $PLUGIN_LIBDIR + +exit $exit_code diff --git a/build/tools/h5diff/h5diff_plugin.sh.chkexe b/build/tools/h5diff/h5diff_plugin.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5diff/h5diff_plugin.sh.chklog b/build/tools/h5diff/h5diff_plugin.sh.chklog new file mode 100644 index 0000000..b2a2012 --- /dev/null +++ b/build/tools/h5diff/h5diff_plugin.sh.chklog @@ -0,0 +1,10 @@ +============================ +h5diff_plugin.sh Test Log +============================ +Testing h5diff -v tudfilter.h5 tudfilter2.h5 PASSED +All Plugin API tests passed. +0.07user 0.10system 0:00.16elapsed 106%CPU (0avgtext+0avgdata 7572maxresident)k +0inputs+1064outputs (0major+36113minor)pagefaults 0swaps + +Finished testing h5diff_plugin.sh +============================ diff --git a/build/tools/h5diff/h5diff_softlinks.h5 b/build/tools/h5diff/h5diff_softlinks.h5 new file mode 100644 index 0000000..7286e64 Binary files /dev/null and b/build/tools/h5diff/h5diff_softlinks.h5 differ diff --git a/build/tools/h5diff/h5diff_types.h5 b/build/tools/h5diff/h5diff_types.h5 new file mode 100644 index 0000000..427f2c5 Binary files /dev/null and b/build/tools/h5diff/h5diff_types.h5 differ diff --git a/build/tools/h5diff/h5diffgentest b/build/tools/h5diff/h5diffgentest new file mode 100755 index 0000000..6463154 --- /dev/null +++ b/build/tools/h5diff/h5diffgentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5diffgentest - temporary wrapper script for .libs/h5diffgentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5diffgentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5diffgentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5diffgentest:h5diffgentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5diffgentest:h5diffgentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5diffgentest:h5diffgentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5diffgentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5diff/h5diffgentest.chkexe b/build/tools/h5diff/h5diffgentest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5diff/h5diffgentest.chklog b/build/tools/h5diff/h5diffgentest.chklog new file mode 100644 index 0000000..41dcf69 --- /dev/null +++ b/build/tools/h5diff/h5diffgentest.chklog @@ -0,0 +1,16 @@ +============================ + h5diffgentest Test Log +============================ +HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: + #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset + major: Invalid arguments to routine + minor: Inappropriate type +HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: + #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset + major: Invalid arguments to routine + minor: Inappropriate type +0.53user 0.27system 0:00.99elapsed 81%CPU (0avgtext+0avgdata 136480maxresident)k +0inputs+6560outputs (0major+52630minor)pagefaults 0swaps + +Finished testing h5diffgentest +============================ diff --git a/build/tools/h5diff/h5diffgentest.o b/build/tools/h5diff/h5diffgentest.o new file mode 100644 index 0000000..443a855 Binary files /dev/null and b/build/tools/h5diff/h5diffgentest.o differ diff --git a/build/tools/h5diff/libdynlibdiff.la b/build/tools/h5diff/libdynlibdiff.la new file mode 100644 index 0000000..63ac9dc --- /dev/null +++ b/build/tools/h5diff/libdynlibdiff.la @@ -0,0 +1,41 @@ +# libdynlibdiff.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibdiff.so' + +# Names of this library. +library_names='libdynlibdiff.so libdynlibdiff.so libdynlibdiff.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibdiff. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5diff/non_comparables1.h5 b/build/tools/h5diff/non_comparables1.h5 new file mode 100644 index 0000000..3454139 Binary files /dev/null and b/build/tools/h5diff/non_comparables1.h5 differ diff --git a/build/tools/h5diff/non_comparables2.h5 b/build/tools/h5diff/non_comparables2.h5 new file mode 100644 index 0000000..cb743d8 Binary files /dev/null and b/build/tools/h5diff/non_comparables2.h5 differ diff --git a/build/tools/h5diff/testh5diff.sh b/build/tools/h5diff/testh5diff.sh new file mode 100644 index 0000000..13ea9a7 --- /dev/null +++ b/build/tools/h5diff/testh5diff.sh @@ -0,0 +1,1136 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5diff tool +# +# Modification: +# Albert Cheng, 2005/08/17 +# Added the SKIP feature. +# Albert Cheng, 2005/2/3 +# Added -p option for parallel h5diff tests. +# Pedro Vicente Nunes: +# 10/25/2005: Added test #9 +# 11/27/2006: Added test #10, #11 +# Jonathan Kim: +# Improved to use single line +# Improved to check exit code (only serial mode, not necessary for parallel) +# Added test 400 - 425 (links with --follow-symlinks option) +# Added test 450 - 459 (dangling links) + +srcdir=../../../tools/h5diff + +TESTNAME=h5diff +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5DIFF=h5diff # The tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes +pmode= # default to run h5diff tests +mydomainname=`domainname 2>/dev/null` + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5DIFF_TESTFILES/h5diff_basic1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_basic2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_types.h5 +$SRC_H5DIFF_TESTFILES/h5diff_dtypes.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr3.h5 +$SRC_H5DIFF_TESTFILES/h5diff_dset1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_dset2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_hyper1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_hyper2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_empty.h5 +$SRC_H5DIFF_TESTFILES/h5diff_links.h5 +$SRC_H5DIFF_TESTFILES/h5diff_softlinks.h5 +$SRC_H5DIFF_TESTFILES/h5diff_linked_softlink.h5 +$SRC_H5DIFF_TESTFILES/h5diff_extlink_src.h5 +$SRC_H5DIFF_TESTFILES/h5diff_extlink_trg.h5 +$SRC_H5DIFF_TESTFILES/h5diff_ext2softlink_src.h5 +$SRC_H5DIFF_TESTFILES/h5diff_ext2softlink_trg.h5 +$SRC_H5DIFF_TESTFILES/h5diff_dset_zero_dim_size1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_dset_zero_dim_size2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_danglelinks1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_danglelinks2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse_ext1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse_ext2-1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse_ext2-2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_grp_recurse_ext2-3.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude1-1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude1-2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude2-1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude2-2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude3-1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_exclude3-2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_comp_vl_strs.h5 +$SRC_H5DIFF_TESTFILES/compounds_array_vlen1.h5 +$SRC_H5DIFF_TESTFILES/compounds_array_vlen2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr_v_level1.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr_v_level2.h5 +$SRC_H5DIFF_TESTFILES/h5diff_enum_invalid_values.h5 +$SRC_H5DIFF_TESTFILES/non_comparables1.h5 +$SRC_H5DIFF_TESTFILES/non_comparables2.h5 +$SRC_H5DIFF_TESTFILES/diff_strings1.h5 +$SRC_H5DIFF_TESTFILES/diff_strings2.h5 +$SRC_TOOLS_TESTFILES/tvlstr.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5DIFF_TESTFILES/h5diff_10.txt +$SRC_H5DIFF_TESTFILES/h5diff_100.txt +$SRC_H5DIFF_TESTFILES/h5diff_101.txt +$SRC_H5DIFF_TESTFILES/h5diff_102.txt +$SRC_H5DIFF_TESTFILES/h5diff_103.txt +$SRC_H5DIFF_TESTFILES/h5diff_104.txt +$SRC_H5DIFF_TESTFILES/h5diff_11.txt +$SRC_H5DIFF_TESTFILES/h5diff_12.txt +$SRC_H5DIFF_TESTFILES/h5diff_13.txt +$SRC_H5DIFF_TESTFILES/h5diff_14.txt +$SRC_H5DIFF_TESTFILES/h5diff_15.txt +$SRC_H5DIFF_TESTFILES/h5diff_16_1.txt +$SRC_H5DIFF_TESTFILES/h5diff_16_2.txt +$SRC_H5DIFF_TESTFILES/h5diff_16_3.txt +$SRC_H5DIFF_TESTFILES/h5diff_17.txt +$SRC_H5DIFF_TESTFILES/h5diff_171.txt +$SRC_H5DIFF_TESTFILES/h5diff_172.txt +$SRC_H5DIFF_TESTFILES/h5diff_18_1.txt +$SRC_H5DIFF_TESTFILES/h5diff_18.txt +$SRC_H5DIFF_TESTFILES/h5diff_20.txt +$SRC_H5DIFF_TESTFILES/h5diff_200.txt +$SRC_H5DIFF_TESTFILES/h5diff_201.txt +$SRC_H5DIFF_TESTFILES/h5diff_202.txt +$SRC_H5DIFF_TESTFILES/h5diff_203.txt +$SRC_H5DIFF_TESTFILES/h5diff_204.txt +$SRC_H5DIFF_TESTFILES/h5diff_205.txt +$SRC_H5DIFF_TESTFILES/h5diff_206.txt +$SRC_H5DIFF_TESTFILES/h5diff_207.txt +$SRC_H5DIFF_TESTFILES/h5diff_208.txt +$SRC_H5DIFF_TESTFILES/h5diff_220.txt +$SRC_H5DIFF_TESTFILES/h5diff_221.txt +$SRC_H5DIFF_TESTFILES/h5diff_222.txt +$SRC_H5DIFF_TESTFILES/h5diff_223.txt +$SRC_H5DIFF_TESTFILES/h5diff_224.txt +$SRC_H5DIFF_TESTFILES/h5diff_21.txt +$SRC_H5DIFF_TESTFILES/h5diff_22.txt +$SRC_H5DIFF_TESTFILES/h5diff_23.txt +$SRC_H5DIFF_TESTFILES/h5diff_24.txt +$SRC_H5DIFF_TESTFILES/h5diff_25.txt +$SRC_H5DIFF_TESTFILES/h5diff_26.txt +$SRC_H5DIFF_TESTFILES/h5diff_27.txt +$SRC_H5DIFF_TESTFILES/h5diff_28.txt +$SRC_H5DIFF_TESTFILES/h5diff_30.txt +$SRC_H5DIFF_TESTFILES/h5diff_300.txt +$SRC_H5DIFF_TESTFILES/h5diff_400.txt +$SRC_H5DIFF_TESTFILES/h5diff_401.txt +$SRC_H5DIFF_TESTFILES/h5diff_402.txt +$SRC_H5DIFF_TESTFILES/h5diff_403.txt +$SRC_H5DIFF_TESTFILES/h5diff_404.txt +$SRC_H5DIFF_TESTFILES/h5diff_405.txt +$SRC_H5DIFF_TESTFILES/h5diff_406.txt +$SRC_H5DIFF_TESTFILES/h5diff_407.txt +$SRC_H5DIFF_TESTFILES/h5diff_408.txt +$SRC_H5DIFF_TESTFILES/h5diff_409.txt +$SRC_H5DIFF_TESTFILES/h5diff_410.txt +$SRC_H5DIFF_TESTFILES/h5diff_411.txt +$SRC_H5DIFF_TESTFILES/h5diff_412.txt +$SRC_H5DIFF_TESTFILES/h5diff_413.txt +$SRC_H5DIFF_TESTFILES/h5diff_414.txt +$SRC_H5DIFF_TESTFILES/h5diff_415.txt +$SRC_H5DIFF_TESTFILES/h5diff_416.txt +$SRC_H5DIFF_TESTFILES/h5diff_417.txt +$SRC_H5DIFF_TESTFILES/h5diff_418.txt +$SRC_H5DIFF_TESTFILES/h5diff_419.txt +$SRC_H5DIFF_TESTFILES/h5diff_420.txt +$SRC_H5DIFF_TESTFILES/h5diff_421.txt +$SRC_H5DIFF_TESTFILES/h5diff_422.txt +$SRC_H5DIFF_TESTFILES/h5diff_423.txt +$SRC_H5DIFF_TESTFILES/h5diff_424.txt +$SRC_H5DIFF_TESTFILES/h5diff_425.txt +$SRC_H5DIFF_TESTFILES/h5diff_450.txt +$SRC_H5DIFF_TESTFILES/h5diff_451.txt +$SRC_H5DIFF_TESTFILES/h5diff_452.txt +$SRC_H5DIFF_TESTFILES/h5diff_453.txt +$SRC_H5DIFF_TESTFILES/h5diff_454.txt +$SRC_H5DIFF_TESTFILES/h5diff_455.txt +$SRC_H5DIFF_TESTFILES/h5diff_456.txt +$SRC_H5DIFF_TESTFILES/h5diff_457.txt +$SRC_H5DIFF_TESTFILES/h5diff_458.txt +$SRC_H5DIFF_TESTFILES/h5diff_459.txt +$SRC_H5DIFF_TESTFILES/h5diff_465.txt +$SRC_H5DIFF_TESTFILES/h5diff_466.txt +$SRC_H5DIFF_TESTFILES/h5diff_467.txt +$SRC_H5DIFF_TESTFILES/h5diff_468.txt +$SRC_H5DIFF_TESTFILES/h5diff_469.txt +$SRC_H5DIFF_TESTFILES/h5diff_471.txt +$SRC_H5DIFF_TESTFILES/h5diff_472.txt +$SRC_H5DIFF_TESTFILES/h5diff_473.txt +$SRC_H5DIFF_TESTFILES/h5diff_474.txt +$SRC_H5DIFF_TESTFILES/h5diff_475.txt +$SRC_H5DIFF_TESTFILES/h5diff_480.txt +$SRC_H5DIFF_TESTFILES/h5diff_481.txt +$SRC_H5DIFF_TESTFILES/h5diff_482.txt +$SRC_H5DIFF_TESTFILES/h5diff_483.txt +$SRC_H5DIFF_TESTFILES/h5diff_484.txt +$SRC_H5DIFF_TESTFILES/h5diff_485.txt +$SRC_H5DIFF_TESTFILES/h5diff_486.txt +$SRC_H5DIFF_TESTFILES/h5diff_487.txt +$SRC_H5DIFF_TESTFILES/h5diff_50.txt +$SRC_H5DIFF_TESTFILES/h5diff_51.txt +$SRC_H5DIFF_TESTFILES/h5diff_52.txt +$SRC_H5DIFF_TESTFILES/h5diff_53.txt +$SRC_H5DIFF_TESTFILES/h5diff_54.txt +$SRC_H5DIFF_TESTFILES/h5diff_55.txt +$SRC_H5DIFF_TESTFILES/h5diff_56.txt +$SRC_H5DIFF_TESTFILES/h5diff_57.txt +$SRC_H5DIFF_TESTFILES/h5diff_58.txt +$SRC_H5DIFF_TESTFILES/h5diff_59.txt +$SRC_H5DIFF_TESTFILES/h5diff_500.txt +$SRC_H5DIFF_TESTFILES/h5diff_501.txt +$SRC_H5DIFF_TESTFILES/h5diff_502.txt +$SRC_H5DIFF_TESTFILES/h5diff_503.txt +$SRC_H5DIFF_TESTFILES/h5diff_504.txt +$SRC_H5DIFF_TESTFILES/h5diff_505.txt +$SRC_H5DIFF_TESTFILES/h5diff_506.txt +$SRC_H5DIFF_TESTFILES/h5diff_507.txt +$SRC_H5DIFF_TESTFILES/h5diff_508.txt +$SRC_H5DIFF_TESTFILES/h5diff_509.txt +$SRC_H5DIFF_TESTFILES/h5diff_510.txt +$SRC_H5DIFF_TESTFILES/h5diff_511.txt +$SRC_H5DIFF_TESTFILES/h5diff_512.txt +$SRC_H5DIFF_TESTFILES/h5diff_513.txt +$SRC_H5DIFF_TESTFILES/h5diff_514.txt +$SRC_H5DIFF_TESTFILES/h5diff_515.txt +$SRC_H5DIFF_TESTFILES/h5diff_516.txt +$SRC_H5DIFF_TESTFILES/h5diff_517.txt +$SRC_H5DIFF_TESTFILES/h5diff_518.txt +$SRC_H5DIFF_TESTFILES/h5diff_530.txt +$SRC_H5DIFF_TESTFILES/h5diff_540.txt +$SRC_H5DIFF_TESTFILES/h5diff_60.txt +$SRC_H5DIFF_TESTFILES/h5diff_61.txt +$SRC_H5DIFF_TESTFILES/h5diff_62.txt +$SRC_H5DIFF_TESTFILES/h5diff_63.txt +$SRC_H5DIFF_TESTFILES/h5diff_600.txt +$SRC_H5DIFF_TESTFILES/h5diff_601.txt +$SRC_H5DIFF_TESTFILES/h5diff_603.txt +$SRC_H5DIFF_TESTFILES/h5diff_604.txt +$SRC_H5DIFF_TESTFILES/h5diff_605.txt +$SRC_H5DIFF_TESTFILES/h5diff_606.txt +$SRC_H5DIFF_TESTFILES/h5diff_607.txt +$SRC_H5DIFF_TESTFILES/h5diff_608.txt +$SRC_H5DIFF_TESTFILES/h5diff_609.txt +$SRC_H5DIFF_TESTFILES/h5diff_610.txt +$SRC_H5DIFF_TESTFILES/h5diff_612.txt +$SRC_H5DIFF_TESTFILES/h5diff_613.txt +$SRC_H5DIFF_TESTFILES/h5diff_614.txt +$SRC_H5DIFF_TESTFILES/h5diff_615.txt +$SRC_H5DIFF_TESTFILES/h5diff_616.txt +$SRC_H5DIFF_TESTFILES/h5diff_617.txt +$SRC_H5DIFF_TESTFILES/h5diff_618.txt +$SRC_H5DIFF_TESTFILES/h5diff_619.txt +$SRC_H5DIFF_TESTFILES/h5diff_621.txt +$SRC_H5DIFF_TESTFILES/h5diff_622.txt +$SRC_H5DIFF_TESTFILES/h5diff_623.txt +$SRC_H5DIFF_TESTFILES/h5diff_624.txt +$SRC_H5DIFF_TESTFILES/h5diff_625.txt +$SRC_H5DIFF_TESTFILES/h5diff_626.txt +$SRC_H5DIFF_TESTFILES/h5diff_627.txt +$SRC_H5DIFF_TESTFILES/h5diff_628.txt +$SRC_H5DIFF_TESTFILES/h5diff_629.txt +$SRC_H5DIFF_TESTFILES/h5diff_630.txt +$SRC_H5DIFF_TESTFILES/h5diff_631.txt +$SRC_H5DIFF_TESTFILES/h5diff_640.txt +$SRC_H5DIFF_TESTFILES/h5diff_641.txt +$SRC_H5DIFF_TESTFILES/h5diff_642.txt +$SRC_H5DIFF_TESTFILES/h5diff_643.txt +$SRC_H5DIFF_TESTFILES/h5diff_644.txt +$SRC_H5DIFF_TESTFILES/h5diff_645.txt +$SRC_H5DIFF_TESTFILES/h5diff_646.txt +$SRC_H5DIFF_TESTFILES/h5diff_70.txt +$SRC_H5DIFF_TESTFILES/h5diff_700.txt +$SRC_H5DIFF_TESTFILES/h5diff_701.txt +$SRC_H5DIFF_TESTFILES/h5diff_702.txt +$SRC_H5DIFF_TESTFILES/h5diff_703.txt +$SRC_H5DIFF_TESTFILES/h5diff_704.txt +$SRC_H5DIFF_TESTFILES/h5diff_705.txt +$SRC_H5DIFF_TESTFILES/h5diff_706.txt +$SRC_H5DIFF_TESTFILES/h5diff_707.txt +$SRC_H5DIFF_TESTFILES/h5diff_708.txt +$SRC_H5DIFF_TESTFILES/h5diff_709.txt +$SRC_H5DIFF_TESTFILES/h5diff_710.txt +$SRC_H5DIFF_TESTFILES/h5diff_80.txt +$SRC_H5DIFF_TESTFILES/h5diff_90.txt +$SRC_H5DIFF_TESTFILES/h5diff_8625.txt +$SRC_H5DIFF_TESTFILES/h5diff_8639.txt +$SRC_H5DIFF_TESTFILES/h5diff_vlstr.txt +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES $LIST_HDF5_TEST_FILES_XML $LIST_OTHER_TEST_FILES_XML" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DIFF_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Parse option +# -p run ph5diff tests +# -h print help page +while [ $# -gt 0 ]; do + case "$1" in + -p) # reset the tool name and bin to run ph5diff tests + TESTNAME=ph5diff + H5DIFF=ph5diff # The tool name + H5DIFF_BIN=`pwd`/$H5DIFF + pmode=yes + shift + ;; + -h) # print help page + echo "$0 [-p] [-h]" + echo " -p run ph5diff tests" + echo " -h print help page" + shift + exit 0 + ;; + *) # unknown option + echo "$0: Unknown option ($1)" + exit 1 + ;; + esac +done + +# RUNSERIAL is used. Check if it can return exit code from executalbe correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell corretly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +# Need eval before the RUNCMD command because some machines like +# AIX, has RUNPARALLEL in the style as +# MP_PROCS=3 MP_TASKS_PER_NODE=3 poe ./a.out +# that throws the shell script off. +# +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .txt`.out" + actual_err="$TESTDIR/`basename $1 .txt`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + if test -n "$pmode"; then + RUNCMD=$RUNPARALLEL + else + RUNCMD=$RUNSERIAL + fi + + # Run test. + TESTING $H5DIFF $@ + ( + #echo "#############################" + #echo "Expected output for '$H5DIFF $@'" + #echo "#############################" + cd $TESTDIR + eval $RUNCMD $H5DIFF_BIN "$@" + ) >$actual 2>$actual_err + EXIT_CODE=$? + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + # don't add exit code check in pmode, as it causes failure. (exit code + # is from mpirun not tool) + # if any problem occurs relate to an exit code, it will be caught in + # serial mode, so the test is fullfilled. + if test $h5haveexitcode = 'yes' -a -z "$pmode"; then + echo "EXIT CODE: $EXIT_CODE" >> $actual + fi + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + elif test $h5haveexitcode = 'yes' -a -z "$pmode"; then + echo "*FAILED*" + echo " Expected result ($expect) differs from actual result ($actual)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + else + # parallel mode output are often of different ordering from serial + # output. If the sorted expected and actual files compare the same, + # it is safe to assume the actual output match the expected file. + expect_sorted=expect_sorted + actual_sorted=actual_sorted + sort $expect -o $expect_sorted + sort $actual -o $actual_sorted + # remove "EXIT CODE:" line from expect file. test for exit code + # is done by serial mode. + grep -v "EXIT CODE:" $expect_sorted > $expect_sorted.noexit + mv $expect_sorted.noexit $expect_sorted + if $CMP $expect_sorted $actual_sorted; then + echo " PASSED" + else + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + if test yes = "$verbose"; then + echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)" + $DIFF $expect_sorted $actual_sorted |sed 's/^/ /' + echo "====The actual output ($actual_sav)" + sed 's/^/ /' < $actual_sav + echo "====The actual stderr ($actual_err_sav)" + sed 's/^/ /' < $actual_err_sav + echo "====End of actual stderr ($actual_err_sav)" + echo "" + fi + fi + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + rm -f $actual_sorted $expect_sorted + fi +} + + +# Print a "SKIP" message +SKIP() { + TESTING $H5DIFF $@ + echo " -SKIP-" +} + + + +############################################################################## +# The tests +# To avoid the printing of the complete full path of the test file, that hides +# all the other parameters for long paths, the printing of the command line +# is done first in +# TESTING with the name only of the test file $TOOL, not its full path $TESTFILE +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR +# second copy of tvlstr.h5 +$CP -f $SRC_TOOLS_TESTFILES/tvlstr.h5 $TESTDIR/tvlstr2.h5 + +# ############################################################################ +# # Common usage +# ############################################################################ + +# 1.0 +TOOLTEST h5diff_10.txt -h + +# 1.1 normal mode +TOOLTEST h5diff_11.txt h5diff_basic1.h5 h5diff_basic2.h5 + +# 1.2 normal mode with objects +TOOLTEST h5diff_12.txt h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 + +# 1.3 report mode +TOOLTEST h5diff_13.txt -r h5diff_basic1.h5 h5diff_basic2.h5 + +# 1.4 report mode with objects +TOOLTEST h5diff_14.txt -r h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 + +# 1.5 with -d +TOOLTEST h5diff_15.txt --report --delta=5 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 1.6.1 with -p (int) +TOOLTEST h5diff_16_1.txt -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset5 g1/dset6 + +# 1.6.2 with -p (unsigned long_long) +TOOLTEST h5diff_16_2.txt --verbose --relative=0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset7 g1/dset8 + +# 1.6.3 with -p (double) +TOOLTEST h5diff_16_3.txt -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset9 g1/dset10 + +# 1.7 verbose mode +TOOLTEST h5diff_17.txt -v h5diff_basic1.h5 h5diff_basic2.h5 + +# 1.7 test 32-bit INFINITY +TOOLTEST h5diff_171.txt -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp19 /g1/fp19_COPY + +# 1.7 test 64-bit INFINITY +TOOLTEST h5diff_172.txt -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp20 /g1/fp20_COPY + +# 1.8 quiet mode +TOOLTEST h5diff_18.txt -q h5diff_basic1.h5 h5diff_basic2.h5 + +# 1.8 -v and -q +TOOLTEST h5diff_18_1.txt -v -q h5diff_basic1.h5 h5diff_basic2.h5 + + +# ############################################################################## +# # not comparable types +# ############################################################################## + +# 2.0 +TOOLTEST h5diff_20.txt -v h5diff_types.h5 h5diff_types.h5 dset g1 + +# 2.1 +TOOLTEST h5diff_21.txt -v h5diff_types.h5 h5diff_types.h5 dset l1 + +# 2.2 +TOOLTEST h5diff_22.txt -v h5diff_types.h5 h5diff_types.h5 dset t1 + +# ############################################################################## +# # compare groups, types, links (no differences and differences) +# ############################################################################## + +# 2.3 +TOOLTEST h5diff_23.txt -v h5diff_types.h5 h5diff_types.h5 g1 g1 + +# 2.4 +TOOLTEST h5diff_24.txt -v h5diff_types.h5 h5diff_types.h5 t1 t1 + +# 2.5 +TOOLTEST h5diff_25.txt -v h5diff_types.h5 h5diff_types.h5 l1 l1 + +# 2.6 +TOOLTEST h5diff_26.txt -v h5diff_types.h5 h5diff_types.h5 g1 g2 + +# 2.7 +TOOLTEST h5diff_27.txt -v h5diff_types.h5 h5diff_types.h5 t1 t2 + +# 2.8 +TOOLTEST h5diff_28.txt -v h5diff_types.h5 h5diff_types.h5 l1 l2 + + +# ############################################################################## +# # Enum value tests (may become more comprehensive in the future) +# ############################################################################## + +# 3.0 +# test enum types which may have invalid values +TOOLTEST h5diff_30.txt -v h5diff_enum_invalid_values.h5 h5diff_enum_invalid_values.h5 dset1 dset2 + + +# ############################################################################## +# # Dataset datatypes +# ############################################################################## + +# 5.0 +TOOLTEST h5diff_50.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset0a dset0b + +# 5.1 +TOOLTEST h5diff_51.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset1a dset1b + +# 5.2 +TOOLTEST h5diff_52.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset2a dset2b + +# 5.3 +TOOLTEST h5diff_53.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset3a dset4b + +# 5.4 +TOOLTEST h5diff_54.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset4a dset4b + +# 5.5 +TOOLTEST h5diff_55.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset5a dset5b + +# 5.6 +TOOLTEST h5diff_56.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset6a dset6b + +# 5.7 +TOOLTEST h5diff_57.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset7a dset7b + +# 5.8 (region reference) +TOOLTEST h5diff_58.txt -v h5diff_dset1.h5 h5diff_dset2.h5 refreg + +# test for both dset and attr with same type but with different size +# ( HDDFV-7942 ) +TOOLTEST h5diff_59.txt -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset11a dset11b + +# Strings +# ( HDFFV-10128 ) +TOOLTEST h5diff_60.txt -v diff_strings1.h5 diff_strings2.h5 string1 string1 +TOOLTEST h5diff_61.txt -v diff_strings1.h5 diff_strings2.h5 string2 string2 +TOOLTEST h5diff_62.txt -v diff_strings1.h5 diff_strings2.h5 string3 string3 +TOOLTEST h5diff_63.txt -v diff_strings1.h5 diff_strings2.h5 string4 string4 + +# ############################################################################## +# # Error messages +# ############################################################################## + + +# 6.0: Check if the command line number of arguments is less than 3 +TOOLTEST h5diff_600.txt h5diff_basic1.h5 + +# 6.1: Check if non-exist object name is specified +TOOLTEST h5diff_601.txt h5diff_basic1.h5 h5diff_basic1.h5 nono_obj + + +# ############################################################################## +# # -d +# ############################################################################## + + +# 6.3: negative value +TOOLTEST h5diff_603.txt -d -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.4: zero +TOOLTEST h5diff_604.txt -d 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.5: non number +TOOLTEST h5diff_605.txt -d u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.6: hexadecimal +TOOLTEST h5diff_606.txt -d 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.7: string +TOOLTEST h5diff_607.txt -d "1" h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.8: use system epsilon +TOOLTEST h5diff_608.txt --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.9: number larger than biggest difference +TOOLTEST h5diff_609.txt -d 200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.10: number smaller than smallest difference +TOOLTEST h5diff_610.txt -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + + +# ############################################################################## +# # -p +# ############################################################################## + + +# 6.12: negative value +TOOLTEST h5diff_612.txt -p -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.13: zero +TOOLTEST h5diff_613.txt -p 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.14: non number +TOOLTEST h5diff_614.txt -p u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.15: hexadecimal +TOOLTEST h5diff_615.txt -p 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.16: string +TOOLTEST h5diff_616.txt -p "0.21" h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.17: repeated option +TOOLTEST h5diff_617.txt -p 0.21 -p 0.22 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.18: number larger than biggest difference +TOOLTEST h5diff_618.txt -p 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.19: number smaller than smallest difference +TOOLTEST h5diff_619.txt -p 0.005 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# ############################################################################## +# # -n +# ############################################################################## + +# 6.21: negative value +TOOLTEST h5diff_621.txt -n -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.22: zero +TOOLTEST h5diff_622.txt -n 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.23: non number +TOOLTEST h5diff_623.txt -n u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.24: hexadecimal +TOOLTEST h5diff_624.txt -n 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.25: string +TOOLTEST h5diff_625.txt -n "2" h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.26: repeated option +TOOLTEST h5diff_626.txt -n 2 -n 3 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.27: number larger than biggest difference +TOOLTEST h5diff_627.txt --count=200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# 6.28: number smaller than smallest difference +TOOLTEST h5diff_628.txt -n 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 + +# Disabling this test as it hangs - LRK 20090618 +# 6.29 non valid files +#TOOLTEST h5diff_629.txt file1.h6 file2.h6 + +# ############################################################################## +# # NaN +# ############################################################################## +# 6.30: test (NaN == NaN) must be true based on our documentation -- XCAO +TOOLTEST h5diff_630.txt -v -d "0.0001" h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY +TOOLTEST h5diff_631.txt -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY + + +# ############################################################################## +# 7. attributes +# ############################################################################## +TOOLTEST h5diff_70.txt -v h5diff_attr1.h5 h5diff_attr2.h5 + +# ################################################## +# attrs with verbose option level +# ################################################## +TOOLTEST h5diff_700.txt -v1 h5diff_attr1.h5 h5diff_attr2.h5 +TOOLTEST h5diff_701.txt -v2 h5diff_attr1.h5 h5diff_attr2.h5 +TOOLTEST h5diff_702.txt --verbose=1 h5diff_attr1.h5 h5diff_attr2.h5 +TOOLTEST h5diff_703.txt --verbose=2 h5diff_attr1.h5 h5diff_attr2.h5 + +# same attr number , all same attr name +TOOLTEST h5diff_704.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g + +# same attr number , some same attr name +TOOLTEST h5diff_705.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /dset + +# same attr number , all different attr name +TOOLTEST h5diff_706.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /ntype + +# different attr number , same attr name (intersected) +TOOLTEST h5diff_707.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g2 + +# different attr number , all different attr name +TOOLTEST h5diff_708.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g3 + +# when no attributes exist in both objects +TOOLTEST h5diff_709.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g4 + +# file vs file +TOOLTEST h5diff_710.txt -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 + +# ############################################################################## +# 8. all dataset datatypes +# ############################################################################## +TOOLTEST h5diff_80.txt -v h5diff_dset1.h5 h5diff_dset2.h5 + +# 9. compare a file with itself +TOOLTEST h5diff_90.txt -v h5diff_basic2.h5 h5diff_basic2.h5 + +# 10. read by hyperslab, print indexes +TOOLTEST h5diff_100.txt -v h5diff_hyper1.h5 h5diff_hyper2.h5 + +# 11. floating point comparison +# double value +TOOLTEST h5diff_101.txt -v h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 + +# float value +TOOLTEST h5diff_102.txt -v h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 + +# with --use-system-epsilon for double value +TOOLTEST h5diff_103.txt -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 + +# with --use-system-epsilon for float value +TOOLTEST h5diff_104.txt -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 + +# not comparable -c flag +TOOLTEST h5diff_200.txt h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 + +TOOLTEST h5diff_201.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 + +TOOLTEST h5diff_202.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset2 g2/dset3 + +TOOLTEST h5diff_203.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset3 g2/dset4 + +TOOLTEST h5diff_204.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset4 g2/dset5 + +TOOLTEST h5diff_205.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset5 g2/dset6 + +# not comparable in compound +TOOLTEST h5diff_206.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset7 g2/dset8 + +TOOLTEST h5diff_207.txt -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset8 g2/dset9 + +# not comparable in dataspace of zero dimension size +TOOLTEST h5diff_208.txt -c h5diff_dset_zero_dim_size1.h5 h5diff_dset_zero_dim_size2.h5 + +# non-comparable dataset with comparable attribute, and other comparable datasets. +# Also test non-compatible attributes with different type, dimention, rank. +# All the comparables should display differences. +TOOLTEST h5diff_220.txt -c non_comparables1.h5 non_comparables2.h5 /g1 + +# comparable dataset with non-comparable attribute and other comparable attributes. +# All the comparables should display differences. +TOOLTEST h5diff_221.txt -c non_comparables1.h5 non_comparables2.h5 /g2 + +# entire file +# All the comparables should display differences. +TOOLTEST h5diff_222.txt -c non_comparables1.h5 non_comparables2.h5 + +# non-comparable test for common objects (same name) with different object types +# (HDFFV-7644) +TOOLTEST h5diff_223.txt -c non_comparables1.h5 non_comparables2.h5 /diffobjtypes +# swap files +TOOLTEST h5diff_224.txt -c non_comparables2.h5 non_comparables1.h5 /diffobjtypes + +# ############################################################################## +# # Links compare without --follow-symlinks nor --no-dangling-links +# ############################################################################## +# test for bug1749 +TOOLTEST h5diff_300.txt -v h5diff_links.h5 h5diff_links.h5 /link_g1 /link_g2 + +# ############################################################################## +# # Links compare with --follow-symlinks Only +# ############################################################################## +# soft links file to file +TOOLTEST h5diff_400.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 + +# softlink vs dset" +TOOLTEST h5diff_401.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_dset1_1 /target_dset2 + +# dset vs softlink" +TOOLTEST h5diff_402.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 /target_dset2 /softlink_dset1_1 + +# softlink vs softlink" +TOOLTEST h5diff_403.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_dset1_1 /softlink_dset2 + +# extlink vs extlink (FILE)" +TOOLTEST h5diff_404.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 + +# extlink vs dset" +TOOLTEST h5diff_405.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_trg.h5 /ext_link_dset1 /target_group2/x_dset + +# dset vs extlink" +TOOLTEST h5diff_406.txt --follow-symlinks -v h5diff_extlink_trg.h5 h5diff_extlink_src.h5 /target_group2/x_dset /ext_link_dset1 + +# extlink vs extlink" +TOOLTEST h5diff_407.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_dset1 /ext_link_dset2 + +# softlink vs extlink" +TOOLTEST h5diff_408.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_extlink_src.h5 /softlink_dset1_1 /ext_link_dset2 + +# extlink vs softlink " +TOOLTEST h5diff_409.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_softlinks.h5 /ext_link_dset2 /softlink_dset1_1 + +# linked_softlink vs linked_softlink (FILE)" +TOOLTEST h5diff_410.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 + +# dset2 vs linked_softlink_dset1" +TOOLTEST h5diff_411.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /target_dset2 /softlink1_to_slink2 + +# linked_softlink_dset1 vs dset2" +TOOLTEST h5diff_412.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /softlink1_to_slink2 /target_dset2 + +# linked_softlink_to_dset1 vs linked_softlink_to_dset2" +TOOLTEST h5diff_413.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /softlink1_to_slink2 /softlink2_to_slink2 + +# group vs linked_softlink_group1" +TOOLTEST h5diff_414.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /target_group /softlink3_to_slink2 + +# linked_softlink_group1 vs group" +TOOLTEST h5diff_415.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /softlink3_to_slink2 /target_group + +# linked_softlink_to_group1 vs linked_softlink_to_group2" +TOOLTEST h5diff_416.txt --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_linked_softlink.h5 /softlink3_to_slink2 /softlink4_to_slink2 + +# non-exist-softlink vs softlink" +TOOLTEST h5diff_417.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_noexist /softlink_dset2 + +# softlink vs non-exist-softlink" +TOOLTEST h5diff_418.txt --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_dset2 /softlink_noexist + +# non-exist-extlink_file vs extlink" +TOOLTEST h5diff_419.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_noexist2 /ext_link_dset2 + +# exlink vs non-exist-extlink_file" +TOOLTEST h5diff_420.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_dset2 /ext_link_noexist2 + +# extlink vs non-exist-extlink_obj" +TOOLTEST h5diff_421.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_dset2 /ext_link_noexist1 + +# non-exist-extlink_obj vs extlink" +TOOLTEST h5diff_422.txt --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_noexist1 /ext_link_dset2 + +# extlink_to_softlink_to_dset1 vs dset2" +TOOLTEST h5diff_423.txt --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ext2softlink_trg.h5 /ext_link_to_slink1 /dset2 + +# dset2 vs extlink_to_softlink_to_dset1" +TOOLTEST h5diff_424.txt --follow-symlinks -v h5diff_ext2softlink_trg.h5 h5diff_ext2softlink_src.h5 /dset2 /ext_link_to_slink1 + +# extlink_to_softlink_to_dset1 vs extlink_to_softlink_to_dset2" +TOOLTEST h5diff_425.txt --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ext2softlink_src.h5 /ext_link_to_slink1 /ext_link_to_slink2 + +# ############################################################################## +# # Dangling links compare (--follow-symlinks and --no-dangling-links) +# ############################################################################## +# dangling links --follow-symlinks (FILE to FILE) +TOOLTEST h5diff_450.txt --follow-symlinks -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 + +# dangling links --follow-symlinks and --no-dangling-links (FILE to FILE) +TOOLTEST h5diff_451.txt --follow-symlinks -v --no-dangling-links h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 + +# try --no-dangling-links without --follow-symlinks options +TOOLTEST h5diff_452.txt --no-dangling-links h5diff_softlinks.h5 h5diff_softlinks.h5 + +# dangling link found for soft links (FILE to FILE) +TOOLTEST h5diff_453.txt --follow-symlinks -v --no-dangling-links h5diff_softlinks.h5 h5diff_softlinks.h5 + +# dangling link found for soft links (obj to obj) +TOOLTEST h5diff_454.txt --follow-symlinks -v --no-dangling-links h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_dset2 /softlink_noexist + +# dangling link found for soft links (obj to obj) Both dangle links +TOOLTEST h5diff_455.txt --follow-symlinks -v --no-dangling-links h5diff_softlinks.h5 h5diff_softlinks.h5 /softlink_noexist /softlink_noexist + +# dangling link found for ext links (FILE to FILE) +TOOLTEST h5diff_456.txt --follow-symlinks -v --no-dangling-links h5diff_extlink_src.h5 h5diff_extlink_src.h5 + +# dangling link found for ext links (obj to obj). target file exist +TOOLTEST h5diff_457.txt --follow-symlinks -v --no-dangling-links h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_dset1 /ext_link_noexist1 + +# dangling link found for ext links (obj to obj). target file NOT exist +TOOLTEST h5diff_458.txt --follow-symlinks -v --no-dangling-links h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_dset1 /ext_link_noexist2 + +# dangling link found for ext links (obj to obj). Both dangle links +TOOLTEST h5diff_459.txt --follow-symlinks -v --no-dangling-links h5diff_extlink_src.h5 h5diff_extlink_src.h5 /ext_link_noexist1 /ext_link_noexist2 + +# dangling link --follow-symlinks (obj vs obj) +# (HDFFV-7836) +TOOLTEST h5diff_465.txt --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_link1 +# (HDFFV-7835) +# soft dangling vs. soft dangling +TOOLTEST h5diff_466.txt -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_link1 +# soft link vs. soft dangling +TOOLTEST h5diff_467.txt -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_link2 +# ext dangling vs. ext dangling +TOOLTEST h5diff_468.txt -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_link4 +# ext link vs. ext dangling +TOOLTEST h5diff_469.txt -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_link2 + +#---------------------------------------- +# dangling links without follow symlink +# (HDFFV-7998) +# test - soft dangle links (same and different paths), +# - external dangle links (same and different paths) +TOOLTEST h5diff_471.txt -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 +TOOLTEST h5diff_472.txt -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_link1 +TOOLTEST h5diff_473.txt -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_link4 +TOOLTEST h5diff_474.txt -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_link4 +TOOLTEST h5diff_475.txt -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_link1 + +# ############################################################################## +# # test for group diff recursivly +# ############################################################################## +# root +TOOLTEST h5diff_500.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / / +TOOLTEST h5diff_501.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / / + +# root vs group +TOOLTEST h5diff_502.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / /grp1/grp2/grp3 + +# group vs group (same name and structure) +TOOLTEST h5diff_503.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 /grp1 + +# group vs group (different name and structure) +TOOLTEST h5diff_504.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1/grp2 /grp1/grp2/grp3 + +# groups vs soft-link +TOOLTEST h5diff_505.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 /slink_grp1 +TOOLTEST h5diff_506.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1/grp2 /slink_grp2 + +# groups vs ext-link +TOOLTEST h5diff_507.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 /elink_grp1 +TOOLTEST h5diff_508.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 /elink_grp1 + +# soft-link vs ext-link +TOOLTEST h5diff_509.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink_grp1 /elink_grp1 +TOOLTEST h5diff_510.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink_grp1 /elink_grp1 + +# circled ext links +TOOLTEST h5diff_511.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp10 /grp11 +TOOLTEST h5diff_512.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp10 /grp11 + +# circled soft2ext-link vs soft2ext-link +TOOLTEST h5diff_513.txt -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink_grp10 /slink_grp11 +TOOLTEST h5diff_514.txt -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink_grp10 /slink_grp11 + +############################################################################### +# Test for group recursive diff via multi-linked external links +# With follow-symlinks, file h5diff_grp_recurse_ext1.h5 and h5diff_grp_recurse_ext2-1.h5 should +# be same with the external links. +############################################################################### +# file vs file +TOOLTEST h5diff_515.txt -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1.h5 +TOOLTEST h5diff_516.txt -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1.h5 +# group vs group +TOOLTEST h5diff_517.txt -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1.h5 /g1 +TOOLTEST h5diff_518.txt -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1.h5 /g1 + +# ############################################################################## +# # Exclude objects (--exclude-path) +# ############################################################################## +# +# Same structure, same names and different value. +# +# Exclude the object with different value. Expect return - same +TOOLTEST h5diff_480.txt -v --exclude-path /group1/dset3 h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 +# Verify different by not excluding. Expect return - diff +TOOLTEST h5diff_481.txt -v h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 + +# +# Different structure, different names. +# +# Exclude all the different objects. Expect return - same +TOOLTEST h5diff_482.txt -v --exclude-path "/group1" --exclude-path "/dset1" h5diff_exclude2-1.h5 h5diff_exclude2-2.h5 +# Exclude only some different objects. Expect return - diff +TOOLTEST h5diff_483.txt -v --exclude-path "/group1" h5diff_exclude2-1.h5 h5diff_exclude2-2.h5 + +# Exclude from group compare +TOOLTEST h5diff_484.txt -v --exclude-path "/dset3" h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 /group1 + +# +# Only one file contains unique objs. Common objs are same. +# (HDFFV-7837) +# +TOOLTEST h5diff_485.txt -v --exclude-path "/group1" h5diff_exclude3-1.h5 h5diff_exclude3-2.h5 +TOOLTEST h5diff_486.txt -v --exclude-path "/group1" h5diff_exclude3-2.h5 h5diff_exclude3-1.h5 +TOOLTEST h5diff_487.txt -v --exclude-path "/group1/dset" h5diff_exclude3-1.h5 h5diff_exclude3-2.h5 + + +# ############################################################################## +# # diff various multiple vlen and fixed strings in a compound type dataset +# ############################################################################## +TOOLTEST h5diff_530.txt -v h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group /group_copy +# test to verify HDFFV-8625 +TOOLTEST h5diff_8625.txt -v --enable-error-stack h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group/Compound_dset1 /group_copy/Compound_dset3 +# test to verify HDFFV-8639 +TOOLTEST h5diff_8639.txt -v h5diff_attr3.h5 h5diff_attr2.h5 /g1 +TOOLTEST h5diff_vlstr.txt -v tvlstr.h5 tvlstr2.h5 + +# ############################################################################## +# # Test container types (array,vlen) with multiple nested compound types +# # Complex compound types in dataset and attribute +# ############################################################################## +TOOLTEST h5diff_540.txt -v compounds_array_vlen1.h5 compounds_array_vlen2.h5 + +# ############################################################################## +# # Test mutually exclusive options +# ############################################################################## +# +# Test with -d , -p and --use-system-epsilon. +TOOLTEST h5diff_640.txt -v -d 5 -p 0.05 --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_641.txt -v -d 5 -p 0.05 h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_642.txt -v -p 0.05 -d 5 h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_643.txt -v -d 5 --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_644.txt -v --use-system-epsilon -d 5 h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_645.txt -v -p 0.05 --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 +TOOLTEST h5diff_646.txt -v --use-system-epsilon -p 0.05 h5diff_basic1.h5 h5diff_basic2.h5 /g1/dset3 /g1/dset4 + + +# ############################################################################## +# # END +# ############################################################################## + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5diff/testh5diff.sh.chkexe b/build/tools/h5diff/testh5diff.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5diff/testh5diff.sh.chklog b/build/tools/h5diff/testh5diff.sh.chklog new file mode 100644 index 0000000..a20b4d2 --- /dev/null +++ b/build/tools/h5diff/testh5diff.sh.chklog @@ -0,0 +1,194 @@ +============================ +testh5diff.sh Test Log +============================ +Testing h5diff -h PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED +Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED +Testing h5diff --report --delta=5 h5diff_basic1.h5 h5diff_basic2.h5 g1 PASSED +Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset5 g PASSED +Testing h5diff --verbose --relative=0.02 h5diff_basic1.h5 h5diff_basic PASSED +Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset9 g PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp19 /g1/fp19_ PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp20 /g1/fp20_ PASSED +Testing h5diff -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset g1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset l1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset t1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l1 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g2 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t2 PASSED +Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l2 PASSED +Testing h5diff -v h5diff_enum_invalid_values.h5 h5diff_enum_invalid_va PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset0a dset0b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset1a dset1b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset2a dset2b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset3a dset4b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset4a dset4b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset5a dset5b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset6a dset6b PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset7a dset7b PASSED +Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 refreg PASSED +Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset11a dset11b PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string1 string1 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string2 string2 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string3 string3 PASSED +Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string4 string4 PASSED +Testing h5diff h5diff_basic1.h5 PASSED +Testing h5diff h5diff_basic1.h5 h5diff_basic1.h5 nono_obj PASSED +Testing h5diff -d -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -d 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -d u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -d 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 PASSED +Testing h5diff -d 200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -p 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -p 0.21 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/d PASSED +Testing h5diff -p 0.21 -p 0.22 h5diff_basic1.h5 h5diff_basic2.h5 g1/ds PASSED +Testing h5diff -p 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -p 0.005 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ PASSED +Testing h5diff -n -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED +Testing h5diff -n 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED +Testing h5diff -n 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -n 2 -n 3 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1 PASSED +Testing h5diff --count=200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 PASSED +Testing h5diff -n 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED +Testing h5diff -v -d 0.0001 h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff -v h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff --verbose=1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff --verbose=2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /ds PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /nt PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g2 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g3 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g4 PASSED +Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 PASSED +Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 PASSED +Testing h5diff -v h5diff_basic2.h5 h5diff_basic2.h5 PASSED +Testing h5diff -v h5diff_hyper1.h5 h5diff_hyper2.h5 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 PASSED +Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED +Testing h5diff h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset2 g2/dset3 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset3 g2/dset4 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset4 g2/dset5 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset5 g2/dset6 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset7 g2/dset8 PASSED +Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset8 g2/dset9 PASSED +Testing h5diff -c h5diff_dset_zero_dim_size1.h5 h5diff_dset_zero_dim_s PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g1 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g2 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 PASSED +Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /diffobjtype PASSED +Testing h5diff -c non_comparables2.h5 non_comparables1.h5 /diffobjtype PASSED +Testing h5diff -v h5diff_links.h5 h5diff_links.h5 /link_g1 /link_g2 PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_trg.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_softl PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_trg.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED +Testing h5diff --follow-symlinks -v h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_danglel PASSED +Testing h5diff --no-dangling-links h5diff_softlinks.h5 h5diff_softlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED +Testing h5diff --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglel PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED +Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / / PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / /grp PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1/ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp10 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED +Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED +Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED +Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED +Testing h5diff -v --exclude-path /group1/dset3 h5diff_exclude1-1.h5 h5 PASSED +Testing h5diff -v h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 PASSED +Testing h5diff -v --exclude-path /group1 --exclude-path /dset1 h5diff_ PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude2-1.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /dset3 h5diff_exclude1-1.h5 h5diff_ex PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude3-1.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /group1 h5diff_exclude3-2.h5 h5diff_e PASSED +Testing h5diff -v --exclude-path /group1/dset h5diff_exclude3-1.h5 h5d PASSED +Testing h5diff -v h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group PASSED +Testing h5diff -v --enable-error-stack h5diff_comp_vl_strs.h5 h5diff_c PASSED +Testing h5diff -v h5diff_attr3.h5 h5diff_attr2.h5 /g1 PASSED +Testing h5diff -v tvlstr.h5 tvlstr2.h5 PASSED +Testing h5diff -v compounds_array_vlen1.h5 compounds_array_vlen2.h5 PASSED +Testing h5diff -v -d 5 -p 0.05 --use-system-epsilon h5diff_basic1.h5 h PASSED +Testing h5diff -v -d 5 -p 0.05 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED +Testing h5diff -v -p 0.05 -d 5 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED +Testing h5diff -v -d 5 --use-system-epsilon h5diff_basic1.h5 h5diff_ba PASSED +Testing h5diff -v --use-system-epsilon -d 5 h5diff_basic1.h5 h5diff_ba PASSED +Testing h5diff -v -p 0.05 --use-system-epsilon h5diff_basic1.h5 h5diff PASSED +Testing h5diff -v --use-system-epsilon -p 0.05 h5diff_basic1.h5 h5diff PASSED +All h5diff tests passed. +6.66user 10.90system 0:15.69elapsed 111%CPU (0avgtext+0avgdata 73448maxresident)k +0inputs+27952outputs (0major+3294459minor)pagefaults 0swaps + +Finished testing testh5diff.sh +============================ diff --git a/build/tools/h5diff/testph5diff.sh b/build/tools/h5diff/testph5diff.sh new file mode 100644 index 0000000..4beb967 --- /dev/null +++ b/build/tools/h5diff/testph5diff.sh @@ -0,0 +1,62 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# + +srcdir=../../../tools/h5diff + +TESTNAME=ph5diff +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +TOOL=testh5diff.sh + +nerrors=0 + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Run a test. If a test fails then increment the `nerrors' global variable. +# +TOOLTEST() { + # Run test. + echo $TOOL "$@" + /bin/sh $TOOL "$@" + + # Check if the command failed and increment nerrors if so. + if test $? -ne 0 ; then + nerrors="`expr $nerrors + 1`" + fi +} + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## + +# Invoke the regular h5diff testing script, with the -p parameter to indicate +# that it should run the parallel version of the tests +TOOLTEST -p + +# no need to print any message since this is just a shell to invoke +# testh5diff.sh which has already printed the result. Just exit. +if test $nerrors -eq 0 ; then + exit $EXIT_SUCCESS +else + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5dump/.deps/binread.Po b/build/tools/h5dump/.deps/binread.Po new file mode 100644 index 0000000..0aff2fc --- /dev/null +++ b/build/tools/h5dump/.deps/binread.Po @@ -0,0 +1,88 @@ +binread.o: ../../../tools/h5dump/binread.c /usr/include/stdc-predef.h \ + /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h + +/usr/include/stdc-predef.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: diff --git a/build/tools/h5dump/.deps/dynlib_dump.Plo b/build/tools/h5dump/.deps/dynlib_dump.Plo new file mode 100644 index 0000000..f7b8ad1 --- /dev/null +++ b/build/tools/h5dump/.deps/dynlib_dump.Plo @@ -0,0 +1,201 @@ +dynlib_dump.lo: ../../../tools/h5dump/dynlib_dump.c \ + /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../src/H5PLextern.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5PLextern.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5dump/.deps/h5dump.Po b/build/tools/h5dump/.deps/h5dump.Po new file mode 100644 index 0000000..0aa1f12 --- /dev/null +++ b/build/tools/h5dump/.deps/h5dump.Po @@ -0,0 +1,378 @@ +h5dump.o: ../../../tools/h5dump/h5dump.c /usr/include/stdc-predef.h \ + ../../../tools/h5dump/h5dump.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5tools_ref.h ../../../tools/lib/h5trav.h \ + ../../../tools/h5dump/h5dump_defines.h \ + ../../../tools/h5dump/h5dump_ddl.h ../../../tools/h5dump/h5dump_xml.h + +/usr/include/stdc-predef.h: + +../../../tools/h5dump/h5dump.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../tools/lib/h5trav.h: + +../../../tools/h5dump/h5dump_defines.h: + +../../../tools/h5dump/h5dump_ddl.h: + +../../../tools/h5dump/h5dump_xml.h: diff --git a/build/tools/h5dump/.deps/h5dump_ddl.Po b/build/tools/h5dump/.deps/h5dump_ddl.Po new file mode 100644 index 0000000..6ff9986 --- /dev/null +++ b/build/tools/h5dump/.deps/h5dump_ddl.Po @@ -0,0 +1,382 @@ +h5dump_ddl.o: ../../../tools/h5dump/h5dump_ddl.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_dump.h \ + ../../../tools/lib/h5tools_utils.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5tools_ref.h ../../../tools/lib/h5trav.h \ + ../../../tools/h5dump/h5dump_extern.h \ + ../../../tools/h5dump/h5dump_defines.h \ + ../../../tools/h5dump/h5dump_ddl.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_dump.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../tools/lib/h5trav.h: + +../../../tools/h5dump/h5dump_extern.h: + +../../../tools/h5dump/h5dump_defines.h: + +../../../tools/h5dump/h5dump_ddl.h: diff --git a/build/tools/h5dump/.deps/h5dump_xml.Po b/build/tools/h5dump/.deps/h5dump_xml.Po new file mode 100644 index 0000000..6fa4a44 --- /dev/null +++ b/build/tools/h5dump/.deps/h5dump_xml.Po @@ -0,0 +1,382 @@ +h5dump_xml.o: ../../../tools/h5dump/h5dump_xml.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_dump.h \ + ../../../tools/lib/h5tools_utils.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5tools_ref.h ../../../tools/lib/h5trav.h \ + ../../../tools/h5dump/h5dump_extern.h \ + ../../../tools/h5dump/h5dump_defines.h \ + ../../../tools/h5dump/h5dump_xml.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_dump.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../tools/lib/h5trav.h: + +../../../tools/h5dump/h5dump_extern.h: + +../../../tools/h5dump/h5dump_defines.h: + +../../../tools/h5dump/h5dump_xml.h: diff --git a/build/tools/h5dump/.deps/h5dumpgentest.Po b/build/tools/h5dump/.deps/h5dumpgentest.Po new file mode 100644 index 0000000..4a8046d --- /dev/null +++ b/build/tools/h5dump/.deps/h5dumpgentest.Po @@ -0,0 +1,360 @@ +h5dumpgentest.o: ../../../tools/h5dump/h5dumpgentest.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h + +/usr/include/stdc-predef.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: diff --git a/build/tools/h5dump/.libs/binread b/build/tools/h5dump/.libs/binread new file mode 100755 index 0000000..985bb72 Binary files /dev/null and b/build/tools/h5dump/.libs/binread differ diff --git a/build/tools/h5dump/.libs/dynlib_dump.o b/build/tools/h5dump/.libs/dynlib_dump.o new file mode 100644 index 0000000..a607833 Binary files /dev/null and b/build/tools/h5dump/.libs/dynlib_dump.o differ diff --git a/build/tools/h5dump/.libs/h5dump b/build/tools/h5dump/.libs/h5dump new file mode 100755 index 0000000..4d7a04a Binary files /dev/null and b/build/tools/h5dump/.libs/h5dump differ diff --git a/build/tools/h5dump/.libs/h5dumpgentest b/build/tools/h5dump/.libs/h5dumpgentest new file mode 100755 index 0000000..766e976 Binary files /dev/null and b/build/tools/h5dump/.libs/h5dumpgentest differ diff --git a/build/tools/h5dump/.libs/libdynlibdump.la b/build/tools/h5dump/.libs/libdynlibdump.la new file mode 120000 index 0000000..ba6fcbc --- /dev/null +++ b/build/tools/h5dump/.libs/libdynlibdump.la @@ -0,0 +1 @@ +../libdynlibdump.la \ No newline at end of file diff --git a/build/tools/h5dump/.libs/libdynlibdump.lai b/build/tools/h5dump/.libs/libdynlibdump.lai new file mode 100644 index 0000000..8078bec --- /dev/null +++ b/build/tools/h5dump/.libs/libdynlibdump.lai @@ -0,0 +1,41 @@ +# libdynlibdump.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibdump.so' + +# Names of this library. +library_names='libdynlibdump.so libdynlibdump.so libdynlibdump.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibdump. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5dump/.libs/libdynlibdump.so b/build/tools/h5dump/.libs/libdynlibdump.so new file mode 100755 index 0000000..6d1a9af Binary files /dev/null and b/build/tools/h5dump/.libs/libdynlibdump.so differ diff --git a/build/tools/h5dump/.libs/lt-h5dump b/build/tools/h5dump/.libs/lt-h5dump new file mode 100755 index 0000000..ee8ab7b Binary files /dev/null and b/build/tools/h5dump/.libs/lt-h5dump differ diff --git a/build/tools/h5dump/.libs/lt-h5dumpgentest b/build/tools/h5dump/.libs/lt-h5dumpgentest new file mode 100755 index 0000000..d31afc4 Binary files /dev/null and b/build/tools/h5dump/.libs/lt-h5dumpgentest differ diff --git a/build/tools/h5dump/Makefile b/build/tools/h5dump/Makefile new file mode 100644 index 0000000..6479b55 --- /dev/null +++ b/build/tools/h5dump/Makefile @@ -0,0 +1,1526 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5dump/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/h5dump +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) binread$(EXEEXT) +am__append_1 = h5dump_plugin.sh +bin_PROGRAMS = h5dump$(EXEEXT) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/h5dump +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5dump_plugin.sh testh5dump.sh testh5dumppbits.sh \ + testh5dumpxml.sh +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libdynlibdump_la_LIBADD = +am__libdynlibdump_la_SOURCES_DIST = dynlib_dump.c +am_libdynlibdump_la_OBJECTS = dynlib_dump.lo +libdynlibdump_la_OBJECTS = $(am_libdynlibdump_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libdynlibdump_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libdynlibdump_la_LDFLAGS) $(LDFLAGS) \ + -o $@ +am_libdynlibdump_la_rpath = +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5dumpgentest$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +binread_SOURCES = binread.c +binread_OBJECTS = binread.$(OBJEXT) +binread_LDADD = $(LDADD) +binread_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +am_h5dump_OBJECTS = h5dump.$(OBJEXT) h5dump_ddl.$(OBJEXT) \ + h5dump_xml.$(OBJEXT) +h5dump_OBJECTS = $(am_h5dump_OBJECTS) +h5dump_LDADD = $(LDADD) +h5dump_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5dump_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5dump_LDFLAGS) $(LDFLAGS) -o $@ +h5dumpgentest_SOURCES = h5dumpgentest.c +h5dumpgentest_OBJECTS = h5dumpgentest.$(OBJEXT) +h5dumpgentest_LDADD = $(LDADD) +h5dumpgentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdynlibdump_la_SOURCES) binread.c $(h5dump_SOURCES) \ + h5dumpgentest.c +DIST_SOURCES = $(am__libdynlibdump_la_SOURCES_DIST) binread.c \ + $(h5dump_SOURCES) h5dumpgentest.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5dump_plugin.sh.in \ + $(srcdir)/testh5dump.sh.in $(srcdir)/testh5dumppbits.sh.in \ + $(srcdir)/testh5dumpxml.sh.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include files in /src directory and /tools/lib directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5dump +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5dump +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +# Temporary files. *.h5 are generated by h5dumpgentest. They should +# copied to the testfiles/ directory if update is required. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.bin + +# Test programs and scripts +TEST_PROG = h5dumpgentest +TEST_SCRIPT = testh5dump.sh testh5dumppbits.sh testh5dumpxml.sh \ + $(am__append_1) +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5dump$(EXEEXT) + +# Add h5dump specific linker flags here +h5dump_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# All the programs depend on the hdf5 and h5tools libraries +LDADD = $(LIBH5TOOLS) $(LIBHDF5) + +# Source files for the program +h5dump_SOURCES = h5dump.c h5dump_ddl.c h5dump_xml.c +noinst_LTLIBRARIES = libdynlibdump.la +libdynlibdump_la_SOURCES = dynlib_dump.c +libdynlibdump_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +DISTCLEANFILES = testh5dump.sh testh5dumppbits.sh testh5dumpxml.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5dump/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5dump/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5dump_plugin.sh: $(top_builddir)/config.status $(srcdir)/h5dump_plugin.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5dump.sh: $(top_builddir)/config.status $(srcdir)/testh5dump.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5dumppbits.sh: $(top_builddir)/config.status $(srcdir)/testh5dumppbits.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5dumpxml.sh: $(top_builddir)/config.status $(srcdir)/testh5dumpxml.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +#libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD) $(LIBS) + +#libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD) $(LIBS) +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +binread$(EXEEXT): $(binread_OBJECTS) $(binread_DEPENDENCIES) $(EXTRA_binread_DEPENDENCIES) + @rm -f binread$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(binread_OBJECTS) $(binread_LDADD) $(LIBS) + +h5dump$(EXEEXT): $(h5dump_OBJECTS) $(h5dump_DEPENDENCIES) $(EXTRA_h5dump_DEPENDENCIES) + @rm -f h5dump$(EXEEXT) + $(AM_V_CCLD)$(h5dump_LINK) $(h5dump_OBJECTS) $(h5dump_LDADD) $(LIBS) + +h5dumpgentest$(EXEEXT): $(h5dumpgentest_OBJECTS) $(h5dumpgentest_DEPENDENCIES) $(EXTRA_h5dumpgentest_DEPENDENCIES) + @rm -f h5dumpgentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5dumpgentest_OBJECTS) $(h5dumpgentest_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/binread.Po +include ./$(DEPDIR)/dynlib_dump.Plo +include ./$(DEPDIR)/h5dump.Po +include ./$(DEPDIR)/h5dump_ddl.Po +include ./$(DEPDIR)/h5dump_xml.Po +include ./$(DEPDIR)/h5dumpgentest.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5dumpgentest.log: h5dumpgentest$(EXEEXT) + @p='h5dumpgentest$(EXEEXT)'; \ + b='h5dumpgentest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + + # Build it as shared library if configure is enabled for shared library. + +libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD) +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5dump/binread b/build/tools/h5dump/binread new file mode 100755 index 0000000..4989421 --- /dev/null +++ b/build/tools/h5dump/binread @@ -0,0 +1,228 @@ +#! /bin/sh + +# binread - temporary wrapper script for .libs/binread +# Generated by libtool (GNU libtool) 2.4.6 +# +# The binread program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file binread.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "binread:binread:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "binread:binread:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "binread:binread:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'binread' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5dump/binread.o b/build/tools/h5dump/binread.o new file mode 100644 index 0000000..9d07072 Binary files /dev/null and b/build/tools/h5dump/binread.o differ diff --git a/build/tools/h5dump/charsets.h5 b/build/tools/h5dump/charsets.h5 new file mode 100644 index 0000000..934affb Binary files /dev/null and b/build/tools/h5dump/charsets.h5 differ diff --git a/build/tools/h5dump/dynlib_dump.lo b/build/tools/h5dump/dynlib_dump.lo new file mode 100644 index 0000000..9ba2624 --- /dev/null +++ b/build/tools/h5dump/dynlib_dump.lo @@ -0,0 +1,12 @@ +# dynlib_dump.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib_dump.o' + +# Name of the non-PIC object +non_pic_object='dynlib_dump.o' + diff --git a/build/tools/h5dump/dynlib_dump.o b/build/tools/h5dump/dynlib_dump.o new file mode 100644 index 0000000..a98a319 Binary files /dev/null and b/build/tools/h5dump/dynlib_dump.o differ diff --git a/build/tools/h5dump/h5dump b/build/tools/h5dump/h5dump new file mode 100755 index 0000000..b0ebe3a --- /dev/null +++ b/build/tools/h5dump/h5dump @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5dump - temporary wrapper script for .libs/h5dump +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5dump program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5dump.o h5dump_ddl.o h5dump_xml.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5dump:h5dump:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5dump:h5dump:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5dump:h5dump:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5dump' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5dump/h5dump.o b/build/tools/h5dump/h5dump.o new file mode 100644 index 0000000..b27499c Binary files /dev/null and b/build/tools/h5dump/h5dump.o differ diff --git a/build/tools/h5dump/h5dump_ddl.o b/build/tools/h5dump/h5dump_ddl.o new file mode 100644 index 0000000..db59d37 Binary files /dev/null and b/build/tools/h5dump/h5dump_ddl.o differ diff --git a/build/tools/h5dump/h5dump_plugin.sh b/build/tools/h5dump/h5dump_plugin.sh new file mode 100644 index 0000000..bdf30bb --- /dev/null +++ b/build/tools/h5dump/h5dump_plugin.sh @@ -0,0 +1,226 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +srcdir=../../../tools/h5dump +TOP_BUILDDIR=../.. + +# Determine backward compatibility options enabled +DEPRECATED_SYMBOLS="yes" + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=h5dump # The tool name +DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes + +TEST_NAME=h5dump_ud_plugin +FROM_DIR=`pwd`/.libs +PLUGIN_LIB="$FROM_DIR/libdynlibdump.*" +PLUGIN_LIBDIR=testdir3 + +RM='rm -rf' +GREP='grep' +CMP='cmp' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# source dirs +SRC_TOOLS="$srcdir/../" + +# testfiles source dirs for tools +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" + +TESTDIR=./testplug +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5DUMP_TESTFILES/tudfilter.h5 +$SRC_H5DUMP_TESTFILES/tudfilter.ddl +" + +# RUNSERIAL is used. Check if it can return exit code from executable correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell correctly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# Main Body +# Create test directories if not exists yet. +test -d $PLUGIN_LIBDIR || mkdir -p $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR)" + exit $EXIT_FAILURE +fi + +# copy plugin library for test +$CP $PLUGIN_LIB $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB) for test." + exit $EXIT_FAILURE +fi + +# setup plugin path +ENVCMD="env HDF5_PLUGIN_PATH=../${PLUGIN_LIBDIR}" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DUMP_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# If $1 == ignorecase then do caseless CMP and DIFF. +# ADD_H5_TEST +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $ENVCMD $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual > /dev/null 2>&1 ; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext + fi + +} + +############################################################################## +### T H E T E S T S +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Run the test +TOOLTEST tudfilter.ddl --enable-error-stack tudfilter.h5 + +# print results +if test $nerrors -ne 0 ; then + echo "$nerrors errors encountered" + exit_code=$EXIT_FAILURE +else + echo "All Plugin API tests passed." + exit_code=$EXIT_SUCCESS +fi + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Clean up temporary files/directories and leave +$RM $PLUGIN_LIBDIR + +exit $exit_code diff --git a/build/tools/h5dump/h5dump_plugin.sh.chkexe b/build/tools/h5dump/h5dump_plugin.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/h5dump_plugin.sh.chklog b/build/tools/h5dump/h5dump_plugin.sh.chklog new file mode 100644 index 0000000..f453b27 --- /dev/null +++ b/build/tools/h5dump/h5dump_plugin.sh.chklog @@ -0,0 +1,10 @@ +============================ +h5dump_plugin.sh Test Log +============================ +Testing h5dump --enable-error-stack tudfilter.h5 PASSED +All Plugin API tests passed. +0.08user 0.08system 0:00.20elapsed 83%CPU (0avgtext+0avgdata 7536maxresident)k +0inputs+928outputs (0major+28146minor)pagefaults 0swaps + +Finished testing h5dump_plugin.sh +============================ diff --git a/build/tools/h5dump/h5dump_xml.o b/build/tools/h5dump/h5dump_xml.o new file mode 100644 index 0000000..117cc09 Binary files /dev/null and b/build/tools/h5dump/h5dump_xml.o differ diff --git a/build/tools/h5dump/h5dumpgentest b/build/tools/h5dump/h5dumpgentest new file mode 100755 index 0000000..3847ea9 --- /dev/null +++ b/build/tools/h5dump/h5dumpgentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5dumpgentest - temporary wrapper script for .libs/h5dumpgentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5dumpgentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5dumpgentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5dumpgentest:h5dumpgentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5dumpgentest:h5dumpgentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5dumpgentest:h5dumpgentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5dumpgentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5dump/h5dumpgentest.chkexe b/build/tools/h5dump/h5dumpgentest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/h5dumpgentest.chklog b/build/tools/h5dump/h5dumpgentest.chklog new file mode 100644 index 0000000..819f474 --- /dev/null +++ b/build/tools/h5dump/h5dumpgentest.chklog @@ -0,0 +1,8 @@ +============================ + h5dumpgentest Test Log +============================ +0.20user 0.06system 0:00.53elapsed 49%CPU (0avgtext+0avgdata 14756maxresident)k +0inputs+20824outputs (0major+11539minor)pagefaults 0swaps + +Finished testing h5dumpgentest +============================ diff --git a/build/tools/h5dump/h5dumpgentest.o b/build/tools/h5dump/h5dumpgentest.o new file mode 100644 index 0000000..499d085 Binary files /dev/null and b/build/tools/h5dump/h5dumpgentest.o differ diff --git a/build/tools/h5dump/libdynlibdump.la b/build/tools/h5dump/libdynlibdump.la new file mode 100644 index 0000000..cf7f207 --- /dev/null +++ b/build/tools/h5dump/libdynlibdump.la @@ -0,0 +1,41 @@ +# libdynlibdump.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibdump.so' + +# Names of this library. +library_names='libdynlibdump.so libdynlibdump.so libdynlibdump.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibdump. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5dump/packedbits.h5 b/build/tools/h5dump/packedbits.h5 new file mode 100644 index 0000000..b987b27 Binary files /dev/null and b/build/tools/h5dump/packedbits.h5 differ diff --git a/build/tools/h5dump/taindices.h5 b/build/tools/h5dump/taindices.h5 new file mode 100644 index 0000000..5b804d2 Binary files /dev/null and b/build/tools/h5dump/taindices.h5 differ diff --git a/build/tools/h5dump/tall.h5 b/build/tools/h5dump/tall.h5 new file mode 100644 index 0000000..cfb919f Binary files /dev/null and b/build/tools/h5dump/tall.h5 differ diff --git a/build/tools/h5dump/tarray1.h5 b/build/tools/h5dump/tarray1.h5 new file mode 100644 index 0000000..1eef459 Binary files /dev/null and b/build/tools/h5dump/tarray1.h5 differ diff --git a/build/tools/h5dump/tarray1_big.h5 b/build/tools/h5dump/tarray1_big.h5 new file mode 100644 index 0000000..967b87a Binary files /dev/null and b/build/tools/h5dump/tarray1_big.h5 differ diff --git a/build/tools/h5dump/tarray2.h5 b/build/tools/h5dump/tarray2.h5 new file mode 100644 index 0000000..8f55ee6 Binary files /dev/null and b/build/tools/h5dump/tarray2.h5 differ diff --git a/build/tools/h5dump/tarray3.h5 b/build/tools/h5dump/tarray3.h5 new file mode 100644 index 0000000..ba57b59 Binary files /dev/null and b/build/tools/h5dump/tarray3.h5 differ diff --git a/build/tools/h5dump/tarray4.h5 b/build/tools/h5dump/tarray4.h5 new file mode 100644 index 0000000..875b98d Binary files /dev/null and b/build/tools/h5dump/tarray4.h5 differ diff --git a/build/tools/h5dump/tarray5.h5 b/build/tools/h5dump/tarray5.h5 new file mode 100644 index 0000000..fabd9cf Binary files /dev/null and b/build/tools/h5dump/tarray5.h5 differ diff --git a/build/tools/h5dump/tarray6.h5 b/build/tools/h5dump/tarray6.h5 new file mode 100644 index 0000000..7f10a3a Binary files /dev/null and b/build/tools/h5dump/tarray6.h5 differ diff --git a/build/tools/h5dump/tarray7.h5 b/build/tools/h5dump/tarray7.h5 new file mode 100644 index 0000000..891cf28 Binary files /dev/null and b/build/tools/h5dump/tarray7.h5 differ diff --git a/build/tools/h5dump/tarray8.h5 b/build/tools/h5dump/tarray8.h5 new file mode 100644 index 0000000..aeef3ea Binary files /dev/null and b/build/tools/h5dump/tarray8.h5 differ diff --git a/build/tools/h5dump/tattr.h5 b/build/tools/h5dump/tattr.h5 new file mode 100644 index 0000000..e33eae2 Binary files /dev/null and b/build/tools/h5dump/tattr.h5 differ diff --git a/build/tools/h5dump/tattr2.h5 b/build/tools/h5dump/tattr2.h5 new file mode 100644 index 0000000..309d087 Binary files /dev/null and b/build/tools/h5dump/tattr2.h5 differ diff --git a/build/tools/h5dump/tattrintsize.h5 b/build/tools/h5dump/tattrintsize.h5 new file mode 100644 index 0000000..cf6b6d7 Binary files /dev/null and b/build/tools/h5dump/tattrintsize.h5 differ diff --git a/build/tools/h5dump/tbigdims.h5 b/build/tools/h5dump/tbigdims.h5 new file mode 100644 index 0000000..9de986b Binary files /dev/null and b/build/tools/h5dump/tbigdims.h5 differ diff --git a/build/tools/h5dump/tbinary.h5 b/build/tools/h5dump/tbinary.h5 new file mode 100644 index 0000000..a953e45 Binary files /dev/null and b/build/tools/h5dump/tbinary.h5 differ diff --git a/build/tools/h5dump/tbitfields.h5 b/build/tools/h5dump/tbitfields.h5 new file mode 100644 index 0000000..3c127bc Binary files /dev/null and b/build/tools/h5dump/tbitfields.h5 differ diff --git a/build/tools/h5dump/tbitnopaque.h5 b/build/tools/h5dump/tbitnopaque.h5 new file mode 100644 index 0000000..9624e83 Binary files /dev/null and b/build/tools/h5dump/tbitnopaque.h5 differ diff --git a/build/tools/h5dump/tchar.h5 b/build/tools/h5dump/tchar.h5 new file mode 100644 index 0000000..fda7df9 Binary files /dev/null and b/build/tools/h5dump/tchar.h5 differ diff --git a/build/tools/h5dump/tcmpdattrintsize.h5 b/build/tools/h5dump/tcmpdattrintsize.h5 new file mode 100644 index 0000000..3503156 Binary files /dev/null and b/build/tools/h5dump/tcmpdattrintsize.h5 differ diff --git a/build/tools/h5dump/tcmpdintarray.h5 b/build/tools/h5dump/tcmpdintarray.h5 new file mode 100644 index 0000000..f0aac55 Binary files /dev/null and b/build/tools/h5dump/tcmpdintarray.h5 differ diff --git a/build/tools/h5dump/tcmpdints.h5 b/build/tools/h5dump/tcmpdints.h5 new file mode 100644 index 0000000..7417e0d Binary files /dev/null and b/build/tools/h5dump/tcmpdints.h5 differ diff --git a/build/tools/h5dump/tcmpdintsize.h5 b/build/tools/h5dump/tcmpdintsize.h5 new file mode 100644 index 0000000..8268cd5 Binary files /dev/null and b/build/tools/h5dump/tcmpdintsize.h5 differ diff --git a/build/tools/h5dump/tcompound.h5 b/build/tools/h5dump/tcompound.h5 new file mode 100644 index 0000000..e835506 Binary files /dev/null and b/build/tools/h5dump/tcompound.h5 differ diff --git a/build/tools/h5dump/tcompound2.h5 b/build/tools/h5dump/tcompound2.h5 new file mode 100644 index 0000000..332cc60 Binary files /dev/null and b/build/tools/h5dump/tcompound2.h5 differ diff --git a/build/tools/h5dump/tcompound_complex.h5 b/build/tools/h5dump/tcompound_complex.h5 new file mode 100644 index 0000000..077f886 Binary files /dev/null and b/build/tools/h5dump/tcompound_complex.h5 differ diff --git a/build/tools/h5dump/tcompound_complex2.h5 b/build/tools/h5dump/tcompound_complex2.h5 new file mode 100644 index 0000000..3c9890a Binary files /dev/null and b/build/tools/h5dump/tcompound_complex2.h5 differ diff --git a/build/tools/h5dump/tdatareg.h5 b/build/tools/h5dump/tdatareg.h5 new file mode 100644 index 0000000..6e19986 Binary files /dev/null and b/build/tools/h5dump/tdatareg.h5 differ diff --git a/build/tools/h5dump/tdset.h5 b/build/tools/h5dump/tdset.h5 new file mode 100644 index 0000000..74e2c90 Binary files /dev/null and b/build/tools/h5dump/tdset.h5 differ diff --git a/build/tools/h5dump/tdset2.h5 b/build/tools/h5dump/tdset2.h5 new file mode 100644 index 0000000..df9f9f0 Binary files /dev/null and b/build/tools/h5dump/tdset2.h5 differ diff --git a/build/tools/h5dump/tempty.h5 b/build/tools/h5dump/tempty.h5 new file mode 100644 index 0000000..e6cdcbd Binary files /dev/null and b/build/tools/h5dump/tempty.h5 differ diff --git a/build/tools/h5dump/tenum.h5 b/build/tools/h5dump/tenum.h5 new file mode 100644 index 0000000..da4c6b7 Binary files /dev/null and b/build/tools/h5dump/tenum.h5 differ diff --git a/build/tools/h5dump/testh5dump.sh b/build/tools/h5dump/testh5dump.sh new file mode 100644 index 0000000..e87f025 --- /dev/null +++ b/build/tools/h5dump/testh5dump.sh @@ -0,0 +1,1374 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5dump tool + +srcdir=../../../tools/h5dump + +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5dump +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=h5dump # The tool name +DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary + +H5DIFF=../h5diff/h5diff # The h5diff tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary + +H5IMPORT=../h5import/h5import # The h5import tool name +H5IMPORT_BIN=`pwd`/$H5IMPORT # The path of the h5import tool binary + +RM='rm -rf' +CMP='cmp' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# Skip plugin module to test missing filter +ENVCMD="env HDF5_PLUGIN_PRELOAD=::" + +WORDS_BIGENDIAN="no" + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/../" + +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_ERRORFILES="$srcdir/errfiles" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TEST_P_DIR=./testfiles +TESTDIR=./testfiles/std +test -d $TEST_P_DIR || mkdir -p $TEST_P_DIR +test -d $TESTDIR || mkdir -p $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5DUMP_TESTFILES/charsets.h5 +$SRC_H5DUMP_TESTFILES/filter_fail.h5 +$SRC_H5DUMP_TESTFILES/packedbits.h5 +$SRC_H5DUMP_TESTFILES/taindices.h5 +$SRC_H5DUMP_TESTFILES/tall.h5 +$SRC_H5DUMP_TESTFILES/tarray1.h5 +$SRC_H5DUMP_TESTFILES/tarray1_big.h5 +$SRC_H5DUMP_TESTFILES/tarray2.h5 +$SRC_H5DUMP_TESTFILES/tarray3.h5 +$SRC_H5DUMP_TESTFILES/tarray4.h5 +$SRC_H5DUMP_TESTFILES/tarray5.h5 +$SRC_H5DUMP_TESTFILES/tarray6.h5 +$SRC_H5DUMP_TESTFILES/tarray7.h5 +$SRC_H5DUMP_TESTFILES/tarray8.h5 +$SRC_H5DUMP_TESTFILES/tattr.h5 +$SRC_H5DUMP_TESTFILES/tattr2.h5 +$SRC_H5DUMP_TESTFILES/tattr4_be.h5 +$SRC_H5DUMP_TESTFILES/tattrintsize.h5 +$SRC_H5DUMP_TESTFILES/tattrreg.h5 +$SRC_H5DUMP_TESTFILES/tbigdims.h5 +$SRC_H5DUMP_TESTFILES/tbinary.h5 +$SRC_H5DUMP_TESTFILES/tbitnopaque.h5 +$SRC_H5DUMP_TESTFILES/tchar.h5 +$SRC_H5DUMP_TESTFILES/tcmpdattrintsize.h5 +$SRC_H5DUMP_TESTFILES/tcmpdintsize.h5 +$SRC_H5DUMP_TESTFILES/tcompound.h5 +$SRC_H5DUMP_TESTFILES/tcompound_complex.h5 +$SRC_H5DUMP_TESTFILES/tcompound_complex2.h5 +$SRC_H5DUMP_TESTFILES/tdatareg.h5 +$SRC_H5DUMP_TESTFILES/tdset.h5 +$SRC_H5DUMP_TESTFILES/tempty.h5 +$SRC_H5DUMP_TESTFILES/tsoftlinks.h5 +$SRC_H5DUMP_TESTFILES/textlinkfar.h5 +$SRC_H5DUMP_TESTFILES/textlinksrc.h5 +$SRC_H5DUMP_TESTFILES/textlinktar.h5 +$SRC_H5DUMP_TESTFILES/textlink.h5 +$SRC_H5DUMP_TESTFILES/tfamily00000.h5 +$SRC_H5DUMP_TESTFILES/tfamily00001.h5 +$SRC_H5DUMP_TESTFILES/tfamily00002.h5 +$SRC_H5DUMP_TESTFILES/tfamily00003.h5 +$SRC_H5DUMP_TESTFILES/tfamily00004.h5 +$SRC_H5DUMP_TESTFILES/tfamily00005.h5 +$SRC_H5DUMP_TESTFILES/tfamily00006.h5 +$SRC_H5DUMP_TESTFILES/tfamily00007.h5 +$SRC_H5DUMP_TESTFILES/tfamily00008.h5 +$SRC_H5DUMP_TESTFILES/tfamily00009.h5 +$SRC_H5DUMP_TESTFILES/tfamily00010.h5 +$SRC_H5DUMP_TESTFILES/tfcontents1.h5 +$SRC_H5DUMP_TESTFILES/tfcontents2.h5 +$SRC_H5DUMP_TESTFILES/tfilters.h5 +$SRC_H5DUMP_TESTFILES/tfpformat.h5 +$SRC_H5DUMP_TESTFILES/tfvalues.h5 +$SRC_H5DUMP_TESTFILES/tgroup.h5 +$SRC_H5DUMP_TESTFILES/tgrp_comments.h5 +$SRC_H5DUMP_TESTFILES/tgrpnullspace.h5 +$SRC_H5DUMP_TESTFILES/thlink.h5 +$SRC_H5DUMP_TESTFILES/thyperslab.h5 +$SRC_H5DUMP_TESTFILES/tintsattrs.h5 +$SRC_H5DUMP_TESTFILES/tints4dims.h5 +$SRC_H5DUMP_TESTFILES/tlarge_objname.h5 +#$SRC_H5DUMP_TESTFILES/tldouble.h5 +$SRC_H5DUMP_TESTFILES/tlonglinks.h5 +$SRC_H5DUMP_TESTFILES/tloop.h5 +$SRC_H5DUMP_TESTFILES/tmulti-b.h5 +$SRC_H5DUMP_TESTFILES/tmulti-g.h5 +$SRC_H5DUMP_TESTFILES/tmulti-l.h5 +$SRC_H5DUMP_TESTFILES/tmulti-o.h5 +$SRC_H5DUMP_TESTFILES/tmulti-r.h5 +$SRC_H5DUMP_TESTFILES/tmulti-s.h5 +$SRC_H5DUMP_TESTFILES/tnamed_dtype_attr.h5 +$SRC_H5DUMP_TESTFILES/tnestedcomp.h5 +$SRC_H5DUMP_TESTFILES/tnestedcmpddt.h5 +$SRC_H5DUMP_TESTFILES/tno-subset.h5 +$SRC_H5DUMP_TESTFILES/tnullspace.h5 +$SRC_H5DUMP_TESTFILES/zerodim.h5 +$SRC_H5DUMP_TESTFILES/torderattr.h5 +$SRC_H5DUMP_TESTFILES/tordergr.h5 +$SRC_H5DUMP_TESTFILES/tsaf.h5 +$SRC_H5DUMP_TESTFILES/tscalarattrintsize.h5 +$SRC_H5DUMP_TESTFILES/tscalarintattrsize.h5 +$SRC_H5DUMP_TESTFILES/tscalarintsize.h5 +$SRC_H5DUMP_TESTFILES/tscalarstring.h5 +$SRC_H5DUMP_TESTFILES/tslink.h5 +$SRC_H5DUMP_TESTFILES/tsplit_file-m.h5 +$SRC_H5DUMP_TESTFILES/tsplit_file-r.h5 +$SRC_H5DUMP_TESTFILES/tstr.h5 +$SRC_H5DUMP_TESTFILES/tstr2.h5 +$SRC_H5DUMP_TESTFILES/tstr3.h5 +$SRC_H5DUMP_TESTFILES/tudlink.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes1.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes2.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes3.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes4.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes5.h5 +$SRC_H5DUMP_TESTFILES/tvlenstr_array.h5 +$SRC_H5DUMP_TESTFILES/tvlstr.h5 +$SRC_H5DUMP_TESTFILES/tvms.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5DUMP_TESTFILES/charsets.ddl +$SRC_H5DUMP_TESTFILES/filter_fail.ddl +$SRC_H5DUMP_TESTFILES/non_existing.ddl +$SRC_H5DUMP_TESTFILES/packedbits.ddl +$SRC_H5DUMP_TESTFILES/tall-1.ddl +$SRC_H5DUMP_TESTFILES/tall-2.ddl +$SRC_H5DUMP_TESTFILES/tall-2A.ddl +$SRC_H5DUMP_TESTFILES/tall-2A0.ddl +$SRC_H5DUMP_TESTFILES/tall-2B.ddl +$SRC_H5DUMP_TESTFILES/tall-3.ddl +$SRC_H5DUMP_TESTFILES/tall-4s.ddl +$SRC_H5DUMP_TESTFILES/tall-5s.ddl +$SRC_H5DUMP_TESTFILES/tall-6.ddl +$SRC_H5DUMP_TESTFILES/tall-6.exp +$SRC_H5DUMP_TESTFILES/tall-7.ddl +$SRC_H5DUMP_TESTFILES/tall-7N.ddl +$SRC_H5DUMP_TESTFILES/tallfilters.ddl +$SRC_H5DUMP_TESTFILES/tarray1.ddl +$SRC_H5DUMP_TESTFILES/tarray1_big.ddl +$SRC_H5DUMP_TESTFILES/tarray2.ddl +$SRC_H5DUMP_TESTFILES/tarray3.ddl +$SRC_H5DUMP_TESTFILES/tarray4.ddl +$SRC_H5DUMP_TESTFILES/tarray5.ddl +$SRC_H5DUMP_TESTFILES/tarray6.ddl +$SRC_H5DUMP_TESTFILES/tarray7.ddl +$SRC_H5DUMP_TESTFILES/tarray8.ddl +$SRC_H5DUMP_TESTFILES/tattr-1.ddl +$SRC_H5DUMP_TESTFILES/tattr-2.ddl +$SRC_H5DUMP_TESTFILES/tattr-3.ddl +$SRC_H5DUMP_TESTFILES/tattr-4_be.ddl +$SRC_H5DUMP_TESTFILES/tattrcontents1.ddl +$SRC_H5DUMP_TESTFILES/tattrcontents2.ddl +$SRC_H5DUMP_TESTFILES/tattrintsize.ddl +$SRC_H5DUMP_TESTFILES/tattrreg.ddl +$SRC_H5DUMP_TESTFILES/tattrregR.ddl +$SRC_H5DUMP_TESTFILES/tbin1.ddl +$SRC_H5DUMP_TESTFILES/tbin1.ddl +$SRC_H5DUMP_TESTFILES/tbin2.ddl +$SRC_H5DUMP_TESTFILES/tbin3.ddl +$SRC_H5DUMP_TESTFILES/tbin4.ddl +$SRC_H5DUMP_TESTFILES/tbinregR.ddl +$SRC_H5DUMP_TESTFILES/tbigdims.ddl +$SRC_H5DUMP_TESTFILES/tbitnopaque_be.ddl +$SRC_H5DUMP_TESTFILES/tbitnopaque_le.ddl +$SRC_H5DUMP_TESTFILES/tboot1.ddl +$SRC_H5DUMP_TESTFILES/tboot2.ddl +$SRC_H5DUMP_TESTFILES/tboot2A.ddl +$SRC_H5DUMP_TESTFILES/tboot2B.ddl +$SRC_H5DUMP_TESTFILES/tchar1.ddl +$SRC_H5DUMP_TESTFILES/tchunked.ddl +$SRC_H5DUMP_TESTFILES/tcmpdattrintsize.ddl +$SRC_H5DUMP_TESTFILES/tcmpdintsize.ddl +$SRC_H5DUMP_TESTFILES/tcomp-1.ddl +$SRC_H5DUMP_TESTFILES/tcomp-2.ddl +$SRC_H5DUMP_TESTFILES/tcomp-3.ddl +$SRC_H5DUMP_TESTFILES/tcomp-4.ddl +$SRC_H5DUMP_TESTFILES/tcompound_complex2.ddl +$SRC_H5DUMP_TESTFILES/tcompact.ddl +$SRC_H5DUMP_TESTFILES/tcontents.ddl +$SRC_H5DUMP_TESTFILES/tcontiguos.ddl +$SRC_H5DUMP_TESTFILES/tdatareg.ddl +$SRC_H5DUMP_TESTFILES/tdataregR.ddl +$SRC_H5DUMP_TESTFILES/tdeflate.ddl +$SRC_H5DUMP_TESTFILES/tdset-1.ddl +$SRC_H5DUMP_TESTFILES/tdset-2.ddl +$SRC_H5DUMP_TESTFILES/tdset-3s.ddl +$SRC_H5DUMP_TESTFILES/tempty.ddl +$SRC_H5DUMP_TESTFILES/texceedsubstart.ddl +$SRC_H5DUMP_TESTFILES/texceedsubcount.ddl +$SRC_H5DUMP_TESTFILES/texceedsubstride.ddl +$SRC_H5DUMP_TESTFILES/texceedsubblock.ddl +$SRC_H5DUMP_TESTFILES/texternal.ddl +$SRC_H5DUMP_TESTFILES/textlinksrc.ddl +$SRC_H5DUMP_TESTFILES/textlinkfar.ddl +$SRC_H5DUMP_TESTFILES/textlink.ddl +$SRC_H5DUMP_TESTFILES/tfamily.ddl +$SRC_H5DUMP_TESTFILES/tfill.ddl +$SRC_H5DUMP_TESTFILES/tfletcher32.ddl +$SRC_H5DUMP_TESTFILES/tfpformat.ddl +$SRC_H5DUMP_TESTFILES/tgroup-1.ddl +$SRC_H5DUMP_TESTFILES/tgroup-2.ddl +$SRC_H5DUMP_TESTFILES/tgrp_comments.ddl +$SRC_H5DUMP_TESTFILES/tgrpnullspace.ddl +$SRC_H5DUMP_TESTFILES/thlink-1.ddl +$SRC_H5DUMP_TESTFILES/thlink-2.ddl +$SRC_H5DUMP_TESTFILES/thlink-3.ddl +$SRC_H5DUMP_TESTFILES/thlink-4.ddl +$SRC_H5DUMP_TESTFILES/thlink-5.ddl +$SRC_H5DUMP_TESTFILES/thyperslab.ddl +$SRC_H5DUMP_TESTFILES/tindicesno.ddl +$SRC_H5DUMP_TESTFILES/tindicessub1.ddl +$SRC_H5DUMP_TESTFILES/tindicessub2.ddl +$SRC_H5DUMP_TESTFILES/tindicessub3.ddl +$SRC_H5DUMP_TESTFILES/tindicessub4.ddl +$SRC_H5DUMP_TESTFILES/tindicesyes.ddl +$SRC_H5DUMP_TESTFILES/tints4dims.ddl +$SRC_H5DUMP_TESTFILES/tints4dimsBlock2.ddl +$SRC_H5DUMP_TESTFILES/tints4dimsBlockEq.ddl +$SRC_H5DUMP_TESTFILES/tints4dimsCount2.ddl +$SRC_H5DUMP_TESTFILES/tints4dimsCountEq.ddl +$SRC_H5DUMP_TESTFILES/tints4dimsStride2.ddl +$SRC_H5DUMP_TESTFILES/tintsattrs.ddl +$SRC_H5DUMP_TESTFILES/tlarge_objname.ddl +#$SRC_H5DUMP_TESTFILES/tldouble.ddl +$SRC_H5DUMP_TESTFILES/tlonglinks.ddl +$SRC_H5DUMP_TESTFILES/tloop-1.ddl +$SRC_H5DUMP_TESTFILES/tmulti.ddl +$SRC_H5DUMP_TESTFILES/tmultifile.ddl +$SRC_H5DUMP_TESTFILES/tqmarkfile.ddl +$SRC_H5DUMP_TESTFILES/tstarfile.ddl +$SRC_H5DUMP_TESTFILES/tnamed_dtype_attr.ddl +$SRC_H5DUMP_TESTFILES/tnestcomp-1.ddl +$SRC_H5DUMP_TESTFILES/tnestedcmpddt.ddl +$SRC_H5DUMP_TESTFILES/tnbit.ddl +$SRC_H5DUMP_TESTFILES/tnoattrdata.ddl +$SRC_H5DUMP_TESTFILES/tnoattrddl.ddl +$SRC_H5DUMP_TESTFILES/tnodata.ddl +$SRC_H5DUMP_TESTFILES/tnoddl.ddl +$SRC_H5DUMP_TESTFILES/tnoddlfile.ddl +$SRC_H5DUMP_TESTFILES/tnoddlfile.exp +$SRC_H5DUMP_TESTFILES/tno-subset.ddl +$SRC_H5DUMP_TESTFILES/tnullspace.ddl +$SRC_H5DUMP_TESTFILES/trawdatafile.ddl +$SRC_H5DUMP_TESTFILES/trawdatafile.exp +$SRC_H5DUMP_TESTFILES/trawssetfile.ddl +$SRC_H5DUMP_TESTFILES/trawssetfile.exp +$SRC_H5DUMP_TESTFILES/zerodim.ddl +$SRC_H5DUMP_TESTFILES/tordergr1.ddl +$SRC_H5DUMP_TESTFILES/tordergr2.ddl +$SRC_H5DUMP_TESTFILES/tordergr3.ddl +$SRC_H5DUMP_TESTFILES/tordergr4.ddl +$SRC_H5DUMP_TESTFILES/tordergr5.ddl +$SRC_H5DUMP_TESTFILES/torderattr1.ddl +$SRC_H5DUMP_TESTFILES/torderattr2.ddl +$SRC_H5DUMP_TESTFILES/torderattr3.ddl +$SRC_H5DUMP_TESTFILES/torderattr4.ddl +$SRC_H5DUMP_TESTFILES/tordercontents1.ddl +$SRC_H5DUMP_TESTFILES/tordercontents2.ddl +$SRC_H5DUMP_TESTFILES/torderlinks1.ddl +$SRC_H5DUMP_TESTFILES/torderlinks2.ddl +$SRC_H5DUMP_TESTFILES/tperror.ddl +$SRC_H5DUMP_TESTFILES/treadfilter.ddl +$SRC_H5DUMP_TESTFILES/treadintfilter.ddl +$SRC_H5DUMP_TESTFILES/treference.ddl +$SRC_H5DUMP_TESTFILES/tsaf.ddl +$SRC_H5DUMP_TESTFILES/tscalarattrintsize.ddl +$SRC_H5DUMP_TESTFILES/tscalarintattrsize.ddl +$SRC_H5DUMP_TESTFILES/tscalarintsize.ddl +$SRC_H5DUMP_TESTFILES/tscalarstring.ddl +$SRC_H5DUMP_TESTFILES/tscaleoffset.ddl +$SRC_H5DUMP_TESTFILES/tshuffle.ddl +$SRC_H5DUMP_TESTFILES/tslink-1.ddl +$SRC_H5DUMP_TESTFILES/tslink-2.ddl +$SRC_H5DUMP_TESTFILES/tslink-D.ddl +$SRC_H5DUMP_TESTFILES/tsplit_file.ddl +$SRC_H5DUMP_TESTFILES/tstr-1.ddl +$SRC_H5DUMP_TESTFILES/tstr-2.ddl +$SRC_H5DUMP_TESTFILES/tstr2bin2.exp +$SRC_H5DUMP_TESTFILES/tstr2bin6.exp +$SRC_H5DUMP_TESTFILES/tstring.ddl +$SRC_H5DUMP_TESTFILES/tstring2.ddl +$SRC_H5DUMP_TESTFILES/tstringe.ddl +$SRC_H5DUMP_TESTFILES/tszip.ddl +$SRC_H5DUMP_TESTFILES/tudlink-1.ddl +$SRC_H5DUMP_TESTFILES/tudlink-2.ddl +$SRC_H5DUMP_TESTFILES/tuserfilter.ddl +$SRC_H5DUMP_TESTFILES/tvldtypes1.ddl +$SRC_H5DUMP_TESTFILES/tvldtypes2.ddl +$SRC_H5DUMP_TESTFILES/tvldtypes3.ddl +$SRC_H5DUMP_TESTFILES/tvldtypes4.ddl +$SRC_H5DUMP_TESTFILES/tvldtypes5.ddl +$SRC_H5DUMP_TESTFILES/tvlenstr_array.ddl +$SRC_H5DUMP_TESTFILES/tvlstr.ddl +$SRC_H5DUMP_TESTFILES/tvms.ddl +$SRC_H5DUMP_TESTFILES/twidedisplay.ddl +$SRC_H5DUMP_TESTFILES/twithddl.exp +$SRC_H5DUMP_TESTFILES/twithddlfile.ddl +$SRC_H5DUMP_TESTFILES/twithddlfile.exp +$SRC_H5DUMP_TESTFILES/h5dump-help.txt +$SRC_H5DUMP_TESTFILES/out3.h5import +$SRC_H5DUMP_TESTFILES/tbinregR.exp +" + +LIST_ERROR_TEST_FILES=" +${SRC_H5DUMP_ERRORFILES}/filter_fail.err +${SRC_H5DUMP_ERRORFILES}/non_existing.err +${SRC_H5DUMP_ERRORFILES}/tall-1.err +${SRC_H5DUMP_ERRORFILES}/tall-2A.err +${SRC_H5DUMP_ERRORFILES}/tall-2A0.err +${SRC_H5DUMP_ERRORFILES}/tall-2B.err +${SRC_H5DUMP_ERRORFILES}/tarray1_big.err +${SRC_H5DUMP_ERRORFILES}/tattr-3.err +${SRC_H5DUMP_ERRORFILES}/tattrregR.err +${SRC_H5DUMP_ERRORFILES}/tcomp-3.err +${SRC_H5DUMP_ERRORFILES}/tdataregR.err +${SRC_H5DUMP_ERRORFILES}/tdset-2.err +${SRC_H5DUMP_ERRORFILES}/texceedsubblock.err +${SRC_H5DUMP_ERRORFILES}/texceedsubcount.err +${SRC_H5DUMP_ERRORFILES}/texceedsubstart.err +${SRC_H5DUMP_ERRORFILES}/texceedsubstride.err +${SRC_H5DUMP_ERRORFILES}/textlink.err +${SRC_H5DUMP_ERRORFILES}/textlinkfar.err +${SRC_H5DUMP_ERRORFILES}/textlinksrc.err +${SRC_H5DUMP_ERRORFILES}/tgroup-2.err +${SRC_H5DUMP_ERRORFILES}/torderlinks1.err +${SRC_H5DUMP_ERRORFILES}/torderlinks2.err +${SRC_H5DUMP_ERRORFILES}/tperror.err +${SRC_H5DUMP_ERRORFILES}/tqmarkfile.err +${SRC_H5DUMP_ERRORFILES}/tslink-D.err +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES $LIST_ERROR_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DUMP_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# If $1 == ignorecase then do caseless CMP and DIFF. +# ADD_H5_TEST +TOOLTEST() { + # check if caseless compare and diff requested + if [ "$1" = ignorecase ]; then + caseless="-i" + # replace cmp with diff which runs much longer. + xCMP="$DIFF -i" + shift + else + caseless="" + # stick with faster cmp if ignorecase is not requested. + xCMP="$CMP" + fi + + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $xCMP $expect $actual > /dev/null 2>&1 ; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext + fi + +} + + +# same as TOOLTEST1 but compares generated file to expected output +# and compares the generated data file to the expected data file +# used for the binary tests that expect a full path in -o without -b +# ADD_H5_EXPORT_TEST +TOOLTEST2() { + + expectdata="$TESTDIR/$1" + expect="$TESTDIR/`basename $1 .exp`.ddl" + actualdata="$TESTDIR/`basename $1 .exp`.txt" + actual="$TESTDIR/`basename $1 .exp`.out" + actual_err="$TESTDIR/`basename $1 .exp`.err" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if [ ! -f $expectdata ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actualdata $expectdata + echo " Expected data (*.exp) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expectdata $actualdata; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected datafile (*.exp) differs from actual datafile (*.txt)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actualdata $actual_err + fi + +} + +# same as TOOLTEST2 but compares generated file to expected ddl file +# and compares the generated data file to the expected data file +# used for the binary tests that expect a full path in -o without -b +# ADD_H5_TEST_EXPORT +TOOLTEST2A() { + + expectdata="$TESTDIR/$1" + expect="$TESTDIR/`basename $1 .exp`.ddl" + actualdata="$TESTDIR/`basename $1 .exp`.txt" + actual="$TESTDIR/`basename $1 .exp`.out" + actual_err="$TESTDIR/`basename $1 .exp`.err" + shift + expectmeta="$TESTDIR/$1" + actualmeta="$TESTDIR/`basename $1 .exp`.txt" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if [ ! -f $expectdata ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actualdata $expectdata + echo " Expected data (*.exp) missing" + nerrors="`expr $nerrors + 1`" + elif $DIFF $expectdata $actualdata; then + if [ ! -f $expectmeta ]; then + # Create the expect meta file if it doesn't yet exist. + echo " CREATED" + cp $actualmeta $expectmeta + echo " Expected metafile (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expectmeta $actualmeta; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected metafile (*.ddl) differs from actual metafile (*.txt)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expectmeta $actualmeta |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected datafile (*.exp) differs from actual datafile (*.txt)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actualdata $actual_err $actualmeta + fi + +} + +# same as TOOLTEST2 but only compares the generated data file to the expected data file +# used for the binary tests that expect a full path in -o with -b +# ADD_H5_EXPORT_TEST +TOOLTEST2B() { + + expectdata="$TESTDIR/$1" + actualdata="$TESTDIR/`basename $1 .exp`.txt" + actual="$TESTDIR/`basename $1 .exp`.out" + actual_err="$TESTDIR/`basename $1 .exp`.err" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expectdata ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actualdata $expectdata + echo " Expected data (*.exp) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expectdata $actualdata; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected datafile (*.exp) differs from actual datafile (*.txt)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actualdata $actual_err + fi + +} + +# same as TOOLTEST but filters error stack outp +# Extract file name, line number, version and thread IDs because they may be different +TOOLTEST3() { + + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_ext="$TESTDIR/`basename $1 .ddl`.ext" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + cat $actual_ext >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi + +} + +# same as TOOLTEST3 but filters error stack output and compares to an error file +# Extract file name, line number, version and thread IDs because they may be different +# ADD_H5ERR_MASK_TEST +TOOLTEST4() { + + expect="$TESTDIR/$1" + expect_err="$TESTDIR/`basename $1 .ddl`.err" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.oerr" + actual_ext="$TESTDIR/`basename $1 .ddl`.ext" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + #cat $actual_ext >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if $CMP $expect_err $actual_ext; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.err) differs from actual result (*.oerr)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi + +} + +# same as TOOLTEST4 but disables plugin filter loading +# silences extra error output on some platforms +# ADD_H5ERR_MASK_TEST +TOOLTEST5() { + + expect="$TESTDIR/$1" + expect_err="$TESTDIR/`basename $1 .ddl`.err" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.oerr" + actual_ext="$TESTDIR/`basename $1 .ddl`.ext" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $ENVCMD $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + #cat $actual_ext >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if $CMP $expect_err $actual_ext; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.err) differs from actual result (*.oerr)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi + +} +# ADD_HELP_TEST +TOOLTEST_HELP() { + + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .txt`.out" + actual_err="$TESTDIR/`basename $1 .txt`.err" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expectdata ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect-CREATED + echo " Expected output (*.txt) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected output (*.txt) differs from actual output (*.out)" + nerrors="`expr $nerrors + 1`" + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err + fi + +} + +# Print a "SKIP" message +SKIP() { + TESTING $DUMPER $@ + echo " -SKIP-" +} + +# Print a line-line message left justified in a field of 70 characters +# +PRINT_H5DIFF() { + SPACES=" " + echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012' +} + + +# Call the h5diff tool +# +DIFFTEST() +{ + PRINT_H5DIFF $@ + ( + cd $TESTDIR + $RUNSERIAL $H5DIFF_BIN "$@" -q + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +PRINT_H5IMPORT() { + SPACES=" " + echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Call the h5import tool +# +IMPORTTEST() +{ + # remove the output hdf5 file if it exists + hdf5_file="$TESTDIR/$5" + if [ -f $hdf5_file ]; then + rm -f $hdf5_file + fi + + PRINT_H5IMPORT $@ + ( + cd $TESTDIR + $RUNSERIAL $H5IMPORT_BIN "$@" + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + +} + + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +TOOLTEST_HELP h5dump-help.txt -h + +# test data output redirection +TOOLTEST tnoddl.ddl --enable-error-stack --ddl -y packedbits.h5 +TOOLTEST tnodata.ddl --enable-error-stack --output packedbits.h5 +TOOLTEST tnoattrddl.ddl --enable-error-stack -O -y tattr.h5 +TOOLTEST tnoattrdata.ddl --enable-error-stack -A -o tattr.h5 +TOOLTEST2 trawdatafile.exp --enable-error-stack -y -o trawdatafile.txt packedbits.h5 +TOOLTEST2 tnoddlfile.exp --enable-error-stack -O -y -o tnoddlfile.txt packedbits.h5 +TOOLTEST2A twithddlfile.exp twithddl.exp --enable-error-stack --ddl=twithddl.txt -y -o twithddlfile.txt packedbits.h5 +TOOLTEST2 trawssetfile.exp --enable-error-stack -d "/dset1[1,1;;;]" -y -o trawssetfile.txt tdset.h5 + +# test for maximum display datasets +TOOLTEST twidedisplay.ddl --enable-error-stack -w0 packedbits.h5 + +# test for signed/unsigned datasets +TOOLTEST packedbits.ddl --enable-error-stack packedbits.h5 +# test for compound signed/unsigned datasets +TOOLTEST tcmpdintsize.ddl --enable-error-stack tcmpdintsize.h5 +# test for signed/unsigned scalar datasets +TOOLTEST tscalarintsize.ddl --enable-error-stack tscalarintsize.h5 +# test for signed/unsigned attributes +TOOLTEST tattrintsize.ddl --enable-error-stack tattrintsize.h5 +# test for compound signed/unsigned attributes +TOOLTEST tcmpdattrintsize.ddl --enable-error-stack tcmpdattrintsize.h5 +# test for signed/unsigned scalar attributes +TOOLTEST tscalarattrintsize.ddl --enable-error-stack tscalarattrintsize.h5 +# test for signed/unsigned scalar datasets with attributes +TOOLTEST tscalarintattrsize.ddl --enable-error-stack tscalarintattrsize.h5 +# test for signed/unsigned datasets attributes +TOOLTEST tintsattrs.ddl --enable-error-stack tintsattrs.h5 +# test for string scalar dataset attribute +TOOLTEST tscalarstring.ddl --enable-error-stack tscalarstring.h5 +# test for displaying groups +TOOLTEST tgroup-1.ddl --enable-error-stack tgroup.h5 +# test for displaying the selected groups +TOOLTEST4 tgroup-2.ddl --enable-error-stack --group=/g2 --group / -g /y tgroup.h5 + +# test for displaying simple space datasets +TOOLTEST tdset-1.ddl --enable-error-stack tdset.h5 +# test for displaying selected datasets +TOOLTEST4 tdset-2.ddl --enable-error-stack -H -d dset1 -d /dset2 --dataset=dset3 tdset.h5 + +# test for displaying attributes +TOOLTEST tattr-1.ddl --enable-error-stack tattr.h5 +# test for displaying the selected attributes of string type and scalar space +TOOLTEST tattr-2.ddl --enable-error-stack -a "/\/attr1" --attribute /attr4 --attribute=/attr5 tattr.h5 +TOOLTEST tattr-2.ddl --enable-error-stack -N "/\/attr1" --any_path /attr4 --any_path=/attr5 tattr.h5 +# test for header and error messages +TOOLTEST4 tattr-3.ddl --enable-error-stack --header -a /attr2 --attribute=/attr tattr.h5 +# test for displaying at least 9 attributes on root from a BE machine +TOOLTEST tattr-4_be.ddl --enable-error-stack tattr4_be.h5 +# test for displaying attributes in shared datatype (also in group and dataset) +TOOLTEST tnamed_dtype_attr.ddl --enable-error-stack tnamed_dtype_attr.h5 + +# test for displaying soft links and user-defined links +TOOLTEST tslink-1.ddl --enable-error-stack tslink.h5 +TOOLTEST tudlink-1.ddl --enable-error-stack tudlink.h5 +# test for displaying the selected link +TOOLTEST tslink-2.ddl --enable-error-stack -l slink2 tslink.h5 +TOOLTEST tslink-2.ddl --enable-error-stack -N slink2 tslink.h5 +TOOLTEST tudlink-2.ddl --enable-error-stack -l udlink2 tudlink.h5 +# test for displaying dangling soft links +TOOLTEST4 tslink-D.ddl --enable-error-stack -d /slink1 tslink.h5 + +# tests for hard links +TOOLTEST thlink-1.ddl --enable-error-stack thlink.h5 +TOOLTEST thlink-2.ddl --enable-error-stack -d /g1/dset2 --dataset /dset1 --dataset=/g1/g1.1/dset3 thlink.h5 +TOOLTEST thlink-3.ddl --enable-error-stack -d /g1/g1.1/dset3 --dataset /g1/dset2 --dataset=/dset1 thlink.h5 +TOOLTEST thlink-4.ddl --enable-error-stack -g /g1 thlink.h5 +TOOLTEST thlink-4.ddl --enable-error-stack -N /g1 thlink.h5 +TOOLTEST thlink-5.ddl --enable-error-stack -d /dset1 -g /g2 -d /g1/dset2 thlink.h5 +TOOLTEST thlink-5.ddl --enable-error-stack -N /dset1 -N /g2 -N /g1/dset2 thlink.h5 + +# tests for compound data types +TOOLTEST tcomp-1.ddl --enable-error-stack tcompound.h5 +# test for named data types +TOOLTEST tcomp-2.ddl --enable-error-stack -t /type1 --datatype /type2 --datatype=/group1/type3 tcompound.h5 +TOOLTEST tcomp-2.ddl --enable-error-stack -N /type1 --any_path /type2 --any_path=/group1/type3 tcompound.h5 +# test for unamed type +TOOLTEST4 tcomp-3.ddl --enable-error-stack -t /#6632 -g /group2 tcompound.h5 +# test complicated compound datatype +TOOLTEST tcomp-4.ddl --enable-error-stack tcompound_complex.h5 +TOOLTEST tcompound_complex2.ddl --enable-error-stack tcompound_complex2.h5 +# tests for bitfields and opaque data types +if test $WORDS_BIGENDIAN != "yes"; then +TOOLTEST tbitnopaque_le.ddl --enable-error-stack tbitnopaque.h5 +else +TOOLTEST tbitnopaque_be.ddl --enable-error-stack tbitnopaque.h5 +fi + +#test for the nested compound type +TOOLTEST tnestcomp-1.ddl --enable-error-stack tnestedcomp.h5 +TOOLTEST tnestedcmpddt.ddl --enable-error-stack tnestedcmpddt.h5 + +# test for options +TOOLTEST4 tall-1.ddl --enable-error-stack tall.h5 +TOOLTEST tall-2.ddl --enable-error-stack --header -g /g1/g1.1 -a attr2 tall.h5 +TOOLTEST tall-3.ddl --enable-error-stack -d /g2/dset2.1 -l /g1/g1.2/g1.2.1/slink tall.h5 +TOOLTEST tall-3.ddl --enable-error-stack -N /g2/dset2.1 -N /g1/g1.2/g1.2.1/slink tall.h5 +TOOLTEST tall-7.ddl --enable-error-stack -a attr1 tall.h5 +TOOLTEST tall-7N.ddl --enable-error-stack -N attr1 tall.h5 + +# test for loop detection +TOOLTEST tloop-1.ddl --enable-error-stack tloop.h5 + +# test for string +TOOLTEST tstr-1.ddl --enable-error-stack tstr.h5 +TOOLTEST tstr-2.ddl --enable-error-stack tstr2.h5 + +# test for file created by Lib SAF team +TOOLTEST tsaf.ddl --enable-error-stack tsaf.h5 + +# test for file with variable length data +TOOLTEST tvldtypes1.ddl --enable-error-stack tvldtypes1.h5 +TOOLTEST tvldtypes2.ddl --enable-error-stack tvldtypes2.h5 +TOOLTEST tvldtypes3.ddl --enable-error-stack tvldtypes3.h5 +TOOLTEST tvldtypes4.ddl --enable-error-stack tvldtypes4.h5 +TOOLTEST tvldtypes5.ddl --enable-error-stack tvldtypes5.h5 + +#test for file with variable length string data +TOOLTEST tvlstr.ddl --enable-error-stack tvlstr.h5 +TOOLTEST tvlenstr_array.ddl --enable-error-stack tvlenstr_array.h5 + +# test for files with array data +TOOLTEST tarray1.ddl --enable-error-stack tarray1.h5 +# # added for bug# 2092 - tarray1_big.h +TOOLTEST4 tarray1_big.ddl --enable-error-stack -R tarray1_big.h5 +TOOLTEST tarray2.ddl --enable-error-stack tarray2.h5 +TOOLTEST tarray3.ddl --enable-error-stack tarray3.h5 +TOOLTEST tarray4.ddl --enable-error-stack tarray4.h5 +TOOLTEST tarray5.ddl --enable-error-stack tarray5.h5 +TOOLTEST tarray6.ddl --enable-error-stack tarray6.h5 +TOOLTEST tarray7.ddl --enable-error-stack tarray7.h5 +TOOLTEST tarray8.ddl --enable-error-stack tarray8.h5 + +# test for wildcards in filename (does not work with cmake) +# inconsistent across platforms TOOLTEST3 tstarfile.ddl --enable-error-stack -H -d Dataset1 tarr*.h5 +#TOOLTEST4 tqmarkfile.ddl --enable-error-stack -H -d Dataset1 tarray?.h5 +TOOLTEST tmultifile.ddl --enable-error-stack -H -d Dataset1 tarray2.h5 tarray3.h5 tarray4.h5 tarray5.h5 tarray6.h5 tarray7.h5 + +# test for files with empty data +TOOLTEST tempty.ddl --enable-error-stack tempty.h5 + +# test for files with groups that have comments +TOOLTEST tgrp_comments.ddl --enable-error-stack tgrp_comments.h5 + +# test the --filedriver flag +TOOLTEST tsplit_file.ddl --enable-error-stack --filedriver=split tsplit_file +TOOLTEST tfamily.ddl --enable-error-stack --filedriver=family tfamily%05d.h5 +TOOLTEST tmulti.ddl --enable-error-stack --filedriver=multi tmulti + +# test for files with group names which reach > 1024 bytes in size +TOOLTEST tlarge_objname.ddl --enable-error-stack -w157 tlarge_objname.h5 + +# test '-A' to suppress data but print attr's +TOOLTEST4 tall-2A.ddl --enable-error-stack -A tall.h5 + +# test '-A' to suppress attr's but print data +TOOLTEST4 tall-2A0.ddl --enable-error-stack -A 0 tall.h5 + +# test '-r' to print attributes in ASCII instead of decimal +TOOLTEST4 tall-2B.ddl --enable-error-stack -A -r tall.h5 + +# test Subsetting +TOOLTEST tall-4s.ddl --enable-error-stack --dataset=/g1/g1.1/dset1.1.1 --start=1,1 --stride=2,3 --count=3,2 --block=1,1 tall.h5 +TOOLTEST tall-5s.ddl --enable-error-stack -d "/g1/g1.1/dset1.1.2[0;2;10;]" tall.h5 +TOOLTEST tdset-3s.ddl --enable-error-stack -d "/dset1[1,1;;;]" tdset.h5 +TOOLTEST tno-subset.ddl --enable-error-stack --no-compact-subset -d "AHFINDERDIRECT::ah_centroid_t[0] it=0 tl=0" tno-subset.h5 + +TOOLTEST tints4dimsCount2.ddl --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 2,2,2,2 tints4dims.h5 +TOOLTEST tints4dimsBlock2.ddl --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 1,1,1,1 -k 2,2,2,2 tints4dims.h5 +TOOLTEST tints4dimsStride2.ddl --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,2,2 -c 2,2,2,2 tints4dims.h5 +TOOLTEST tints4dimsCountEq.ddl --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1,1 -k 1,2,1,1 -c 2,2,4,4 tints4dims.h5 +TOOLTEST tints4dimsBlockEq.ddl --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1,1 -c 2,2,1,1 -k 1,2,4,4 tints4dims.h5 + +# test printing characters in ASCII instead of decimal +TOOLTEST tchar1.ddl --enable-error-stack -r tchar.h5 + +# test datatypes in ASCII and UTF8 +TOOLTEST charsets.ddl --enable-error-stack charsets.h5 + +# rev. 2004 + +# tests for super block +TOOLTEST tboot1.ddl --enable-error-stack -H -B -d dset tfcontents1.h5 +TOOLTEST tboot2.ddl --enable-error-stack -B tfcontents2.h5 +TOOLTEST tboot2A.ddl --enable-error-stack --boot-block tfcontents2.h5 +TOOLTEST tboot2B.ddl --enable-error-stack --superblock tfcontents2.h5 + +# test -p with a non existing dataset +TOOLTEST4 tperror.ddl --enable-error-stack -p -d bogus tfcontents1.h5 + +# test for file contents +TOOLTEST tcontents.ddl --enable-error-stack -n tfcontents1.h5 +TOOLTEST tordercontents1.ddl --enable-error-stack -n --sort_by=name --sort_order=ascending tfcontents1.h5 +TOOLTEST tordercontents2.ddl --enable-error-stack -n --sort_by=name --sort_order=descending tfcontents1.h5 +TOOLTEST tattrcontents1.ddl --enable-error-stack -n 1 --sort_order=ascending tall.h5 +TOOLTEST tattrcontents2.ddl --enable-error-stack -n 1 --sort_order=descending tall.h5 + +# tests for storage layout +# compact +TOOLTEST tcompact.ddl --enable-error-stack -H -p -d compact tfilters.h5 +# contiguous +TOOLTEST tcontiguos.ddl --enable-error-stack -H -p -d contiguous tfilters.h5 +# chunked +TOOLTEST tchunked.ddl --enable-error-stack -H -p -d chunked tfilters.h5 +# external +TOOLTEST texternal.ddl --enable-error-stack -H -p -d external tfilters.h5 + +# fill values +TOOLTEST tfill.ddl --enable-error-stack -p tfvalues.h5 + +# several datatype, with references , print path +TOOLTEST treference.ddl --enable-error-stack tattr2.h5 + +# escape/not escape non printable characters +TOOLTEST tstringe.ddl --enable-error-stack -e tstr3.h5 +TOOLTEST tstring.ddl --enable-error-stack tstr3.h5 +# char data as ASCII with non escape +TOOLTEST tstring2.ddl --enable-error-stack -r -d str4 tstr3.h5 + +# array indices print/not print +TOOLTEST tindicesyes.ddl --enable-error-stack taindices.h5 +TOOLTEST tindicesno.ddl --enable-error-stack -y taindices.h5 + +########## array indices with subsetting +# 1D case +TOOLTEST tindicessub1.ddl --enable-error-stack -d 1d -s 1 -S 10 -c 2 -k 3 taindices.h5 + +# 2D case +TOOLTEST tindicessub2.ddl --enable-error-stack -d 2d -s 1,2 -S 3,3 -c 3,2 -k 2,2 taindices.h5 + +# 3D case +TOOLTEST tindicessub3.ddl --enable-error-stack -d 3d -s 0,1,2 -S 1,3,3 -c 2,2,2 -k 1,2,2 taindices.h5 + +# 4D case +TOOLTEST tindicessub4.ddl --enable-error-stack -d 4d -s 0,0,1,2 -c 2,2,3,2 -S 1,1,3,3 -k 1,1,2,2 taindices.h5 + +#Exceed the dimensions for subsetting +TOOLTEST texceedsubstart.ddl --enable-error-stack -d 1d -s 1,3 taindices.h5 +TOOLTEST texceedsubcount.ddl --enable-error-stack -d 1d -c 1,3 taindices.h5 +TOOLTEST texceedsubstride.ddl --enable-error-stack -d 1d -S 1,3 taindices.h5 +TOOLTEST texceedsubblock.ddl --enable-error-stack -d 1d -k 1,3 taindices.h5 + + +# tests for filters +# SZIP +TOOLTEST tszip.ddl --enable-error-stack -H -p -d szip tfilters.h5 +# deflate +TOOLTEST tdeflate.ddl --enable-error-stack -H -p -d deflate tfilters.h5 +# shuffle +TOOLTEST tshuffle.ddl --enable-error-stack -H -p -d shuffle tfilters.h5 +# fletcher32 +TOOLTEST tfletcher32.ddl --enable-error-stack -H -p -d fletcher32 tfilters.h5 +# nbit +TOOLTEST tnbit.ddl --enable-error-stack -H -p -d nbit tfilters.h5 +# scaleoffset +TOOLTEST tscaleoffset.ddl --enable-error-stack -H -p -d scaleoffset tfilters.h5 +# all +TOOLTEST tallfilters.ddl --enable-error-stack -H -p -d all tfilters.h5 +# user defined +TOOLTEST tuserfilter.ddl --enable-error-stack -H -p -d myfilter tfilters.h5 + +if test $USE_FILTER_DEFLATE = "yes" ; then + # data read internal filters + TOOLTEST treadintfilter.ddl --enable-error-stack -d deflate -d shuffle -d fletcher32 -d nbit -d scaleoffset tfilters.h5 + if test $USE_FILTER_SZIP = "yes"; then + # data read + TOOLTEST treadfilter.ddl --enable-error-stack -d all -d szip tfilters.h5 + fi +fi + +# test for displaying objects with very long names +TOOLTEST tlonglinks.ddl --enable-error-stack tlonglinks.h5 + +# dimensions over 4GB, print boundary +TOOLTEST tbigdims.ddl --enable-error-stack -d dset4gb -s 4294967284 -c 22 tbigdims.h5 + +# hyperslab read +TOOLTEST thyperslab.ddl --enable-error-stack thyperslab.h5 + + +# + +# test for displaying dataset and attribute of null space +TOOLTEST tnullspace.ddl --enable-error-stack tnullspace.h5 +TOOLTEST tgrpnullspace.ddl -p --enable-error-stack tgrpnullspace.h5 + +# test for displaying dataset and attribute of space with 0 dimension size +TOOLTEST zerodim.ddl --enable-error-stack zerodim.h5 + +# test for long double (some systems do not have long double) +#TOOLTEST tldouble.ddl --enable-error-stack tldouble.h5 + +# test for vms +TOOLTEST tvms.ddl --enable-error-stack tvms.h5 + +# test for binary output +TOOLTEST tbin1.ddl --enable-error-stack -d integer -o out1.bin -b LE tbinary.h5 + +# test for string binary output +TOOLTEST2B tstr2bin2.exp --enable-error-stack -d /g2/dset2 -b -o tstr2bin2.txt tstr2.h5 +TOOLTEST2B tstr2bin6.exp --enable-error-stack -d /g6/dset6 -b -o tstr2bin6.txt tstr2.h5 + +# NATIVE default. the NATIVE test can be validated with h5import/h5diff +TOOLTEST tbin1.ddl --enable-error-stack -d integer -o out1.bin -b tbinary.h5 +IMPORTTEST out1.bin -c out3.h5import -o out1.h5 +DIFFTEST tbinary.h5 out1.h5 /integer /integer +# Same but use h5dump as input to h5import +IMPORTTEST out1.bin -c tbin1.ddl -o out1D.h5 +DIFFTEST tbinary.h5 out1D.h5 /integer /integer + +TOOLTEST tbin2.ddl --enable-error-stack -b BE -d float -o out2.bin tbinary.h5 + +# the NATIVE test can be validated with h5import/h5diff +TOOLTEST tbin3.ddl --enable-error-stack -d integer -o out3.bin -b NATIVE tbinary.h5 +IMPORTTEST out3.bin -c out3.h5import -o out3.h5 +DIFFTEST tbinary.h5 out3.h5 /integer /integer +# Same but use h5dump as input to h5import +IMPORTTEST out3.bin -c tbin3.ddl -o out3D.h5 +DIFFTEST tbinary.h5 out3D.h5 /integer /integer + +TOOLTEST tbin4.ddl --enable-error-stack -d double -b FILE -o out4.bin tbinary.h5 + +# Clean up binary output files +if test -z "$HDF5_NOCLEANUP"; then + rm -f out[1-4].bin + rm -f out1.h5 + rm -f out3.h5 +fi + +# test for dataset region references +TOOLTEST tdatareg.ddl --enable-error-stack tdatareg.h5 +TOOLTEST4 tdataregR.ddl --enable-error-stack -R tdatareg.h5 +TOOLTEST tattrreg.ddl --enable-error-stack tattrreg.h5 +TOOLTEST4 tattrregR.ddl --enable-error-stack -R tattrreg.h5 +TOOLTEST2 tbinregR.exp --enable-error-stack -d /Dataset1 -s 0 -R -y -o tbinregR.txt tdatareg.h5 + +# Clean up text output files +if test -z "$HDF5_NOCLEANUP"; then + rm -f tbinregR.txt +fi + +# tests for group creation order +# "1" tracked, "2" name, root tracked +TOOLTEST tordergr1.ddl --enable-error-stack --group=1 --sort_by=creation_order --sort_order=ascending tordergr.h5 +TOOLTEST tordergr2.ddl --enable-error-stack --group=1 --sort_by=creation_order --sort_order=descending tordergr.h5 +TOOLTEST tordergr3.ddl --enable-error-stack -g 2 -q name -z ascending tordergr.h5 +TOOLTEST tordergr4.ddl --enable-error-stack -g 2 -q name -z descending tordergr.h5 +TOOLTEST tordergr5.ddl --enable-error-stack -q creation_order tordergr.h5 + +# tests for attribute order +TOOLTEST torderattr1.ddl --enable-error-stack -H --sort_by=name --sort_order=ascending torderattr.h5 +TOOLTEST torderattr2.ddl --enable-error-stack -H --sort_by=name --sort_order=descending torderattr.h5 +TOOLTEST torderattr3.ddl --enable-error-stack -H --sort_by=creation_order --sort_order=ascending torderattr.h5 +TOOLTEST torderattr4.ddl --enable-error-stack -H --sort_by=creation_order --sort_order=descending torderattr.h5 + +# tests for link references and order +TOOLTEST4 torderlinks1.ddl --enable-error-stack --sort_by=name --sort_order=ascending tfcontents1.h5 +TOOLTEST4 torderlinks2.ddl --enable-error-stack --sort_by=name --sort_order=descending tfcontents1.h5 + +# tests for floating point user defined printf format +TOOLTEST tfpformat.ddl --enable-error-stack -m %.7f tfpformat.h5 + +# tests for traversal of external links +TOOLTEST4 textlinksrc.ddl --enable-error-stack textlinksrc.h5 +TOOLTEST4 textlinkfar.ddl --enable-error-stack textlinkfar.h5 + +# test for dangling external links +TOOLTEST4 textlink.ddl --enable-error-stack textlink.h5 + +# test for error stack display (BZ2048) +TOOLTEST5 filter_fail.ddl --enable-error-stack filter_fail.h5 + +# test for -o -y for dataset with attributes +TOOLTEST2 tall-6.exp --enable-error-stack -y -o tall-6.txt -d /g1/g1.1/dset1.1.1 tall.h5 + +# test for non-existing file +TOOLTEST3 non_existing.ddl --enable-error-stack tgroup.h5 non_existing.h5 + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Report test results and exit +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5dump/testh5dump.sh.chkexe b/build/tools/h5dump/testh5dump.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/testh5dump.sh.chklog b/build/tools/h5dump/testh5dump.sh.chklog new file mode 100644 index 0000000..5aa2044 --- /dev/null +++ b/build/tools/h5dump/testh5dump.sh.chklog @@ -0,0 +1,190 @@ +============================ +testh5dump.sh Test Log +============================ +Testing h5dump -h PASSED +Testing h5dump --enable-error-stack --ddl -y packedbits.h5 PASSED +Testing h5dump --enable-error-stack --output packedbits.h5 PASSED +Testing h5dump --enable-error-stack -O -y tattr.h5 PASSED +Testing h5dump --enable-error-stack -A -o tattr.h5 PASSED +Testing h5dump --enable-error-stack -y -o trawdatafile.txt packedbits. PASSED +Testing h5dump --enable-error-stack -O -y -o tnoddlfile.txt packedbits PASSED +Testing h5dump --enable-error-stack --ddl=twithddl.txt -y -o twithddlf PASSED +Testing h5dump --enable-error-stack -d /dset1[1,1;;;] -y -o trawssetfi PASSED +Testing h5dump --enable-error-stack -w0 packedbits.h5 PASSED +Testing h5dump --enable-error-stack packedbits.h5 PASSED +Testing h5dump --enable-error-stack tcmpdintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarintsize.h5 PASSED +Testing h5dump --enable-error-stack tattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tcmpdattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarattrintsize.h5 PASSED +Testing h5dump --enable-error-stack tscalarintattrsize.h5 PASSED +Testing h5dump --enable-error-stack tintsattrs.h5 PASSED +Testing h5dump --enable-error-stack tscalarstring.h5 PASSED +Testing h5dump --enable-error-stack tgroup.h5 PASSED +Testing h5dump --enable-error-stack --group=/g2 --group / -g /y tgroup PASSED +Testing h5dump --enable-error-stack tdset.h5 PASSED +Testing h5dump --enable-error-stack -H -d dset1 -d /dset2 --dataset=ds PASSED +Testing h5dump --enable-error-stack tattr.h5 PASSED +Testing h5dump --enable-error-stack -a /\/attr1 --attribute /attr4 --a PASSED +Testing h5dump --enable-error-stack -N /\/attr1 --any_path /attr4 --an PASSED +Testing h5dump --enable-error-stack --header -a /attr2 --attribute=/at PASSED +Testing h5dump --enable-error-stack tattr4_be.h5 PASSED +Testing h5dump --enable-error-stack tnamed_dtype_attr.h5 PASSED +Testing h5dump --enable-error-stack tslink.h5 PASSED +Testing h5dump --enable-error-stack tudlink.h5 PASSED +Testing h5dump --enable-error-stack -l slink2 tslink.h5 PASSED +Testing h5dump --enable-error-stack -N slink2 tslink.h5 PASSED +Testing h5dump --enable-error-stack -l udlink2 tudlink.h5 PASSED +Testing h5dump --enable-error-stack -d /slink1 tslink.h5 PASSED +Testing h5dump --enable-error-stack thlink.h5 PASSED +Testing h5dump --enable-error-stack -d /g1/dset2 --dataset /dset1 --da PASSED +Testing h5dump --enable-error-stack -d /g1/g1.1/dset3 --dataset /g1/ds PASSED +Testing h5dump --enable-error-stack -g /g1 thlink.h5 PASSED +Testing h5dump --enable-error-stack -N /g1 thlink.h5 PASSED +Testing h5dump --enable-error-stack -d /dset1 -g /g2 -d /g1/dset2 thli PASSED +Testing h5dump --enable-error-stack -N /dset1 -N /g2 -N /g1/dset2 thli PASSED +Testing h5dump --enable-error-stack tcompound.h5 PASSED +Testing h5dump --enable-error-stack -t /type1 --datatype /type2 --data PASSED +Testing h5dump --enable-error-stack -N /type1 --any_path /type2 --any_ PASSED +Testing h5dump --enable-error-stack -t /#6632 -g /group2 tcompound.h5 PASSED +Testing h5dump --enable-error-stack tcompound_complex.h5 PASSED +Testing h5dump --enable-error-stack tcompound_complex2.h5 PASSED +Testing h5dump --enable-error-stack tbitnopaque.h5 PASSED +Testing h5dump --enable-error-stack tnestedcomp.h5 PASSED +Testing h5dump --enable-error-stack tnestedcmpddt.h5 PASSED +Testing h5dump --enable-error-stack tall.h5 PASSED +Testing h5dump --enable-error-stack --header -g /g1/g1.1 -a attr2 tall PASSED +Testing h5dump --enable-error-stack -d /g2/dset2.1 -l /g1/g1.2/g1.2.1/ PASSED +Testing h5dump --enable-error-stack -N /g2/dset2.1 -N /g1/g1.2/g1.2.1/ PASSED +Testing h5dump --enable-error-stack -a attr1 tall.h5 PASSED +Testing h5dump --enable-error-stack -N attr1 tall.h5 PASSED +Testing h5dump --enable-error-stack tloop.h5 PASSED +Testing h5dump --enable-error-stack tstr.h5 PASSED +Testing h5dump --enable-error-stack tstr2.h5 PASSED +Testing h5dump --enable-error-stack tsaf.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes1.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes2.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes3.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes4.h5 PASSED +Testing h5dump --enable-error-stack tvldtypes5.h5 PASSED +Testing h5dump --enable-error-stack tvlstr.h5 PASSED +Testing h5dump --enable-error-stack tvlenstr_array.h5 PASSED +Testing h5dump --enable-error-stack tarray1.h5 PASSED +Testing h5dump --enable-error-stack -R tarray1_big.h5 PASSED +Testing h5dump --enable-error-stack tarray2.h5 PASSED +Testing h5dump --enable-error-stack tarray3.h5 PASSED +Testing h5dump --enable-error-stack tarray4.h5 PASSED +Testing h5dump --enable-error-stack tarray5.h5 PASSED +Testing h5dump --enable-error-stack tarray6.h5 PASSED +Testing h5dump --enable-error-stack tarray7.h5 PASSED +Testing h5dump --enable-error-stack tarray8.h5 PASSED +Testing h5dump --enable-error-stack -H -d Dataset1 tarray2.h5 tarray3. PASSED +Testing h5dump --enable-error-stack tempty.h5 PASSED +Testing h5dump --enable-error-stack tgrp_comments.h5 PASSED +Testing h5dump --enable-error-stack --filedriver=split tsplit_file PASSED +Testing h5dump --enable-error-stack --filedriver=family tfamily%05d.h5 PASSED +Testing h5dump --enable-error-stack --filedriver=multi tmulti PASSED +Testing h5dump --enable-error-stack -w157 tlarge_objname.h5 PASSED +Testing h5dump --enable-error-stack -A tall.h5 PASSED +Testing h5dump --enable-error-stack -A 0 tall.h5 PASSED +Testing h5dump --enable-error-stack -A -r tall.h5 PASSED +Testing h5dump --enable-error-stack --dataset=/g1/g1.1/dset1.1.1 --sta PASSED +Testing h5dump --enable-error-stack -d /g1/g1.1/dset1.1.2[0;2;10;] tal PASSED +Testing h5dump --enable-error-stack -d /dset1[1,1;;;] tdset.h5 PASSED +Testing h5dump --enable-error-stack --no-compact-subset -d AHFINDERDIR PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 2,2,2 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 1,1,1 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,2 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED +Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED +Testing h5dump --enable-error-stack -r tchar.h5 PASSED +Testing h5dump --enable-error-stack charsets.h5 PASSED +Testing h5dump --enable-error-stack -H -B -d dset tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -B tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack --boot-block tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack --superblock tfcontents2.h5 PASSED +Testing h5dump --enable-error-stack -p -d bogus tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -n tfcontents1.h5 PASSED +Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=asc PASSED +Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=des PASSED +Testing h5dump --enable-error-stack -n 1 --sort_order=ascending tall.h PASSED +Testing h5dump --enable-error-stack -n 1 --sort_order=descending tall. PASSED +Testing h5dump --enable-error-stack -H -p -d compact tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d contiguous tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d chunked tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d external tfilters.h5 PASSED +Testing h5dump --enable-error-stack -p tfvalues.h5 PASSED +Testing h5dump --enable-error-stack tattr2.h5 PASSED +Testing h5dump --enable-error-stack -e tstr3.h5 PASSED +Testing h5dump --enable-error-stack tstr3.h5 PASSED +Testing h5dump --enable-error-stack -r -d str4 tstr3.h5 PASSED +Testing h5dump --enable-error-stack taindices.h5 PASSED +Testing h5dump --enable-error-stack -y taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -s 1 -S 10 -c 2 -k 3 taindic PASSED +Testing h5dump --enable-error-stack -d 2d -s 1,2 -S 3,3 -c 3,2 -k 2,2 PASSED +Testing h5dump --enable-error-stack -d 3d -s 0,1,2 -S 1,3,3 -c 2,2,2 - PASSED +Testing h5dump --enable-error-stack -d 4d -s 0,0,1,2 -c 2,2,3,2 -S 1,1 PASSED +Testing h5dump --enable-error-stack -d 1d -s 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -c 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -S 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -d 1d -k 1,3 taindices.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d szip tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d deflate tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d shuffle tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d fletcher32 tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d nbit tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d scaleoffset tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d all tfilters.h5 PASSED +Testing h5dump --enable-error-stack -H -p -d myfilter tfilters.h5 PASSED +Testing h5dump --enable-error-stack -d deflate -d shuffle -d fletcher3 PASSED +Testing h5dump --enable-error-stack tlonglinks.h5 PASSED +Testing h5dump --enable-error-stack -d dset4gb -s 4294967284 -c 22 tbi PASSED +Testing h5dump --enable-error-stack thyperslab.h5 PASSED +Testing h5dump --enable-error-stack tnullspace.h5 PASSED +Testing h5dump -p --enable-error-stack tgrpnullspace.h5 PASSED +Testing h5dump --enable-error-stack zerodim.h5 PASSED +Testing h5dump --enable-error-stack tvms.h5 PASSED +Testing h5dump --enable-error-stack -d integer -o out1.bin -b LE tbina PASSED +Testing h5dump --enable-error-stack -d /g2/dset2 -b -o tstr2bin2.txt t PASSED +Testing h5dump --enable-error-stack -d /g6/dset6 -b -o tstr2bin6.txt t PASSED +Testing h5dump --enable-error-stack -d integer -o out1.bin -b tbinary. PASSED + Running h5import out1.bin -c out3.h5import -o out1.h5 PASSED + Running h5diff tbinary.h5 out1.h5 /integer /integer PASSED + Running h5import out1.bin -c tbin1.ddl -o out1D.h5 PASSED + Running h5diff tbinary.h5 out1D.h5 /integer /integer PASSED +Testing h5dump --enable-error-stack -b BE -d float -o out2.bin tbinary PASSED +Testing h5dump --enable-error-stack -d integer -o out3.bin -b NATIVE t PASSED + Running h5import out3.bin -c out3.h5import -o out3.h5 PASSED + Running h5diff tbinary.h5 out3.h5 /integer /integer PASSED + Running h5import out3.bin -c tbin3.ddl -o out3D.h5 PASSED + Running h5diff tbinary.h5 out3D.h5 /integer /integer PASSED +Testing h5dump --enable-error-stack -d double -b FILE -o out4.bin tbin PASSED +Testing h5dump --enable-error-stack tdatareg.h5 PASSED +Testing h5dump --enable-error-stack -R tdatareg.h5 PASSED +Testing h5dump --enable-error-stack tattrreg.h5 PASSED +Testing h5dump --enable-error-stack -R tattrreg.h5 PASSED +Testing h5dump --enable-error-stack -d /Dataset1 -s 0 -R -y -o tbinreg PASSED +Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED +Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED +Testing h5dump --enable-error-stack -g 2 -q name -z ascending tordergr PASSED +Testing h5dump --enable-error-stack -g 2 -q name -z descending torderg PASSED +Testing h5dump --enable-error-stack -q creation_order tordergr.h5 PASSED +Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=asc PASSED +Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=des PASSED +Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED +Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED +Testing h5dump --enable-error-stack --sort_by=name --sort_order=ascend PASSED +Testing h5dump --enable-error-stack --sort_by=name --sort_order=descen PASSED +Testing h5dump --enable-error-stack -m %.7f tfpformat.h5 PASSED +Testing h5dump --enable-error-stack textlinksrc.h5 PASSED +Testing h5dump --enable-error-stack textlinkfar.h5 PASSED +Testing h5dump --enable-error-stack textlink.h5 PASSED +Testing h5dump --enable-error-stack filter_fail.h5 PASSED +Testing h5dump --enable-error-stack -y -o tall-6.txt -d /g1/g1.1/dset1 PASSED +Testing h5dump --enable-error-stack tgroup.h5 non_existing.h5 PASSED +All h5dump tests passed. +7.70user 10.66system 0:16.28elapsed 112%CPU (0avgtext+0avgdata 11872maxresident)k +0inputs+271072outputs (0major+3390203minor)pagefaults 0swaps + +Finished testing testh5dump.sh +============================ diff --git a/build/tools/h5dump/testh5dumppbits.sh b/build/tools/h5dump/testh5dumppbits.sh new file mode 100644 index 0000000..66e25fd --- /dev/null +++ b/build/tools/h5dump/testh5dumppbits.sh @@ -0,0 +1,606 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5dump tool with packed bits type files + +srcdir=../../../tools/h5dump + +# Determine which filters are available +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5dump +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=h5dump # The tool name +DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary + +H5DIFF=../h5diff/h5diff # The h5diff tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary + +H5IMPORT=../h5import/h5import # The h5import tool name +H5IMPORT_BIN=`pwd`/$H5IMPORT # The path of the h5import tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/../" + +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_ERRORFILES="$srcdir/errfiles" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TEST_P_DIR=./testfiles +TESTDIR=./testfiles/pbits +test -d $TEST_P_DIR || mkdir -p $TEST_P_DIR +test -d $TESTDIR || mkdir -p $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5DUMP_TESTFILES/packedbits.h5 +$SRC_H5DUMP_TESTFILES/tarray1.h5 +$SRC_H5DUMP_TESTFILES/tcompound.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5DUMP_TESTFILES/pbits/tnofilename-with-packed-bits.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsArray.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsCompound.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsIncomplete.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsLengthExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsCharLengthExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsIntLengthExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsLongLengthExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsLengthPositive.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsMax.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsMaxExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsOffsetExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsCharOffsetExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsIntOffsetExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsLongOffsetExceeded.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsOffsetNegative.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsOverlapped.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSigned.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsigned.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedInt.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedInt.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLong.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLong.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLong.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLong.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedIntWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedIntWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLongWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLongWhole.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLongWhole1.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLongWhole1.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLongWhole63.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLongWhole63.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSigned4.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsigned4.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedInt8.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedInt8.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLong16.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLong16.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLong32.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLong32.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSigned2.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsigned2.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedInt4.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedInt4.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLong8.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLong8.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsSignedLongLong16.ddl +$SRC_H5DUMP_TESTFILES/pbits/tpbitsUnsignedLongLong16.ddl +" + +LIST_ERROR_TEST_FILES=" +${SRC_H5DUMP_ERRORFILES}/tnofilename-with-packed-bits.err +${SRC_H5DUMP_ERRORFILES}/tpbitsCharLengthExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsCharOffsetExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsIncomplete.err +${SRC_H5DUMP_ERRORFILES}/tpbitsIntLengthExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsIntOffsetExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsLengthExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsLengthPositive.err +${SRC_H5DUMP_ERRORFILES}/tpbitsLongLengthExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsLongOffsetExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsMaxExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsOffsetExceeded.err +${SRC_H5DUMP_ERRORFILES}/tpbitsOffsetNegative.err +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES $LIST_ERROR_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DUMP_TESTFILES/pbits + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext + fi + +} + + +# same as TOOLTEST1 but compares generated file to expected output +# and compares the generated data file to the expected data file +# used for the binary tests that expect a full path in -o without -b +TOOLTEST2() { + + expectdata="$TESTDIR/$1" + expect="$TESTDIR/`basename $1 .exp`.ddl" + actualdata="$TESTDIR/`basename $1 .exp`.txt" + actual="$TESTDIR/`basename $1 .exp`.out" + actual_err="$TESTDIR/`basename $1 .exp`.err" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if [ ! -f $expectdata ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actualdata $expectdata + echo " Expected data (*.exp) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expectdata $actualdata; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected datafile (*.exp) differs from actual datafile (*.txt)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actualdata $actual_err + fi + +} + +# same as TOOLTEST but filters error stack outp +# Extract file name, line number, version and thread IDs because they may be different +TOOLTEST3() { + + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_ext="$TESTDIR/`basename $1 .ddl`.ext" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + cat $actual_ext >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi + +} + +# same as TOOLTEST3 but filters error stack output and compares to an error file +# Extract file name, line number, version and thread IDs because they may be different +TOOLTEST4() { + + expect="$TESTDIR/$1" + expect_err="$TESTDIR/`basename $1 .ddl`.err" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.oerr" + actual_ext="$TESTDIR/`basename $1 .ddl`.ext" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + + # Extract file name, line number, version and thread IDs because they may be different + sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' \ + -e 's/line [0-9]*/line (number)/' \ + -e 's/v[1-9]*\.[0-9]*\./version (number)\./' \ + -e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \ + -e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \ + -e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \ + $actual_err > $actual_ext + #cat $actual_ext >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + if $CMP $expect_err $actual_ext; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.err) differs from actual result (*.oerr)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /' + fi + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi + +} + +# Print a "SKIP" message +SKIP() { + TESTING $DUMPER $@ + echo " -SKIP-" +} + +# Print a line-line message left justified in a field of 70 characters +# +PRINT_H5DIFF() { + SPACES=" " + echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012' +} + + +# Call the h5diff tool +# +DIFFTEST() +{ + PRINT_H5DIFF $@ + ( + cd $TESTDIR + $RUNSERIAL $H5DIFF_BIN "$@" -q + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +PRINT_H5IMPORT() { + SPACES=" " + echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Call the h5import tool +# +IMPORTTEST() +{ + # remove the output hdf5 file if it exists + hdf5_file="$TESTDIR/$5" + if [ -f $hdf5_file ]; then + rm -f $hdf5_file + fi + + PRINT_H5IMPORT $@ + ( + cd $TESTDIR + $RUNSERIAL $H5IMPORT_BIN "$@" + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + +} + + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +####### test for dataset packed bits ###### + +# test failure handling +# Missing file name +TOOLTEST tnofilename-with-packed-bits.ddl --enable-error-stack +# Limits: +# Maximum number of packed bits is 8 (for now). +# Maximum integer size is 64 (for now). +# Maximun Offset is 63 (Maximum size - 1). +# Maximum Offset+Length is 64 (Maximum size). +# Tests: +# Normal operation on both signed and unsigned int datasets. +# Sanity check +# Their rawdata output should be the same. +TOOLTEST tpbitsSignedWhole.ddl --enable-error-stack -d /DS08BITS -M 0,8 packedbits.h5 +TOOLTEST tpbitsUnsignedWhole.ddl --enable-error-stack -d /DU08BITS -M 0,8 packedbits.h5 +TOOLTEST tpbitsSignedIntWhole.ddl --enable-error-stack -d /DS16BITS -M 0,16 packedbits.h5 +TOOLTEST tpbitsUnsignedIntWhole.ddl --enable-error-stack -d /DU16BITS -M 0,16 packedbits.h5 +TOOLTEST tpbitsSignedLongWhole.ddl --enable-error-stack -d /DS32BITS -M 0,32 packedbits.h5 +TOOLTEST tpbitsUnsignedLongWhole.ddl --enable-error-stack -d /DU32BITS -M 0,32 packedbits.h5 +TOOLTEST tpbitsSignedLongLongWhole.ddl --enable-error-stack -d /DS64BITS -M 0,64 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLongWhole.ddl --enable-error-stack -d /DU64BITS -M 0,64 packedbits.h5 +TOOLTEST tpbitsSignedLongLongWhole63.ddl --enable-error-stack -d /DS64BITS -M 0,63 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLongWhole63.ddl --enable-error-stack -d /DU64BITS -M 0,63 packedbits.h5 +TOOLTEST tpbitsSignedLongLongWhole1.ddl --enable-error-stack -d /DS64BITS -M 1,63 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLongWhole1.ddl --enable-error-stack -d /DU64BITS -M 1,63 packedbits.h5 +# Half sections +TOOLTEST tpbitsSigned4.ddl --enable-error-stack -d /DS08BITS -M 0,4,4,4 packedbits.h5 +TOOLTEST tpbitsUnsigned4.ddl --enable-error-stack -d /DU08BITS -M 0,4,4,4 packedbits.h5 +TOOLTEST tpbitsSignedInt8.ddl --enable-error-stack -d /DS16BITS -M 0,8,8,8 packedbits.h5 +TOOLTEST tpbitsUnsignedInt8.ddl --enable-error-stack -d /DU16BITS -M 0,8,8,8 packedbits.h5 +TOOLTEST tpbitsSignedLong16.ddl --enable-error-stack -d /DS32BITS -M 0,16,16,16 packedbits.h5 +TOOLTEST tpbitsUnsignedLong16.ddl --enable-error-stack -d /DU32BITS -M 0,16,16,16 packedbits.h5 +TOOLTEST tpbitsSignedLongLong32.ddl --enable-error-stack -d /DS64BITS -M 0,32,32,32 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLong32.ddl --enable-error-stack -d /DU64BITS -M 0,32,32,32 packedbits.h5 +# Quarter sections +TOOLTEST tpbitsSigned2.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,2,4,2,6,2 packedbits.h5 +TOOLTEST tpbitsUnsigned2.ddl --enable-error-stack -d /DU08BITS -M 0,2,2,2,4,2,6,2 packedbits.h5 +TOOLTEST tpbitsSignedInt4.ddl --enable-error-stack -d /DS16BITS -M 0,4,4,4,8,4,12,4 packedbits.h5 +TOOLTEST tpbitsUnsignedInt4.ddl --enable-error-stack -d /DU16BITS -M 0,4,4,4,8,4,12,4 packedbits.h5 +TOOLTEST tpbitsSignedLong8.ddl --enable-error-stack -d /DS32BITS -M 0,8,8,8,16,8,24,8 packedbits.h5 +TOOLTEST tpbitsUnsignedLong8.ddl --enable-error-stack -d /DU32BITS -M 0,8,8,8,16,8,24,8 packedbits.h5 +TOOLTEST tpbitsSignedLongLong16.ddl --enable-error-stack -d /DS64BITS -M 0,16,16,16,32,16,48,16 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLong16.ddl --enable-error-stack -d /DU64BITS -M 0,16,16,16,32,16,48,16 packedbits.h5 +# Begin and End +TOOLTEST tpbitsSigned.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,6 packedbits.h5 +TOOLTEST tpbitsUnsigned.ddl --enable-error-stack -d /DU08BITS -M 0,2,2,6 packedbits.h5 +TOOLTEST tpbitsSignedInt.ddl --enable-error-stack -d /DS16BITS -M 0,2,10,6 packedbits.h5 +TOOLTEST tpbitsUnsignedInt.ddl --enable-error-stack -d /DU16BITS -M 0,2,10,6 packedbits.h5 +TOOLTEST tpbitsSignedLong.ddl --enable-error-stack -d /DS32BITS -M 0,2,26,6 packedbits.h5 +TOOLTEST tpbitsUnsignedLong.ddl --enable-error-stack -d /DU32BITS -M 0,2,26,6 packedbits.h5 +TOOLTEST tpbitsSignedLongLong.ddl --enable-error-stack -d /DS64BITS -M 0,2,58,6 packedbits.h5 +TOOLTEST tpbitsUnsignedLongLong.ddl --enable-error-stack -d /DU64BITS -M 0,2,58,6 packedbits.h5 +# Overlapped packed bits. +TOOLTEST tpbitsOverlapped.ddl --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,0,3 packedbits.h5 +# Maximum number of packed bits. +TOOLTEST tpbitsMax.ddl --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1 packedbits.h5 +# Compound type. +TOOLTEST tpbitsCompound.ddl --enable-error-stack -d /dset1 -M 0,1,1,1 tcompound.h5 +# Array type. +TOOLTEST tpbitsArray.ddl --enable-error-stack -d /Dataset1 -M 0,1,1,1 tarray1.h5 +# Test Error handling. +# Too many packed bits requested. Max is 8 for now. +TOOLTEST tpbitsMaxExceeded.ddl --enable-error-stack -d /DS08BITS -M 0,1,0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1 packedbits.h5 +# Offset too large. Max is 7 (8-1) for now. +TOOLTEST tpbitsOffsetExceeded.ddl --enable-error-stack -d /DS08BITS -M 64,1 packedbits.h5 +TOOLTEST tpbitsCharOffsetExceeded.ddl --enable-error-stack -d /DS08BITS -M 8,1 packedbits.h5 +TOOLTEST tpbitsIntOffsetExceeded.ddl --enable-error-stack -d /DS16BITS -M 16,1 packedbits.h5 +TOOLTEST tpbitsLongOffsetExceeded.ddl --enable-error-stack -d /DS32BITS -M 32,1 packedbits.h5 +# Bad offset, must not be negative. +TOOLTEST tpbitsOffsetNegative.ddl --enable-error-stack -d /DS08BITS -M -1,1 packedbits.h5 +# Bad length, must not be positive. +TOOLTEST tpbitsLengthPositive.ddl --enable-error-stack -d /DS08BITS -M 4,0 packedbits.h5 +# Offset+Length is too large. Max is 8 for now. +TOOLTEST tpbitsLengthExceeded.ddl --enable-error-stack -d /DS08BITS -M 37,28 packedbits.h5 +TOOLTEST tpbitsCharLengthExceeded.ddl --enable-error-stack -d /DS08BITS -M 2,7 packedbits.h5 +TOOLTEST tpbitsIntLengthExceeded.ddl --enable-error-stack -d /DS16BITS -M 10,7 packedbits.h5 +TOOLTEST tpbitsLongLengthExceeded.ddl --enable-error-stack -d /DS32BITS -M 26,7 packedbits.h5 +# Incomplete pair of packed bits request. +TOOLTEST tpbitsIncomplete.ddl --enable-error-stack -d /DS08BITS -M 0,2,2,1,0,2,2, packedbits.h5 + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Report test results and exit +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5dump/testh5dumppbits.sh.chkexe b/build/tools/h5dump/testh5dumppbits.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/testh5dumppbits.sh.chklog b/build/tools/h5dump/testh5dumppbits.sh.chklog new file mode 100644 index 0000000..9db931f --- /dev/null +++ b/build/tools/h5dump/testh5dumppbits.sh.chklog @@ -0,0 +1,62 @@ +============================ +testh5dumppbits.sh Test Log +============================ +Testing h5dump --enable-error-stack PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,8 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,8 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,16 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,16 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,32 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,32 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,64 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,64 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 1,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 1,63 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,4,4,4 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,4,4,4 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,8,8,8 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,8,8,8 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,16,16,16 packedb PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,16,16,16 packedb PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,32,32,32 packedb PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,32,32,32 packedb PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,2,4,2,6,2 pa PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,2,4,2,6,2 pa PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,4,4,4,8,4,12,4 p PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,4,4,4,8,4,12,4 p PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,8,8,8,16,8,24,8 PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,8,8,8,16,8,24,8 PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,16,16,16,32,16,4 PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,16,16,16,32,16,4 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,6 packedbits PASSED +Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,6 packedbits PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 0,2,10,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU16BITS -M 0,2,10,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 0,2,26,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU32BITS -M 0,2,26,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS64BITS -M 0,2,58,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DU64BITS -M 0,2,58,6 packedbit PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,0,3 pa PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,3,1,4, PASSED +Testing h5dump --enable-error-stack -d /dset1 -M 0,1,1,1 tcompound.h5 PASSED +Testing h5dump --enable-error-stack -d /Dataset1 -M 0,1,1,1 tarray1.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,0,1,1,1,2,1,3, PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 64,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 8,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 16,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 32,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M -1,1 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 4,0 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 37,28 packedbits.h PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 2,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS16BITS -M 10,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS32BITS -M 26,7 packedbits.h5 PASSED +Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,1,0,2,2, pac PASSED +All h5dump tests passed. +1.08user 2.44system 0:02.95elapsed 119%CPU (0avgtext+0avgdata 5324maxresident)k +0inputs+6080outputs (0major+921638minor)pagefaults 0swaps + +Finished testing testh5dumppbits.sh +============================ diff --git a/build/tools/h5dump/testh5dumpxml.sh b/build/tools/h5dump/testh5dumpxml.sh new file mode 100644 index 0000000..5f971c6 --- /dev/null +++ b/build/tools/h5dump/testh5dumpxml.sh @@ -0,0 +1,400 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5dump tool + +srcdir=../../../tools/h5dump + +TESTNAME=h5dumpxml +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=h5dump # The tool name +DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +WORDS_BIGENDIAN="no" + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/../" + +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TEST_P_DIR=./testfiles +TESTDIR=./testfiles/xml +test -d $TEST_P_DIR || mkdir -p $TEST_P_DIR +test -d $TESTDIR || mkdir -p $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES_XML=" +$SRC_H5DUMP_TESTFILES/tall.h5 +$SRC_H5DUMP_TESTFILES/tarray1.h5 +$SRC_H5DUMP_TESTFILES/tarray2.h5 +$SRC_H5DUMP_TESTFILES/tarray3.h5 +$SRC_H5DUMP_TESTFILES/tarray6.h5 +$SRC_H5DUMP_TESTFILES/tarray7.h5 +$SRC_H5DUMP_TESTFILES/tattr.h5 +$SRC_H5DUMP_TESTFILES/tbitfields.h5 +$SRC_H5DUMP_TESTFILES/tcompound.h5 +$SRC_H5DUMP_TESTFILES/tcompound2.h5 +$SRC_H5DUMP_TESTFILES/tcompound_complex.h5 +$SRC_H5DUMP_TESTFILES/tdatareg.h5 +$SRC_H5DUMP_TESTFILES/tdset.h5 +$SRC_H5DUMP_TESTFILES/tdset2.h5 +$SRC_H5DUMP_TESTFILES/tempty.h5 +$SRC_H5DUMP_TESTFILES/tenum.h5 +$SRC_H5DUMP_TESTFILES/test35.nc +$SRC_H5DUMP_TESTFILES/textlink.h5 +$SRC_H5DUMP_TESTFILES/tfpformat.h5 +$SRC_H5DUMP_TESTFILES/tgroup.h5 +$SRC_H5DUMP_TESTFILES/thlink.h5 +$SRC_H5DUMP_TESTFILES/tloop.h5 +$SRC_H5DUMP_TESTFILES/tloop2.h5 +$SRC_H5DUMP_TESTFILES/tmany.h5 +$SRC_H5DUMP_TESTFILES/tname-amp.h5 +$SRC_H5DUMP_TESTFILES/tname-apos.h5 +$SRC_H5DUMP_TESTFILES/tname-gt.h5 +$SRC_H5DUMP_TESTFILES/tname-lt.h5 +$SRC_H5DUMP_TESTFILES/tname-quot.h5 +$SRC_H5DUMP_TESTFILES/tname-sp.h5 +$SRC_H5DUMP_TESTFILES/tnamed_dtype_attr.h5 +$SRC_H5DUMP_TESTFILES/tnestedcomp.h5 +$SRC_H5DUMP_TESTFILES/tnodata.h5 +$SRC_H5DUMP_TESTFILES/tnullspace.h5 +$SRC_H5DUMP_TESTFILES/tobjref.h5 +$SRC_H5DUMP_TESTFILES/topaque.h5 +$SRC_H5DUMP_TESTFILES/torderattr.h5 +$SRC_H5DUMP_TESTFILES/tref.h5 +$SRC_H5DUMP_TESTFILES/tref-escapes.h5 +$SRC_H5DUMP_TESTFILES/tref-escapes-at.h5 +$SRC_H5DUMP_TESTFILES/tsaf.h5 +$SRC_H5DUMP_TESTFILES/tslink.h5 +$SRC_H5DUMP_TESTFILES/tstring.h5 +$SRC_H5DUMP_TESTFILES/tstring-at.h5 +$SRC_H5DUMP_TESTFILES/tstr.h5 +$SRC_H5DUMP_TESTFILES/tstr2.h5 +$SRC_H5DUMP_TESTFILES/tudlink.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes1.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes2.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes3.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes4.h5 +$SRC_H5DUMP_TESTFILES/tvldtypes5.h5 +$SRC_H5DUMP_TESTFILES/tvlstr.h5 +" + +LIST_OTHER_TEST_FILES_XML=" +$SRC_H5DUMP_TESTFILES/tall.h5.xml +$SRC_H5DUMP_TESTFILES/tall-2A.h5.xml +$SRC_H5DUMP_TESTFILES/tarray1.h5.xml +$SRC_H5DUMP_TESTFILES/tarray2.h5.xml +$SRC_H5DUMP_TESTFILES/tarray3.h5.xml +$SRC_H5DUMP_TESTFILES/tarray6.h5.xml +$SRC_H5DUMP_TESTFILES/tarray7.h5.xml +$SRC_H5DUMP_TESTFILES/tattr.h5.xml +$SRC_H5DUMP_TESTFILES/tbitfields_be.h5.xml +$SRC_H5DUMP_TESTFILES/tbitfields_le.h5.xml +$SRC_H5DUMP_TESTFILES/tcompound_complex.h5.xml +$SRC_H5DUMP_TESTFILES/tcompound.h5.xml +$SRC_H5DUMP_TESTFILES/tcompound2.h5.xml +$SRC_H5DUMP_TESTFILES/tdatareg.h5.xml +$SRC_H5DUMP_TESTFILES/tdset.h5.xml +$SRC_H5DUMP_TESTFILES/tdset2.h5.xml +$SRC_H5DUMP_TESTFILES/tempty.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-dtd.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-dtd-2.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-dtd-uri.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-nons.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-nons-2.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-nons-uri.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-ns.h5.xml +$SRC_H5DUMP_TESTFILES/tempty-ns-2.h5.xml +$SRC_H5DUMP_TESTFILES/tenum.h5.xml +$SRC_H5DUMP_TESTFILES/test35.nc.xml +$SRC_H5DUMP_TESTFILES/textlink.h5.xml +$SRC_H5DUMP_TESTFILES/tfpformat.h5.xml +$SRC_H5DUMP_TESTFILES/tgroup.h5.xml +$SRC_H5DUMP_TESTFILES/thlink.h5.xml +$SRC_H5DUMP_TESTFILES/tloop.h5.xml +$SRC_H5DUMP_TESTFILES/tloop2.h5.xml +$SRC_H5DUMP_TESTFILES/tmany.h5.xml +$SRC_H5DUMP_TESTFILES/tname-amp.h5.xml +$SRC_H5DUMP_TESTFILES/tname-apos.h5.xml +$SRC_H5DUMP_TESTFILES/tnamed_dtype_attr.h5.xml +$SRC_H5DUMP_TESTFILES/tname-gt.h5.xml +$SRC_H5DUMP_TESTFILES/tname-lt.h5.xml +$SRC_H5DUMP_TESTFILES/tname-quot.h5.xml +$SRC_H5DUMP_TESTFILES/tname-sp.h5.xml +$SRC_H5DUMP_TESTFILES/tnestedcomp.h5.xml +$SRC_H5DUMP_TESTFILES/tnodata.h5.xml +$SRC_H5DUMP_TESTFILES/tnullspace.h5.xml +$SRC_H5DUMP_TESTFILES/tobjref.h5.xml +$SRC_H5DUMP_TESTFILES/topaque.h5.xml +$SRC_H5DUMP_TESTFILES/torderattr1.h5.xml +$SRC_H5DUMP_TESTFILES/torderattr2.h5.xml +$SRC_H5DUMP_TESTFILES/torderattr3.h5.xml +$SRC_H5DUMP_TESTFILES/torderattr4.h5.xml +$SRC_H5DUMP_TESTFILES/tref.h5.xml +$SRC_H5DUMP_TESTFILES/tref-escapes.h5.xml +$SRC_H5DUMP_TESTFILES/tref-escapes-at.h5.xml +$SRC_H5DUMP_TESTFILES/tsaf.h5.xml +$SRC_H5DUMP_TESTFILES/tslink.h5.xml +$SRC_H5DUMP_TESTFILES/tstr.h5.xml +$SRC_H5DUMP_TESTFILES/tstr2.h5.xml +$SRC_H5DUMP_TESTFILES/tstring.h5.xml +$SRC_H5DUMP_TESTFILES/tstring-at.h5.xml +$SRC_H5DUMP_TESTFILES/tudlink.h5.xml +$SRC_H5DUMP_TESTFILES/tvldtypes1.h5.xml +$SRC_H5DUMP_TESTFILES/tvldtypes2.h5.xml +$SRC_H5DUMP_TESTFILES/tvldtypes3.h5.xml +$SRC_H5DUMP_TESTFILES/tvldtypes4.h5.xml +$SRC_H5DUMP_TESTFILES/tvldtypes5.h5.xml +$SRC_H5DUMP_TESTFILES/tvlstr.h5.xml +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES_XML $LIST_OTHER_TEST_FILES_XML" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5DUMP_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .xml`.out" + actual_err="$TESTDIR/`basename $1 .xml`.err" + shift + + # Run test. + TESTING $DUMPER $@ + ( + cd $TESTDIR + $RUNSERIAL $DUMPER_BIN "$@" + ) >$actual 2>$actual_err + + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.xml) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.xml) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err + fi +} + +# Print a "SKIP" message +SKIP() { + TESTING $DUMPER $@ + echo " -SKIP-" +} + + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# test XML +TOOLTEST tall.h5.xml --xml tall.h5 +TOOLTEST tattr.h5.xml --xml tattr.h5 +if test $WORDS_BIGENDIAN != "yes"; then +TOOLTEST tbitfields_le.h5.xml --xml tbitfields.h5 +else +TOOLTEST tbitfields_be.h5.xml --xml tbitfields.h5 +fi +TOOLTEST tcompound.h5.xml --xml tcompound.h5 +TOOLTEST tcompound2.h5.xml --xml tcompound2.h5 +TOOLTEST tdatareg.h5.xml --xml tdatareg.h5 +TOOLTEST tdset.h5.xml --xml tdset.h5 +TOOLTEST tdset2.h5.xml --xml tdset2.h5 +TOOLTEST tenum.h5.xml --xml tenum.h5 +TOOLTEST tgroup.h5.xml --xml tgroup.h5 +TOOLTEST thlink.h5.xml --xml thlink.h5 +TOOLTEST tloop.h5.xml --xml tloop.h5 +TOOLTEST tloop2.h5.xml --xml tloop2.h5 +TOOLTEST tmany.h5.xml --xml tmany.h5 +TOOLTEST tnestedcomp.h5.xml --xml tnestedcomp.h5 +TOOLTEST tcompound_complex.h5.xml --xml tcompound_complex.h5 +TOOLTEST tobjref.h5.xml --xml tobjref.h5 +TOOLTEST topaque.h5.xml --xml topaque.h5 +TOOLTEST tslink.h5.xml --xml tslink.h5 +TOOLTEST tudlink.h5.xml --xml tudlink.h5 +TOOLTEST textlink.h5.xml --xml textlink.h5 +TOOLTEST tstr.h5.xml --xml tstr.h5 +TOOLTEST tstr2.h5.xml --xml tstr2.h5 +TOOLTEST tref.h5.xml --xml tref.h5 +TOOLTEST tname-amp.h5.xml --xml tname-amp.h5 +TOOLTEST tname-apos.h5.xml --xml tname-apos.h5 +TOOLTEST tname-gt.h5.xml --xml tname-gt.h5 +TOOLTEST tname-lt.h5.xml --xml tname-lt.h5 +TOOLTEST tname-quot.h5.xml --xml tname-quot.h5 +TOOLTEST tname-sp.h5.xml --xml tname-sp.h5 +TOOLTEST tstring.h5.xml --xml tstring.h5 +TOOLTEST tstring-at.h5.xml --xml tstring-at.h5 +TOOLTEST tref-escapes.h5.xml --xml tref-escapes.h5 +TOOLTEST tref-escapes-at.h5.xml --xml tref-escapes-at.h5 +TOOLTEST tnodata.h5.xml --xml tnodata.h5 +TOOLTEST tarray1.h5.xml --xml tarray1.h5 +TOOLTEST tarray2.h5.xml --xml tarray2.h5 +TOOLTEST tarray3.h5.xml --xml tarray3.h5 +TOOLTEST tarray6.h5.xml --xml tarray6.h5 +TOOLTEST tarray7.h5.xml --xml tarray7.h5 +TOOLTEST tvldtypes1.h5.xml --xml tvldtypes1.h5 +TOOLTEST tvldtypes2.h5.xml --xml tvldtypes2.h5 +TOOLTEST tvldtypes3.h5.xml --xml tvldtypes3.h5 +TOOLTEST tvldtypes4.h5.xml --xml tvldtypes4.h5 +TOOLTEST tvldtypes5.h5.xml --xml tvldtypes5.h5 +TOOLTEST tvlstr.h5.xml --xml tvlstr.h5 +TOOLTEST tsaf.h5.xml --xml tsaf.h5 +TOOLTEST tempty.h5.xml --xml tempty.h5 +TOOLTEST tnamed_dtype_attr.h5.xml --xml tnamed_dtype_attr.h5 +TOOLTEST tnullspace.h5.xml --xml tnullspace.h5 + +# other options for xml + +TOOLTEST tempty-dtd.h5.xml --xml --use-dtd tempty.h5 +TOOLTEST tempty-dtd-2.h5.xml --xml -u tempty.h5 +TOOLTEST tempty-nons.h5.xml --xml -X ":" tempty.h5 +TOOLTEST tempty-nons-2.h5.xml --xml --xml-ns=":" tempty.h5 + +## Some of these combinations are syntactically correct but +## the URLs are dummies +TOOLTEST tempty-ns.h5.xml --xml -X "thing:" tempty.h5 +TOOLTEST tempty-ns-2.h5.xml --xml --xml-ns="thing:" tempty.h5 +TOOLTEST tempty-nons-uri.h5.xml --xml --xml-ns=":" --xml-dtd="http://somewhere.net" tempty.h5 +TOOLTEST tempty-dtd-uri.h5.xml --xml --use-dtd --xml-dtd="http://somewhere.net" tempty.h5 + +TOOLTEST tall-2A.h5.xml --xml -A tall.h5 + + +# tests for attribute order +TOOLTEST torderattr1.h5.xml --xml -H --sort_by=name --sort_order=ascending torderattr.h5 +TOOLTEST torderattr2.h5.xml --xml -H --sort_by=name --sort_order=descending torderattr.h5 +TOOLTEST torderattr3.h5.xml --xml -H --sort_by=creation_order --sort_order=ascending torderattr.h5 +TOOLTEST torderattr4.h5.xml --xml -H --sort_by=creation_order --sort_order=descending torderattr.h5 + +# tests for floating point user defined printf format +TOOLTEST tfpformat.h5.xml -u -m %.7f tfpformat.h5 + +# test for HDFFV-10256 issue +TOOLTEST test35.nc.xml --xml test35.nc + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5dump/testh5dumpxml.sh.chkexe b/build/tools/h5dump/testh5dumpxml.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/testh5dumpxml.sh.chklog b/build/tools/h5dump/testh5dumpxml.sh.chklog new file mode 100644 index 0000000..180abc8 --- /dev/null +++ b/build/tools/h5dump/testh5dumpxml.sh.chklog @@ -0,0 +1,74 @@ +============================ +testh5dumpxml.sh Test Log +============================ +Testing h5dump --xml tall.h5 PASSED +Testing h5dump --xml tattr.h5 PASSED +Testing h5dump --xml tbitfields.h5 PASSED +Testing h5dump --xml tcompound.h5 PASSED +Testing h5dump --xml tcompound2.h5 PASSED +Testing h5dump --xml tdatareg.h5 PASSED +Testing h5dump --xml tdset.h5 PASSED +Testing h5dump --xml tdset2.h5 PASSED +Testing h5dump --xml tenum.h5 PASSED +Testing h5dump --xml tgroup.h5 PASSED +Testing h5dump --xml thlink.h5 PASSED +Testing h5dump --xml tloop.h5 PASSED +Testing h5dump --xml tloop2.h5 PASSED +Testing h5dump --xml tmany.h5 PASSED +Testing h5dump --xml tnestedcomp.h5 PASSED +Testing h5dump --xml tcompound_complex.h5 PASSED +Testing h5dump --xml tobjref.h5 PASSED +Testing h5dump --xml topaque.h5 PASSED +Testing h5dump --xml tslink.h5 PASSED +Testing h5dump --xml tudlink.h5 PASSED +Testing h5dump --xml textlink.h5 PASSED +Testing h5dump --xml tstr.h5 PASSED +Testing h5dump --xml tstr2.h5 PASSED +Testing h5dump --xml tref.h5 PASSED +Testing h5dump --xml tname-amp.h5 PASSED +Testing h5dump --xml tname-apos.h5 PASSED +Testing h5dump --xml tname-gt.h5 PASSED +Testing h5dump --xml tname-lt.h5 PASSED +Testing h5dump --xml tname-quot.h5 PASSED +Testing h5dump --xml tname-sp.h5 PASSED +Testing h5dump --xml tstring.h5 PASSED +Testing h5dump --xml tstring-at.h5 PASSED +Testing h5dump --xml tref-escapes.h5 PASSED +Testing h5dump --xml tref-escapes-at.h5 PASSED +Testing h5dump --xml tnodata.h5 PASSED +Testing h5dump --xml tarray1.h5 PASSED +Testing h5dump --xml tarray2.h5 PASSED +Testing h5dump --xml tarray3.h5 PASSED +Testing h5dump --xml tarray6.h5 PASSED +Testing h5dump --xml tarray7.h5 PASSED +Testing h5dump --xml tvldtypes1.h5 PASSED +Testing h5dump --xml tvldtypes2.h5 PASSED +Testing h5dump --xml tvldtypes3.h5 PASSED +Testing h5dump --xml tvldtypes4.h5 PASSED +Testing h5dump --xml tvldtypes5.h5 PASSED +Testing h5dump --xml tvlstr.h5 PASSED +Testing h5dump --xml tsaf.h5 PASSED +Testing h5dump --xml tempty.h5 PASSED +Testing h5dump --xml tnamed_dtype_attr.h5 PASSED +Testing h5dump --xml tnullspace.h5 PASSED +Testing h5dump --xml --use-dtd tempty.h5 PASSED +Testing h5dump --xml -u tempty.h5 PASSED +Testing h5dump --xml -X : tempty.h5 PASSED +Testing h5dump --xml --xml-ns=: tempty.h5 PASSED +Testing h5dump --xml -X thing: tempty.h5 PASSED +Testing h5dump --xml --xml-ns=thing: tempty.h5 PASSED +Testing h5dump --xml --xml-ns=: --xml-dtd=http://somewhere.net tempty. PASSED +Testing h5dump --xml --use-dtd --xml-dtd=http://somewhere.net tempty.h PASSED +Testing h5dump --xml -A tall.h5 PASSED +Testing h5dump --xml -H --sort_by=name --sort_order=ascending torderat PASSED +Testing h5dump --xml -H --sort_by=name --sort_order=descending tordera PASSED +Testing h5dump --xml -H --sort_by=creation_order --sort_order=ascendin PASSED +Testing h5dump --xml -H --sort_by=creation_order --sort_order=descendi PASSED +Testing h5dump -u -m %.7f tfpformat.h5 PASSED +Testing h5dump --xml test35.nc PASSED +All h5dumpxml tests passed. +1.17user 2.44system 0:02.73elapsed 131%CPU (0avgtext+0avgdata 7188maxresident)k +0inputs+4312outputs (0major+957317minor)pagefaults 0swaps + +Finished testing testh5dumpxml.sh +============================ diff --git a/build/tools/h5dump/textlink.h5 b/build/tools/h5dump/textlink.h5 new file mode 100644 index 0000000..1fa2ef0 Binary files /dev/null and b/build/tools/h5dump/textlink.h5 differ diff --git a/build/tools/h5dump/textlinkfar.h5 b/build/tools/h5dump/textlinkfar.h5 new file mode 100644 index 0000000..227a7a3 Binary files /dev/null and b/build/tools/h5dump/textlinkfar.h5 differ diff --git a/build/tools/h5dump/textlinksrc.h5 b/build/tools/h5dump/textlinksrc.h5 new file mode 100644 index 0000000..4db1cc4 Binary files /dev/null and b/build/tools/h5dump/textlinksrc.h5 differ diff --git a/build/tools/h5dump/textlinktar.h5 b/build/tools/h5dump/textlinktar.h5 new file mode 100644 index 0000000..ccbaae2 Binary files /dev/null and b/build/tools/h5dump/textlinktar.h5 differ diff --git a/build/tools/h5dump/tfamily00000.h5 b/build/tools/h5dump/tfamily00000.h5 new file mode 100644 index 0000000..6ae4f67 Binary files /dev/null and b/build/tools/h5dump/tfamily00000.h5 differ diff --git a/build/tools/h5dump/tfamily00001.h5 b/build/tools/h5dump/tfamily00001.h5 new file mode 100644 index 0000000..65f57c2 Binary files /dev/null and b/build/tools/h5dump/tfamily00001.h5 differ diff --git a/build/tools/h5dump/tfamily00002.h5 b/build/tools/h5dump/tfamily00002.h5 new file mode 100644 index 0000000..435599c Binary files /dev/null and b/build/tools/h5dump/tfamily00002.h5 differ diff --git a/build/tools/h5dump/tfamily00003.h5 b/build/tools/h5dump/tfamily00003.h5 new file mode 100644 index 0000000..e7173da Binary files /dev/null and b/build/tools/h5dump/tfamily00003.h5 differ diff --git a/build/tools/h5dump/tfamily00004.h5 b/build/tools/h5dump/tfamily00004.h5 new file mode 100644 index 0000000..3c7d3b4 Binary files /dev/null and b/build/tools/h5dump/tfamily00004.h5 differ diff --git a/build/tools/h5dump/tfamily00005.h5 b/build/tools/h5dump/tfamily00005.h5 new file mode 100644 index 0000000..65f57c2 Binary files /dev/null and b/build/tools/h5dump/tfamily00005.h5 differ diff --git a/build/tools/h5dump/tfamily00006.h5 b/build/tools/h5dump/tfamily00006.h5 new file mode 100644 index 0000000..65f57c2 Binary files /dev/null and b/build/tools/h5dump/tfamily00006.h5 differ diff --git a/build/tools/h5dump/tfamily00007.h5 b/build/tools/h5dump/tfamily00007.h5 new file mode 100644 index 0000000..65f57c2 Binary files /dev/null and b/build/tools/h5dump/tfamily00007.h5 differ diff --git a/build/tools/h5dump/tfamily00008.h5 b/build/tools/h5dump/tfamily00008.h5 new file mode 100644 index 0000000..861fc9a Binary files /dev/null and b/build/tools/h5dump/tfamily00008.h5 differ diff --git a/build/tools/h5dump/tfamily00009.h5 b/build/tools/h5dump/tfamily00009.h5 new file mode 100644 index 0000000..53779f9 Binary files /dev/null and b/build/tools/h5dump/tfamily00009.h5 differ diff --git a/build/tools/h5dump/tfamily00010.h5 b/build/tools/h5dump/tfamily00010.h5 new file mode 100644 index 0000000..20a25b6 Binary files /dev/null and b/build/tools/h5dump/tfamily00010.h5 differ diff --git a/build/tools/h5dump/tfamily00011.h5 b/build/tools/h5dump/tfamily00011.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfamily00012.h5 b/build/tools/h5dump/tfamily00012.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfamily00013.h5 b/build/tools/h5dump/tfamily00013.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfamily00014.h5 b/build/tools/h5dump/tfamily00014.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfamily00015.h5 b/build/tools/h5dump/tfamily00015.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfamily00016.h5 b/build/tools/h5dump/tfamily00016.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tfcontents1.h5 b/build/tools/h5dump/tfcontents1.h5 new file mode 100644 index 0000000..5b6391d Binary files /dev/null and b/build/tools/h5dump/tfcontents1.h5 differ diff --git a/build/tools/h5dump/tfcontents2.h5 b/build/tools/h5dump/tfcontents2.h5 new file mode 100644 index 0000000..82daee0 Binary files /dev/null and b/build/tools/h5dump/tfcontents2.h5 differ diff --git a/build/tools/h5dump/tfilters.h5 b/build/tools/h5dump/tfilters.h5 new file mode 100644 index 0000000..a0d22fe Binary files /dev/null and b/build/tools/h5dump/tfilters.h5 differ diff --git a/build/tools/h5dump/tfpformat.h5 b/build/tools/h5dump/tfpformat.h5 new file mode 100644 index 0000000..bd8fe31 Binary files /dev/null and b/build/tools/h5dump/tfpformat.h5 differ diff --git a/build/tools/h5dump/tfvalues.h5 b/build/tools/h5dump/tfvalues.h5 new file mode 100644 index 0000000..5c67cda Binary files /dev/null and b/build/tools/h5dump/tfvalues.h5 differ diff --git a/build/tools/h5dump/tgroup.h5 b/build/tools/h5dump/tgroup.h5 new file mode 100644 index 0000000..caae7d0 Binary files /dev/null and b/build/tools/h5dump/tgroup.h5 differ diff --git a/build/tools/h5dump/tgrp_comments.h5 b/build/tools/h5dump/tgrp_comments.h5 new file mode 100644 index 0000000..ddd2eec Binary files /dev/null and b/build/tools/h5dump/tgrp_comments.h5 differ diff --git a/build/tools/h5dump/tgrpnullspace.h5 b/build/tools/h5dump/tgrpnullspace.h5 new file mode 100644 index 0000000..6dcce14 Binary files /dev/null and b/build/tools/h5dump/tgrpnullspace.h5 differ diff --git a/build/tools/h5dump/thlink.h5 b/build/tools/h5dump/thlink.h5 new file mode 100644 index 0000000..bb0acee Binary files /dev/null and b/build/tools/h5dump/thlink.h5 differ diff --git a/build/tools/h5dump/thyperslab.h5 b/build/tools/h5dump/thyperslab.h5 new file mode 100644 index 0000000..7fed9f5 Binary files /dev/null and b/build/tools/h5dump/thyperslab.h5 differ diff --git a/build/tools/h5dump/tints4dims.h5 b/build/tools/h5dump/tints4dims.h5 new file mode 100644 index 0000000..9d821fb Binary files /dev/null and b/build/tools/h5dump/tints4dims.h5 differ diff --git a/build/tools/h5dump/tintsattrs.h5 b/build/tools/h5dump/tintsattrs.h5 new file mode 100644 index 0000000..7e08b98 Binary files /dev/null and b/build/tools/h5dump/tintsattrs.h5 differ diff --git a/build/tools/h5dump/tlarge_objname.h5 b/build/tools/h5dump/tlarge_objname.h5 new file mode 100644 index 0000000..8500cf4 Binary files /dev/null and b/build/tools/h5dump/tlarge_objname.h5 differ diff --git a/build/tools/h5dump/tldouble.h5 b/build/tools/h5dump/tldouble.h5 new file mode 100644 index 0000000..5c50826 Binary files /dev/null and b/build/tools/h5dump/tldouble.h5 differ diff --git a/build/tools/h5dump/tlonglinks.h5 b/build/tools/h5dump/tlonglinks.h5 new file mode 100644 index 0000000..e123769 Binary files /dev/null and b/build/tools/h5dump/tlonglinks.h5 differ diff --git a/build/tools/h5dump/tloop.h5 b/build/tools/h5dump/tloop.h5 new file mode 100644 index 0000000..5231fa5 Binary files /dev/null and b/build/tools/h5dump/tloop.h5 differ diff --git a/build/tools/h5dump/tloop2.h5 b/build/tools/h5dump/tloop2.h5 new file mode 100644 index 0000000..e7b8f54 Binary files /dev/null and b/build/tools/h5dump/tloop2.h5 differ diff --git a/build/tools/h5dump/tmany.h5 b/build/tools/h5dump/tmany.h5 new file mode 100644 index 0000000..3b8eb97 Binary files /dev/null and b/build/tools/h5dump/tmany.h5 differ diff --git a/build/tools/h5dump/tmulti-b.h5 b/build/tools/h5dump/tmulti-b.h5 new file mode 100644 index 0000000..1f1003f Binary files /dev/null and b/build/tools/h5dump/tmulti-b.h5 differ diff --git a/build/tools/h5dump/tmulti-g.h5 b/build/tools/h5dump/tmulti-g.h5 new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5dump/tmulti-l.h5 b/build/tools/h5dump/tmulti-l.h5 new file mode 100644 index 0000000..5947325 Binary files /dev/null and b/build/tools/h5dump/tmulti-l.h5 differ diff --git a/build/tools/h5dump/tmulti-o.h5 b/build/tools/h5dump/tmulti-o.h5 new file mode 100644 index 0000000..dce5abb Binary files /dev/null and b/build/tools/h5dump/tmulti-o.h5 differ diff --git a/build/tools/h5dump/tmulti-r.h5 b/build/tools/h5dump/tmulti-r.h5 new file mode 100644 index 0000000..eb08e79 Binary files /dev/null and b/build/tools/h5dump/tmulti-r.h5 differ diff --git a/build/tools/h5dump/tmulti-s.h5 b/build/tools/h5dump/tmulti-s.h5 new file mode 100644 index 0000000..73bb2e2 Binary files /dev/null and b/build/tools/h5dump/tmulti-s.h5 differ diff --git a/build/tools/h5dump/tnamed_dtype_attr.h5 b/build/tools/h5dump/tnamed_dtype_attr.h5 new file mode 100644 index 0000000..fa56d88 Binary files /dev/null and b/build/tools/h5dump/tnamed_dtype_attr.h5 differ diff --git a/build/tools/h5dump/tnestedcmpddt.h5 b/build/tools/h5dump/tnestedcmpddt.h5 new file mode 100644 index 0000000..65785fe Binary files /dev/null and b/build/tools/h5dump/tnestedcmpddt.h5 differ diff --git a/build/tools/h5dump/tnestedcomp.h5 b/build/tools/h5dump/tnestedcomp.h5 new file mode 100644 index 0000000..f6e10ef Binary files /dev/null and b/build/tools/h5dump/tnestedcomp.h5 differ diff --git a/build/tools/h5dump/tnullspace.h5 b/build/tools/h5dump/tnullspace.h5 new file mode 100644 index 0000000..b9f849f Binary files /dev/null and b/build/tools/h5dump/tnullspace.h5 differ diff --git a/build/tools/h5dump/tobjref.h5 b/build/tools/h5dump/tobjref.h5 new file mode 100644 index 0000000..3d762bc Binary files /dev/null and b/build/tools/h5dump/tobjref.h5 differ diff --git a/build/tools/h5dump/topaque.h5 b/build/tools/h5dump/topaque.h5 new file mode 100644 index 0000000..848a973 Binary files /dev/null and b/build/tools/h5dump/topaque.h5 differ diff --git a/build/tools/h5dump/torderattr.h5 b/build/tools/h5dump/torderattr.h5 new file mode 100644 index 0000000..1b8beb1 Binary files /dev/null and b/build/tools/h5dump/torderattr.h5 differ diff --git a/build/tools/h5dump/tordergr.h5 b/build/tools/h5dump/tordergr.h5 new file mode 100644 index 0000000..a926250 Binary files /dev/null and b/build/tools/h5dump/tordergr.h5 differ diff --git a/build/tools/h5dump/tscalarattrintsize.h5 b/build/tools/h5dump/tscalarattrintsize.h5 new file mode 100644 index 0000000..827ef10 Binary files /dev/null and b/build/tools/h5dump/tscalarattrintsize.h5 differ diff --git a/build/tools/h5dump/tscalarintattrsize.h5 b/build/tools/h5dump/tscalarintattrsize.h5 new file mode 100644 index 0000000..a489272 Binary files /dev/null and b/build/tools/h5dump/tscalarintattrsize.h5 differ diff --git a/build/tools/h5dump/tscalarintsize.h5 b/build/tools/h5dump/tscalarintsize.h5 new file mode 100644 index 0000000..450175c Binary files /dev/null and b/build/tools/h5dump/tscalarintsize.h5 differ diff --git a/build/tools/h5dump/tscalarstring.h5 b/build/tools/h5dump/tscalarstring.h5 new file mode 100644 index 0000000..26e13ab Binary files /dev/null and b/build/tools/h5dump/tscalarstring.h5 differ diff --git a/build/tools/h5dump/tslink.h5 b/build/tools/h5dump/tslink.h5 new file mode 100644 index 0000000..46ae68f Binary files /dev/null and b/build/tools/h5dump/tslink.h5 differ diff --git a/build/tools/h5dump/tsoftlinks.h5 b/build/tools/h5dump/tsoftlinks.h5 new file mode 100644 index 0000000..aa8aef6 Binary files /dev/null and b/build/tools/h5dump/tsoftlinks.h5 differ diff --git a/build/tools/h5dump/tsplit_file-m.h5 b/build/tools/h5dump/tsplit_file-m.h5 new file mode 100644 index 0000000..6c1cee8 Binary files /dev/null and b/build/tools/h5dump/tsplit_file-m.h5 differ diff --git a/build/tools/h5dump/tsplit_file-r.h5 b/build/tools/h5dump/tsplit_file-r.h5 new file mode 100644 index 0000000..eb08e79 Binary files /dev/null and b/build/tools/h5dump/tsplit_file-r.h5 differ diff --git a/build/tools/h5dump/tstr.h5 b/build/tools/h5dump/tstr.h5 new file mode 100644 index 0000000..a87141e Binary files /dev/null and b/build/tools/h5dump/tstr.h5 differ diff --git a/build/tools/h5dump/tstr2.h5 b/build/tools/h5dump/tstr2.h5 new file mode 100644 index 0000000..8384109 Binary files /dev/null and b/build/tools/h5dump/tstr2.h5 differ diff --git a/build/tools/h5dump/tstr3.h5 b/build/tools/h5dump/tstr3.h5 new file mode 100644 index 0000000..426a469 Binary files /dev/null and b/build/tools/h5dump/tstr3.h5 differ diff --git a/build/tools/h5dump/tudfilter.h5 b/build/tools/h5dump/tudfilter.h5 new file mode 100644 index 0000000..b30a368 Binary files /dev/null and b/build/tools/h5dump/tudfilter.h5 differ diff --git a/build/tools/h5dump/tudlink.h5 b/build/tools/h5dump/tudlink.h5 new file mode 100644 index 0000000..b2160c3 Binary files /dev/null and b/build/tools/h5dump/tudlink.h5 differ diff --git a/build/tools/h5dump/tvldtypes1.h5 b/build/tools/h5dump/tvldtypes1.h5 new file mode 100644 index 0000000..271ff45 Binary files /dev/null and b/build/tools/h5dump/tvldtypes1.h5 differ diff --git a/build/tools/h5dump/tvldtypes2.h5 b/build/tools/h5dump/tvldtypes2.h5 new file mode 100644 index 0000000..60ea3dc Binary files /dev/null and b/build/tools/h5dump/tvldtypes2.h5 differ diff --git a/build/tools/h5dump/tvldtypes3.h5 b/build/tools/h5dump/tvldtypes3.h5 new file mode 100644 index 0000000..3072935 Binary files /dev/null and b/build/tools/h5dump/tvldtypes3.h5 differ diff --git a/build/tools/h5dump/tvldtypes4.h5 b/build/tools/h5dump/tvldtypes4.h5 new file mode 100644 index 0000000..4675265 Binary files /dev/null and b/build/tools/h5dump/tvldtypes4.h5 differ diff --git a/build/tools/h5dump/tvldtypes5.h5 b/build/tools/h5dump/tvldtypes5.h5 new file mode 100644 index 0000000..e2c8fd1 Binary files /dev/null and b/build/tools/h5dump/tvldtypes5.h5 differ diff --git a/build/tools/h5dump/tvlenstr_array.h5 b/build/tools/h5dump/tvlenstr_array.h5 new file mode 100644 index 0000000..4458b49 Binary files /dev/null and b/build/tools/h5dump/tvlenstr_array.h5 differ diff --git a/build/tools/h5dump/tvlstr.h5 b/build/tools/h5dump/tvlstr.h5 new file mode 100644 index 0000000..38312f7 Binary files /dev/null and b/build/tools/h5dump/tvlstr.h5 differ diff --git a/build/tools/h5dump/zerodim.h5 b/build/tools/h5dump/zerodim.h5 new file mode 100644 index 0000000..0ce672b Binary files /dev/null and b/build/tools/h5dump/zerodim.h5 differ diff --git a/build/tools/h5import/.deps/h5import.Po b/build/tools/h5import/.deps/h5import.Po new file mode 100644 index 0000000..4810212 --- /dev/null +++ b/build/tools/h5import/.deps/h5import.Po @@ -0,0 +1,365 @@ +h5import.o: ../../../tools/h5import/h5import.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/h5import/h5import.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/h5import/h5import.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5import/.deps/h5importtest.Po b/build/tools/h5import/.deps/h5importtest.Po new file mode 100644 index 0000000..b7e2f55 --- /dev/null +++ b/build/tools/h5import/.deps/h5importtest.Po @@ -0,0 +1,280 @@ +h5importtest.o: ../../../tools/h5import/h5importtest.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/h5import/.libs/h5import b/build/tools/h5import/.libs/h5import new file mode 100755 index 0000000..565ad86 Binary files /dev/null and b/build/tools/h5import/.libs/h5import differ diff --git a/build/tools/h5import/.libs/h5importtest b/build/tools/h5import/.libs/h5importtest new file mode 100755 index 0000000..9a64a9b Binary files /dev/null and b/build/tools/h5import/.libs/h5importtest differ diff --git a/build/tools/h5import/.libs/lt-h5import b/build/tools/h5import/.libs/lt-h5import new file mode 100755 index 0000000..8b868e5 Binary files /dev/null and b/build/tools/h5import/.libs/lt-h5import differ diff --git a/build/tools/h5import/.libs/lt-h5importtest b/build/tools/h5import/.libs/lt-h5importtest new file mode 100755 index 0000000..3e93b9d Binary files /dev/null and b/build/tools/h5import/.libs/lt-h5importtest differ diff --git a/build/tools/h5import/Makefile b/build/tools/h5import/Makefile new file mode 100644 index 0000000..481f554 --- /dev/null +++ b/build/tools/h5import/Makefile @@ -0,0 +1,1460 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5import/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + +VPATH = ../../../tools/h5import +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +bin_PROGRAMS = h5import$(EXEEXT) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/h5import +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5importtestutil.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5importtest$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +h5import_SOURCES = h5import.c +h5import_OBJECTS = h5import.$(OBJEXT) +h5import_LDADD = $(LDADD) +h5import_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +h5import_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5import_LDFLAGS) $(LDFLAGS) -o $@ +h5importtest_SOURCES = h5importtest.c +h5importtest_OBJECTS = h5importtest.$(OBJEXT) +h5importtest_LDADD = $(LDADD) +h5importtest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = h5import.c h5importtest.c +DIST_SOURCES = h5import.c h5importtest.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(srcdir)/h5importtestutil.sh.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5import +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5import +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files from h5importtest +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.bin + +# Test programs and scripts +TEST_PROG = h5importtest +TEST_SCRIPT = h5importtestutil.sh +check_SCRIPT = h5importtestutil.sh +SCRIPT_DEPEND = h5import$(EXEEXT) + +# Add h5import specific linker flags here +h5import_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# All programs depend on the main hdf5 library and the tools library +LDADD = $(LIBH5TOOLS) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5import/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5import/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5importtestutil.sh: $(top_builddir)/config.status $(srcdir)/h5importtestutil.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5import$(EXEEXT): $(h5import_OBJECTS) $(h5import_DEPENDENCIES) $(EXTRA_h5import_DEPENDENCIES) + @rm -f h5import$(EXEEXT) + $(AM_V_CCLD)$(h5import_LINK) $(h5import_OBJECTS) $(h5import_LDADD) $(LIBS) + +h5importtest$(EXEEXT): $(h5importtest_OBJECTS) $(h5importtest_DEPENDENCIES) $(EXTRA_h5importtest_DEPENDENCIES) + @rm -f h5importtest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5importtest_OBJECTS) $(h5importtest_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/h5import.Po +include ./$(DEPDIR)/h5importtest.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5importtest.log: h5importtest$(EXEEXT) + @p='h5importtest$(EXEEXT)'; \ + b='h5importtest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5import/h5import b/build/tools/h5import/h5import new file mode 100755 index 0000000..8b92754 --- /dev/null +++ b/build/tools/h5import/h5import @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5import - temporary wrapper script for .libs/h5import +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5import program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5import.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5import:h5import:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5import:h5import:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5import:h5import:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5import' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5import/h5import.o b/build/tools/h5import/h5import.o new file mode 100644 index 0000000..cb41841 Binary files /dev/null and b/build/tools/h5import/h5import.o differ diff --git a/build/tools/h5import/h5importtest b/build/tools/h5import/h5importtest new file mode 100755 index 0000000..4f6562d --- /dev/null +++ b/build/tools/h5import/h5importtest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5importtest - temporary wrapper script for .libs/h5importtest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5importtest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5importtest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5importtest:h5importtest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5importtest:h5importtest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5importtest:h5importtest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5importtest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5import/h5importtest.chkexe b/build/tools/h5import/h5importtest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5import/h5importtest.chklog b/build/tools/h5import/h5importtest.chklog new file mode 100644 index 0000000..9bb2766 --- /dev/null +++ b/build/tools/h5import/h5importtest.chklog @@ -0,0 +1,8 @@ +============================ + h5importtest Test Log +============================ +0.03user 0.02system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6912maxresident)k +0inputs+168outputs (0major+7853minor)pagefaults 0swaps + +Finished testing h5importtest +============================ diff --git a/build/tools/h5import/h5importtest.o b/build/tools/h5import/h5importtest.o new file mode 100644 index 0000000..a8f95f6 Binary files /dev/null and b/build/tools/h5import/h5importtest.o differ diff --git a/build/tools/h5import/h5importtestutil.sh b/build/tools/h5import/h5importtestutil.sh new file mode 100644 index 0000000..a9ac996 --- /dev/null +++ b/build/tools/h5import/h5importtestutil.sh @@ -0,0 +1,408 @@ +#!/bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5import tool + +srcdir=../../../tools/h5import + +# Determine which filters are available +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5import +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=../h5dump/h5dump # The tool name +DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary + +H5DIFF=../h5diff/h5diff # The h5diff tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary + +H5IMPORT=./h5import # The h5import tool name +H5IMPORT_BIN=`pwd`/$H5IMPORT # The path of the h5import tool binary + +RM='rm -rf' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# initialize errors variable +nerrors=0 + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5IMPORT_TESTFILES/binfp64.h5 +$SRC_H5IMPORT_TESTFILES/binin8.h5 +$SRC_H5IMPORT_TESTFILES/binin8w.h5 +$SRC_H5IMPORT_TESTFILES/binin16.h5 +$SRC_H5IMPORT_TESTFILES/binin32.h5 +$SRC_H5IMPORT_TESTFILES/binuin16.h5 +$SRC_H5IMPORT_TESTFILES/binuin32.h5 +$SRC_H5IMPORT_TESTFILES/txtfp32.h5 +$SRC_H5IMPORT_TESTFILES/txtfp64.h5 +$SRC_H5IMPORT_TESTFILES/txtin8.h5 +$SRC_H5IMPORT_TESTFILES/txtin16.h5 +$SRC_H5IMPORT_TESTFILES/txtin32.h5 +$SRC_H5IMPORT_TESTFILES/txtuin16.h5 +$SRC_H5IMPORT_TESTFILES/txtuin32.h5 +$SRC_H5IMPORT_TESTFILES/txtstr.h5 +$SRC_H5IMPORT_TESTFILES/textpfe.h5 +$SRC_TOOLS_TESTFILES/tall.h5 +$SRC_TOOLS_TESTFILES/tintsattrs.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5IMPORT_TESTFILES/txtfp32.conf +$SRC_H5IMPORT_TESTFILES/txtfp64.conf +$SRC_H5IMPORT_TESTFILES/txtin8.conf +$SRC_H5IMPORT_TESTFILES/txtin16.conf +$SRC_H5IMPORT_TESTFILES/txtin32.conf +$SRC_H5IMPORT_TESTFILES/txtuin16.conf +$SRC_H5IMPORT_TESTFILES/txtuin32.conf +$SRC_H5IMPORT_TESTFILES/textpfe.conf +$SRC_H5IMPORT_TESTFILES/txtstr.conf +$SRC_H5IMPORT_TESTFILES/txtfp32.txt +$SRC_H5IMPORT_TESTFILES/txtfp64.txt +$SRC_H5IMPORT_TESTFILES/txtuin16.txt +$SRC_H5IMPORT_TESTFILES/txtuin32.txt +$SRC_H5IMPORT_TESTFILES/txtin8.txt +$SRC_H5IMPORT_TESTFILES/txtin16.txt +$SRC_H5IMPORT_TESTFILES/txtin32.txt +$SRC_H5IMPORT_TESTFILES/textpfe64.txt +$SRC_H5IMPORT_TESTFILES/txtstr.txt +$SRC_H5IMPORT_TESTFILES/dbinfp64.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinin8.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinin8w.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinin16.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinin32.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinuin16.h5.txt +$SRC_H5IMPORT_TESTFILES/dbinuin32.h5.txt +$SRC_H5IMPORT_TESTFILES/dtxtstr.h5.txt +$SRC_H5IMPORT_TESTFILES/tall_fp32.ddl +$SRC_H5IMPORT_TESTFILES/tall_i32.ddl +$SRC_H5IMPORT_TESTFILES/tintsattrs_u32.ddl +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5IMPORT_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a "SKIP" message +SKIP() { + TESTING $TESTNAME $@ + echo " -SKIP-" +} + +TOOLTEST() +{ +err=0 +$RUNSERIAL $H5IMPORT_BIN $* +$RUNSERIAL $DUMPER_BIN $5 >log2 + +cd tmp_testfiles +$RUNSERIAL $DUMPER_BIN $5 >log1 +cd .. + +cmp -s tmp_testfiles/log1 log2 || err=1 +rm -f log2 tmp_testfiles/log1 +if [ $err -eq 1 ]; then +nerrors="` expr $nerrors + 1 `"; + echo "*FAILED*" +else + echo " PASSED" +fi +} + +# Use h5dump output as input to h5import for binary numbers +# Use h5diff to verify results +TOOLTEST2() +{ +err=0 +$RUNSERIAL $DUMPER_BIN -p -d $1 -o d$2.bin -b NATIVE tmp_testfiles/$2 > d$2.dmp +$RUNSERIAL $H5IMPORT_BIN d$2.bin -c d$2.dmp -o d$2 > d$2.imp +$RUNSERIAL $H5DIFF_BIN -v d$2 tmp_testfiles/$2 $1 $1 > log2 +$CP -f $SRC_H5IMPORT_TESTFILES/d$2.txt log1 + +cmp -s log1 log2 || err=1 +rm -f log1 log2 +if [ $err -eq 1 ]; then +nerrors="` expr $nerrors + 1 `"; + echo "*FAILED*" +else + echo " PASSED" +fi +} + +# Same as TOOLTEST2 except for strings +# Use h5dump output as input to h5import for strings +# Use h5diff to verify results +TOOLTEST3() +{ +err=0 +$RUNSERIAL $DUMPER_BIN -p -d $1 -o d$2.bin -y --width=1 tmp_testfiles/$2 > d$2.dmp +$RUNSERIAL $H5IMPORT_BIN d$2.bin -c d$2.dmp -o d$2 > d$2.imp +$RUNSERIAL $H5DIFF_BIN -v d$2 tmp_testfiles/$2 $1 $1 > log2 +$CP -f $SRC_H5IMPORT_TESTFILES/d$2.txt log1 + +cmp -s log1 log2 || err=1 +rm -f log1 log2 +if [ $err -eq 1 ]; then +nerrors="` expr $nerrors + 1 `"; + echo "*FAILED*" +else + echo " PASSED" +fi +} + +# Same as TOOLTEST3 except for h5diff uses report mode without warnings +# Use h5dump output as input to h5import for strings +# Use h5diff to verify results +TOOLTEST4() +{ +err=0 +$RUNSERIAL $DUMPER_BIN -p -d $1 -o d$2.bin -y --width=1 tmp_testfiles/$2 > d$2.dmp +$RUNSERIAL $H5IMPORT_BIN d$2.bin -c d$2.dmp -o d$2 > d$2.imp +$RUNSERIAL $H5DIFF_BIN -r d$2 tmp_testfiles/$2 $1 $1 > log2 +$CP -f $SRC_H5IMPORT_TESTFILES/d$2.txt log1 + + +cmp -s log1 log2 || err=1 +rm -f log1 log2 +if [ $err -eq 1 ]; then +nerrors="` expr $nerrors + 1 `"; + echo "*FAILED*" +else + echo " PASSED" +fi +} + +# Same as TOOLTEST2 except for subsets +# Use h5dump output as input to h5import for binary numbers +# Use h5dump to verify results +TOOLTEST5() +{ +err=0 +$RUNSERIAL $DUMPER_BIN -p -d $3 $4 -o d-$1.bin -b NATIVE tmp_testfiles/$2 > d-$1.dmp +$RUNSERIAL $H5IMPORT_BIN d-$1.bin -c d-$1.dmp -o d-$1.h5 > d-$1.imp +$RUNSERIAL $DUMPER_BIN -p d-$1.h5 > log2 +$CP -f $SRC_H5IMPORT_TESTFILES/$1.ddl log1 + +cmp -s log1 log2 || err=1 +rm -f log1 log2 +if [ $err -eq 1 ]; then +nerrors="` expr $nerrors + 1 `"; + echo "*FAILED*" +else + echo " PASSED" +fi +} + +echo "" +echo "==============================" +echo "H5IMPORT tests started" +echo "==============================" + +#echo "** Testing h5import ***" + +rm -f output.h5 log1 tx* b* *.dat + +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +mkdir tmp_testfiles +$CP $TESTDIR/*.h5 ./tmp_testfiles/ + +$RUNSERIAL ./h5importtest + +################################################ +### T H E T E S T S +################################################ + +TESTING "ASCII I32 rank 3 - Output BE " ; +TOOLTEST $TESTDIR/txtin32.txt -c $TESTDIR/txtin32.conf -o txtin32.h5 + +TESTING "ASCII I16 rank 3 - Output LE - CHUNKED - extended" +TOOLTEST $TESTDIR/txtin16.txt -c $TESTDIR/txtin16.conf -o txtin16.h5 + +TESTING "ASCII I8 - rank 3 - Output I8 LE-Chunked+Extended+Compressed " +TOOLTEST $TESTDIR/txtin8.txt -c $TESTDIR/txtin8.conf -o txtin8.h5 + + +TESTING "ASCII UI16 - rank 2 - Output LE+Chunked+Compressed " +TOOLTEST $TESTDIR/txtuin16.txt -c $TESTDIR/txtuin16.conf -o txtuin16.h5 + +TESTING "ASCII UI32 - rank 3 - Output BE" +TOOLTEST $TESTDIR/txtuin32.txt -c $TESTDIR/txtuin32.conf -o txtuin32.h5 + + +TESTING "ASCII F32 - rank 3 - Output LE " +TOOLTEST $TESTDIR/txtfp32.txt -c $TESTDIR/txtfp32.conf -o txtfp32.h5 + +TESTING "ASCII F64 - rank 3 - Output BE + CHUNKED+Extended+Compressed " +TOOLTEST $TESTDIR/txtfp64.txt -c $TESTDIR/txtfp64.conf -o txtfp64.h5 + + +TESTING "BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compressed " +TOOLTEST binfp64.bin -c binfp64.conf -o binfp64.h5 +TESTING "H5DUMP-BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compressed " +if test $USE_FILTER_DEFLATE != "yes"; then + SKIP "/fp/bin/64-bit" binfp64.h5 +else + TOOLTEST2 "/fp/bin/64-bit" binfp64.h5 +fi + + +TESTING "BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Compressed " +TOOLTEST binin8.bin -c binin8.conf -o binin8.h5 +TESTING "H5DUMP-BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Compressed " +if test $USE_FILTER_DEFLATE != "yes"; then + SKIP "/int/bin/8-bit" binin8.h5 +else + TOOLTEST2 "/int/bin/8-bit" binin8.h5 +fi + +TESTING "BINARY I16 - rank 3 - Output order LE + CHUNKED + extended " +TOOLTEST binin16.bin -c binin16.conf -o binin16.h5 +TESTING "H5DUMP-BINARY I16 - rank 3 - Output order LE + CHUNKED + extended " +TOOLTEST2 "/int/bin/16-bit" binin16.h5 + +TESTING "BINARY I32 - rank 3 - Output BE + CHUNKED " +TOOLTEST binin32.bin -c binin32.conf -o binin32.h5 +TESTING "H5DUMP-BINARY I32 - rank 3 - Output BE + CHUNKED " +TOOLTEST2 "/int/bin/32-bit" binin32.h5 + + +TESTING "BINARY UI16 - rank 3 - Output byte BE + CHUNKED " +TOOLTEST binuin16.bin -c binuin16.conf -o binuin16.h5 +TESTING "H5DUMP-BINARY UI16 - rank 3 - Output byte BE + CHUNKED " +TOOLTEST2 "/int/buin/16-bit" binuin16.h5 + +TESTING "BINARY UI32 - rank 3 - Output LE + CHUNKED " +TOOLTEST binuin32.bin -c binuin32.conf -o binuin32.h5 +TESTING "H5DUMP-BINARY UI32 - rank 3 - Output LE + CHUNKED " +TOOLTEST2 "/int/buin/32-bit" binuin32.h5 + + +TESTING "STR" +TOOLTEST $TESTDIR/txtstr.txt -c $TESTDIR/txtstr.conf -o txtstr.h5 +TESTING "H5DUMP-STR" +TOOLTEST4 "/mytext/data" txtstr.h5 + + +TESTING "BINARY I8 CR LF EOF" +TOOLTEST binin8w.bin -c binin8w.conf -o binin8w.h5 +TESTING "H5DUMP-BINARY I8 CR LF EOF" +TOOLTEST2 "/dataset0" binin8w.h5 + +TESTING "ASCII F64 - rank 1 - INPUT-CLASS TEXTFPE " +TOOLTEST $TESTDIR/textpfe64.txt -c $TESTDIR/textpfe.conf -o textpfe.h5 + +TESTING "Binary Subset FP" +TOOLTEST5 tall_fp32 tall.h5 "/g2/dset2.2" "--start=1,1 --stride=2,3 --count=1,2 --block=1,1" +TESTING "Binary Subset INT" +TOOLTEST5 tall_i32 tall.h5 "/g1/g1.1/dset1.1.1" "--start=1,1 --stride=2,3 --count=3,2 --block=1,1" +TESTING "Binary Subset UINT" +TOOLTEST5 tintsattrs_u32 tintsattrs.h5 "/DU32BITS" "--start=1,1 --stride=2,3 --count=3,2 --block=1,1" + + +rm -f txtin32.txt txtin16.txt txtin8.txt txtuin32.txt txtuin16.txt *.bin *.dmp *.conf *.imp *.h5 +rm -rf tmp_testfiles + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# +# Check errors result +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5import/h5importtestutil.sh.chkexe b/build/tools/h5import/h5importtestutil.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5import/h5importtestutil.sh.chklog b/build/tools/h5import/h5importtestutil.sh.chklog new file mode 100644 index 0000000..39737e2 --- /dev/null +++ b/build/tools/h5import/h5importtestutil.sh.chklog @@ -0,0 +1,40 @@ +============================ +h5importtestutil.sh Test Log +============================ + +============================== +H5IMPORT tests started +============================== +Testing ASCII I32 rank 3 - Output BE PASSED +Testing ASCII I16 rank 3 - Output LE - CHUNKED - extended PASSED +Testing ASCII I8 - rank 3 - Output I8 LE-Chunked+Extended+Compressed PASSED +Testing ASCII UI16 - rank 2 - Output LE+Chunked+Compressed PASSED +Testing ASCII UI32 - rank 3 - Output BE PASSED +Testing ASCII F32 - rank 3 - Output LE PASSED +Testing ASCII F64 - rank 3 - Output BE + CHUNKED+Extended+Compressed PASSED +Testing BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compressed PASSED +Testing H5DUMP-BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compre PASSED +Testing BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Compresse PASSED +Testing H5DUMP-BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Co PASSED +Testing BINARY I16 - rank 3 - Output order LE + CHUNKED + extended PASSED +Testing H5DUMP-BINARY I16 - rank 3 - Output order LE + CHUNKED + exten PASSED +Testing BINARY I32 - rank 3 - Output BE + CHUNKED PASSED +Testing H5DUMP-BINARY I32 - rank 3 - Output BE + CHUNKED PASSED +Testing BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED +Testing H5DUMP-BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED +Testing BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED +Testing H5DUMP-BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED +Testing STR PASSED +Testing H5DUMP-STR PASSED +Testing BINARY I8 CR LF EOF PASSED +Testing H5DUMP-BINARY I8 CR LF EOF PASSED +Testing ASCII F64 - rank 1 - INPUT-CLASS TEXTFPE PASSED +Testing Binary Subset FP PASSED +Testing Binary Subset INT PASSED +Testing Binary Subset UINT PASSED +All h5import tests passed. +1.22user 2.10system 0:02.75elapsed 121%CPU (0avgtext+0avgdata 7384maxresident)k +0inputs+2992outputs (0major+675526minor)pagefaults 0swaps + +Finished testing h5importtestutil.sh +============================ diff --git a/build/tools/h5jam/.deps/getub.Po b/build/tools/h5jam/.deps/getub.Po new file mode 100644 index 0000000..b7e8ffa --- /dev/null +++ b/build/tools/h5jam/.deps/getub.Po @@ -0,0 +1,362 @@ +getub.o: ../../../tools/h5jam/getub.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5jam/.deps/h5jam.Po b/build/tools/h5jam/.deps/h5jam.Po new file mode 100644 index 0000000..df555d7 --- /dev/null +++ b/build/tools/h5jam/.deps/h5jam.Po @@ -0,0 +1,362 @@ +h5jam.o: ../../../tools/h5jam/h5jam.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5jam/.deps/h5jamgentest.Po b/build/tools/h5jam/.deps/h5jamgentest.Po new file mode 100644 index 0000000..fafc335 --- /dev/null +++ b/build/tools/h5jam/.deps/h5jamgentest.Po @@ -0,0 +1,350 @@ +h5jamgentest.o: ../../../tools/h5jam/h5jamgentest.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/h5jam/.deps/h5unjam.Po b/build/tools/h5jam/.deps/h5unjam.Po new file mode 100644 index 0000000..90780e5 --- /dev/null +++ b/build/tools/h5jam/.deps/h5unjam.Po @@ -0,0 +1,362 @@ +h5unjam.o: ../../../tools/h5jam/h5unjam.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5jam/.deps/tellub.Po b/build/tools/h5jam/.deps/tellub.Po new file mode 100644 index 0000000..f8232ee --- /dev/null +++ b/build/tools/h5jam/.deps/tellub.Po @@ -0,0 +1,362 @@ +tellub.o: ../../../tools/h5jam/tellub.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5jam/.libs/getub b/build/tools/h5jam/.libs/getub new file mode 100755 index 0000000..fae48ac Binary files /dev/null and b/build/tools/h5jam/.libs/getub differ diff --git a/build/tools/h5jam/.libs/h5jam b/build/tools/h5jam/.libs/h5jam new file mode 100755 index 0000000..6716923 Binary files /dev/null and b/build/tools/h5jam/.libs/h5jam differ diff --git a/build/tools/h5jam/.libs/h5jamgentest b/build/tools/h5jam/.libs/h5jamgentest new file mode 100755 index 0000000..8a53ec6 Binary files /dev/null and b/build/tools/h5jam/.libs/h5jamgentest differ diff --git a/build/tools/h5jam/.libs/h5unjam b/build/tools/h5jam/.libs/h5unjam new file mode 100755 index 0000000..d304404 Binary files /dev/null and b/build/tools/h5jam/.libs/h5unjam differ diff --git a/build/tools/h5jam/.libs/lt-getub b/build/tools/h5jam/.libs/lt-getub new file mode 100755 index 0000000..42d6e69 Binary files /dev/null and b/build/tools/h5jam/.libs/lt-getub differ diff --git a/build/tools/h5jam/.libs/lt-h5jam b/build/tools/h5jam/.libs/lt-h5jam new file mode 100755 index 0000000..5036da0 Binary files /dev/null and b/build/tools/h5jam/.libs/lt-h5jam differ diff --git a/build/tools/h5jam/.libs/lt-h5unjam b/build/tools/h5jam/.libs/lt-h5unjam new file mode 100755 index 0000000..235978d Binary files /dev/null and b/build/tools/h5jam/.libs/lt-h5unjam differ diff --git a/build/tools/h5jam/.libs/lt-tellub b/build/tools/h5jam/.libs/lt-tellub new file mode 100755 index 0000000..955a030 Binary files /dev/null and b/build/tools/h5jam/.libs/lt-tellub differ diff --git a/build/tools/h5jam/.libs/tellub b/build/tools/h5jam/.libs/tellub new file mode 100755 index 0000000..4be8638 Binary files /dev/null and b/build/tools/h5jam/.libs/tellub differ diff --git a/build/tools/h5jam/Makefile b/build/tools/h5jam/Makefile new file mode 100644 index 0000000..cad83d6 --- /dev/null +++ b/build/tools/h5jam/Makefile @@ -0,0 +1,1481 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5jam/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + +VPATH = ../../../tools/h5jam +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +bin_PROGRAMS = h5jam$(EXEEXT) h5unjam$(EXEEXT) +check_PROGRAMS = tellub$(EXEEXT) h5jamgentest$(EXEEXT) getub$(EXEEXT) +TESTS = $(TEST_SCRIPT) +subdir = tools/h5jam +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = testh5jam.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +getub_SOURCES = getub.c +getub_OBJECTS = getub.$(OBJEXT) +getub_LDADD = $(LDADD) +getub_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +h5jam_SOURCES = h5jam.c +h5jam_OBJECTS = h5jam.$(OBJEXT) +h5jam_LDADD = $(LDADD) +h5jam_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5jam_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5jam_LDFLAGS) $(LDFLAGS) -o $@ +h5jamgentest_SOURCES = h5jamgentest.c +h5jamgentest_OBJECTS = h5jamgentest.$(OBJEXT) +h5jamgentest_LDADD = $(LDADD) +h5jamgentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5unjam_SOURCES = h5unjam.c +h5unjam_OBJECTS = h5unjam.$(OBJEXT) +h5unjam_LDADD = $(LDADD) +h5unjam_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5unjam_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5unjam_LDFLAGS) $(LDFLAGS) -o $@ +tellub_SOURCES = tellub.c +tellub_OBJECTS = tellub.$(OBJEXT) +tellub_LDADD = $(LDADD) +tellub_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = getub.c h5jam.c h5jamgentest.c h5unjam.c tellub.c +DIST_SOURCES = getub.c h5jam.c h5jamgentest.c h5unjam.c tellub.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/testh5jam.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5jam +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5jam +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by jamgentest. They should +# copied to the testfiles/ directory if update is required. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 \ + testfiles/h5jam-*-sav testfiles/h5unjam-*-sav +TEST_SCRIPT = testh5jam.sh + +# Add h5jam and h5unjam specific linker flags here +h5jam_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +h5unjam_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5jam$(EXEEXT) h5unjam$(EXEEXT) + +# Link against the main HDF5 library and tools library +LDADD = $(LIBH5TOOLS) $(LIBHDF5) +DISTCLEANFILES = testh5jam.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5jam/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5jam/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +testh5jam.sh: $(top_builddir)/config.status $(srcdir)/testh5jam.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +getub$(EXEEXT): $(getub_OBJECTS) $(getub_DEPENDENCIES) $(EXTRA_getub_DEPENDENCIES) + @rm -f getub$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(getub_OBJECTS) $(getub_LDADD) $(LIBS) + +h5jam$(EXEEXT): $(h5jam_OBJECTS) $(h5jam_DEPENDENCIES) $(EXTRA_h5jam_DEPENDENCIES) + @rm -f h5jam$(EXEEXT) + $(AM_V_CCLD)$(h5jam_LINK) $(h5jam_OBJECTS) $(h5jam_LDADD) $(LIBS) + +h5jamgentest$(EXEEXT): $(h5jamgentest_OBJECTS) $(h5jamgentest_DEPENDENCIES) $(EXTRA_h5jamgentest_DEPENDENCIES) + @rm -f h5jamgentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5jamgentest_OBJECTS) $(h5jamgentest_LDADD) $(LIBS) + +h5unjam$(EXEEXT): $(h5unjam_OBJECTS) $(h5unjam_DEPENDENCIES) $(EXTRA_h5unjam_DEPENDENCIES) + @rm -f h5unjam$(EXEEXT) + $(AM_V_CCLD)$(h5unjam_LINK) $(h5unjam_OBJECTS) $(h5unjam_LDADD) $(LIBS) + +tellub$(EXEEXT): $(tellub_OBJECTS) $(tellub_DEPENDENCIES) $(EXTRA_tellub_DEPENDENCIES) + @rm -f tellub$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(tellub_OBJECTS) $(tellub_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/getub.Po +include ./$(DEPDIR)/h5jam.Po +include ./$(DEPDIR)/h5jamgentest.Po +include ./$(DEPDIR)/h5unjam.Po +include ./$(DEPDIR)/tellub.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5jam/getub b/build/tools/h5jam/getub new file mode 100755 index 0000000..8429606 --- /dev/null +++ b/build/tools/h5jam/getub @@ -0,0 +1,228 @@ +#! /bin/sh + +# getub - temporary wrapper script for .libs/getub +# Generated by libtool (GNU libtool) 2.4.6 +# +# The getub program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file getub.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "getub:getub:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "getub:getub:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "getub:getub:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'getub' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5jam/getub.o b/build/tools/h5jam/getub.o new file mode 100644 index 0000000..3ec652d Binary files /dev/null and b/build/tools/h5jam/getub.o differ diff --git a/build/tools/h5jam/h5jam b/build/tools/h5jam/h5jam new file mode 100755 index 0000000..c587bcc --- /dev/null +++ b/build/tools/h5jam/h5jam @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5jam - temporary wrapper script for .libs/h5jam +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5jam program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5jam.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5jam:h5jam:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5jam:h5jam:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5jam:h5jam:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5jam' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5jam/h5jam.o b/build/tools/h5jam/h5jam.o new file mode 100644 index 0000000..aab5794 Binary files /dev/null and b/build/tools/h5jam/h5jam.o differ diff --git a/build/tools/h5jam/h5jamgentest b/build/tools/h5jam/h5jamgentest new file mode 100755 index 0000000..32f6dfc --- /dev/null +++ b/build/tools/h5jam/h5jamgentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5jamgentest - temporary wrapper script for .libs/h5jamgentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5jamgentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5jamgentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5jamgentest:h5jamgentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5jamgentest:h5jamgentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5jamgentest:h5jamgentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5jamgentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5jam/h5jamgentest.o b/build/tools/h5jam/h5jamgentest.o new file mode 100644 index 0000000..fb8f553 Binary files /dev/null and b/build/tools/h5jam/h5jamgentest.o differ diff --git a/build/tools/h5jam/h5unjam b/build/tools/h5jam/h5unjam new file mode 100755 index 0000000..94a8cf3 --- /dev/null +++ b/build/tools/h5jam/h5unjam @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5unjam - temporary wrapper script for .libs/h5unjam +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5unjam program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5unjam.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5unjam:h5unjam:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5unjam:h5unjam:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5unjam:h5unjam:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5unjam' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5jam/h5unjam.o b/build/tools/h5jam/h5unjam.o new file mode 100644 index 0000000..b0809a6 Binary files /dev/null and b/build/tools/h5jam/h5unjam.o differ diff --git a/build/tools/h5jam/tellub b/build/tools/h5jam/tellub new file mode 100755 index 0000000..4629755 --- /dev/null +++ b/build/tools/h5jam/tellub @@ -0,0 +1,228 @@ +#! /bin/sh + +# tellub - temporary wrapper script for .libs/tellub +# Generated by libtool (GNU libtool) 2.4.6 +# +# The tellub program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file tellub.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "tellub:tellub:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "tellub:tellub:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "tellub:tellub:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'tellub' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5jam/tellub.o b/build/tools/h5jam/tellub.o new file mode 100644 index 0000000..2e84e0d Binary files /dev/null and b/build/tools/h5jam/tellub.o differ diff --git a/build/tools/h5jam/testh5jam.sh b/build/tools/h5jam/testh5jam.sh new file mode 100644 index 0000000..2e685f5 --- /dev/null +++ b/build/tools/h5jam/testh5jam.sh @@ -0,0 +1,699 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5jam/h5unjam tools + +srcdir=../../../tools/h5jam + +# Determine which filters are available +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5jam/h5unjam +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +DUMPER=h5dump # The dumper to use +DUMPER_BIN=`pwd`/../$DUMPER # The path of the dumper binary +JAM=h5jam # Tool to test +UNJAM=h5unjam # Tool to test +JAM_BIN="$RUNSERIAL "`pwd` # The path of the jam binary +UNJAM_BIN=`pwd` # The path of the jam binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +AWK='awk' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5JAM_TESTFILES/tall.h5 +$SRC_H5JAM_TESTFILES/twithub.h5 +$SRC_H5JAM_TESTFILES/twithub513.h5 +" +LIST_OTHER_TEST_FILES=" +$SRC_H5JAM_TESTFILES/u10.txt +$SRC_H5JAM_TESTFILES/u511.txt +$SRC_H5JAM_TESTFILES/u512.txt +$SRC_H5JAM_TESTFILES/u513.txt +$SRC_H5JAM_TESTFILES/h5jam-help.txt +$SRC_H5JAM_TESTFILES/h5unjam-help.txt +$SRC_H5JAM_TESTFILES/h5jam-ub-nohdf5.txt +" + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5JAM_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Compare". +# +COMPARE() { + SPACES=" " + echo "Compare $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a "SKIP" message +SKIP() { + TESTING $JAM $@ + echo " -SKIP-" +} + +# +# COMPARE_FILES a.h5 b.h5 +# Compare two files, skipping the first line. This is used to +# compare the output of the dumper, skipping the file name which +# is different. +# The result is stored in 'compval'. +# +cmpval=0; +COMPARE_FILES() { + $AWK 'NR > 1' $1 > $1.cmp + $AWK 'NR > 1' $2 > $2.cmp + $CMP $1.cmp $2.cmp + cmpval=$? + rm -f $1.cmp $2.cmp +} + +# CLEANUP files +# Clean up named files. +CLEANUP() { + if test -z "$HDF5_NOCLEANUP"; then + for i in $* + do + rm -f $i + done + fi +} + +# SETUP file tocopy +# Clone a standard input file in the test directory +# Modification: +# Was using "cp" command which means file $2 will inherit the permission +# setting of file $1. If $1 is read-only, so will $2. That will cause +# failure when the test attempts to write it later on. Changed to use +# the "cat" command. +# +SETUP() { + cat < $1 > $2 +} + +# +# CHECKFILE orig.h5 compar.h5 +# Check that the test file is the same as an original. +# The two files are dumped with the dumper, and the output +# compared with COMPARE_FILES. +# If the files are the same, the test reports " PASSED", +# otherwise, it reports "*FAILED*" +CHECKFILE() { + expected="`dirname $2`/`basename $2 .h5`.out" + expected_err="`dirname $2`/`basename $2 .h5`.err" + actual="`basename $1 .h5`.out" + actual_err="`basename $1 .h5`.err" + + $RUNSERIAL $DUMPER_BIN/$DUMPER $1 >$expected 2>$expected_err + cat $expected_err >> $expected + + # dump the test file + COMPARE $2 to $1 + $RUNSERIAL $DUMPER_BIN/$DUMPER $2 >$actual 2>$actual_err + cat $actual_err >> $actual + + # compare the two files (ignore line 1) + COMPARE_FILES $actual $expected + if [ "$cmpval" = 0 ] ; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expected $actual |sed 's/^/ /' + fi + + # Clean up output files + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err + rm -f $expected $expected_err + fi +} + +# +# CHECK_UB file.h5 user_block_file origfile.h5 +# +# Check the user block in 'file.h5' is the same as +# 'user_block' (allowing for padding). +# +# If the original file had a user block before the test +# then 'compare.h5' is passed. The user block must be extracted +# and the test file compared to: +# cat compare_ub user_block_file. +# +# This test uses './getub' to extract the user block from +# 'file.h5', which is compared to the file described above. +# +# The result is set in variable 'result1'. +# +result1=0; +CHECK_UB_1() { + hfile="$1" + ufile="$2" + + # check for third argument (the original file) + origfile=""; + if [ -n "$3" ]; + then + origfile="$3" + fi + + # find the length of the user block to check + s1=`cat $ufile | wc -c | sed -e 's/ //g'` + if [ "$s1" = "0" ]; + then + echo "File "$ufile" is empty" + result1=1; + fi + + # Get the size of the original user block, if any. + if [ -n "$origfile" ]; + then + # 'tellub' calls H5Fget_user_block to get the size + # of the user block + s2=`$JAM_BIN/tellub $origfile` + if [ "$s2" = "0" ]; + then + size=$s1; + cmpfile=$ufile + else + cmpfile="tt2" + size=`expr $s2 + $s1` + $JAM_BIN/getub -c $s2 $origfile > $cmpfile + cat $ufile >> $cmpfile + fi + else + # assume no user block + s2="0" + size=$s1; + cmpfile=$ufile + fi + + # Extract 'size' bytes from the front of 'hfile' + # Compare to 'cmpfile', result is set in result1 + tfile="tt1" + $JAM_BIN/getub -c $size $hfile > $tfile + res=`cmp $cmpfile $tfile` + if [ "$?" != "0" ]; + then + echo $res + result1=1; + else + result1=0; + fi + + # clean up + rm -f $tfile + if [ "$s2" != "0" ] ; + then + rm -f $cmpfile + fi +} + + +# CHECK_NOUB file.h5 +# +# Check that 'file.h5' has no user block. +# Setst result2 to 1 if there is a user block (fail), 0 if none (pass) + +result2=0; + +CHECK_NOUB() { + hfile="$1" + + # call 'ubsize' to get the size of the user block + ubsize=`$JAM_BIN/tellub $hfile` + + if [ "$?" != "0" ]; + then + # error + result2=1; + else + if [ "$ubsize" = "0" ]; + then + # pass + result2=0; + else + # fail + result2=1; + fi + fi +} + +# JAMTEST user_block file.h5 [--clobber] [ofile.h5] +# +# Test the 'jam' tool: +# 1. figure out the input and output, and the comparision +# that will be done. +# 2. call 'jam' with the appropriate arguments +# 3. check the user block is correct in the output (Check_UB) +# If the user block is correct, print "PASSED", else "*FAILED*" +JAMTEST() { + ufile="$1" + ifile="$2" + compare_test="" # the file to test + compare_orig="" # the comparison to test against + cleanup="" + + # sort out the arguments for the test and the check + do_clobber="no" + if [ "$3" = "--clobber" ]; + then + # clobber overwrites any existing user block + do_clobber="yes" + clobber="--clobber" + compare_orig="" + if [ -z "$4" ]; + then + # output goes to infile, compare ubfile to infile + ofile="" + compare_test="$ifile" + else + # output goes to $4, compare ofile to ubfile + ofile="$4" + compare_test="$ofile" + fi + else + clobber="" + # add user block to existing ub, if any + if [ -z "$3" ]; + then + # output goes to infile, compare ubfile to infile + ofile="" + compare_test="$ifile" + cp $ifile xxofile.h5 + compare_orig="xxofile.h5" + cleanup="$cleanup $compare_orig" + else + # output goes to $3, compare ofile to ubfile + ofile="$3" + compare_test="$ofile" + compare_orig="$ifile" + fi + fi + + # call 'jam' with the appropriate arguments + if [ -n "$ofile" ]; + then + TESTING h5jam -u `basename $ufile` -i `basename $ifile` -o `basename $ofile` $clobber + $JAM_BIN/$JAM -u $ufile -i $ifile -o $ofile $clobber + else + TESTING jam -u `basename $ufile` -i `basename $ifile` $clobber + $JAM_BIN/$JAM -u $ufile -i $ifile $clobber + fi + + #echo "CHECK_UB_1 $compare_test $ufile $compare_orig" + CHECK_UB_1 $compare_test $ufile $compare_orig + + if [ "$result1" = "0" ] ; + then + echo " PASSED" + else + echo " *FAILED*" + nerrors="`expr $nerrors + 1`" + fi + CLEANUP $cleanup +} + +# UNJAMTEST file.h5 [- | --delete] ofile +# +# Test the 'unjam' tool +# +###fix the working directory here and in jamtest +UNJAMTEST () { + infile="$1" + ofile="$3" + if [ "$2" = "-" ]; + then + uofile="uofile" + TESTING h5unjam -i `basename $infile` -o `basename $ofile` "> "`basename $uofile` + $JAM_BIN/$UNJAM -i $infile -o $ofile > $uofile + else + if [ "$2" = "--delete" ]; + then + uofile="none" + TESTING h5unjam -i `basename $infile` -o `basename $ofile` --delete + $JAM_BIN/$UNJAM -i $infile -o $ofile --delete + + else + uofile="$2" + TESTING h5unjam -i `basename $infile` -u `basename $uofile` -o `basename $ofile` + $JAM_BIN/$UNJAM -i $infile -u $uofile -o $ofile + fi + fi + + result1=0 + result2=0 + cleanup="" + if [ "$uofile" != "none" ]; + then + # sets result1 + CHECK_UB_1 $infile $uofile + CLEANUP $uofile + fi + + # sets result2 + CHECK_NOUB $ofile + + if [ "$result1" = "0" -a "$result2" = "0" ]; + then + echo " PASSED" + else + echo " *FAILED*" + nerrors="`expr $nerrors + 1`" + fi +} + + +# +# TOOLTEST_OUTPUT < JAM | UNJAM > expect-output.txt exit-code options +# +# Only verify stdout/stderr output from h5jam and j5unjam +# + +TOOLTEST_OUTPUT() { + if [ "$1" == "JAM" ]; then + TOOLCMD=$JAM_BIN/$JAM + elif [ "$1" == "UNJAM" ]; then + TOOLCMD=$JAM_BIN/$UNJAM + fi + shift + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ls`.out" + actual_err="$TESTDIR/`basename $1 .ls`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + retvalexpect=$1 + shift + + TESTING h5jam $@ + ( + cd $TESTDIR + $TOOLCMD "$@" + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + # combine stderr to stdout for output compare + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ls) missing" + nerrors="`expr $nerrors + 1`" + rm -f $actual $actual_sav $actual_err $actual_err_sav + elif $CMP $expect $actual; then + echo " PASSED" + rm -f $actual $actual_sav $actual_err $actual_err_sav + else + echo "*FAILED*" + echo " Expected result differs from actual result" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi +} + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +#------------------------------- +# Testing h5jam +#------------------------------- +# help page +TOOLTEST_OUTPUT JAM h5jam-help.txt 0 -h + +# don't allow HDF5 format file as an user block file +TOOLTEST_OUTPUT JAM h5jam-ub-nohdf5.txt 1 -i tall.h5 -u tall.h5 -o tall-tmp.h5 + +JAMTEST $TESTDIR/u10.txt $TESTDIR/tall.h5 ta2.h5 +CHECKFILE $TESTDIR/tall.h5 ta2.h5 +CLEANUP ta2.h5 +JAMTEST $TESTDIR/u511.txt $TESTDIR/tall.h5 ta3.h5 +CHECKFILE $TESTDIR/tall.h5 ta3.h5 +CLEANUP ta3.h5 +JAMTEST $TESTDIR/u512.txt $TESTDIR/tall.h5 ta4.h5 +CHECKFILE $TESTDIR/tall.h5 ta4.h5 +CLEANUP ta4.h5 +JAMTEST $TESTDIR/u513.txt $TESTDIR/tall.h5 ta5.h5 +CHECKFILE $TESTDIR/tall.h5 ta5.h5 +CLEANUP ta5.h5 + +SETUP $TESTDIR/tall.h5 ta6.h5 +JAMTEST $TESTDIR/u10.txt ta6.h5 +CHECKFILE $TESTDIR/tall.h5 ta6.h5 +CLEANUP ta6.h5 +SETUP $TESTDIR/tall.h5 ta7.h5 +JAMTEST $TESTDIR/u511.txt ta7.h5 +CHECKFILE $TESTDIR/tall.h5 ta7.h5 +CLEANUP ta7.h5 +SETUP $TESTDIR/tall.h5 ta8.h5 +JAMTEST $TESTDIR/u512.txt ta8.h5 +CHECKFILE $TESTDIR/tall.h5 ta8.h5 +CLEANUP ta8.h5 +SETUP $TESTDIR/tall.h5 ta9.h5 +JAMTEST $TESTDIR/u513.txt ta9.h5 +CHECKFILE $TESTDIR/tall.h5 ta9.h5 +CLEANUP ta9.h5 + +JAMTEST $TESTDIR/u10.txt $TESTDIR/twithub.h5 tax2.h5 +CHECKFILE $TESTDIR/tall.h5 tax2.h5 +CLEANUP tax2.h5 +JAMTEST $TESTDIR/u511.txt $TESTDIR/twithub.h5 tax3.h5 +CHECKFILE $TESTDIR/tall.h5 tax3.h5 +CLEANUP tax3.h5 +JAMTEST $TESTDIR/u512.txt $TESTDIR/twithub.h5 tax4.h5 +CHECKFILE $TESTDIR/tall.h5 tax4.h5 +CLEANUP tax4.h5 +JAMTEST $TESTDIR/u513.txt $TESTDIR/twithub.h5 tax5.h5 +CHECKFILE $TESTDIR/tall.h5 tax5.h5 +CLEANUP tax5.h5 + +JAMTEST $TESTDIR/u10.txt $TESTDIR/twithub513.h5 tax6.h5 +CHECKFILE $TESTDIR/tall.h5 tax6.h5 +CLEANUP tax6.h5 +JAMTEST $TESTDIR/u511.txt $TESTDIR/twithub513.h5 tax7.h5 +CHECKFILE $TESTDIR/tall.h5 tax7.h5 +CLEANUP tax7.h5 +JAMTEST $TESTDIR/u512.txt $TESTDIR/twithub513.h5 tax8.h5 +CHECKFILE $TESTDIR/tall.h5 tax8.h5 +CLEANUP tax8.h5 +JAMTEST $TESTDIR/u513.txt $TESTDIR/twithub513.h5 tax9.h5 +CHECKFILE $TESTDIR/tall.h5 tax9.h5 +CLEANUP tax9.h5 + +JAMTEST $TESTDIR/u10.txt $TESTDIR/twithub.h5 --clobber taz2.h5 +CHECKFILE $TESTDIR/tall.h5 taz2.h5 +CLEANUP taz2.h5 +JAMTEST $TESTDIR/u511.txt $TESTDIR/twithub.h5 --clobber taz3.h5 +CHECKFILE $TESTDIR/tall.h5 taz3.h5 +CLEANUP taz3.h5 +JAMTEST $TESTDIR/u512.txt $TESTDIR/twithub.h5 --clobber taz4.h5 +CHECKFILE $TESTDIR/tall.h5 taz4.h5 +CLEANUP taz4.h5 +JAMTEST $TESTDIR/u513.txt $TESTDIR/twithub.h5 --clobber taz5.h5 +CHECKFILE $TESTDIR/tall.h5 taz5.h5 +CLEANUP taz5.h5 + +JAMTEST $TESTDIR/u10.txt $TESTDIR/twithub513.h5 --clobber taz6.h5 +CHECKFILE $TESTDIR/tall.h5 taz6.h5 +CLEANUP taz6.h5 +JAMTEST $TESTDIR/u511.txt $TESTDIR/twithub513.h5 --clobber taz7.h5 +CHECKFILE $TESTDIR/tall.h5 taz7.h5 +CLEANUP taz7.h5 +JAMTEST $TESTDIR/u512.txt $TESTDIR/twithub513.h5 --clobber taz8.h5 +CHECKFILE $TESTDIR/tall.h5 taz8.h5 +CLEANUP taz8.h5 +JAMTEST $TESTDIR/u513.txt $TESTDIR/twithub513.h5 --clobber taz9.h5 +CHECKFILE $TESTDIR/tall.h5 taz9.h5 +CLEANUP taz9.h5 + +SETUP $TESTDIR/twithub.h5 tay2.h5 +JAMTEST $TESTDIR/u10.txt tay2.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay2.h5 +CLEANUP tay2.h5 +SETUP $TESTDIR/twithub.h5 tay3.h5 +JAMTEST $TESTDIR/u511.txt tay3.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay3.h5 +CLEANUP tay3.h5 +SETUP $TESTDIR/twithub.h5 tay4.h5 +JAMTEST $TESTDIR/u512.txt tay4.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay4.h5 +CLEANUP tay4.h5 +SETUP $TESTDIR/twithub.h5 tay5.h5 +JAMTEST $TESTDIR/u513.txt tay5.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay5.h5 +CLEANUP tay5.h5 + +SETUP $TESTDIR/twithub513.h5 tay6.h5 +JAMTEST $TESTDIR/u10.txt tay6.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay6.h5 +CLEANUP tay6.h5 +SETUP $TESTDIR/twithub513.h5 tay7.h5 +JAMTEST $TESTDIR/u511.txt tay7.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay7.h5 +CLEANUP tay7.h5 +SETUP $TESTDIR/twithub513.h5 tay8.h5 +JAMTEST $TESTDIR/u512.txt tay8.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay8.h5 +CLEANUP tay8.h5 +SETUP $TESTDIR/twithub513.h5 tay9.h5 +JAMTEST $TESTDIR/u513.txt tay9.h5 --clobber +CHECKFILE $TESTDIR/tall.h5 tay9.h5 +CLEANUP tay9.h5 + +#--------------------------------- +# Testing h5unjam +#--------------------------------- +# help page +TOOLTEST_OUTPUT UNJAM h5unjam-help.txt 0 -h + +SETUP $TESTDIR/twithub.h5 tai1.h5 +UNJAMTEST tai1.h5 o10.txt taa1.h5 +CHECKFILE $TESTDIR/tall.h5 taa1.h5 +CLEANUP taa1.h5 tai1.h5 o10.txt +SETUP $TESTDIR/twithub513.h5 tai2.h5 +UNJAMTEST tai2.h5 o512.txt taa2.h5 +CHECKFILE $TESTDIR/tall.h5 taa2.h5 +CLEANUP taa2.h5 tai2.h5 o512.txt + +SETUP $TESTDIR/twithub.h5 tai3.h5 +UNJAMTEST tai3.h5 - taa3.h5 +CHECKFILE $TESTDIR/tall.h5 taa3.h5 +CLEANUP taa3.h5 tai3.h5 +SETUP $TESTDIR/twithub513.h5 tai4.h5 +UNJAMTEST tai4.h5 - taa4.h5 +CHECKFILE $TESTDIR/tall.h5 taa4.h5 +CLEANUP taa4.h5 tai4.h5 + +SETUP $TESTDIR/twithub.h5 taj2.h5 +UNJAMTEST taj2.h5 --delete tac2.h5 +CHECKFILE $TESTDIR/tall.h5 tac2.h5 +CLEANUP tac2.h5 taj2.h5 +SETUP $TESTDIR/twithub513.h5 taj3.h5 +UNJAMTEST taj3.h5 --delete tac3.h5 +CHECKFILE $TESTDIR/tall.h5 tac3.h5 +CLEANUP tac3.h5 taj3.h5 + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5jam/testh5jam.sh.chkexe b/build/tools/h5jam/testh5jam.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5jam/testh5jam.sh.chklog b/build/tools/h5jam/testh5jam.sh.chklog new file mode 100644 index 0000000..3f9cb56 --- /dev/null +++ b/build/tools/h5jam/testh5jam.sh.chklog @@ -0,0 +1,88 @@ +============================ +testh5jam.sh Test Log +============================ +Testing h5jam -h PASSED +Testing h5jam -i tall.h5 -u tall.h5 -o tall-tmp.h5 PASSED +Testing h5jam -u u10.txt -i tall.h5 -o ta2.h5 PASSED +Compare ta2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i tall.h5 -o ta3.h5 PASSED +Compare ta3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i tall.h5 -o ta4.h5 PASSED +Compare ta4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i tall.h5 -o ta5.h5 PASSED +Compare ta5.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i ta6.h5 PASSED +Compare ta6.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i ta7.h5 PASSED +Compare ta7.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i ta8.h5 PASSED +Compare ta8.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i ta9.h5 PASSED +Compare ta9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub.h5 -o tax2.h5 PASSED +Compare tax2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub.h5 -o tax3.h5 PASSED +Compare tax3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub.h5 -o tax4.h5 PASSED +Compare tax4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub.h5 -o tax5.h5 PASSED +Compare tax5.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub513.h5 -o tax6.h5 PASSED +Compare tax6.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub513.h5 -o tax7.h5 PASSED +Compare tax7.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub513.h5 -o tax8.h5 PASSED +Compare tax8.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub513.h5 -o tax9.h5 PASSED +Compare tax9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub.h5 -o taz2.h5 --clobber PASSED +Compare taz2.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub.h5 -o taz3.h5 --clobber PASSED +Compare taz3.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub.h5 -o taz4.h5 --clobber PASSED +Compare taz4.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub.h5 -o taz5.h5 --clobber PASSED +Compare taz5.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u10.txt -i twithub513.h5 -o taz6.h5 --clobber PASSED +Compare taz6.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u511.txt -i twithub513.h5 -o taz7.h5 --clobber PASSED +Compare taz7.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u512.txt -i twithub513.h5 -o taz8.h5 --clobber PASSED +Compare taz8.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -u u513.txt -i twithub513.h5 -o taz9.h5 --clobber PASSED +Compare taz9.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i tay2.h5 --clobber PASSED +Compare tay2.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i tay3.h5 --clobber PASSED +Compare tay3.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i tay4.h5 --clobber PASSED +Compare tay4.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i tay5.h5 --clobber PASSED +Compare tay5.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u10.txt -i tay6.h5 --clobber PASSED +Compare tay6.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u511.txt -i tay7.h5 --clobber PASSED +Compare tay7.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u512.txt -i tay8.h5 --clobber PASSED +Compare tay8.h5 to ./testfiles/tall.h5 PASSED +Testing jam -u u513.txt -i tay9.h5 --clobber PASSED +Compare tay9.h5 to ./testfiles/tall.h5 PASSED +Testing h5jam -h PASSED +Testing h5unjam -i tai1.h5 -u o10.txt -o taa1.h5 PASSED +Compare taa1.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai2.h5 -u o512.txt -o taa2.h5 PASSED +Compare taa2.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai3.h5 -o taa3.h5 > uofile PASSED +Compare taa3.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i tai4.h5 -o taa4.h5 > uofile PASSED +Compare taa4.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i taj2.h5 -o tac2.h5 --delete PASSED +Compare tac2.h5 to ./testfiles/tall.h5 PASSED +Testing h5unjam -i taj3.h5 -o tac3.h5 --delete PASSED +Compare tac3.h5 to ./testfiles/tall.h5 PASSED +All h5jam/h5unjam tests passed. +3.01user 4.61system 0:06.54elapsed 116%CPU (0avgtext+0avgdata 7316maxresident)k +0inputs+5448outputs (0major+1433222minor)pagefaults 0swaps + +Finished testing testh5jam.sh +============================ diff --git a/build/tools/h5ls/.deps/dynlib_ls.Plo b/build/tools/h5ls/.deps/dynlib_ls.Plo new file mode 100644 index 0000000..42ecf29 --- /dev/null +++ b/build/tools/h5ls/.deps/dynlib_ls.Plo @@ -0,0 +1,201 @@ +dynlib_ls.lo: ../../../tools/h5ls/dynlib_ls.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../src/H5PLextern.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5PLextern.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5ls/.deps/h5ls.Po b/build/tools/h5ls/.deps/h5ls.Po new file mode 100644 index 0000000..47ccbc0 --- /dev/null +++ b/build/tools/h5ls/.deps/h5ls.Po @@ -0,0 +1,370 @@ +h5ls.o: ../../../tools/h5ls/h5ls.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5tools_dump.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_dump.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/h5ls/.libs/dynlib_ls.o b/build/tools/h5ls/.libs/dynlib_ls.o new file mode 100644 index 0000000..650c5a7 Binary files /dev/null and b/build/tools/h5ls/.libs/dynlib_ls.o differ diff --git a/build/tools/h5ls/.libs/h5ls b/build/tools/h5ls/.libs/h5ls new file mode 100755 index 0000000..3b538e0 Binary files /dev/null and b/build/tools/h5ls/.libs/h5ls differ diff --git a/build/tools/h5ls/.libs/libdynlibls.la b/build/tools/h5ls/.libs/libdynlibls.la new file mode 120000 index 0000000..c0de5f1 --- /dev/null +++ b/build/tools/h5ls/.libs/libdynlibls.la @@ -0,0 +1 @@ +../libdynlibls.la \ No newline at end of file diff --git a/build/tools/h5ls/.libs/libdynlibls.lai b/build/tools/h5ls/.libs/libdynlibls.lai new file mode 100644 index 0000000..b7918ea --- /dev/null +++ b/build/tools/h5ls/.libs/libdynlibls.lai @@ -0,0 +1,41 @@ +# libdynlibls.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibls.so' + +# Names of this library. +library_names='libdynlibls.so libdynlibls.so libdynlibls.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibls. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5ls/.libs/libdynlibls.so b/build/tools/h5ls/.libs/libdynlibls.so new file mode 100755 index 0000000..4f13911 Binary files /dev/null and b/build/tools/h5ls/.libs/libdynlibls.so differ diff --git a/build/tools/h5ls/.libs/lt-h5ls b/build/tools/h5ls/.libs/lt-h5ls new file mode 100755 index 0000000..1c24548 Binary files /dev/null and b/build/tools/h5ls/.libs/lt-h5ls differ diff --git a/build/tools/h5ls/Makefile b/build/tools/h5ls/Makefile new file mode 100644 index 0000000..f2ed0f0 --- /dev/null +++ b/build/tools/h5ls/Makefile @@ -0,0 +1,1470 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5ls/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/h5ls +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +am__append_1 = h5ls_plugin.sh +bin_PROGRAMS = h5ls$(EXEEXT) +TESTS = $(TEST_SCRIPT) +subdir = tools/h5ls +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5ls_plugin.sh testh5ls.sh +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libdynlibls_la_LIBADD = +am__libdynlibls_la_SOURCES_DIST = dynlib_ls.c +am_libdynlibls_la_OBJECTS = dynlib_ls.lo +libdynlibls_la_OBJECTS = $(am_libdynlibls_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libdynlibls_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libdynlibls_la_LDFLAGS) $(LDFLAGS) -o \ + $@ +am_libdynlibls_la_rpath = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +h5ls_SOURCES = h5ls.c +h5ls_OBJECTS = h5ls.$(OBJEXT) +h5ls_LDADD = $(LDADD) +h5ls_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5ls_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5ls_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdynlibls_la_SOURCES) h5ls.c +DIST_SOURCES = $(am__libdynlibls_la_SOURCES_DIST) h5ls.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5ls_plugin.sh.in \ + $(srcdir)/testh5ls.sh.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5ls +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5ls +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Test programs and scripts +TEST_SCRIPT = testh5ls.sh $(am__append_1) +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5ls$(EXEEXT) + +# Add h5ls specific linker flags here +h5ls_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# All programs depend on the hdf5 and h5tools libraries +LDADD = $(LIBH5TOOLS) $(LIBHDF5) +noinst_LTLIBRARIES = libdynlibls.la +libdynlibls_la_SOURCES = dynlib_ls.c +libdynlibls_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +DISTCLEANFILES = h5ls_plugin.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5ls/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5ls/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5ls_plugin.sh: $(top_builddir)/config.status $(srcdir)/h5ls_plugin.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5ls.sh: $(top_builddir)/config.status $(srcdir)/testh5ls.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +#libdynlibls.la: $(libdynlibls_la_OBJECTS) $(libdynlibls_la_DEPENDENCIES) $(EXTRA_libdynlibls_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibls_la_LINK) $(am_libdynlibls_la_rpath) $(libdynlibls_la_OBJECTS) $(libdynlibls_la_LIBADD) $(LIBS) + +#libdynlibls.la: $(libdynlibls_la_OBJECTS) $(libdynlibls_la_DEPENDENCIES) $(EXTRA_libdynlibls_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibls_la_LINK) $(am_libdynlibls_la_rpath) $(libdynlibls_la_OBJECTS) $(libdynlibls_la_LIBADD) $(LIBS) +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5ls$(EXEEXT): $(h5ls_OBJECTS) $(h5ls_DEPENDENCIES) $(EXTRA_h5ls_DEPENDENCIES) + @rm -f h5ls$(EXEEXT) + $(AM_V_CCLD)$(h5ls_LINK) $(h5ls_OBJECTS) $(h5ls_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/dynlib_ls.Plo +include ./$(DEPDIR)/h5ls.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + + # Build it as shared library if configure is enabled for shared library. + +libdynlibls.la: $(libdynlibls_la_OBJECTS) $(libdynlibls_la_DEPENDENCIES) $(EXTRA_libdynlibls_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibls_la_LINK) $(am_libdynlibls_la_rpath) $(libdynlibls_la_OBJECTS) $(libdynlibls_la_LIBADD) +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5ls/dynlib_ls.lo b/build/tools/h5ls/dynlib_ls.lo new file mode 100644 index 0000000..50e66b5 --- /dev/null +++ b/build/tools/h5ls/dynlib_ls.lo @@ -0,0 +1,12 @@ +# dynlib_ls.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib_ls.o' + +# Name of the non-PIC object +non_pic_object='dynlib_ls.o' + diff --git a/build/tools/h5ls/dynlib_ls.o b/build/tools/h5ls/dynlib_ls.o new file mode 100644 index 0000000..a94c734 Binary files /dev/null and b/build/tools/h5ls/dynlib_ls.o differ diff --git a/build/tools/h5ls/h5ls b/build/tools/h5ls/h5ls new file mode 100755 index 0000000..f80d566 --- /dev/null +++ b/build/tools/h5ls/h5ls @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5ls - temporary wrapper script for .libs/h5ls +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5ls program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5ls.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5ls:h5ls:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5ls:h5ls:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5ls:h5ls:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5ls' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5ls/h5ls.o b/build/tools/h5ls/h5ls.o new file mode 100644 index 0000000..c073e2f Binary files /dev/null and b/build/tools/h5ls/h5ls.o differ diff --git a/build/tools/h5ls/h5ls_plugin.sh b/build/tools/h5ls/h5ls_plugin.sh new file mode 100644 index 0000000..161978a --- /dev/null +++ b/build/tools/h5ls/h5ls_plugin.sh @@ -0,0 +1,252 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +srcdir=../../../tools/h5ls +TOP_BUILDDIR=../.. + +# Determine backward compatibility options enabled +DEPRECATED_SYMBOLS="yes" + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5LS=h5ls # The tool name +H5LS_BIN=`pwd`/$H5LS # The path of the tool binary + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes + +TEST_NAME=ud_plugin +FROM_DIR=`pwd`/.libs +PLUGIN_LIB="$FROM_DIR/libdynlibls.*" +PLUGIN_LIBDIR=testdir3 + +RM='rm -rf' +GREP='grep' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# source dirs +SRC_TOOLS="$srcdir/.." + +# testfiles source dirs for tools +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" + +TESTDIR=./testplug +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_TOOLS_TESTFILES/tudfilter.h5 +$SRC_TOOLS_TESTFILES/tudfilter.ls +" + +# RUNSERIAL is used. Check if it can return exit code from executable correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell correctly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# Main Body +# Create test directories if not exists yet. +test -d $PLUGIN_LIBDIR || mkdir -p $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR)" + exit $EXIT_FAILURE +fi + +# copy plugin library for test +$CP $PLUGIN_LIB $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB) for test." + exit $EXIT_FAILURE +fi + +# setup plugin path +ENVCMD="env HDF5_PLUGIN_PATH=../${PLUGIN_LIBDIR}" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5LS_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a $* message left justified in a field of 70 characters +# +MESSAGE() { + SPACES=" " + echo "$* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY() { + MESSAGE "Verifying $*" +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. For now, if h5ls can complete +# with exit status 0, consider it pass. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display up to $NLINS +# lines of the actual output from the tool test. The actual output is not +# removed if $HDF5_NOCLEANUP has a non-zero value. +# Arguemnts: +# $1 -- actual output filename to use +# $2 and on -- argument for the h5ls tool +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ls`.out" + actual_err="$TESTDIR/`basename $1 .ls`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + retvalexpect=$1 + shift + + # Run test. + # Stderr is included in stdout so that the diff can detect + # any unexpected output from that stream too. + TESTING $H5LS $@ + ( + cd $TESTDIR + $ENVCMD $RUNSERIAL $H5LS_BIN "$@" + ) >$actual 2>$actual_err + + exitcode=$? + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + if [ $h5haveexitcode = 'yes' -a $exitcode -ne $retvalexpect ]; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + if [ yes = "$verbose" ]; then + echo "test returned with exit code $exitcode" + echo "test output: (up to $NLINES lines)" + head -$NLINES $actual + echo "***end of test output***" + echo "" + fi + elif [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ls) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result differs from actual result" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi +} + +############################################################################## +### T H E T E S T S +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Run the test +TOOLTEST tudfilter.ls 0 -w80 -d tudfilter.h5 + +# print results +if test $nerrors -ne 0 ; then + echo "$nerrors errors encountered" + exit_code=$EXIT_FAILURE +else + echo "All Plugin API tests passed." + exit_code=$EXIT_SUCCESS +fi + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Clean up temporary files/directories and leave +$RM $PLUGIN_LIBDIR + +exit $exit_code diff --git a/build/tools/h5ls/h5ls_plugin.sh.chkexe b/build/tools/h5ls/h5ls_plugin.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5ls/h5ls_plugin.sh.chklog b/build/tools/h5ls/h5ls_plugin.sh.chklog new file mode 100644 index 0000000..a949fda --- /dev/null +++ b/build/tools/h5ls/h5ls_plugin.sh.chklog @@ -0,0 +1,10 @@ +============================ +h5ls_plugin.sh Test Log +============================ +Testing h5ls -w80 -d tudfilter.h5 PASSED +All Plugin API tests passed. +0.07user 0.10system 0:00.21elapsed 82%CPU (0avgtext+0avgdata 7348maxresident)k +0inputs+704outputs (0major+28072minor)pagefaults 0swaps + +Finished testing h5ls_plugin.sh +============================ diff --git a/build/tools/h5ls/libdynlibls.la b/build/tools/h5ls/libdynlibls.la new file mode 100644 index 0000000..6cf71f5 --- /dev/null +++ b/build/tools/h5ls/libdynlibls.la @@ -0,0 +1,41 @@ +# libdynlibls.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibls.so' + +# Names of this library. +library_names='libdynlibls.so libdynlibls.so libdynlibls.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibls. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5ls/testh5ls.sh b/build/tools/h5ls/testh5ls.sh new file mode 100644 index 0000000..b86737d --- /dev/null +++ b/build/tools/h5ls/testh5ls.sh @@ -0,0 +1,438 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5ls tool + +srcdir=../../../tools/h5ls + +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5ls +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5LS=h5ls # The tool name +H5LS_BIN=`pwd`/$H5LS # The path of the tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +NLINES=20 # Max. lines of output to display if test fails +DIRNAME='dirname' +LS='ls' +AWK='awk' + +WORDS_BIGENDIAN="no" + +nerrors=0 +verbose=yes +h5haveexitcode=yes # default is yes + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5LS_TESTFILES/tall.h5 +$SRC_H5LS_TESTFILES/tarray1.h5 +$SRC_H5LS_TESTFILES/tattr2.h5 +$SRC_H5LS_TESTFILES/tattrreg.h5 +$SRC_H5LS_TESTFILES/tcompound.h5 +$SRC_H5LS_TESTFILES/tdatareg.h5 +$SRC_H5LS_TESTFILES/tdset.h5 +$SRC_H5LS_TESTFILES/tempty.h5 +$SRC_H5LS_TESTFILES/textlink.h5 +$SRC_H5LS_TESTFILES/textlinksrc.h5 +$SRC_H5LS_TESTFILES/textlinktar.h5 +$SRC_H5LS_TESTFILES/tgroup.h5 +$SRC_H5LS_TESTFILES/tgrp_comments.h5 +$SRC_H5LS_TESTFILES/tgrpnullspace.h5 +$SRC_H5LS_TESTFILES/thlink.h5 +$SRC_H5LS_TESTFILES/tloop.h5 +$SRC_H5LS_TESTFILES/tnestedcomp.h5 +$SRC_H5LS_TESTFILES/tsaf.h5 +$SRC_H5LS_TESTFILES/tslink.h5 +$SRC_H5LS_TESTFILES/tsoftlinks.h5 +$SRC_H5LS_TESTFILES/tstr.h5 +$SRC_H5LS_TESTFILES/tudlink.h5 +$SRC_H5LS_TESTFILES/tvldtypes1.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5LS_TESTFILES/help-1.ls +$SRC_H5LS_TESTFILES/help-2.ls +$SRC_H5LS_TESTFILES/help-3.ls +$SRC_H5LS_TESTFILES/nosuchfile.ls +$SRC_H5LS_TESTFILES/tall-1.ls +$SRC_H5LS_TESTFILES/tall-2.ls +$SRC_H5LS_TESTFILES/tarray1.ls +$SRC_H5LS_TESTFILES/tattr2.ls +$SRC_H5LS_TESTFILES/tattrreg_le.ls +$SRC_H5LS_TESTFILES/tattrreg_be.ls +$SRC_H5LS_TESTFILES/tcomp-1.ls +$SRC_H5LS_TESTFILES/tdataregbe.ls +$SRC_H5LS_TESTFILES/tdataregle.ls +$SRC_H5LS_TESTFILES/tdset-1.ls +$SRC_H5LS_TESTFILES/tempty.ls +$SRC_H5LS_TESTFILES/textlink-1.ls +$SRC_H5LS_TESTFILES/textlinksrc-1.ls +$SRC_H5LS_TESTFILES/textlinksrc-2.ls +$SRC_H5LS_TESTFILES/textlinksrc-3.ls +$SRC_H5LS_TESTFILES/textlinksrc-4.ls +$SRC_H5LS_TESTFILES/textlinksrc-5.ls +$SRC_H5LS_TESTFILES/textlinksrc-6.ls +$SRC_H5LS_TESTFILES/textlinksrc-7.ls +$SRC_H5LS_TESTFILES/textlinksrc-1-old.ls +$SRC_H5LS_TESTFILES/textlinksrc-2-old.ls +$SRC_H5LS_TESTFILES/textlinksrc-3-old.ls +$SRC_H5LS_TESTFILES/textlinksrc-6-old.ls +$SRC_H5LS_TESTFILES/textlinksrc-7-old.ls +$SRC_H5LS_TESTFILES/tsoftlinks-1.ls +$SRC_H5LS_TESTFILES/tsoftlinks-2.ls +$SRC_H5LS_TESTFILES/tsoftlinks-3.ls +$SRC_H5LS_TESTFILES/tsoftlinks-4.ls +$SRC_H5LS_TESTFILES/tsoftlinks-5.ls +$SRC_H5LS_TESTFILES/textlinksrc-nodangle-1.ls +$SRC_H5LS_TESTFILES/textlinksrc-nodangle-2.ls +$SRC_H5LS_TESTFILES/tgrp_comments.ls +$SRC_H5LS_TESTFILES/tsoftlinks-nodangle-1.ls +$SRC_H5LS_TESTFILES/thlinks-nodangle-1.ls +$SRC_H5LS_TESTFILES/tgroup.ls +$SRC_H5LS_TESTFILES/tgroup-1.ls +$SRC_H5LS_TESTFILES/tgroup-2.ls +$SRC_H5LS_TESTFILES/tgroup-3.ls +$SRC_H5LS_TESTFILES/tgrpnullspace.ls +$SRC_H5LS_TESTFILES/thlink-1.ls +$SRC_H5LS_TESTFILES/tloop-1.ls +$SRC_H5LS_TESTFILES/tmultifile.ls +$SRC_H5LS_TESTFILES/tnestcomp-1.ls +$SRC_H5LS_TESTFILES/tnestcomp-2.ls +$SRC_H5LS_TESTFILES/tnestcomp-3.ls +$SRC_H5LS_TESTFILES/tnestcomp-4.ls +$SRC_H5LS_TESTFILES/tsaf.ls +$SRC_H5LS_TESTFILES/tslink-1.ls +$SRC_H5LS_TESTFILES/tstr-1.ls +$SRC_H5LS_TESTFILES/tudlink-1.ls +$SRC_H5LS_TESTFILES/tvldtypes1.ls +$SRC_H5LS_TESTFILES/tvldtypes2le.ls +$SRC_H5LS_TESTFILES/tvldtypes2be.ls +" + + +# RUNSERIAL is used. Check if it can return exit code from executalbe correctly. +if [ -n "$RUNSERIAL_NOEXITCODE" ]; then + echo "***Warning*** Serial Exit Code is not passed back to shell corretly." + echo "***Warning*** Exit code checking is skipped." + h5haveexitcode=no +fi + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5LS_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" |cut -c1-70 |tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. For now, if h5ls can complete +# with exit status 0, consider it pass. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display up to $NLINS +# lines of the actual output from the tool test. The actual output is not +# removed if $HDF5_NOCLEANUP has a non-zero value. +# Arguemnts: +# $1 -- actual output filename to use +# $2 and on -- argument for the h5ls tool +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ls`.out" + actual_err="$TESTDIR/`basename $1 .ls`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + retvalexpect=$1 + shift + + # Run test. + # Stderr is included in stdout so that the diff can detect + # any unexpected output from that stream too. + TESTING $H5LS $@ + ( + cd $TESTDIR + $RUNSERIAL $H5LS_BIN "$@" + ) >$actual 2>$actual_err + + exitcode=$? + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + if [ $h5haveexitcode = 'yes' -a $exitcode -ne $retvalexpect ]; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + if [ yes = "$verbose" ]; then + echo "test returned with exit code $exitcode" + echo "test output: (up to $NLINES lines)" + head -$NLINES $actual + echo "***end of test output***" + echo "" + fi + elif [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ls) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result differs from actual result" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi +} + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Toss in a bunch of tests. Not sure if they are the right kinds. +# test the help syntax +TOOLTEST help-1.ls 0 -w80 -h +TOOLTEST help-2.ls 0 -w80 -help +TOOLTEST help-3.ls 0 -w80 -? + +# test simple command +TOOLTEST tall-1.ls 0 -w80 tall.h5 +TOOLTEST tall-2.ls 0 -w80 -r -d tall.h5 +TOOLTEST tgroup.ls 0 -w80 tgroup.h5 +TOOLTEST tgroup-3.ls 0 -w80 tgroup.h5/g1 + +# test for displaying groups +# The following combination of arguments is expected to return an error message +# and return value 1 +TOOLTEST tgroup-1.ls 1 -w80 -r -g tgroup.h5 +TOOLTEST tgroup-2.ls 0 -w80 -g tgroup.h5/g1 + +# test for files with groups that have long comments +TOOLTEST tgrp_comments.ls 0 -w80 -v -g tgrp_comments.h5/glongcomment + +# test for displaying simple space datasets +TOOLTEST tdset-1.ls 0 -w80 -r -d tdset.h5 + +# test for displaying soft links +TOOLTEST tslink-1.ls 0 -w80 -r tslink.h5 + +# test for displaying more soft links with --follow-symlinks +TOOLTEST tsoftlinks-1.ls 0 --follow-symlinks tsoftlinks.h5 +TOOLTEST tsoftlinks-2.ls 0 --follow-symlinks -r tsoftlinks.h5 +TOOLTEST tsoftlinks-3.ls 0 --follow-symlinks tsoftlinks.h5/group1 +TOOLTEST tsoftlinks-4.ls 0 --follow-symlinks -r tsoftlinks.h5/group1 +TOOLTEST tsoftlinks-5.ls 0 --follow-symlinks tsoftlinks.h5/soft_dset1 + +# test for displaying external and user-defined links with --follow-symlinks +TOOLTEST textlink-1.ls 0 -w80 -r textlink.h5 +TOOLTEST textlinksrc-1.ls 0 -w80 --follow-symlinks -r textlinksrc.h5 +TOOLTEST textlinksrc-2.ls 0 -w80 --follow-symlinks -rv textlinksrc.h5/ext_link5 +TOOLTEST textlinksrc-3.ls 0 -w80 --follow-symlinks -r textlinksrc.h5/ext_link1 +TOOLTEST textlinksrc-4.ls 0 -w80 -r textlinksrc.h5 +TOOLTEST textlinksrc-5.ls 0 -w80 -r textlinksrc.h5/ext_link1 +TOOLTEST textlinksrc-6.ls 0 -w80 --follow-symlinks textlinksrc.h5 +TOOLTEST textlinksrc-7.ls 0 -w80 --follow-symlinks textlinksrc.h5/ext_link1 +TOOLTEST tudlink-1.ls 0 -w80 -r tudlink.h5 + +# test for displaying external links with -E +# the option -E will be depriciated but keep it for backward compatibility +TOOLTEST textlinksrc-1-old.ls 0 -w80 -Er textlinksrc.h5 +TOOLTEST textlinksrc-2-old.ls 0 -w80 -Erv textlinksrc.h5/ext_link5 +TOOLTEST textlinksrc-3-old.ls 0 -w80 -Er textlinksrc.h5/ext_link1 +TOOLTEST textlinksrc-6-old.ls 0 -w80 -E textlinksrc.h5 +TOOLTEST textlinksrc-7-old.ls 0 -w80 -E textlinksrc.h5/ext_link1 + +# tests for no-dangling-links +# if this option is given on dangling link, h5ls should return exit code 1 +# when used alone , expect to print out help and return exit code 1 +TOOLTEST textlinksrc-nodangle-1.ls 1 -w80 --no-dangling-links textlinksrc.h5 +# external dangling link - expected exit code 1 +TOOLTEST textlinksrc-nodangle-2.ls 1 -w80 --follow-symlinks --no-dangling-links textlinksrc.h5 +# soft dangling link - expected exit code 1 +TOOLTEST tsoftlinks-nodangle-1.ls 1 -w80 --follow-symlinks --no-dangling-links tsoftlinks.h5 +# when used file with no dangling links - expected exit code 0 +TOOLTEST thlinks-nodangle-1.ls 0 -w80 --follow-symlinks --no-dangling-links thlink.h5 + +# test for wildcards in filename (does not work with cmake) +# this h5ls test script does not pass the filename properly like the h5dump test script??? +#TOOLTEST tstarfile.ls 0 -w80 t*link.h5 +#TOOLTEST tqmarkfile.ls 0 -w80 t?link.h5 +TOOLTEST tmultifile.ls 0 -w80 thlink.h5 tslink.h5 + +# tests for hard links +TOOLTEST thlink-1.ls 0 -w80 thlink.h5 + +# tests for compound data types +TOOLTEST tcomp-1.ls 0 -w80 -r -d tcompound.h5 + +#test for the nested compound type +TOOLTEST tnestcomp-1.ls 0 -w80 -r -d tnestedcomp.h5 + +TOOLTEST tnestcomp-2.ls 0 -w80 -r -d -S tnestedcomp.h5 + +TOOLTEST tnestcomp-3.ls 0 -w80 -r -d -l tnestedcomp.h5 + +TOOLTEST tnestcomp-4.ls 0 -w80 -r -d -l -S tnestedcomp.h5 + +# test for loop detection +TOOLTEST tloop-1.ls 0 -w80 -r -d tloop.h5 + +# test for string +TOOLTEST tstr-1.ls 0 -w80 -r -d tstr.h5 + +# test test file created from lib SAF team +TOOLTEST tsaf.ls 0 -w80 -r -d tsaf.h5 + +# test for variable length data types +TOOLTEST tvldtypes1.ls 0 -w80 -r -d tvldtypes1.h5 + +# test for array data types +TOOLTEST tarray1.ls 0 -w80 -r -d tarray1.h5 + +# test for empty data +TOOLTEST tempty.ls 0 -w80 -d tempty.h5 + +# test for displaying dataset and attribute of null space +TOOLTEST tgrpnullspace.ls 0 -w80 -v -S tgrpnullspace.h5 + +# test for all dataset types written to attributes +# enable -S for avoiding printing NATIVE types +TOOLTEST tattr2.ls 0 -w80 -v -S tattr2.h5 + +# test for attribute with region references without verbose mode +# ( HDFFV-7838, ) +if test $WORDS_BIGENDIAN != "yes"; then +TOOLTEST tattrreg_le.ls 0 -w80 -v -d tattrreg.h5 +else +TOOLTEST tattrreg_be.ls 0 -w80 -v -d tattrreg.h5 +fi + +# tests for error handling. +# test for non-existing file +TOOLTEST nosuchfile.ls 1 nosuchfile.h5 + +# test for variable length data types in verbose mode +if test $WORDS_BIGENDIAN != "yes"; then + TOOLTEST tvldtypes2le.ls 0 -v tvldtypes1.h5 +else + TOOLTEST tvldtypes2be.ls 0 -v tvldtypes1.h5 +fi + + +# test for dataset region references data types in verbose mode +if test $WORDS_BIGENDIAN != "yes"; then + TOOLTEST tdataregle.ls 0 -v tdatareg.h5 +else + TOOLTEST tdataregbe.ls 0 -v tdatareg.h5 +fi + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/h5ls/testh5ls.sh.chkexe b/build/tools/h5ls/testh5ls.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5ls/testh5ls.sh.chklog b/build/tools/h5ls/testh5ls.sh.chklog new file mode 100644 index 0000000..3090785 --- /dev/null +++ b/build/tools/h5ls/testh5ls.sh.chklog @@ -0,0 +1,63 @@ +============================ +testh5ls.sh Test Log +============================ +Testing h5ls -w80 -h PASSED +Testing h5ls -w80 -help PASSED +Testing h5ls -w80 -? PASSED +Testing h5ls -w80 tall.h5 PASSED +Testing h5ls -w80 -r -d tall.h5 PASSED +Testing h5ls -w80 tgroup.h5 PASSED +Testing h5ls -w80 tgroup.h5/g1 PASSED +Testing h5ls -w80 -r -g tgroup.h5 PASSED +Testing h5ls -w80 -g tgroup.h5/g1 PASSED +Testing h5ls -w80 -v -g tgrp_comments.h5/glongcomment PASSED +Testing h5ls -w80 -r -d tdset.h5 PASSED +Testing h5ls -w80 -r tslink.h5 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5 PASSED +Testing h5ls --follow-symlinks -r tsoftlinks.h5 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5/group1 PASSED +Testing h5ls --follow-symlinks -r tsoftlinks.h5/group1 PASSED +Testing h5ls --follow-symlinks tsoftlinks.h5/soft_dset1 PASSED +Testing h5ls -w80 -r textlink.h5 PASSED +Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks -rv textlinksrc.h5/ext_link5 PASSED +Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -r textlinksrc.h5 PASSED +Testing h5ls -w80 -r textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 --follow-symlinks textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -r tudlink.h5 PASSED +Testing h5ls -w80 -Er textlinksrc.h5 PASSED +Testing h5ls -w80 -Erv textlinksrc.h5/ext_link5 PASSED +Testing h5ls -w80 -Er textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 -E textlinksrc.h5 PASSED +Testing h5ls -w80 -E textlinksrc.h5/ext_link1 PASSED +Testing h5ls -w80 --no-dangling-links textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links textlinksrc.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links tsoftlinks.h5 PASSED +Testing h5ls -w80 --follow-symlinks --no-dangling-links thlink.h5 PASSED +Testing h5ls -w80 thlink.h5 tslink.h5 PASSED +Testing h5ls -w80 thlink.h5 PASSED +Testing h5ls -w80 -r -d tcompound.h5 PASSED +Testing h5ls -w80 -r -d tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -S tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -l tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d -l -S tnestedcomp.h5 PASSED +Testing h5ls -w80 -r -d tloop.h5 PASSED +Testing h5ls -w80 -r -d tstr.h5 PASSED +Testing h5ls -w80 -r -d tsaf.h5 PASSED +Testing h5ls -w80 -r -d tvldtypes1.h5 PASSED +Testing h5ls -w80 -r -d tarray1.h5 PASSED +Testing h5ls -w80 -d tempty.h5 PASSED +Testing h5ls -w80 -v -S tgrpnullspace.h5 PASSED +Testing h5ls -w80 -v -S tattr2.h5 PASSED +Testing h5ls -w80 -v -d tattrreg.h5 PASSED +Testing h5ls nosuchfile.h5 PASSED +Testing h5ls -v tvldtypes1.h5 PASSED +Testing h5ls -v tdatareg.h5 PASSED +All h5ls tests passed. +1.77user 3.37system 0:04.56elapsed 112%CPU (0avgtext+0avgdata 7796maxresident)k +0inputs+5792outputs (0major+981108minor)pagefaults 0swaps + +Finished testing testh5ls.sh +============================ diff --git a/build/tools/h5repack/.deps/dynlib_rpk.Plo b/build/tools/h5repack/.deps/dynlib_rpk.Plo new file mode 100644 index 0000000..cded8a0 --- /dev/null +++ b/build/tools/h5repack/.deps/dynlib_rpk.Plo @@ -0,0 +1,201 @@ +dynlib_rpk.lo: ../../../tools/h5repack/dynlib_rpk.c \ + /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../src/H5PLextern.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5PLextern.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5repack/.deps/dynlib_vrpk.Plo b/build/tools/h5repack/.deps/dynlib_vrpk.Plo new file mode 100644 index 0000000..b634f22 --- /dev/null +++ b/build/tools/h5repack/.deps/dynlib_vrpk.Plo @@ -0,0 +1,201 @@ +dynlib_vrpk.lo: ../../../tools/h5repack/dynlib_vrpk.c \ + /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ + /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + ../../../src/H5PLextern.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5PLextern.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5repack/.deps/h5repack.Po b/build/tools/h5repack/.deps/h5repack.Po new file mode 100644 index 0000000..1f50cf0 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack.Po @@ -0,0 +1,367 @@ +h5repack.o: ../../../tools/h5repack/h5repack.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/h5repack/h5repack.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5trav.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repack_copy.Po b/build/tools/h5repack/.deps/h5repack_copy.Po new file mode 100644 index 0000000..e1214d1 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_copy.Po @@ -0,0 +1,368 @@ +h5repack_copy.o: ../../../tools/h5repack/h5repack_copy.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repack_filters.Po b/build/tools/h5repack/.deps/h5repack_filters.Po new file mode 100644 index 0000000..25d7005 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_filters.Po @@ -0,0 +1,368 @@ +h5repack_filters.o: ../../../tools/h5repack/h5repack_filters.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repack_main.Po b/build/tools/h5repack/.deps/h5repack_main.Po new file mode 100644 index 0000000..7a8c35e --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_main.Po @@ -0,0 +1,368 @@ +h5repack_main.o: ../../../tools/h5repack/h5repack_main.c \ + /usr/include/stdc-predef.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/h5repack/h5repack.h ../../../src/H5private.h \ + /usr/include/assert.h /usr/include/ctype.h /usr/include/xlocale.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/h5repack/.deps/h5repack_opttable.Po b/build/tools/h5repack/.deps/h5repack_opttable.Po new file mode 100644 index 0000000..4f52223 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_opttable.Po @@ -0,0 +1,368 @@ +h5repack_opttable.o: ../../../tools/h5repack/h5repack_opttable.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repack_parse.Po b/build/tools/h5repack/.deps/h5repack_parse.Po new file mode 100644 index 0000000..e48661b --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_parse.Po @@ -0,0 +1,368 @@ +h5repack_parse.o: ../../../tools/h5repack/h5repack_parse.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repack_refs.Po b/build/tools/h5repack/.deps/h5repack_refs.Po new file mode 100644 index 0000000..7049c83 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_refs.Po @@ -0,0 +1,370 @@ +h5repack_refs.o: ../../../tools/h5repack/h5repack_refs.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: diff --git a/build/tools/h5repack/.deps/h5repack_verify.Po b/build/tools/h5repack/.deps/h5repack_verify.Po new file mode 100644 index 0000000..f63a64c --- /dev/null +++ b/build/tools/h5repack/.deps/h5repack_verify.Po @@ -0,0 +1,368 @@ +h5repack_verify.o: ../../../tools/h5repack/h5repack_verify.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/h5repacktst.Po b/build/tools/h5repack/.deps/h5repacktst.Po new file mode 100644 index 0000000..b50c687 --- /dev/null +++ b/build/tools/h5repack/.deps/h5repacktst.Po @@ -0,0 +1,375 @@ +h5repacktst.o: ../../../tools/h5repack/h5repacktst.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../test/h5test.h ../../../tools/lib/h5diff.h \ + ../../../tools/lib/h5trav.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../test/h5test.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/h5repack/.deps/testh5repack_detect_szip.Po b/build/tools/h5repack/.deps/testh5repack_detect_szip.Po new file mode 100644 index 0000000..14aa935 --- /dev/null +++ b/build/tools/h5repack/.deps/testh5repack_detect_szip.Po @@ -0,0 +1,371 @@ +testh5repack_detect_szip.o: \ + ../../../tools/h5repack/testh5repack_detect_szip.c \ + /usr/include/stdc-predef.h ../../../tools/h5repack/h5repack.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h ../../../test/h5test.h + +/usr/include/stdc-predef.h: + +../../../tools/h5repack/h5repack.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../test/h5test.h: diff --git a/build/tools/h5repack/.libs/dynlib_rpk.o b/build/tools/h5repack/.libs/dynlib_rpk.o new file mode 100644 index 0000000..5f00bbb Binary files /dev/null and b/build/tools/h5repack/.libs/dynlib_rpk.o differ diff --git a/build/tools/h5repack/.libs/dynlib_vrpk.o b/build/tools/h5repack/.libs/dynlib_vrpk.o new file mode 100644 index 0000000..fdfa362 Binary files /dev/null and b/build/tools/h5repack/.libs/dynlib_vrpk.o differ diff --git a/build/tools/h5repack/.libs/h5repack b/build/tools/h5repack/.libs/h5repack new file mode 100755 index 0000000..270d2e8 Binary files /dev/null and b/build/tools/h5repack/.libs/h5repack differ diff --git a/build/tools/h5repack/.libs/h5repacktst b/build/tools/h5repack/.libs/h5repacktst new file mode 100755 index 0000000..c109326 Binary files /dev/null and b/build/tools/h5repack/.libs/h5repacktst differ diff --git a/build/tools/h5repack/.libs/libdynlibadd.la b/build/tools/h5repack/.libs/libdynlibadd.la new file mode 120000 index 0000000..86dd59c --- /dev/null +++ b/build/tools/h5repack/.libs/libdynlibadd.la @@ -0,0 +1 @@ +../libdynlibadd.la \ No newline at end of file diff --git a/build/tools/h5repack/.libs/libdynlibadd.lai b/build/tools/h5repack/.libs/libdynlibadd.lai new file mode 100644 index 0000000..db3cf2e --- /dev/null +++ b/build/tools/h5repack/.libs/libdynlibadd.lai @@ -0,0 +1,41 @@ +# libdynlibadd.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibadd.so' + +# Names of this library. +library_names='libdynlibadd.so libdynlibadd.so libdynlibadd.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibadd. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5repack/.libs/libdynlibadd.so b/build/tools/h5repack/.libs/libdynlibadd.so new file mode 100755 index 0000000..ce7ad81 Binary files /dev/null and b/build/tools/h5repack/.libs/libdynlibadd.so differ diff --git a/build/tools/h5repack/.libs/libdynlibvers.la b/build/tools/h5repack/.libs/libdynlibvers.la new file mode 120000 index 0000000..47f0758 --- /dev/null +++ b/build/tools/h5repack/.libs/libdynlibvers.la @@ -0,0 +1 @@ +../libdynlibvers.la \ No newline at end of file diff --git a/build/tools/h5repack/.libs/libdynlibvers.lai b/build/tools/h5repack/.libs/libdynlibvers.lai new file mode 100644 index 0000000..db990c1 --- /dev/null +++ b/build/tools/h5repack/.libs/libdynlibvers.lai @@ -0,0 +1,41 @@ +# libdynlibvers.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibvers.so' + +# Names of this library. +library_names='libdynlibvers.so libdynlibvers.so libdynlibvers.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibvers. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5repack/.libs/libdynlibvers.so b/build/tools/h5repack/.libs/libdynlibvers.so new file mode 100755 index 0000000..7b15375 Binary files /dev/null and b/build/tools/h5repack/.libs/libdynlibvers.so differ diff --git a/build/tools/h5repack/.libs/lt-h5repack b/build/tools/h5repack/.libs/lt-h5repack new file mode 100755 index 0000000..f4f84d8 Binary files /dev/null and b/build/tools/h5repack/.libs/lt-h5repack differ diff --git a/build/tools/h5repack/.libs/lt-h5repacktst b/build/tools/h5repack/.libs/lt-h5repacktst new file mode 100755 index 0000000..35a43dc Binary files /dev/null and b/build/tools/h5repack/.libs/lt-h5repacktst differ diff --git a/build/tools/h5repack/.libs/testh5repack_detect_szip b/build/tools/h5repack/.libs/testh5repack_detect_szip new file mode 100755 index 0000000..dfbb8f4 Binary files /dev/null and b/build/tools/h5repack/.libs/testh5repack_detect_szip differ diff --git a/build/tools/h5repack/Makefile b/build/tools/h5repack/Makefile new file mode 100644 index 0000000..5daca44 --- /dev/null +++ b/build/tools/h5repack/Makefile @@ -0,0 +1,1575 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5repack/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/h5repack +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +noinst_PROGRAMS = testh5repack_detect_szip$(EXEEXT) +am__append_1 = h5repack_plugin.sh +check_PROGRAMS = $(am__EXEEXT_1) +bin_PROGRAMS = h5repack$(EXEEXT) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/h5repack +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5repack.sh h5repack_plugin.sh +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libdynlibadd_la_LIBADD = +am__libdynlibadd_la_SOURCES_DIST = dynlib_rpk.c +am_libdynlibadd_la_OBJECTS = dynlib_rpk.lo +libdynlibadd_la_OBJECTS = $(am_libdynlibadd_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libdynlibadd_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libdynlibadd_la_LDFLAGS) $(LDFLAGS) \ + -o $@ +am_libdynlibadd_la_rpath = +libdynlibvers_la_LIBADD = +am__libdynlibvers_la_SOURCES_DIST = dynlib_vrpk.c +am_libdynlibvers_la_OBJECTS = dynlib_vrpk.lo +libdynlibvers_la_OBJECTS = $(am_libdynlibvers_la_OBJECTS) +libdynlibvers_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libdynlibvers_la_LDFLAGS) $(LDFLAGS) \ + -o $@ +am_libdynlibvers_la_rpath = +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5repacktst$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) +am__objects_1 = h5repack.$(OBJEXT) h5repack_copy.$(OBJEXT) \ + h5repack_filters.$(OBJEXT) h5repack_opttable.$(OBJEXT) \ + h5repack_parse.$(OBJEXT) h5repack_refs.$(OBJEXT) \ + h5repack_verify.$(OBJEXT) +am_h5repack_OBJECTS = $(am__objects_1) h5repack_main.$(OBJEXT) +h5repack_OBJECTS = $(am_h5repack_OBJECTS) +h5repack_LDADD = $(LDADD) +h5repack_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +h5repack_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5repack_LDFLAGS) $(LDFLAGS) -o $@ +am_h5repacktst_OBJECTS = $(am__objects_1) h5repacktst.$(OBJEXT) +h5repacktst_OBJECTS = $(am_h5repacktst_OBJECTS) +h5repacktst_LDADD = $(LDADD) +h5repacktst_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +am_testh5repack_detect_szip_OBJECTS = \ + testh5repack_detect_szip.$(OBJEXT) +testh5repack_detect_szip_OBJECTS = \ + $(am_testh5repack_detect_szip_OBJECTS) +testh5repack_detect_szip_LDADD = $(LDADD) +testh5repack_detect_szip_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) \ + $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdynlibadd_la_SOURCES) $(libdynlibvers_la_SOURCES) \ + $(h5repack_SOURCES) $(h5repacktst_SOURCES) \ + $(testh5repack_detect_szip_SOURCES) +DIST_SOURCES = $(am__libdynlibadd_la_SOURCES_DIST) \ + $(am__libdynlibvers_la_SOURCES_DIST) $(h5repack_SOURCES) \ + $(h5repacktst_SOURCES) $(testh5repack_detect_szip_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5repack.sh.in \ + $(srcdir)/h5repack_plugin.sh.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src, test, and tools/lib directories +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5repack +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5repack +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by h5repack. They should +# copied to the testfiles/ directory if update is required. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.bin \ + testfiles/h5diff_attr1.h5 testfiles/tfamily*.h5 + +# Test programs and scripts +TEST_SCRIPT = h5repack.sh $(am__append_1) +TEST_PROG = h5repacktst +SCRIPT_DEPEND = h5repack$(EXEEXT) +check_SCRIPTS = $(TEST_SCRIPT) + +# Add h5repack specific linker flags here +h5repack_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# Depend on the hdf5 library, the tools library, the test library +LDADD = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) + +# Source files +COMMON_SOURCES = h5repack.c h5repack_copy.c h5repack_filters.c \ + h5repack_opttable.c h5repack_parse.c h5repack_refs.c \ + h5repack_verify.c + +h5repack_SOURCES = $(COMMON_SOURCES) h5repack_main.c +h5repacktst_SOURCES = $(COMMON_SOURCES) h5repacktst.c +testh5repack_detect_szip_SOURCES = testh5repack_detect_szip.c +noinst_LTLIBRARIES = libdynlibadd.la libdynlibvers.la +libdynlibadd_la_SOURCES = dynlib_rpk.c +libdynlibvers_la_SOURCES = dynlib_vrpk.c +libdynlibadd_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +libdynlibvers_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere +DISTCLEANFILES = h5repack.sh h5repack_plugin.sh + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5repack/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5repack/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5repack.sh: $(top_builddir)/config.status $(srcdir)/h5repack.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +h5repack_plugin.sh: $(top_builddir)/config.status $(srcdir)/h5repack_plugin.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +#libdynlibadd.la: $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_DEPENDENCIES) $(EXTRA_libdynlibadd_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibadd_la_LINK) $(am_libdynlibadd_la_rpath) $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_LIBADD) $(LIBS) + +#libdynlibadd.la: $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_DEPENDENCIES) $(EXTRA_libdynlibadd_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibadd_la_LINK) $(am_libdynlibadd_la_rpath) $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_LIBADD) $(LIBS) + +#libdynlibvers.la: $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_DEPENDENCIES) $(EXTRA_libdynlibvers_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibvers_la_LINK) $(am_libdynlibvers_la_rpath) $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_LIBADD) $(LIBS) + +#libdynlibvers.la: $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_DEPENDENCIES) $(EXTRA_libdynlibvers_la_DEPENDENCIES) +# $(AM_V_CCLD)$(libdynlibvers_la_LINK) $(am_libdynlibvers_la_rpath) $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_LIBADD) $(LIBS) +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5repack$(EXEEXT): $(h5repack_OBJECTS) $(h5repack_DEPENDENCIES) $(EXTRA_h5repack_DEPENDENCIES) + @rm -f h5repack$(EXEEXT) + $(AM_V_CCLD)$(h5repack_LINK) $(h5repack_OBJECTS) $(h5repack_LDADD) $(LIBS) + +h5repacktst$(EXEEXT): $(h5repacktst_OBJECTS) $(h5repacktst_DEPENDENCIES) $(EXTRA_h5repacktst_DEPENDENCIES) + @rm -f h5repacktst$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5repacktst_OBJECTS) $(h5repacktst_LDADD) $(LIBS) + +testh5repack_detect_szip$(EXEEXT): $(testh5repack_detect_szip_OBJECTS) $(testh5repack_detect_szip_DEPENDENCIES) $(EXTRA_testh5repack_detect_szip_DEPENDENCIES) + @rm -f testh5repack_detect_szip$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(testh5repack_detect_szip_OBJECTS) $(testh5repack_detect_szip_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/dynlib_rpk.Plo +include ./$(DEPDIR)/dynlib_vrpk.Plo +include ./$(DEPDIR)/h5repack.Po +include ./$(DEPDIR)/h5repack_copy.Po +include ./$(DEPDIR)/h5repack_filters.Po +include ./$(DEPDIR)/h5repack_main.Po +include ./$(DEPDIR)/h5repack_opttable.Po +include ./$(DEPDIR)/h5repack_parse.Po +include ./$(DEPDIR)/h5repack_refs.Po +include ./$(DEPDIR)/h5repack_verify.Po +include ./$(DEPDIR)/h5repacktst.Po +include ./$(DEPDIR)/testh5repack_detect_szip.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5repacktst.log: h5repacktst$(EXEEXT) + @p='h5repacktst$(EXEEXT)'; \ + b='h5repacktst'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +# The h5repack.sh script needs h5repacktst to run first. +h5repack.sh.chkexe_: h5repacktst.chkexe_ + + # Build it as shared library if configure is enabled for shared library. + +libdynlibadd.la: $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_DEPENDENCIES) $(EXTRA_libdynlibadd_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibadd_la_LINK) $(am_libdynlibadd_la_rpath) $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_LIBADD) +libdynlibvers.la: $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_DEPENDENCIES) $(EXTRA_libdynlibvers_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdynlibvers_la_LINK) $(am_libdynlibvers_la_rpath) $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_LIBADD) +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5repack/dynlib_rpk.lo b/build/tools/h5repack/dynlib_rpk.lo new file mode 100644 index 0000000..fc1fdf2 --- /dev/null +++ b/build/tools/h5repack/dynlib_rpk.lo @@ -0,0 +1,12 @@ +# dynlib_rpk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib_rpk.o' + +# Name of the non-PIC object +non_pic_object='dynlib_rpk.o' + diff --git a/build/tools/h5repack/dynlib_rpk.o b/build/tools/h5repack/dynlib_rpk.o new file mode 100644 index 0000000..643c9b2 Binary files /dev/null and b/build/tools/h5repack/dynlib_rpk.o differ diff --git a/build/tools/h5repack/dynlib_vrpk.lo b/build/tools/h5repack/dynlib_vrpk.lo new file mode 100644 index 0000000..b35ed0a --- /dev/null +++ b/build/tools/h5repack/dynlib_vrpk.lo @@ -0,0 +1,12 @@ +# dynlib_vrpk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/dynlib_vrpk.o' + +# Name of the non-PIC object +non_pic_object='dynlib_vrpk.o' + diff --git a/build/tools/h5repack/dynlib_vrpk.o b/build/tools/h5repack/dynlib_vrpk.o new file mode 100644 index 0000000..cbf6d58 Binary files /dev/null and b/build/tools/h5repack/dynlib_vrpk.o differ diff --git a/build/tools/h5repack/h5repack b/build/tools/h5repack/h5repack new file mode 100755 index 0000000..fa6c3f9 --- /dev/null +++ b/build/tools/h5repack/h5repack @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5repack - temporary wrapper script for .libs/h5repack +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5repack program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5repack.o h5repack_copy.o h5repack_filters.o h5repack_opttable.o h5repack_parse.o h5repack_refs.o h5repack_verify.o h5repack_main.o ../../tools/lib/.libs/libh5tools.a ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5repack:h5repack:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5repack:h5repack:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5repack:h5repack:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5repack' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5repack/h5repack.o b/build/tools/h5repack/h5repack.o new file mode 100644 index 0000000..1c6d1b9 Binary files /dev/null and b/build/tools/h5repack/h5repack.o differ diff --git a/build/tools/h5repack/h5repack.sh b/build/tools/h5repack/h5repack.sh new file mode 100644 index 0000000..83e2e13 --- /dev/null +++ b/build/tools/h5repack/h5repack.sh @@ -0,0 +1,1085 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5repack tool +# +# Modification: +# Pedro Vicente Nunes, 11/15/2006 +# Added $FILEN variables for file names +# + +srcdir=../../../tools/h5repack + +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5repack +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5REPACK=h5repack # The tool name +H5REPACK_BIN=`pwd`/$H5REPACK # The path of the tool binary + +H5DIFF=../h5diff/h5diff # The h5diff tool name +H5DIFF_BIN=`pwd`/$H5DIFF # The path of the h5diff tool binary + +H5DUMP=../h5dump/h5dump # The h5dump tool name +H5DUMP_BIN=`pwd`/$H5DUMP # The path of the h5dump tool binary + +RM='rm -rf' +CMP='cmp' +DIFF='diff -c' +GREP='grep' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +H5DETECTSZIP=testh5repack_detect_szip +H5DETECTSZIP_BIN=`pwd`/$H5DETECTSZIP + + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testpack +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5REPACK_TESTFILES/h5repack_attr.h5 +$SRC_H5REPACK_TESTFILES/h5repack_attr_refs.h5 +$SRC_H5REPACK_TESTFILES/h5repack_deflate.h5 +$SRC_H5REPACK_TESTFILES/h5repack_early.h5 +$SRC_H5REPACK_TESTFILES/h5repack_ext.h5 +$SRC_H5REPACK_TESTFILES/h5repack_fill.h5 +$SRC_H5REPACK_TESTFILES/h5repack_filters.h5 +$SRC_H5REPACK_TESTFILES/h5repack_fletcher.h5 +$SRC_H5REPACK_TESTFILES/h5repack_hlink.h5 +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5 +$SRC_H5REPACK_TESTFILES/h5repack_layouto.h5 +$SRC_H5REPACK_TESTFILES/h5repack_layout2.h5 +$SRC_H5REPACK_TESTFILES/h5repack_layout3.h5 +$SRC_H5REPACK_TESTFILES/h5repack_named_dtypes.h5 +$SRC_H5REPACK_TESTFILES/h5repack_nested_8bit_enum.h5 +$SRC_H5REPACK_TESTFILES/h5repack_nested_8bit_enum_deflated.h5 +$SRC_H5REPACK_TESTFILES/h5repack_nbit.h5 +$SRC_H5REPACK_TESTFILES/h5repack_objs.h5 +$SRC_H5REPACK_TESTFILES/h5repack_refs.h5 +$SRC_H5REPACK_TESTFILES/h5repack_shuffle.h5 +$SRC_H5REPACK_TESTFILES/h5repack_soffset.h5 +$SRC_H5REPACK_TESTFILES/h5repack_szip.h5 +$SRC_H5DIFF_TESTFILES/h5diff_attr1.h5 +$SRC_TOOLS_TESTFILES/tfamily00000.h5 +$SRC_TOOLS_TESTFILES/tfamily00001.h5 +$SRC_TOOLS_TESTFILES/tfamily00002.h5 +$SRC_TOOLS_TESTFILES/tfamily00003.h5 +$SRC_TOOLS_TESTFILES/tfamily00004.h5 +$SRC_TOOLS_TESTFILES/tfamily00005.h5 +$SRC_TOOLS_TESTFILES/tfamily00006.h5 +$SRC_TOOLS_TESTFILES/tfamily00007.h5 +$SRC_TOOLS_TESTFILES/tfamily00008.h5 +$SRC_TOOLS_TESTFILES/tfamily00009.h5 +$SRC_TOOLS_TESTFILES/tfamily00010.h5 +$SRC_TOOLS_TESTFILES/tordergr.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5REPACK_TESTFILES/h5repack-help.txt +$SRC_H5REPACK_TESTFILES/h5repack_ext.bin +$SRC_H5REPACK_TESTFILES/ublock.bin +$SRC_H5REPACK_TESTFILES/h5repack.info +$SRC_H5REPACK_TESTFILES/crtorder.tordergr.h5.ddl +$SRC_H5REPACK_TESTFILES/deflate_limit.h5repack_layout.h5.ddl +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5.ddl +$SRC_H5REPACK_TESTFILES/h5repack_filters.h5-gzip_verbose_filters.tst +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5-plugin_test.ddl +$SRC_H5REPACK_TESTFILES/plugin_test.h5repack_layout.h5.tst +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5REPACK_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a $* message left justified in a field of 70 characters +# +MESSAGE() { + SPACES=" " + echo "$* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + MESSAGE "Testing $*" +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY() { + MESSAGE "Verifying $*" +} + +# Print a message that a test has been skipped (because a required filter +# was unavailable) +SKIP() { + TESTING $H5REPACK $@ + echo " -SKIP-" +} + +# Call the h5diff tool +# +DIFFTEST() +{ + VERIFY h5diff output $@ + ( + cd $TESTDIR + $RUNSERIAL $H5DIFF_BIN -q "$@" + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + +} + +# Call h5repack +# + + +# call TOOLTEST_MAIN and delete $output file +TOOLTEST() +{ + echo $@ + infile=$2 + outfile=out-$1.$2 + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + rm -f $outfile +} + +#------------------------------------------ +# Verifying layouts of a dataset +VERIFY_LAYOUT_DSET() +{ + layoutfile=layout-$1.$2 + dset=$3 + expectlayout=$4 + infile=$2 + outfile=out-$1.$2 + shift + shift + shift + shift + + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + + #--------------------------------- + # check the layout from a dataset + VERIFY "a dataset layout" + ( + cd $TESTDIR + $RUNSERIAL $H5DUMP_BIN -d $dset -pH $outfile > $layoutfile + ) + $GREP $expectlayout $TESTDIR/$layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " PASSED" + else + echo " FAILED" + nerrors="`expr $nerrors + 1`" + fi + + # clean up tmp files + rm -f $outfile + rm -f $layoutfile +} + +#---------------------------------------- +# Verifying layouts from entire file +VERIFY_LAYOUT_ALL() +{ + infile=$2 + outfile=out-$1.$2 + layoutfile=layout-$1.$2 + expectlayout=$3 + shift + shift + shift + + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + + + #--------------------------------- + # check the layout from a dataset + # check if the other layouts still exsit + VERIFY "layouts" + ( + cd $TESTDIR + echo + # if CONTIGUOUS + if [ $expectlayout = "CONTIGUOUS" ]; then + TESTING $H5DUMP_BIN -pH $outfile + ( + $RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile + ) + $GREP "COMPACT" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + $GREP "CHUNKED" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + fi + else + # if COMPACT + if [ $expectlayout = "COMPACT" ]; then + TESTING $H5DUMP_BIN -pH $outfile + ( + $RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile + ) + $GREP "CHUNKED" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + $GREP "CONTIGUOUS" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + fi + else + # if CHUNKED + if [ $expectlayout = "CHUNKED" ]; then + TESTING $H5DUMP_BIN -pH $outfile + ( + $RUNSERIAL $H5DUMP_BIN -pH $outfile > $layoutfile + ) + $GREP "CONTIGUOUS" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + $GREP "COMPACT" $layoutfile > /dev/null + if [ $? -eq 0 ]; then + echo " FAILED" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + fi + fi + fi + fi + fi + ) + + # clean up tmp files + rm -f $outfile + rm -f $layoutfile +} + +# same as TOOLTEST, but it uses the old syntax -i input_file -o output_file +# +TOOLTEST0() +{ + infile=$2 + outfile=out-$1.$2 + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN -i $infile -o $outfile "$@" + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + rm -f $outfile +} + + +# same as TOOLTEST, but it uses without -i -o options +# used to test the family driver, where these files reside +# +TOOLTEST1() +{ + infile=$2 + outfile=out-$1.$2 + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + rm -f $outfile +} + +# This is same as TOOLTEST() with comparing display output +# from -v option +# +TOOLTESTV() +{ + expect="$TESTDIR/$2-$1.tst" + actual="$TESTDIR/`basename $2 .ddl`.out" + actual_err="$TESTDIR/`basename $2 .ddl`.err" + + infile=$2 + outfile=out-$1.$2 + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) >$actual 2>$actual_err + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + + # display output compare + STDOUT_FILTER $actual + cat $actual_err >> $actual + + VERIFY output from $H5REPACK $@ + if cmp -s $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.tst) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && diff -c $expect $actual |sed 's/^/ /' + fi + + rm -f $actual $actual_err + rm -f $outfile +} + +# This is same as TOOLTESTV() with comparing h5dump output +# from -pH option +# +TOOLTEST_DUMP() +{ + infile=$2 + outfile=out-$1.$2 + expect="$TESTDIR/$1.$2.ddl" + actual="$TESTDIR/out-$1.$2.out" + actual_err="$TESTDIR/out-$1.$2.err" + + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) >$actual 2>$actual_err + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + VERIFY h5dump output $@ + ( + cd $TESTDIR + $RUNSERIAL $H5DUMP_BIN -q creation_order -pH $outfile + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + RET=$? + + fi + + if cmp -s $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && diff -c $expect $actual |sed 's/^/ /' + fi + + rm -f $actual $actual_err + rm -f $outfile +} + +# TOOLTEST_META: +# Test metadata block size option. +# Reason to create a function here is to localize all special steps related to +# metadata block size option in one place. This is a quick solution. More +# thought out solution needed when there is more time. +# +# $1: test input file +# $2:$: metadata options (either "-M size" or "--metadata_block_size=size") +# +# Algorithm: +# Run it once without the metadata option ($2-$); +# Save the result output file; +# Run it second time with the metadata option; +# Verify the output file of second run is larger than the one of 1st run. +TOOLTEST_META() +{ + infile=$2 + outfile=out-$1.$2 + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + # get the size of the first output file + size1=`wc -c $TESTDIR/$outfile | cut -d' ' -f1` + + # 2nd run with metadata option + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile + ) + RET=$? + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + DIFFTEST $infile $outfile + fi + # get the size of the second output file + size2=`wc -c $TESTDIR/$outfile | cut -d' ' -f1` + + # verify sizes. + MESSAGE "Verify the sizes of both output files ($size1 vs $size2)" + if [ $size1 -lt $size2 ]; then + # pass + echo " PASSED" + else + #fail + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + fi + + rm -f $outfile +} + +# ADD_HELP_TEST +TOOLTEST_HELP() { + + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .txt`.out" + actual_err="$TESTDIR/`basename $1 .txt`.err" + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $RUNSERIAL $H5REPACK_BIN "$@" + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect data file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect-CREATED + echo " Expected result (*.txt) missing" + nerrors="`expr $nerrors + 1`" + elif cmp -s $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected output (*.txt) differs from actual output (*.out)" + nerrors="`expr $nerrors + 1`" + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err + fi + +} + +# This is different from $srcdir/../../bin/output_filter.sh +STDOUT_FILTER() { + result_file=$1 + tmp_file=/tmp/h5test_tmp_$$ + # Filter name of files. + cp $result_file $tmp_file + sed -e '/^Opening file/d' -e '/^Making file/d' \ + < $tmp_file > $result_file + # cleanup + rm -f $tmp_file +} + +# +# The tests +# We use the files generated by h5repacktst +# Each run generates ".out.h5" and the tool h5diff is used to +# compare the input and output files +# +# the tests are the same as the program h5repacktst, but run from the CLI +# + +# See which filters are usable (and skip tests for filters we +# don't have). Do this by searching H5pubconf.h to see which +# filters are defined. + +# detect whether the encoder is present. +USE_FILTER_SZIP_ENCODER="no"; +if test $USE_FILTER_SZIP = "yes"; then +USE_FILTER_SZIP_ENCODER=`$RUNSERIAL $H5DETECTSZIP_BIN` +fi + +############################################################################## +### T H E T E S T S +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +TOOLTEST_HELP h5repack-help.txt -h + +# copy files (these files have no filters) +TOOLTEST fill h5repack_fill.h5 +TOOLTEST objs h5repack_objs.h5 +TOOLTEST attr h5repack_attr.h5 +TOOLTEST hlink h5repack_hlink.h5 +TOOLTEST layout h5repack_layout.h5 +TOOLTEST early h5repack_early.h5 + +# nested 8bit enum in both deflated and non-deflated datafiles +if [ $USE_FILTER_DEFLATE != "yes" ]; then +TOOLTEST nested_8bit_enum h5repack_nested_8bit_enum.h5 +else +TOOLTEST nested_8bit_enum h5repack_nested_8bit_enum_deflated.h5 +fi + +# use h5repack_layout.h5 to write some filters (this file has no filters) + +# gzip with individual object +arg="h5repack_layout.h5 -f dset1:GZIP=1 -l dset1:CHUNK=20x10" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST gzip_individual $arg +fi + +# gzip for all +arg="h5repack_layout.h5 -f GZIP=1" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST gzip_all $arg +fi + +# szip with individual object +arg="h5repack_layout.h5 -f dset2:SZIP=8,EC -l dset2:CHUNK=20x10" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then + SKIP $arg +else + TOOLTEST szip_individual $arg +fi + +# szip for all +arg="h5repack_layout.h5 -f SZIP=8,NN" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then + SKIP $arg +else + TOOLTEST szip_all $arg +fi + +# shuffle with individual object +arg="h5repack_layout.h5 -f dset2:SHUF -l dset2:CHUNK=20x10" +TOOLTEST shuffle_individual $arg + + +# shuffle for all +arg="h5repack_layout.h5 -f SHUF" +TOOLTEST shuffle_all $arg + +# fletcher32 with individual object +arg="h5repack_layout.h5 -f dset2:FLET -l dset2:CHUNK=20x10" +TOOLTEST fletcher_individual $arg + +# fletcher32 for all +arg="h5repack_layout.h5 -f FLET" +TOOLTEST fletcher_all $arg + +# all filters +arg="h5repack_layout.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8,NN -f dset2:GZIP=1 -l dset2:CHUNK=20x10" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST all_filters $arg +fi + +# verbose gzip with individual object +arg="h5repack_filters.h5 -v -f /dset_deflate:GZIP=9" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + # compare output + TOOLTESTV gzip_verbose_filters $arg +fi + +########################################################### +# the following tests assume the input files have filters +########################################################### + +# szip copy +arg="h5repack_szip.h5" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then + SKIP $arg +else + TOOLTEST szip_copy $arg +fi + +# szip remove +arg="h5repack_szip.h5 --filter=dset_szip:NONE" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" ; then + SKIP $arg +else + TOOLTEST szip_remove $arg +fi + +# deflate copy +arg="h5repack_deflate.h5" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST deflate_copy $arg +fi + +# deflate remove +arg="h5repack_deflate.h5 -f dset_deflate:NONE" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST deflate_remove $arg +fi + +# shuffle copy +arg="h5repack_shuffle.h5" +TOOLTEST shuffle_copy $arg + +# shuffle remove +arg="h5repack_shuffle.h5 -f dset_shuffle:NONE" +TOOLTEST shuffle_remove $arg + +# fletcher32 copy +arg="h5repack_fletcher.h5" +TOOLTEST fletcher_copy $arg + +# fletcher32 remove +arg="h5repack_fletcher.h5 -f dset_fletcher32:NONE" +TOOLTEST fletcher_remove $arg + +# nbit copy +arg="h5repack_nbit.h5" +TOOLTEST nbit_copy $arg + +# nbit remove +arg="h5repack_nbit.h5 -f dset_nbit:NONE" +TOOLTEST nbit_remove $arg + +# nbit add +arg="h5repack_nbit.h5 -f dset_int31:NBIT" +TOOLTEST nbit_add $arg + +# scaleoffset copy +arg="h5repack_soffset.h5" +TOOLTEST scale_copy $arg + +# scaleoffset add +arg="h5repack_soffset.h5 -f dset_none:SOFF=31,IN" +TOOLTEST scale_add $arg + +# scaleoffset remove +arg="h5repack_soffset.h5 -f dset_scaleoffset:NONE" +TOOLTEST scale_remove $arg + +# remove all filters +arg="h5repack_filters.h5 -f NONE" +if test $USE_FILTER_DEFLATE != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_SZIP_ENCODER != "yes" ; then + SKIP $arg +else + TOOLTEST remove_all $arg +fi + +#filter conversions + +arg="h5repack_deflate.h5 -f dset_deflate:SZIP=8,NN" +if test $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST deflate_convert $arg +fi + +arg="h5repack_szip.h5 -f dset_szip:GZIP=1" +if test $USE_FILTER_SZIP != "yes" -o $USE_FILTER_SZIP_ENCODER != "yes" -o $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST szip_convert $arg +fi + + +#limit +arg="h5repack_layout.h5 -f GZIP=1 -m 1024" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST_DUMP deflate_limit $arg +fi + +#file +arg="h5repack_layout.h5 -e h5repack.info" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST deflate_file $arg +fi + +#crtorder +arg="tordergr.h5 -L" +TOOLTEST_DUMP crtorder $arg + +######################################################### +# layout options (these files have no filters) +######################################################### +VERIFY_LAYOUT_DSET dset2_chunk_20x10 h5repack_layout.h5 dset2 CHUNKED --layout dset2:CHUNK=20x10 + +VERIFY_LAYOUT_ALL chunk_20x10 h5repack_layout.h5 CHUNKED -l CHUNK=20x10 + +VERIFY_LAYOUT_DSET dset2_conti h5repack_layout.h5 dset2 CONTIGUOUS -l dset2:CONTI + +VERIFY_LAYOUT_ALL conti h5repack_layout.h5 CONTIGUOUS -l CONTI + +VERIFY_LAYOUT_DSET dset2_compa h5repack_layout.h5 dset2 COMPACT -l dset2:COMPA + +VERIFY_LAYOUT_ALL compa h5repack_layout.h5 COMPACT -l COMPA + +################################################################ +# layout conversions (file has no filters) +############################################################### + +VERIFY_LAYOUT_DSET dset_compa_conti h5repack_layout.h5 dset_compact CONTIGUOUS -l dset_compact:CONTI + +VERIFY_LAYOUT_DSET dset_compa_chunk h5repack_layout.h5 dset_compact CHUNKED -l dset_compact:CHUNK=2x5 + +VERIFY_LAYOUT_DSET dset_compa_compa h5repack_layout.h5 dset_compact COMPACT -l dset_compact:COMPA + +VERIFY_LAYOUT_DSET dset_conti_compa h5repack_layout.h5 dset_contiguous COMPACT -l dset_contiguous:COMPA + +VERIFY_LAYOUT_DSET dset_conti_chunk h5repack_layout.h5 dset_contiguous CHUNKED -l dset_contiguous:CHUNK=3x6 + +VERIFY_LAYOUT_DSET dset_conti_conti h5repack_layout.h5 dset_contiguous CONTIGUOUS -l dset_contiguous:CONTI + +VERIFY_LAYOUT_DSET chunk_compa h5repack_layout.h5 dset_chunk COMPACT -l dset_chunk:COMPA + +VERIFY_LAYOUT_DSET chunk_conti h5repack_layout.h5 dset_chunk CONTIGUOUS -l dset_chunk:CONTI + +VERIFY_LAYOUT_DSET chunk_18x13 h5repack_layout.h5 dset_chunk CHUNKED -l dset_chunk:CHUNK=18x13 + +# test convert small size dataset ( < 1k) to compact layout without -m +VERIFY_LAYOUT_DSET contig_small_compa h5repack_layout2.h5 contig_small COMPACT -l contig_small:COMPA + +VERIFY_LAYOUT_DSET contig_small_fixed_compa h5repack_layout2.h5 chunked_small_fixed COMPACT -l chunked_small_fixed:COMPA + +#--------------------------------------------------------------------------- +# Test file contains chunked datasets (need multiple dsets) with +# unlimited max dims. (HDFFV-7933) +# Use first dset to test. +#--------------------------------------------------------------------------- +# chunk to chunk - specify chunk dim bigger than any current dim +VERIFY_LAYOUT_DSET chunk2chunk h5repack_layout3.h5 chunk_unlimit1 CHUNK -l chunk_unlimit1:CHUNK=100x300 + +# chunk to contiguous +VERIFY_LAYOUT_DSET chunk2conti h5repack_layout3.h5 chunk_unlimit1 CONTI -l chunk_unlimit1:CONTI + +# chunk to compact - convert big dataset (should be > 64k) for this purpose, +# should remain as original layout (chunk) +VERIFY_LAYOUT_DSET chunk2compa h5repack_layout3.h5 chunk_unlimit1 CHUNK -l chunk_unlimit1:COMPA + +#-------------------------------------------------------------------------- +# Test -f for some specific cases. Chunked dataset with unlimited max dims. +# (HDFFV-8012) +#-------------------------------------------------------------------------- +# - should not fail +# - should not change max dims from unlimit + +# chunk dim is bigger than dataset dim. ( dset size < 64k ) +VERIFY_LAYOUT_DSET error1 h5repack_layout3.h5 chunk_unlimit1 H5S_UNLIMITED -f chunk_unlimit1:NONE +# chunk dim is bigger than dataset dim. ( dset size > 64k ) +VERIFY_LAYOUT_DSET error2 h5repack_layout3.h5 chunk_unlimit2 H5S_UNLIMITED -f chunk_unlimit2:NONE + +# chunk dims are smaller than dataset dims. ( dset size < 64k ) +#TOOLTEST_MAIN h5repack_layout3.h5 -f chunk_unlimit3:NONE +VERIFY_LAYOUT_DSET error3 h5repack_layout3.h5 chunk_unlimit3 H5S_UNLIMITED -f chunk_unlimit3:NONE + +# file input - should not fail +TOOLTEST error4 h5repack_layout3.h5 -f NONE + +#-------------------------------------------------------------------------- +# Test base: Convert CHUNK to CONTI for a chunked dataset with small dataset +# (dset size < 64K) and with unlimited max dims on a condition as follow. +# (HDFFV-8214) +#-------------------------------------------------------------------------- + +# chunk dim is bigger than dataset dim. should succeed. +VERIFY_LAYOUT_DSET ckdim_biger h5repack_layout3.h5 chunk_unlimit2 CONTI -l chunk_unlimit2:CONTI +# chunk dim is smaller than dataset dim. should succeed. +VERIFY_LAYOUT_DSET ckdim_smaller h5repack_layout3.h5 chunk_unlimit3 CONTI -l chunk_unlimit3:CONTI + + +# Native option +# Do not use FILE1, as the named dtype will be converted to native, and h5diff will +# report a difference. +TOOLTEST native_fill h5repack_fill.h5 -n +TOOLTEST native_attr h5repack_attr.h5 -n + + +# latest file format with long switches. use FILE4=h5repack_layout.h5 (no filters) +arg="h5repack_layout.h5 --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --native --latest --compact=8 --indexed=6 --ssize=8[:dtype]" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + VERIFY_LAYOUT_ALL layout_long_switches h5repack_layout.h5 CHUNKED --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --native --latest --compact=8 --indexed=6 --ssize=8[:dtype] +fi + +# latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters) +arg="h5repack_layout.h5 -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + VERIFY_LAYOUT_ALL layout_short_switches h5repack_layout.h5 CHUNKED -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype] +fi + +# several global filters + +arg="h5repack_layout.h5 --filter GZIP=1 --filter SHUF" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST global_filters $arg +fi + +# syntax of -i infile -o outfile +# latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters) +arg="h5repack_layout.h5 -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]" +if test $USE_FILTER_DEFLATE != "yes" ; then + SKIP $arg +else + TOOLTEST0 old_style_layout_short_switches $arg +fi + +# add a userblock to file +arg="h5repack_objs.h5 -u ublock.bin -b 2048" +TOOLTEST add_userblock $arg + +# add alignment +arg="h5repack_objs.h5 -t 1 -a 1 " +TOOLTEST add_alignment $arg + +# Check repacking file with old version of layout message (should get upgraded +# to new version and be readable, etc.) +TOOLTEST upgrade_layout h5repack_layouto.h5 + +# test for datum size > H5TOOLS_MALLOCSIZE +TOOLTEST gt_mallocsize h5repack_objs.h5 -f GZIP=1 + +# Check repacking file with committed datatypes in odd configurations +TOOLTEST committed_dt h5repack_named_dtypes.h5 + +# tests family driver (file is located in common testfiles folder, uses TOOLTEST1 +TOOLTEST1 family tfamily%05d.h5 + +# test various references (bug 1814 and 1726) +TOOLTEST bug1814 h5repack_refs.h5 + +# test attribute with various references (bug1797 / HDFFV-5932) +# the references in attribute of compund or vlen datatype +TOOLTEST HDFFV-5932 h5repack_attr_refs.h5 + +# Add test for memory leak in attirbute. This test is verified by CTEST. +# 1. leak from vlen string +# 2. leak from compound type without reference member +# (HDFFV-7840, ) +# Note: this test is experimental for sharing test file among tools +TOOLTEST HDFFV-7840 h5diff_attr1.h5 + +# tests for metadata block size option +TOOLTEST_META meta_short h5repack_layout.h5 -M 8192 +TOOLTEST_META meta_long h5repack_layout.h5 --metadata_block_size=8192 + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi + diff --git a/build/tools/h5repack/h5repack.sh.chkexe b/build/tools/h5repack/h5repack.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5repack/h5repack.sh.chklog b/build/tools/h5repack/h5repack.sh.chklog new file mode 100644 index 0000000..bf14771 --- /dev/null +++ b/build/tools/h5repack/h5repack.sh.chklog @@ -0,0 +1,239 @@ +============================ +h5repack.sh Test Log +============================ +Testing h5repack -h PASSED +fill h5repack_fill.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_fill.h5 out-fill.h5repack_fill.h5 PASSED +objs h5repack_objs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_objs.h5 out-objs.h5repack_objs.h5 PASSED +attr h5repack_attr.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_attr.h5 out-attr.h5repack_attr.h5 PASSED +hlink h5repack_hlink.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_hlink.h5 out-hlink.h5repack_hlink.h5 PASSED +layout h5repack_layout.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_layout.h5 out-layout.h5repack_layout. PASSED +early h5repack_early.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_early.h5 out-early.h5repack_early.h5 PASSED +nested_8bit_enum h5repack_nested_8bit_enum_deflated.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_nested_8bit_enum_deflated.h5 out-nest PASSED +gzip_individual h5repack_layout.h5 -f dset1:GZIP=1 -l dset1:CHUNK=20x10 +Testing h5repack -f dset1:GZIP=1 -l dset1:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-gzip_individual.h5repac PASSED +gzip_all h5repack_layout.h5 -f GZIP=1 +Testing h5repack -f GZIP=1 PASSED +Verifying h5diff output h5repack_layout.h5 out-gzip_all.h5repack_layou PASSED +Testing h5repack h5repack_layout.h5 -f dset2:SZIP=8,EC -l dset2:CHUNK= -SKIP- +Testing h5repack h5repack_layout.h5 -f SZIP=8,NN -SKIP- +shuffle_individual h5repack_layout.h5 -f dset2:SHUF -l dset2:CHUNK=20x10 +Testing h5repack -f dset2:SHUF -l dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-shuffle_individual.h5re PASSED +shuffle_all h5repack_layout.h5 -f SHUF +Testing h5repack -f SHUF PASSED +Verifying h5diff output h5repack_layout.h5 out-shuffle_all.h5repack_la PASSED +fletcher_individual h5repack_layout.h5 -f dset2:FLET -l dset2:CHUNK=20x10 +Testing h5repack -f dset2:FLET -l dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-fletcher_individual.h5r PASSED +fletcher_all h5repack_layout.h5 -f FLET +Testing h5repack -f FLET PASSED +Verifying h5diff output h5repack_layout.h5 out-fletcher_all.h5repack_l PASSED +Testing h5repack h5repack_layout.h5 -f dset2:SHUF -f dset2:FLET -f dse -SKIP- +Testing h5repack -v -f /dset_deflate:GZIP=9 PASSED +Verifying h5diff output h5repack_filters.h5 out-gzip_verbose_filters.h PASSED +Verifying output from h5repack -v -f /dset_deflate:GZIP=9 PASSED +Testing h5repack h5repack_szip.h5 -SKIP- +Testing h5repack h5repack_szip.h5 --filter=dset_szip:NONE -SKIP- +deflate_copy h5repack_deflate.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_deflate.h5 out-deflate_copy.h5repack_ PASSED +deflate_remove h5repack_deflate.h5 -f dset_deflate:NONE +Testing h5repack -f dset_deflate:NONE PASSED +Verifying h5diff output h5repack_deflate.h5 out-deflate_remove.h5repac PASSED +shuffle_copy h5repack_shuffle.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_shuffle.h5 out-shuffle_copy.h5repack_ PASSED +shuffle_remove h5repack_shuffle.h5 -f dset_shuffle:NONE +Testing h5repack -f dset_shuffle:NONE PASSED +Verifying h5diff output h5repack_shuffle.h5 out-shuffle_remove.h5repac PASSED +fletcher_copy h5repack_fletcher.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_fletcher.h5 out-fletcher_copy.h5repac PASSED +fletcher_remove h5repack_fletcher.h5 -f dset_fletcher32:NONE +Testing h5repack -f dset_fletcher32:NONE PASSED +Verifying h5diff output h5repack_fletcher.h5 out-fletcher_remove.h5rep PASSED +nbit_copy h5repack_nbit.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_copy.h5repack_nbit.h PASSED +nbit_remove h5repack_nbit.h5 -f dset_nbit:NONE +Testing h5repack -f dset_nbit:NONE PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_remove.h5repack_nbit PASSED +nbit_add h5repack_nbit.h5 -f dset_int31:NBIT +Testing h5repack -f dset_int31:NBIT PASSED +Verifying h5diff output h5repack_nbit.h5 out-nbit_add.h5repack_nbit.h5 PASSED +scale_copy h5repack_soffset.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_copy.h5repack_so PASSED +scale_add h5repack_soffset.h5 -f dset_none:SOFF=31,IN +Testing h5repack -f dset_none:SOFF=31,IN PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_add.h5repack_sof PASSED +scale_remove h5repack_soffset.h5 -f dset_scaleoffset:NONE +Testing h5repack -f dset_scaleoffset:NONE PASSED +Verifying h5diff output h5repack_soffset.h5 out-scale_remove.h5repack_ PASSED +Testing h5repack h5repack_filters.h5 -f NONE -SKIP- +Testing h5repack h5repack_deflate.h5 -f dset_deflate:SZIP=8,NN -SKIP- +Testing h5repack h5repack_szip.h5 -f dset_szip:GZIP=1 -SKIP- +Testing h5repack -f GZIP=1 -m 1024 PASSED +Verifying h5dump output -f GZIP=1 -m 1024 PASSED +deflate_file h5repack_layout.h5 -e h5repack.info +Testing h5repack -e h5repack.info PASSED +Verifying h5diff output h5repack_layout.h5 out-deflate_file.h5repack_l PASSED +Testing h5repack -L PASSED +Verifying h5dump output -L PASSED +Testing h5repack --layout dset2:CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_chunk_20x10.h5rep PASSED +Verifying a dataset layout PASSED +Testing h5repack -l CHUNK=20x10 PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_20x10.h5repack_la PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset2:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_conti.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-conti.h5repack_layout.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset2:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset2_compa.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-compa.h5repack_layout.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l dset_compact:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_conti.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_compact:CHUNK=2x5 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_chunk.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_compact:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_compa_compa.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_compa.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:CHUNK=3x6 PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_chunk.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_contiguous:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-dset_conti_conti.h5repa PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:COMPA PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_compa.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:CONTI PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_conti.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l dset_chunk:CHUNK=18x13 PASSED +Verifying h5diff output h5repack_layout.h5 out-chunk_18x13.h5repack_la PASSED +Verifying a dataset layout PASSED +Testing h5repack -l contig_small:COMPA PASSED +Verifying h5diff output h5repack_layout2.h5 out-contig_small_compa.h5r PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunked_small_fixed:COMPA PASSED +Verifying h5diff output h5repack_layout2.h5 out-contig_small_fixed_com PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:CHUNK=100x300 PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2chunk.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2conti.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit1:COMPA PASSED +Verifying h5diff output h5repack_layout3.h5 out-chunk2compa.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit1:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error1.h5repack_layout PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit2:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error2.h5repack_layout PASSED +Verifying a dataset layout PASSED +Testing h5repack -f chunk_unlimit3:NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error3.h5repack_layout PASSED +Verifying a dataset layout PASSED +error4 h5repack_layout3.h5 -f NONE +Testing h5repack -f NONE PASSED +Verifying h5diff output h5repack_layout3.h5 out-error4.h5repack_layout PASSED +Testing h5repack -l chunk_unlimit2:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-ckdim_biger.h5repack_l PASSED +Verifying a dataset layout PASSED +Testing h5repack -l chunk_unlimit3:CONTI PASSED +Verifying h5diff output h5repack_layout3.h5 out-ckdim_smaller.h5repack PASSED +Verifying a dataset layout PASSED +native_fill h5repack_fill.h5 -n +Testing h5repack -n PASSED +Verifying h5diff output h5repack_fill.h5 out-native_fill.h5repack_fill PASSED +native_attr h5repack_attr.h5 -n +Testing h5repack -n PASSED +Verifying h5diff output h5repack_attr.h5 out-native_attr.h5repack_attr PASSED +Testing h5repack --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --n PASSED +Verifying h5diff output h5repack_layout.h5 out-layout_long_switches.h5 PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED +Verifying h5diff output h5repack_layout.h5 out-layout_short_switches.h PASSED +Verifying layouts +Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED +global_filters h5repack_layout.h5 --filter GZIP=1 --filter SHUF +Testing h5repack --filter GZIP=1 --filter SHUF PASSED +Verifying h5diff output h5repack_layout.h5 out-global_filters.h5repack PASSED +Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED +Verifying h5diff output h5repack_layout.h5 out-old_style_layout_short_ PASSED +add_userblock h5repack_objs.h5 -u ublock.bin -b 2048 +Testing h5repack -u ublock.bin -b 2048 PASSED +Verifying h5diff output h5repack_objs.h5 out-add_userblock.h5repack_ob PASSED +add_alignment h5repack_objs.h5 -t 1 -a 1 +Testing h5repack -t 1 -a 1 PASSED +Verifying h5diff output h5repack_objs.h5 out-add_alignment.h5repack_ob PASSED +upgrade_layout h5repack_layouto.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_layouto.h5 out-upgrade_layout.h5repac PASSED +gt_mallocsize h5repack_objs.h5 -f GZIP=1 +Testing h5repack -f GZIP=1 PASSED +Verifying h5diff output h5repack_objs.h5 out-gt_mallocsize.h5repack_ob PASSED +committed_dt h5repack_named_dtypes.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_named_dtypes.h5 out-committed_dt.h5re PASSED +Testing h5repack PASSED +Verifying h5diff output tfamily%05d.h5 out-family.tfamily%05d.h5 PASSED +bug1814 h5repack_refs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_refs.h5 out-bug1814.h5repack_refs.h5 PASSED +HDFFV-5932 h5repack_attr_refs.h5 +Testing h5repack PASSED +Verifying h5diff output h5repack_attr_refs.h5 out-HDFFV-5932.h5repack_ PASSED +HDFFV-7840 h5diff_attr1.h5 +Testing h5repack PASSED +Verifying h5diff output h5diff_attr1.h5 out-HDFFV-7840.h5diff_attr1.h5 PASSED +Testing h5repack -M 8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED +Testing h5repack -M 8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED +Verify the sizes of both output files (27280 vs 27488) PASSED +Testing h5repack --metadata_block_size=8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED +Testing h5repack --metadata_block_size=8192 PASSED +Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED +Verify the sizes of both output files (27280 vs 27488) PASSED +All h5repack tests passed. +3.64user 4.64system 0:07.26elapsed 114%CPU (0avgtext+0avgdata 11664maxresident)k +0inputs+18840outputs (0major+1441505minor)pagefaults 0swaps + +Finished testing h5repack.sh +============================ diff --git a/build/tools/h5repack/h5repack_attr.h5 b/build/tools/h5repack/h5repack_attr.h5 new file mode 100644 index 0000000..df79364 Binary files /dev/null and b/build/tools/h5repack/h5repack_attr.h5 differ diff --git a/build/tools/h5repack/h5repack_attr_out.h5 b/build/tools/h5repack/h5repack_attr_out.h5 new file mode 100644 index 0000000..62e0abf Binary files /dev/null and b/build/tools/h5repack/h5repack_attr_out.h5 differ diff --git a/build/tools/h5repack/h5repack_attr_refs.h5 b/build/tools/h5repack/h5repack_attr_refs.h5 new file mode 100644 index 0000000..4ae126f Binary files /dev/null and b/build/tools/h5repack/h5repack_attr_refs.h5 differ diff --git a/build/tools/h5repack/h5repack_big.h5 b/build/tools/h5repack/h5repack_big.h5 new file mode 100644 index 0000000..9f9765d Binary files /dev/null and b/build/tools/h5repack/h5repack_big.h5 differ diff --git a/build/tools/h5repack/h5repack_copy.o b/build/tools/h5repack/h5repack_copy.o new file mode 100644 index 0000000..8e64b77 Binary files /dev/null and b/build/tools/h5repack/h5repack_copy.o differ diff --git a/build/tools/h5repack/h5repack_deflate.h5 b/build/tools/h5repack/h5repack_deflate.h5 new file mode 100644 index 0000000..256f875 Binary files /dev/null and b/build/tools/h5repack/h5repack_deflate.h5 differ diff --git a/build/tools/h5repack/h5repack_deflate_out.h5 b/build/tools/h5repack/h5repack_deflate_out.h5 new file mode 100644 index 0000000..671145e Binary files /dev/null and b/build/tools/h5repack/h5repack_deflate_out.h5 differ diff --git a/build/tools/h5repack/h5repack_early.h5 b/build/tools/h5repack/h5repack_early.h5 new file mode 100644 index 0000000..d9a7ece Binary files /dev/null and b/build/tools/h5repack/h5repack_early.h5 differ diff --git a/build/tools/h5repack/h5repack_early2.h5 b/build/tools/h5repack/h5repack_early2.h5 new file mode 100644 index 0000000..1a27283 Binary files /dev/null and b/build/tools/h5repack/h5repack_early2.h5 differ diff --git a/build/tools/h5repack/h5repack_early_out.h5 b/build/tools/h5repack/h5repack_early_out.h5 new file mode 100644 index 0000000..7d7d3a2 Binary files /dev/null and b/build/tools/h5repack/h5repack_early_out.h5 differ diff --git a/build/tools/h5repack/h5repack_ext.bin b/build/tools/h5repack/h5repack_ext.bin new file mode 100644 index 0000000..f858094 Binary files /dev/null and b/build/tools/h5repack/h5repack_ext.bin differ diff --git a/build/tools/h5repack/h5repack_ext.h5 b/build/tools/h5repack/h5repack_ext.h5 new file mode 100644 index 0000000..51cc989 Binary files /dev/null and b/build/tools/h5repack/h5repack_ext.h5 differ diff --git a/build/tools/h5repack/h5repack_ext_out.h5 b/build/tools/h5repack/h5repack_ext_out.h5 new file mode 100644 index 0000000..41fbb51 Binary files /dev/null and b/build/tools/h5repack/h5repack_ext_out.h5 differ diff --git a/build/tools/h5repack/h5repack_fill.h5 b/build/tools/h5repack/h5repack_fill.h5 new file mode 100644 index 0000000..fcc07b6 Binary files /dev/null and b/build/tools/h5repack/h5repack_fill.h5 differ diff --git a/build/tools/h5repack/h5repack_fill_out.h5 b/build/tools/h5repack/h5repack_fill_out.h5 new file mode 100644 index 0000000..3c92a04 Binary files /dev/null and b/build/tools/h5repack/h5repack_fill_out.h5 differ diff --git a/build/tools/h5repack/h5repack_filters.h5 b/build/tools/h5repack/h5repack_filters.h5 new file mode 100644 index 0000000..1a798c8 Binary files /dev/null and b/build/tools/h5repack/h5repack_filters.h5 differ diff --git a/build/tools/h5repack/h5repack_filters.o b/build/tools/h5repack/h5repack_filters.o new file mode 100644 index 0000000..dafca7b Binary files /dev/null and b/build/tools/h5repack/h5repack_filters.o differ diff --git a/build/tools/h5repack/h5repack_filters_out.h5 b/build/tools/h5repack/h5repack_filters_out.h5 new file mode 100644 index 0000000..dba1be2 Binary files /dev/null and b/build/tools/h5repack/h5repack_filters_out.h5 differ diff --git a/build/tools/h5repack/h5repack_fletcher.h5 b/build/tools/h5repack/h5repack_fletcher.h5 new file mode 100644 index 0000000..bb647cc Binary files /dev/null and b/build/tools/h5repack/h5repack_fletcher.h5 differ diff --git a/build/tools/h5repack/h5repack_fletcher_out.h5 b/build/tools/h5repack/h5repack_fletcher_out.h5 new file mode 100644 index 0000000..cf3cc5a Binary files /dev/null and b/build/tools/h5repack/h5repack_fletcher_out.h5 differ diff --git a/build/tools/h5repack/h5repack_hlink.h5 b/build/tools/h5repack/h5repack_hlink.h5 new file mode 100644 index 0000000..269ed63 Binary files /dev/null and b/build/tools/h5repack/h5repack_hlink.h5 differ diff --git a/build/tools/h5repack/h5repack_hlink_out.h5 b/build/tools/h5repack/h5repack_hlink_out.h5 new file mode 100644 index 0000000..ce885bc Binary files /dev/null and b/build/tools/h5repack/h5repack_hlink_out.h5 differ diff --git a/build/tools/h5repack/h5repack_layout.h5 b/build/tools/h5repack/h5repack_layout.h5 new file mode 100644 index 0000000..5b93d02 Binary files /dev/null and b/build/tools/h5repack/h5repack_layout.h5 differ diff --git a/build/tools/h5repack/h5repack_layout2.h5 b/build/tools/h5repack/h5repack_layout2.h5 new file mode 100644 index 0000000..6fabdcf Binary files /dev/null and b/build/tools/h5repack/h5repack_layout2.h5 differ diff --git a/build/tools/h5repack/h5repack_layout3.h5 b/build/tools/h5repack/h5repack_layout3.h5 new file mode 100644 index 0000000..223b0a2 Binary files /dev/null and b/build/tools/h5repack/h5repack_layout3.h5 differ diff --git a/build/tools/h5repack/h5repack_layout_out.h5 b/build/tools/h5repack/h5repack_layout_out.h5 new file mode 100644 index 0000000..89f0344 Binary files /dev/null and b/build/tools/h5repack/h5repack_layout_out.h5 differ diff --git a/build/tools/h5repack/h5repack_main.o b/build/tools/h5repack/h5repack_main.o new file mode 100644 index 0000000..8e9d33b Binary files /dev/null and b/build/tools/h5repack/h5repack_main.o differ diff --git a/build/tools/h5repack/h5repack_named_dtypes.h5 b/build/tools/h5repack/h5repack_named_dtypes.h5 new file mode 100644 index 0000000..eff3cd7 Binary files /dev/null and b/build/tools/h5repack/h5repack_named_dtypes.h5 differ diff --git a/build/tools/h5repack/h5repack_named_dtypes_out.h5 b/build/tools/h5repack/h5repack_named_dtypes_out.h5 new file mode 100644 index 0000000..94035db Binary files /dev/null and b/build/tools/h5repack/h5repack_named_dtypes_out.h5 differ diff --git a/build/tools/h5repack/h5repack_nbit.h5 b/build/tools/h5repack/h5repack_nbit.h5 new file mode 100644 index 0000000..2fc4c09 Binary files /dev/null and b/build/tools/h5repack/h5repack_nbit.h5 differ diff --git a/build/tools/h5repack/h5repack_nbit_out.h5 b/build/tools/h5repack/h5repack_nbit_out.h5 new file mode 100644 index 0000000..be9604b Binary files /dev/null and b/build/tools/h5repack/h5repack_nbit_out.h5 differ diff --git a/build/tools/h5repack/h5repack_objs.h5 b/build/tools/h5repack/h5repack_objs.h5 new file mode 100644 index 0000000..5bceddd Binary files /dev/null and b/build/tools/h5repack/h5repack_objs.h5 differ diff --git a/build/tools/h5repack/h5repack_objs_out.h5 b/build/tools/h5repack/h5repack_objs_out.h5 new file mode 100644 index 0000000..1d6e355 Binary files /dev/null and b/build/tools/h5repack/h5repack_objs_out.h5 differ diff --git a/build/tools/h5repack/h5repack_opttable.o b/build/tools/h5repack/h5repack_opttable.o new file mode 100644 index 0000000..4a76d1b Binary files /dev/null and b/build/tools/h5repack/h5repack_opttable.o differ diff --git a/build/tools/h5repack/h5repack_parse.o b/build/tools/h5repack/h5repack_parse.o new file mode 100644 index 0000000..73135b5 Binary files /dev/null and b/build/tools/h5repack/h5repack_parse.o differ diff --git a/build/tools/h5repack/h5repack_plugin.sh b/build/tools/h5repack/h5repack_plugin.sh new file mode 100644 index 0000000..e7f68ac --- /dev/null +++ b/build/tools/h5repack/h5repack_plugin.sh @@ -0,0 +1,274 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +srcdir=../../../tools/h5repack +TOP_BUILDDIR=../.. + +# Determine backward compatibility options enabled +DEPRECATED_SYMBOLS="yes" + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5REPACK=h5repack # The tool name +H5REPACK_BIN=`pwd`/$H5REPACK # The path of the tool binary + +H5DUMP=../h5dump/h5dump # The h5dump tool name +H5DUMP_BIN=`pwd`/$H5DUMP # The path of the h5dump tool binary + +nerrors=0 +verbose=yes +exit_code=$EXIT_SUCCESS + +TEST_NAME=ud_plugin +FROM_DIR=`pwd`/.libs +PLUGIN_LIB="$FROM_DIR/libdynlibadd.*" +PLUGIN_LIB2="$FROM_DIR/libdynlibvers.*" +PLUGIN_LIBDIR=testdir3 +RM='rm -rf' + +GREP='grep' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +# source dirs +SRC_TOOLS="$srcdir/.." + +# testfiles source dirs for tools +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" + +TESTDIR=testplug +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5 +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5-plugin_test.ddl +$SRC_H5REPACK_TESTFILES/plugin_test.h5repack_layout.h5.tst +$SRC_H5REPACK_TESTFILES/h5repack_layout.h5-plugin_version_test.ddl +$SRC_H5REPACK_TESTFILES/plugin_version_test.h5repack_layout.h5.tst +" +#$SRC_H5REPACK_TESTFILES/h5repack_layout.UD.h5 +#$SRC_H5REPACK_TESTFILES/h5repack_layout.UD.h5-plugin_none.ddl +#$SRC_H5REPACK_TESTFILES/plugin_none.h5repack_layout.UD.h5.tst +#" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES" + +# Main Body +# Create test directories if not exists yet. +test -d $PLUGIN_LIBDIR || mkdir -p $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to create test directory($PLUGIN_LIBDIR)" + exit $EXIT_FAILURE +fi + +# copy plugin library for test +$CP $PLUGIN_LIB $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB) for test." + exit $EXIT_FAILURE +fi +$CP $PLUGIN_LIB2 $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB2) for test." + exit $EXIT_FAILURE +fi + +# setup plugin path +ENVCMD="env HDF5_PLUGIN_PATH=../${PLUGIN_LIBDIR}" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5REPACK_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a $* message left justified in a field of 70 characters +# +MESSAGE() { + SPACES=" " + echo "$* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY() { + MESSAGE "Verifying $*" +} + +# This is different from $srcdir/../../bin/output_filter.sh +STDOUT_FILTER() { + result_file=$1 + tmp_file=/tmp/h5test_tmp_$$ + # Filter name of files. + cp $result_file $tmp_file + sed -e '/^Opening file/d' -e '/^Making file/d' \ + < $tmp_file > $result_file + # cleanup + rm -f $tmp_file +} + +# This runs h5repack comparing output with h5dump output +# from -pH option +# +TOOLTEST_DUMP() +{ + echo $@ + infile=$2 + outfile=out-$1.$2 + expect1="$TESTDIR/$1.$2.tst" + actual1="$TESTDIR/$1.$2.out" + actual1_err="$TESTDIR/$1.$2.err" + expect2="$TESTDIR/$2-$1.ddl" + actual2="$TESTDIR/$2-$1.out" + actual2_err="$TESTDIR/$2-$1.err" + + shift + shift + + # Run test. + TESTING $H5REPACK $@ + ( + cd $TESTDIR + $ENVCMD $H5REPACK_BIN "$@" $infile $outfile + ) >$actual1 2>$actual1_err + RET=$? + STDOUT_FILTER $actual1 + cat $actual1_err >> $actual1 + if [ $RET != 0 ] ; then + echo "*FAILED*" + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + if cmp -s $expect1 $actual1; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.tst) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && diff -c $expect1 $actual1 |sed 's/^/ /' + fi + VERIFY h5dump output -pH $outfile + ( + cd $TESTDIR + $ENVCMD $H5DUMP_BIN -pH $outfile + ) >$actual2 2>$actual2_err + RET=$? + cat $actual2_err >> $actual2 + + if cmp -s $expect2 $actual2; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && diff -c $expect2 $actual2 |sed 's/^/ /' + fi + + fi + + + rm -f $actual1 $actual1_err $actual2 $actual2_err + rm -f $outfile +} + +############################################################################## +### T H E T E S T S +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR +version_str=`echo 1.8.21-pre1 | awk -F"-" '{print $1}' | sed 's/\./,/g'` + +# Run the test +arg="h5repack_layout.h5 -v -f UD=260,0,4,9,$version_str" +TOOLTEST_DUMP plugin_version_test $arg + +arg="h5repack_layout.h5 -v -f UD=257,0,1,9" +TOOLTEST_DUMP plugin_test $arg + +#arg="h5repack_layout.UD.h5 -v -f NONE" +#TOOLTEST_DUMP plugin_none $arg + +# print results +if test $nerrors -ne 0 ; then + echo "$nerrors errors encountered" + exit_code=$EXIT_FAILURE +else + echo "All Plugin API tests passed." + exit_code=$EXIT_SUCCESS +fi + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +# Clean up temporary files/directories and leave +$RM $PLUGIN_LIBDIR + +exit $exit_code diff --git a/build/tools/h5repack/h5repack_plugin.sh.chkexe b/build/tools/h5repack/h5repack_plugin.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5repack/h5repack_plugin.sh.chklog b/build/tools/h5repack/h5repack_plugin.sh.chklog new file mode 100644 index 0000000..d613dc9 --- /dev/null +++ b/build/tools/h5repack/h5repack_plugin.sh.chklog @@ -0,0 +1,17 @@ +============================ +h5repack_plugin.sh Test Log +============================ +plugin_version_test h5repack_layout.h5 -v -f UD=260,0,4,9,1,8,21 +Testing h5repack -v -f UD=260,0,4,9,1,8,21 PASSED + PASSED +Verifying h5dump output -pH out-plugin_version_test.h5repack_layout.h5 PASSED +plugin_test h5repack_layout.h5 -v -f UD=257,0,1,9 +Testing h5repack -v -f UD=257,0,1,9 PASSED + PASSED +Verifying h5dump output -pH out-plugin_test.h5repack_layout.h5 PASSED +All Plugin API tests passed. +0.13user 0.20system 0:00.34elapsed 100%CPU (0avgtext+0avgdata 7636maxresident)k +0inputs+1192outputs (0major+61150minor)pagefaults 0swaps + +Finished testing h5repack_plugin.sh +============================ diff --git a/build/tools/h5repack/h5repack_refs.h5 b/build/tools/h5repack/h5repack_refs.h5 new file mode 100644 index 0000000..e2ffa3e Binary files /dev/null and b/build/tools/h5repack/h5repack_refs.h5 differ diff --git a/build/tools/h5repack/h5repack_refs.o b/build/tools/h5repack/h5repack_refs.o new file mode 100644 index 0000000..9b2b26c Binary files /dev/null and b/build/tools/h5repack/h5repack_refs.o differ diff --git a/build/tools/h5repack/h5repack_shuffle.h5 b/build/tools/h5repack/h5repack_shuffle.h5 new file mode 100644 index 0000000..284bf8f Binary files /dev/null and b/build/tools/h5repack/h5repack_shuffle.h5 differ diff --git a/build/tools/h5repack/h5repack_shuffle_out.h5 b/build/tools/h5repack/h5repack_shuffle_out.h5 new file mode 100644 index 0000000..144acd2 Binary files /dev/null and b/build/tools/h5repack/h5repack_shuffle_out.h5 differ diff --git a/build/tools/h5repack/h5repack_soffset.h5 b/build/tools/h5repack/h5repack_soffset.h5 new file mode 100644 index 0000000..b5f8823 Binary files /dev/null and b/build/tools/h5repack/h5repack_soffset.h5 differ diff --git a/build/tools/h5repack/h5repack_soffset_out.h5 b/build/tools/h5repack/h5repack_soffset_out.h5 new file mode 100644 index 0000000..c9c2368 Binary files /dev/null and b/build/tools/h5repack/h5repack_soffset_out.h5 differ diff --git a/build/tools/h5repack/h5repack_ub.h5 b/build/tools/h5repack/h5repack_ub.h5 new file mode 100644 index 0000000..7f4bc78 Binary files /dev/null and b/build/tools/h5repack/h5repack_ub.h5 differ diff --git a/build/tools/h5repack/h5repack_ub_out.h5 b/build/tools/h5repack/h5repack_ub_out.h5 new file mode 100644 index 0000000..7f4bc78 Binary files /dev/null and b/build/tools/h5repack/h5repack_ub_out.h5 differ diff --git a/build/tools/h5repack/h5repack_verify.o b/build/tools/h5repack/h5repack_verify.o new file mode 100644 index 0000000..0e3361a Binary files /dev/null and b/build/tools/h5repack/h5repack_verify.o differ diff --git a/build/tools/h5repack/h5repacktst b/build/tools/h5repack/h5repacktst new file mode 100755 index 0000000..00bb779 --- /dev/null +++ b/build/tools/h5repack/h5repacktst @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5repacktst - temporary wrapper script for .libs/h5repacktst +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5repacktst program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5repack.o h5repack_copy.o h5repack_filters.o h5repack_opttable.o h5repack_parse.o h5repack_refs.o h5repack_verify.o h5repacktst.o ../../tools/lib/.libs/libh5tools.a ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5repacktst:h5repacktst:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5repacktst:h5repacktst:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5repacktst:h5repacktst:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5repacktst' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5repack/h5repacktst.chkexe b/build/tools/h5repack/h5repacktst.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5repack/h5repacktst.chklog b/build/tools/h5repack/h5repacktst.chklog new file mode 100644 index 0000000..794f2d7 --- /dev/null +++ b/build/tools/h5repack/h5repacktst.chklog @@ -0,0 +1,66 @@ +============================ + h5repacktst Test Log +============================ +Testing h5repack: +Testing generating files for testing PASSED +Testing copy of datasets (fill values) PASSED +Testing copy of datasets (all datatypes) PASSED +Testing copy of datasets (attributes) PASSED +Testing copy of datasets (hardlinks) PASSED +Testing copy of allocation early file PASSED +Testing adding deflate filter PASSED +Testing adding deflate filter to all PASSED +Testing adding szip filter -SKIP- +Testing adding szip filter to all -SKIP- +Testing addding shuffle filter PASSED +Testing addding shuffle filter to all PASSED +Testing adding checksum filter PASSED +Testing adding checksum filter to all PASSED +Testing filter queue fletcher, shuffle, deflate, szip PASSED +Testing adding layout chunked PASSED +Testing adding layout chunked to all PASSED +Testing adding layout contiguous PASSED +Testing adding layout contiguous to all PASSED +Testing adding layout compact PASSED +Testing adding layout compact to all PASSED +Testing layout compact to contiguous conversion PASSED +Testing layout compact to chunk conversion PASSED +Testing layout compact to compact conversion PASSED +Testing layout contiguous to compact conversion PASSED +Testing layout contiguous to chunk conversion PASSED +Testing layout contiguous to contiguous conversion PASSED +Testing layout chunked to compact conversion PASSED +Testing layout chunked to contiguous conversion PASSED +Testing layout chunked to chunk conversion PASSED +Testing copy of szip filter -SKIP- +Testing removing szip filter -SKIP- +Testing copy of deflate filter PASSED +Testing removing deflate filter PASSED +Testing copy of shuffle filter PASSED +Testing removing shuffle filter PASSED +Testing copy of fletcher filter PASSED +Testing removing fletcher filter PASSED +Testing copy of nbit filter PASSED +Testing removing nbit filter PASSED +Testing adding nbit filter PASSED +Testing copy of scaleoffset filter PASSED +Testing removing scaleoffset filter PASSED +Testing adding scaleoffset filter PASSED +Testing filter conversion from deflate to szip -SKIP- +Testing filter conversion from szip to deflate -SKIP- +Testing removing all filters -SKIP- +Testing big file PASSED +Testing external datasets PASSED +Testing file with userblock PASSED +Testing latest file format options PASSED +Testing several global filters PASSED +Testing file with added userblock PASSED +Testing file with aligment PASSED +Testing file with committed datatypes PASSED +Testing metadata block size option PASSED +All h5repack tests passed. +4.51user 0.38system 0:05.24elapsed 93%CPU (0avgtext+0avgdata 255920maxresident)k +0inputs+12328outputs (0major+164570minor)pagefaults 0swaps + +Finished testing h5repacktst +============================ diff --git a/build/tools/h5repack/h5repacktst.o b/build/tools/h5repack/h5repacktst.o new file mode 100644 index 0000000..ae92160 Binary files /dev/null and b/build/tools/h5repack/h5repacktst.o differ diff --git a/build/tools/h5repack/libdynlibadd.la b/build/tools/h5repack/libdynlibadd.la new file mode 100644 index 0000000..54c41fa --- /dev/null +++ b/build/tools/h5repack/libdynlibadd.la @@ -0,0 +1,41 @@ +# libdynlibadd.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibadd.so' + +# Names of this library. +library_names='libdynlibadd.so libdynlibadd.so libdynlibadd.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibadd. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5repack/libdynlibvers.la b/build/tools/h5repack/libdynlibvers.la new file mode 100644 index 0000000..cb4ad80 --- /dev/null +++ b/build/tools/h5repack/libdynlibvers.la @@ -0,0 +1,41 @@ +# libdynlibvers.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libdynlibvers.so' + +# Names of this library. +library_names='libdynlibvers.so libdynlibvers.so libdynlibvers.so' + +# The name of the static archive. +old_library='' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libdynlibvers. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=yes + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/nowhere' diff --git a/build/tools/h5repack/testh5repack_detect_szip b/build/tools/h5repack/testh5repack_detect_szip new file mode 100755 index 0000000..76c3cc0 --- /dev/null +++ b/build/tools/h5repack/testh5repack_detect_szip @@ -0,0 +1,228 @@ +#! /bin/sh + +# testh5repack_detect_szip - temporary wrapper script for .libs/testh5repack_detect_szip +# Generated by libtool (GNU libtool) 2.4.6 +# +# The testh5repack_detect_szip program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file testh5repack_detect_szip.o ../../tools/lib/.libs/libh5tools.a ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "testh5repack_detect_szip:testh5repack_detect_szip:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "testh5repack_detect_szip:testh5repack_detect_szip:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "testh5repack_detect_szip:testh5repack_detect_szip:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'testh5repack_detect_szip' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5repack/testh5repack_detect_szip.o b/build/tools/h5repack/testh5repack_detect_szip.o new file mode 100644 index 0000000..bd91142 Binary files /dev/null and b/build/tools/h5repack/testh5repack_detect_szip.o differ diff --git a/build/tools/h5repack/ublock.bin b/build/tools/h5repack/ublock.bin new file mode 100644 index 0000000..b2d03f3 --- /dev/null +++ b/build/tools/h5repack/ublock.bin @@ -0,0 +1 @@ +abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst \ No newline at end of file diff --git a/build/tools/h5stat/.deps/h5stat.Po b/build/tools/h5stat/.deps/h5stat.Po new file mode 100644 index 0000000..1ad0f68 --- /dev/null +++ b/build/tools/h5stat/.deps/h5stat.Po @@ -0,0 +1,367 @@ +h5stat.o: ../../../tools/h5stat/h5stat.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5tools_ref.h ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/h5stat/.deps/h5stat_gentest.Po b/build/tools/h5stat/.deps/h5stat_gentest.Po new file mode 100644 index 0000000..7c070e8 --- /dev/null +++ b/build/tools/h5stat/.deps/h5stat_gentest.Po @@ -0,0 +1,183 @@ +h5stat_gentest.o: ../../../tools/h5stat/h5stat_gentest.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: diff --git a/build/tools/h5stat/.libs/h5stat b/build/tools/h5stat/.libs/h5stat new file mode 100755 index 0000000..3f83123 Binary files /dev/null and b/build/tools/h5stat/.libs/h5stat differ diff --git a/build/tools/h5stat/.libs/h5stat_gentest b/build/tools/h5stat/.libs/h5stat_gentest new file mode 100755 index 0000000..44fc15b Binary files /dev/null and b/build/tools/h5stat/.libs/h5stat_gentest differ diff --git a/build/tools/h5stat/.libs/lt-h5stat b/build/tools/h5stat/.libs/lt-h5stat new file mode 100755 index 0000000..1e2cfec Binary files /dev/null and b/build/tools/h5stat/.libs/lt-h5stat differ diff --git a/build/tools/h5stat/.libs/lt-h5stat_gentest b/build/tools/h5stat/.libs/lt-h5stat_gentest new file mode 100755 index 0000000..7d2413d Binary files /dev/null and b/build/tools/h5stat/.libs/lt-h5stat_gentest differ diff --git a/build/tools/h5stat/Makefile b/build/tools/h5stat/Makefile new file mode 100644 index 0000000..405bc72 --- /dev/null +++ b/build/tools/h5stat/Makefile @@ -0,0 +1,1509 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/h5stat/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/h5stat +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +bin_PROGRAMS = h5stat$(EXEEXT) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/h5stat +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = testh5stat.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5stat_gentest$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +h5stat_SOURCES = h5stat.c +h5stat_OBJECTS = h5stat.$(OBJEXT) +h5stat_LDADD = $(LDADD) +h5stat_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +h5stat_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5stat_LDFLAGS) $(LDFLAGS) -o $@ +h5stat_gentest_SOURCES = h5stat_gentest.c +h5stat_gentest_OBJECTS = h5stat_gentest.$(OBJEXT) +h5stat_gentest_LDADD = $(LDADD) +h5stat_gentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +SCRIPTS = $(bin_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = h5stat.c h5stat_gentest.c +DIST_SOURCES = h5stat.c h5stat_gentest.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/testh5stat.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/h5stat +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/h5stat +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by h5repart_gentest. They should +# copied to the testfiles/ directory if update is required. fst_family*.h5 +# and scd_family*.h5 were created by setting the HDF5_NOCLEANUP variable. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 \ + ../testfiles/fst_family*.h5 ../testfiles/scd_family*.h5 + +#test script and program +TEST_PROG = h5stat_gentest +TEST_SCRIPT = testh5stat.sh +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5stat$(EXEEXT) +bin_SCRIPTS = + +# Add h5stat specific linker flags here +h5stat_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# Tell automake to clean h5redeploy script +CLEANFILES = + +# These were generated by configure. Remove them only when distclean. +DISTCLEANFILES = testh5stat.sh + +# All programs rely on hdf5 library and h5tools library +LDADD = $(LIBH5TOOLS) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/h5stat/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/h5stat/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +testh5stat.sh: $(top_builddir)/config.status $(srcdir)/testh5stat.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5stat$(EXEEXT): $(h5stat_OBJECTS) $(h5stat_DEPENDENCIES) $(EXTRA_h5stat_DEPENDENCIES) + @rm -f h5stat$(EXEEXT) + $(AM_V_CCLD)$(h5stat_LINK) $(h5stat_OBJECTS) $(h5stat_LDADD) $(LIBS) + +h5stat_gentest$(EXEEXT): $(h5stat_gentest_OBJECTS) $(h5stat_gentest_DEPENDENCIES) $(EXTRA_h5stat_gentest_DEPENDENCIES) + @rm -f h5stat_gentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5stat_gentest_OBJECTS) $(h5stat_gentest_LDADD) $(LIBS) +install-binSCRIPTS: $(bin_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/h5stat.Po +include ./$(DEPDIR)/h5stat_gentest.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5stat_gentest.log: h5stat_gentest$(EXEEXT) + @p='h5stat_gentest$(EXEEXT)'; \ + b='h5stat_gentest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS install-binSCRIPTS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-binSCRIPTS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am uninstall-binPROGRAMS \ + uninstall-binSCRIPTS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/h5stat/h5stat b/build/tools/h5stat/h5stat new file mode 100755 index 0000000..1d6e5d0 --- /dev/null +++ b/build/tools/h5stat/h5stat @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5stat - temporary wrapper script for .libs/h5stat +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5stat program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5stat.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5stat:h5stat:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5stat:h5stat:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5stat:h5stat:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5stat' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5stat/h5stat.o b/build/tools/h5stat/h5stat.o new file mode 100644 index 0000000..a17b753 Binary files /dev/null and b/build/tools/h5stat/h5stat.o differ diff --git a/build/tools/h5stat/h5stat_gentest b/build/tools/h5stat/h5stat_gentest new file mode 100755 index 0000000..fe0b8a6 --- /dev/null +++ b/build/tools/h5stat/h5stat_gentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5stat_gentest - temporary wrapper script for .libs/h5stat_gentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5stat_gentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5stat_gentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5stat_gentest:h5stat_gentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5stat_gentest:h5stat_gentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5stat_gentest:h5stat_gentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5stat_gentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/h5stat/h5stat_gentest.chkexe b/build/tools/h5stat/h5stat_gentest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5stat/h5stat_gentest.chklog b/build/tools/h5stat/h5stat_gentest.chklog new file mode 100644 index 0000000..58df3e1 --- /dev/null +++ b/build/tools/h5stat/h5stat_gentest.chklog @@ -0,0 +1,8 @@ +============================ + h5stat_gentest Test Log +============================ +1.17user 0.04system 0:01.27elapsed 96%CPU (0avgtext+0avgdata 17172maxresident)k +0inputs+12552outputs (0major+12044minor)pagefaults 0swaps + +Finished testing h5stat_gentest +============================ diff --git a/build/tools/h5stat/h5stat_gentest.o b/build/tools/h5stat/h5stat_gentest.o new file mode 100644 index 0000000..50446ca Binary files /dev/null and b/build/tools/h5stat/h5stat_gentest.o differ diff --git a/build/tools/h5stat/h5stat_newgrat.h5 b/build/tools/h5stat/h5stat_newgrat.h5 new file mode 100644 index 0000000..83314f9 Binary files /dev/null and b/build/tools/h5stat/h5stat_newgrat.h5 differ diff --git a/build/tools/h5stat/h5stat_threshold.h5 b/build/tools/h5stat/h5stat_threshold.h5 new file mode 100644 index 0000000..137f3d1 Binary files /dev/null and b/build/tools/h5stat/h5stat_threshold.h5 differ diff --git a/build/tools/h5stat/testh5stat.sh b/build/tools/h5stat/testh5stat.sh new file mode 100644 index 0000000..d5cdf28 --- /dev/null +++ b/build/tools/h5stat/testh5stat.sh @@ -0,0 +1,314 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5stat tool +# +# Modifcations: +# Vailin Choi; July 2013 +# Add tests for -l, -m, -a options +# + +srcdir=../../../tools/h5stat + +# Determine which filters are available +USE_FILTER_SZIP="no" +USE_FILTER_DEFLATE="yes" + +TESTNAME=h5stat +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +STAT=h5stat # The tool name +STAT_BIN=`pwd`/$STAT # The path of the tool binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/.." +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +# testfiles source dirs for tools +SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DUMP_TESTFILES="$SRC_TOOLS_TESTFILES" +SRC_H5DIFF_TESTFILES="$SRC_TOOLS/h5diff/testfiles" +SRC_H5COPY_TESTFILES="$SRC_TOOLS/h5copy/testfiles" +SRC_H5REPACK_TESTFILES="$SRC_TOOLS/h5repack/testfiles" +SRC_H5JAM_TESTFILES="$SRC_TOOLS/h5jam/testfiles" +SRC_H5STAT_TESTFILES="$SRC_TOOLS/h5stat/testfiles" +SRC_H5IMPORT_TESTFILES="$SRC_TOOLS/h5import/testfiles" + +TESTDIR=./testfiles +test -d $TESTDIR || mkdir $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- +LIST_HDF5_TEST_FILES=" +$SRC_H5STAT_TESTFILES/h5stat_filters.h5 +$SRC_H5STAT_TESTFILES/h5stat_tsohm.h5 +$SRC_H5STAT_TESTFILES/h5stat_newgrat.h5 +$SRC_H5STAT_TESTFILES/h5stat_threshold.h5 +" + +LIST_OTHER_TEST_FILES=" +$SRC_H5STAT_TESTFILES/h5stat_help1.ddl +$SRC_H5STAT_TESTFILES/h5stat_help2.ddl +$SRC_H5STAT_TESTFILES/h5stat_notexist.ddl +$SRC_H5STAT_TESTFILES/h5stat_nofile.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-file.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-F.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-d.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-g.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-dT.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-UD.ddl +$SRC_H5STAT_TESTFILES/h5stat_filters-UT.ddl +$SRC_H5STAT_TESTFILES/h5stat_tsohm.ddl +$SRC_H5STAT_TESTFILES/h5stat_newgrat.ddl +$SRC_H5STAT_TESTFILES/h5stat_newgrat-UG.ddl +$SRC_H5STAT_TESTFILES/h5stat_newgrat-UA.ddl +$SRC_H5STAT_TESTFILES/h5stat_err1_links.ddl +$SRC_H5STAT_TESTFILES/h5stat_links1.ddl +$SRC_H5STAT_TESTFILES/h5stat_links2.ddl +$SRC_H5STAT_TESTFILES/h5stat_links3.ddl +$SRC_H5STAT_TESTFILES/h5stat_links4.ddl +$SRC_H5STAT_TESTFILES/h5stat_links5.ddl +$SRC_H5STAT_TESTFILES/h5stat_err1_dims.ddl +$SRC_H5STAT_TESTFILES/h5stat_dims1.ddl +$SRC_H5STAT_TESTFILES/h5stat_dims2.ddl +$SRC_H5STAT_TESTFILES/h5stat_err1_numattrs.ddl +$SRC_H5STAT_TESTFILES/h5stat_err2_numattrs.ddl +$SRC_H5STAT_TESTFILES/h5stat_numattrs1.ddl +$SRC_H5STAT_TESTFILES/h5stat_numattrs2.ddl +$SRC_H5STAT_TESTFILES/h5stat_numattrs3.ddl +$SRC_H5STAT_TESTFILES/h5stat_numattrs4.ddl +" + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES="$LIST_HDF5_TEST_FILES $LIST_OTHER_TEST_FILES" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5STAT_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable and (if $verbose is set) display the +# difference between the actual output and the expected output. The +# expected output is given as the first argument to this function and +# the actual output file is calculated by replacing the `.ddl' with +# `.out'. The actual output is not removed if $HDF5_NOCLEANUP has a +# non-zero value. +# +TOOLTEST() { + expect="$TESTDIR/$1" + actual="$TESTDIR/`basename $1 .ddl`.out" + actual_err="$TESTDIR/`basename $1 .ddl`.err" + actual_sav=${actual}-sav + actual_err_sav=${actual_err}-sav + shift + + # Run test. + TESTING $STAT $@ + ( + cd $TESTDIR + $RUNSERIAL $STAT_BIN $@ + ) >$actual 2>$actual_err + + # save actual and actual_err in case they are needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + cp $actual_err $actual_err_sav + STDERR_FILTER $actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ddl) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ddl) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err $actual_sav $actual_err_sav + fi +} + + +# Print a "SKIP" message +SKIP() { + TESTING $STAT $@ + echo " -SKIP-" +} + + + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Test for help flag +TOOLTEST h5stat_help1.ddl -h +TOOLTEST h5stat_help2.ddl --help +# Test when h5stat a file that does not exist +TOOLTEST h5stat_notexist.ddl notexist.h5 +TOOLTEST h5stat_nofile.ddl '' + +# Test file with groups, compressed datasets, user-applied fileters, etc. +# h5stat_filters.h5 is a copy of ../../testfiles/tfilters.h5 as of release 1.8.0-alpha4 +TOOLTEST h5stat_filters.ddl h5stat_filters.h5 +TOOLTEST h5stat_filters-file.ddl -f h5stat_filters.h5 +TOOLTEST h5stat_filters-F.ddl -F h5stat_filters.h5 +TOOLTEST h5stat_filters-d.ddl -d h5stat_filters.h5 +TOOLTEST h5stat_filters-g.ddl -g h5stat_filters.h5 +TOOLTEST h5stat_filters-dT.ddl -dT h5stat_filters.h5 +TOOLTEST h5stat_filters-UD.ddl -D h5stat_filters.h5 +TOOLTEST h5stat_filters-UT.ddl -T h5stat_filters.h5 +# +# h5stat_tsohm.h5 is a copy of ../../../test/tsohm.h5 generated by tsohm.c +# as of release 1.8.7-snap0 (on a 64-bit machine) +TOOLTEST h5stat_tsohm.ddl h5stat_tsohm.h5 +# h5stat_newgrat.h5 is generated by h5stat_gentest.c +TOOLTEST h5stat_newgrat.ddl h5stat_newgrat.h5 +TOOLTEST h5stat_newgrat-UG.ddl -G h5stat_newgrat.h5 +TOOLTEST h5stat_newgrat-UA.ddl -A h5stat_newgrat.h5 +# +# Tests for -l (--links) option on h5stat_threshold.h5: +# -l 0 (incorrect threshold value) +# -g -l 8 +# --links=8 +# --links=20 -g +TOOLTEST h5stat_err1_links.ddl -l 0 h5stat_threshold.h5 +TOOLTEST h5stat_links1.ddl -g -l 8 h5stat_threshold.h5 +TOOLTEST h5stat_links2.ddl --links=8 h5stat_threshold.h5 +TOOLTEST h5stat_links3.ddl --links=20 -g h5stat_threshold.h5 +# +# Tests for -l (--links) option on h5stat_newgrat.h5: +# -g +# -g -l 40000 +TOOLTEST h5stat_links4.ddl -g h5stat_newgrat.h5 +TOOLTEST h5stat_links5.ddl -g -l 40000 h5stat_newgrat.h5 +# +# Tests for -m (--dims) option on h5stat_threshold.h5 +# -d --dims=-1 (incorrect threshold value) +# -gd -m 5 +# -d --di=15 +TOOLTEST h5stat_err1_dims.ddl -d --dims=-1 h5stat_threshold.h5 +TOOLTEST h5stat_dims1.ddl -gd -m 5 h5stat_threshold.h5 +TOOLTEST h5stat_dims2.ddl -d --di=15 h5stat_threshold.h5 +# +# Tests for -a option on h5stat_threshold.h5 +# -a -2 (incorrect threshold value) +# --numattrs (without threshold value) +# -AS -a 10 +# -a 1 +# -A --numattrs=25 +TOOLTEST h5stat_err1_numattrs.ddl -a -2 h5stat_threshold.h5 +TOOLTEST h5stat_err2_numattrs.ddl --numattrs h5stat_threshold.h5 +TOOLTEST h5stat_numattrs1.ddl -AS -a 10 h5stat_threshold.h5 +TOOLTEST h5stat_numattrs2.ddl -a 1 h5stat_threshold.h5 +TOOLTEST h5stat_numattrs3.ddl -A --numattrs=25 h5stat_threshold.h5 +# +# Tests for -a option on h5stat_newgrat.h5 +# -A -a 100 +TOOLTEST h5stat_numattrs4.ddl -A -a 100 h5stat_newgrat.h5 +# + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi + diff --git a/build/tools/h5stat/testh5stat.sh.chkexe b/build/tools/h5stat/testh5stat.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/h5stat/testh5stat.sh.chklog b/build/tools/h5stat/testh5stat.sh.chklog new file mode 100644 index 0000000..1d6f634 --- /dev/null +++ b/build/tools/h5stat/testh5stat.sh.chklog @@ -0,0 +1,40 @@ +============================ +testh5stat.sh Test Log +============================ +Testing h5stat -h PASSED +Testing h5stat --help PASSED +Testing h5stat notexist.h5 PASSED +Testing h5stat PASSED +Testing h5stat h5stat_filters.h5 PASSED +Testing h5stat -f h5stat_filters.h5 PASSED +Testing h5stat -F h5stat_filters.h5 PASSED +Testing h5stat -d h5stat_filters.h5 PASSED +Testing h5stat -g h5stat_filters.h5 PASSED +Testing h5stat -dT h5stat_filters.h5 PASSED +Testing h5stat -D h5stat_filters.h5 PASSED +Testing h5stat -T h5stat_filters.h5 PASSED +Testing h5stat h5stat_tsohm.h5 PASSED +Testing h5stat h5stat_newgrat.h5 PASSED +Testing h5stat -G h5stat_newgrat.h5 PASSED +Testing h5stat -A h5stat_newgrat.h5 PASSED +Testing h5stat -l 0 h5stat_threshold.h5 PASSED +Testing h5stat -g -l 8 h5stat_threshold.h5 PASSED +Testing h5stat --links=8 h5stat_threshold.h5 PASSED +Testing h5stat --links=20 -g h5stat_threshold.h5 PASSED +Testing h5stat -g h5stat_newgrat.h5 PASSED +Testing h5stat -g -l 40000 h5stat_newgrat.h5 PASSED +Testing h5stat -d --dims=-1 h5stat_threshold.h5 PASSED +Testing h5stat -gd -m 5 h5stat_threshold.h5 PASSED +Testing h5stat -d --di=15 h5stat_threshold.h5 PASSED +Testing h5stat -a -2 h5stat_threshold.h5 PASSED +Testing h5stat --numattrs h5stat_threshold.h5 PASSED +Testing h5stat -AS -a 10 h5stat_threshold.h5 PASSED +Testing h5stat -a 1 h5stat_threshold.h5 PASSED +Testing h5stat -A --numattrs=25 h5stat_threshold.h5 PASSED +Testing h5stat -A -a 100 h5stat_newgrat.h5 PASSED +All h5stat tests passed. +5.68user 1.90system 0:07.53elapsed 100%CPU (0avgtext+0avgdata 16428maxresident)k +0inputs+14656outputs (0major+533356minor)pagefaults 0swaps + +Finished testing testh5stat.sh +============================ diff --git a/build/tools/lib/.deps/h5diff.Plo b/build/tools/lib/.deps/h5diff.Plo new file mode 100644 index 0000000..e2339f2 --- /dev/null +++ b/build/tools/lib/.deps/h5diff.Plo @@ -0,0 +1,370 @@ +h5diff.lo: ../../../tools/lib/h5diff.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/ph5diff.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/ph5diff.h: diff --git a/build/tools/lib/.deps/h5diff_array.Plo b/build/tools/lib/.deps/h5diff_array.Plo new file mode 100644 index 0000000..3665c37 --- /dev/null +++ b/build/tools/lib/.deps/h5diff_array.Plo @@ -0,0 +1,371 @@ +h5diff_array.lo: ../../../tools/lib/h5diff_array.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/ph5diff.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/ph5diff.h: diff --git a/build/tools/lib/.deps/h5diff_attr.Plo b/build/tools/lib/.deps/h5diff_attr.Plo new file mode 100644 index 0000000..9aa2cbf --- /dev/null +++ b/build/tools/lib/.deps/h5diff_attr.Plo @@ -0,0 +1,368 @@ +h5diff_attr.lo: ../../../tools/lib/h5diff_attr.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/lib/.deps/h5diff_dset.Plo b/build/tools/lib/.deps/h5diff_dset.Plo new file mode 100644 index 0000000..ce67427 --- /dev/null +++ b/build/tools/lib/.deps/h5diff_dset.Plo @@ -0,0 +1,371 @@ +h5diff_dset.lo: ../../../tools/lib/h5diff_dset.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/ph5diff.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/ph5diff.h: diff --git a/build/tools/lib/.deps/h5diff_util.Plo b/build/tools/lib/.deps/h5diff_util.Plo new file mode 100644 index 0000000..e3cf954 --- /dev/null +++ b/build/tools/lib/.deps/h5diff_util.Plo @@ -0,0 +1,371 @@ +h5diff_util.lo: ../../../tools/lib/h5diff_util.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5diff.h ../../../tools/lib/h5trav.h \ + ../../../tools/lib/ph5diff.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5diff.h: + +../../../tools/lib/h5trav.h: + +../../../tools/lib/ph5diff.h: diff --git a/build/tools/lib/.deps/h5tools.Plo b/build/tools/lib/.deps/h5tools.Plo new file mode 100644 index 0000000..d8d4e76 --- /dev/null +++ b/build/tools/lib/.deps/h5tools.Plo @@ -0,0 +1,367 @@ +h5tools.lo: ../../../tools/lib/h5tools.c /usr/include/stdc-predef.h \ + ../../../tools/lib/h5tools.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_dump.h \ + ../../../tools/lib/h5tools_utils.h ../../../tools/lib/h5tools_ref.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_dump.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/lib/.deps/h5tools_dump.Plo b/build/tools/lib/.deps/h5tools_dump.Plo new file mode 100644 index 0000000..991a501 --- /dev/null +++ b/build/tools/lib/.deps/h5tools_dump.Plo @@ -0,0 +1,368 @@ +h5tools_dump.lo: ../../../tools/lib/h5tools_dump.c \ + /usr/include/stdc-predef.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_dump.h \ + ../../../tools/lib/h5tools_utils.h ../../../tools/lib/h5tools_ref.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_dump.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5tools_ref.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/lib/.deps/h5tools_filters.Plo b/build/tools/lib/.deps/h5tools_filters.Plo new file mode 100644 index 0000000..f7b16c7 --- /dev/null +++ b/build/tools/lib/.deps/h5tools_filters.Plo @@ -0,0 +1,361 @@ +h5tools_filters.lo: ../../../tools/lib/h5tools_filters.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: diff --git a/build/tools/lib/.deps/h5tools_ref.Plo b/build/tools/lib/.deps/h5tools_ref.Plo new file mode 100644 index 0000000..0fac743 --- /dev/null +++ b/build/tools/lib/.deps/h5tools_ref.Plo @@ -0,0 +1,373 @@ +h5tools_ref.lo: ../../../tools/lib/h5tools_ref.c \ + /usr/include/stdc-predef.h ../../../tools/lib/h5tools_ref.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/H5SLprivate.h \ + ../../../src/H5private.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5tools_ref.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/H5SLprivate.h: + +../../../src/H5private.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/lib/.deps/h5tools_str.Plo b/build/tools/lib/.deps/h5tools_str.Plo new file mode 100644 index 0000000..063b397 --- /dev/null +++ b/build/tools/lib/.deps/h5tools_str.Plo @@ -0,0 +1,363 @@ +h5tools_str.lo: ../../../tools/lib/h5tools_str.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_ref.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_ref.h: diff --git a/build/tools/lib/.deps/h5tools_type.Plo b/build/tools/lib/.deps/h5tools_type.Plo new file mode 100644 index 0000000..352317b --- /dev/null +++ b/build/tools/lib/.deps/h5tools_type.Plo @@ -0,0 +1,361 @@ +h5tools_type.lo: ../../../tools/lib/h5tools_type.c \ + /usr/include/stdc-predef.h ../../../src/H5private.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: diff --git a/build/tools/lib/.deps/h5tools_utils.Plo b/build/tools/lib/.deps/h5tools_utils.Plo new file mode 100644 index 0000000..943a8cb --- /dev/null +++ b/build/tools/lib/.deps/h5tools_utils.Plo @@ -0,0 +1,365 @@ +h5tools_utils.lo: ../../../tools/lib/h5tools_utils.c \ + /usr/include/stdc-predef.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5trav.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5trav.h: diff --git a/build/tools/lib/.deps/h5trav.Plo b/build/tools/lib/.deps/h5trav.Plo new file mode 100644 index 0000000..2bc20fc --- /dev/null +++ b/build/tools/lib/.deps/h5trav.Plo @@ -0,0 +1,362 @@ +h5trav.lo: ../../../tools/lib/h5trav.c /usr/include/stdc-predef.h \ + ../../../tools/lib/h5trav.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../tools/lib/h5trav.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/lib/.deps/io_timer.Plo b/build/tools/lib/.deps/io_timer.Plo new file mode 100644 index 0000000..edc5e24 --- /dev/null +++ b/build/tools/lib/.deps/io_timer.Plo @@ -0,0 +1,352 @@ +io_timer.lo: ../../../tools/lib/io_timer.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/hdf5.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/lib/io_timer.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/io_timer.h: diff --git a/build/tools/lib/.libs/h5diff.o b/build/tools/lib/.libs/h5diff.o new file mode 100644 index 0000000..92cab00 Binary files /dev/null and b/build/tools/lib/.libs/h5diff.o differ diff --git a/build/tools/lib/.libs/h5diff_array.o b/build/tools/lib/.libs/h5diff_array.o new file mode 100644 index 0000000..a1b9f7b Binary files /dev/null and b/build/tools/lib/.libs/h5diff_array.o differ diff --git a/build/tools/lib/.libs/h5diff_attr.o b/build/tools/lib/.libs/h5diff_attr.o new file mode 100644 index 0000000..b6303e9 Binary files /dev/null and b/build/tools/lib/.libs/h5diff_attr.o differ diff --git a/build/tools/lib/.libs/h5diff_dset.o b/build/tools/lib/.libs/h5diff_dset.o new file mode 100644 index 0000000..ef5611f Binary files /dev/null and b/build/tools/lib/.libs/h5diff_dset.o differ diff --git a/build/tools/lib/.libs/h5diff_util.o b/build/tools/lib/.libs/h5diff_util.o new file mode 100644 index 0000000..b72b9ba Binary files /dev/null and b/build/tools/lib/.libs/h5diff_util.o differ diff --git a/build/tools/lib/.libs/h5tools.o b/build/tools/lib/.libs/h5tools.o new file mode 100644 index 0000000..5a400ae Binary files /dev/null and b/build/tools/lib/.libs/h5tools.o differ diff --git a/build/tools/lib/.libs/h5tools_dump.o b/build/tools/lib/.libs/h5tools_dump.o new file mode 100644 index 0000000..e1295b2 Binary files /dev/null and b/build/tools/lib/.libs/h5tools_dump.o differ diff --git a/build/tools/lib/.libs/h5tools_filters.o b/build/tools/lib/.libs/h5tools_filters.o new file mode 100644 index 0000000..3e5f939 Binary files /dev/null and b/build/tools/lib/.libs/h5tools_filters.o differ diff --git a/build/tools/lib/.libs/h5tools_ref.o b/build/tools/lib/.libs/h5tools_ref.o new file mode 100644 index 0000000..c0e9c0a Binary files /dev/null and b/build/tools/lib/.libs/h5tools_ref.o differ diff --git a/build/tools/lib/.libs/h5tools_str.o b/build/tools/lib/.libs/h5tools_str.o new file mode 100644 index 0000000..42ebbfc Binary files /dev/null and b/build/tools/lib/.libs/h5tools_str.o differ diff --git a/build/tools/lib/.libs/h5tools_type.o b/build/tools/lib/.libs/h5tools_type.o new file mode 100644 index 0000000..8ff3a4b Binary files /dev/null and b/build/tools/lib/.libs/h5tools_type.o differ diff --git a/build/tools/lib/.libs/h5tools_utils.o b/build/tools/lib/.libs/h5tools_utils.o new file mode 100644 index 0000000..c513eb6 Binary files /dev/null and b/build/tools/lib/.libs/h5tools_utils.o differ diff --git a/build/tools/lib/.libs/h5trav.o b/build/tools/lib/.libs/h5trav.o new file mode 100644 index 0000000..2be83c4 Binary files /dev/null and b/build/tools/lib/.libs/h5trav.o differ diff --git a/build/tools/lib/.libs/io_timer.o b/build/tools/lib/.libs/io_timer.o new file mode 100644 index 0000000..4a8ae32 Binary files /dev/null and b/build/tools/lib/.libs/io_timer.o differ diff --git a/build/tools/lib/.libs/libh5tools.a b/build/tools/lib/.libs/libh5tools.a new file mode 100644 index 0000000..1ec0563 Binary files /dev/null and b/build/tools/lib/.libs/libh5tools.a differ diff --git a/build/tools/lib/.libs/libh5tools.la b/build/tools/lib/.libs/libh5tools.la new file mode 120000 index 0000000..8036b7a --- /dev/null +++ b/build/tools/lib/.libs/libh5tools.la @@ -0,0 +1 @@ +../libh5tools.la \ No newline at end of file diff --git a/build/tools/lib/Makefile b/build/tools/lib/Makefile new file mode 100644 index 0000000..45c3837 --- /dev/null +++ b/build/tools/lib/Makefile @@ -0,0 +1,1405 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/lib/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + +VPATH = ../../../tools/lib +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) +TESTS = $(am__EXEEXT_1) +subdir = tools/lib +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libh5tools_la_LIBADD = +am_libh5tools_la_OBJECTS = h5tools.lo h5tools_dump.lo h5tools_str.lo \ + h5tools_utils.lo h5diff.lo h5diff_array.lo h5diff_attr.lo \ + h5diff_dset.lo h5diff_util.lo h5trav.lo h5tools_filters.lo \ + h5tools_ref.lo h5tools_type.lo io_timer.lo +libh5tools_la_OBJECTS = $(am_libh5tools_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +am__EXEEXT_1 = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libh5tools_la_SOURCES) +DIST_SOURCES = $(libh5tools_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include files in /src directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/lib +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/lib +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# This is our main target, the h5tools library. +noinst_LTLIBRARIES = libh5tools.la +libh5tools_la_SOURCES = h5tools.c h5tools_dump.c h5tools_str.c h5tools_utils.c h5diff.c \ + h5diff_array.c h5diff_attr.c h5diff_dset.c h5diff_util.c h5trav.c \ + h5tools_filters.c h5tools_ref.c h5tools_type.c io_timer.c + + +# Test program. Link using libhdf5 and libh5tools +TEST_PROG = + +# Name libh5tools.la so that dependencies work out. Automake knows how +# to build 'libh5tools.la', but not '../../tools/lib/libh5tools.la'. +LDADD = libh5tools.la $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/lib/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/lib/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libh5tools.la: $(libh5tools_la_OBJECTS) $(libh5tools_la_DEPENDENCIES) $(EXTRA_libh5tools_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(libh5tools_la_OBJECTS) $(libh5tools_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/h5diff.Plo +include ./$(DEPDIR)/h5diff_array.Plo +include ./$(DEPDIR)/h5diff_attr.Plo +include ./$(DEPDIR)/h5diff_dset.Plo +include ./$(DEPDIR)/h5diff_util.Plo +include ./$(DEPDIR)/h5tools.Plo +include ./$(DEPDIR)/h5tools_dump.Plo +include ./$(DEPDIR)/h5tools_filters.Plo +include ./$(DEPDIR)/h5tools_ref.Plo +include ./$(DEPDIR)/h5tools_str.Plo +include ./$(DEPDIR)/h5tools_type.Plo +include ./$(DEPDIR)/h5tools_utils.Plo +include ./$(DEPDIR)/h5trav.Plo +include ./$(DEPDIR)/io_timer.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) all-local +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ + uninstall uninstall-am + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/lib/h5diff.lo b/build/tools/lib/h5diff.lo new file mode 100644 index 0000000..b634866 --- /dev/null +++ b/build/tools/lib/h5diff.lo @@ -0,0 +1,12 @@ +# h5diff.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5diff.o' + +# Name of the non-PIC object +non_pic_object='h5diff.o' + diff --git a/build/tools/lib/h5diff.o b/build/tools/lib/h5diff.o new file mode 100644 index 0000000..1e65d6b Binary files /dev/null and b/build/tools/lib/h5diff.o differ diff --git a/build/tools/lib/h5diff_array.lo b/build/tools/lib/h5diff_array.lo new file mode 100644 index 0000000..45d8aac --- /dev/null +++ b/build/tools/lib/h5diff_array.lo @@ -0,0 +1,12 @@ +# h5diff_array.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5diff_array.o' + +# Name of the non-PIC object +non_pic_object='h5diff_array.o' + diff --git a/build/tools/lib/h5diff_array.o b/build/tools/lib/h5diff_array.o new file mode 100644 index 0000000..f138807 Binary files /dev/null and b/build/tools/lib/h5diff_array.o differ diff --git a/build/tools/lib/h5diff_attr.lo b/build/tools/lib/h5diff_attr.lo new file mode 100644 index 0000000..f64b571 --- /dev/null +++ b/build/tools/lib/h5diff_attr.lo @@ -0,0 +1,12 @@ +# h5diff_attr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5diff_attr.o' + +# Name of the non-PIC object +non_pic_object='h5diff_attr.o' + diff --git a/build/tools/lib/h5diff_attr.o b/build/tools/lib/h5diff_attr.o new file mode 100644 index 0000000..0d9a222 Binary files /dev/null and b/build/tools/lib/h5diff_attr.o differ diff --git a/build/tools/lib/h5diff_dset.lo b/build/tools/lib/h5diff_dset.lo new file mode 100644 index 0000000..98f3f4b --- /dev/null +++ b/build/tools/lib/h5diff_dset.lo @@ -0,0 +1,12 @@ +# h5diff_dset.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5diff_dset.o' + +# Name of the non-PIC object +non_pic_object='h5diff_dset.o' + diff --git a/build/tools/lib/h5diff_dset.o b/build/tools/lib/h5diff_dset.o new file mode 100644 index 0000000..0b99ee5 Binary files /dev/null and b/build/tools/lib/h5diff_dset.o differ diff --git a/build/tools/lib/h5diff_util.lo b/build/tools/lib/h5diff_util.lo new file mode 100644 index 0000000..e3b996a --- /dev/null +++ b/build/tools/lib/h5diff_util.lo @@ -0,0 +1,12 @@ +# h5diff_util.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5diff_util.o' + +# Name of the non-PIC object +non_pic_object='h5diff_util.o' + diff --git a/build/tools/lib/h5diff_util.o b/build/tools/lib/h5diff_util.o new file mode 100644 index 0000000..52de3fa Binary files /dev/null and b/build/tools/lib/h5diff_util.o differ diff --git a/build/tools/lib/h5tools.lo b/build/tools/lib/h5tools.lo new file mode 100644 index 0000000..8f0e880 --- /dev/null +++ b/build/tools/lib/h5tools.lo @@ -0,0 +1,12 @@ +# h5tools.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools.o' + +# Name of the non-PIC object +non_pic_object='h5tools.o' + diff --git a/build/tools/lib/h5tools.o b/build/tools/lib/h5tools.o new file mode 100644 index 0000000..aa5c39f Binary files /dev/null and b/build/tools/lib/h5tools.o differ diff --git a/build/tools/lib/h5tools_dump.lo b/build/tools/lib/h5tools_dump.lo new file mode 100644 index 0000000..8bde08e --- /dev/null +++ b/build/tools/lib/h5tools_dump.lo @@ -0,0 +1,12 @@ +# h5tools_dump.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_dump.o' + +# Name of the non-PIC object +non_pic_object='h5tools_dump.o' + diff --git a/build/tools/lib/h5tools_dump.o b/build/tools/lib/h5tools_dump.o new file mode 100644 index 0000000..2c0e3ac Binary files /dev/null and b/build/tools/lib/h5tools_dump.o differ diff --git a/build/tools/lib/h5tools_filters.lo b/build/tools/lib/h5tools_filters.lo new file mode 100644 index 0000000..8d514d0 --- /dev/null +++ b/build/tools/lib/h5tools_filters.lo @@ -0,0 +1,12 @@ +# h5tools_filters.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_filters.o' + +# Name of the non-PIC object +non_pic_object='h5tools_filters.o' + diff --git a/build/tools/lib/h5tools_filters.o b/build/tools/lib/h5tools_filters.o new file mode 100644 index 0000000..cf91467 Binary files /dev/null and b/build/tools/lib/h5tools_filters.o differ diff --git a/build/tools/lib/h5tools_ref.lo b/build/tools/lib/h5tools_ref.lo new file mode 100644 index 0000000..3f4ec62 --- /dev/null +++ b/build/tools/lib/h5tools_ref.lo @@ -0,0 +1,12 @@ +# h5tools_ref.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_ref.o' + +# Name of the non-PIC object +non_pic_object='h5tools_ref.o' + diff --git a/build/tools/lib/h5tools_ref.o b/build/tools/lib/h5tools_ref.o new file mode 100644 index 0000000..bf0f1d3 Binary files /dev/null and b/build/tools/lib/h5tools_ref.o differ diff --git a/build/tools/lib/h5tools_str.lo b/build/tools/lib/h5tools_str.lo new file mode 100644 index 0000000..acb87bc --- /dev/null +++ b/build/tools/lib/h5tools_str.lo @@ -0,0 +1,12 @@ +# h5tools_str.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_str.o' + +# Name of the non-PIC object +non_pic_object='h5tools_str.o' + diff --git a/build/tools/lib/h5tools_str.o b/build/tools/lib/h5tools_str.o new file mode 100644 index 0000000..5bf2a55 Binary files /dev/null and b/build/tools/lib/h5tools_str.o differ diff --git a/build/tools/lib/h5tools_type.lo b/build/tools/lib/h5tools_type.lo new file mode 100644 index 0000000..33da3ae --- /dev/null +++ b/build/tools/lib/h5tools_type.lo @@ -0,0 +1,12 @@ +# h5tools_type.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_type.o' + +# Name of the non-PIC object +non_pic_object='h5tools_type.o' + diff --git a/build/tools/lib/h5tools_type.o b/build/tools/lib/h5tools_type.o new file mode 100644 index 0000000..0a6ca02 Binary files /dev/null and b/build/tools/lib/h5tools_type.o differ diff --git a/build/tools/lib/h5tools_utils.lo b/build/tools/lib/h5tools_utils.lo new file mode 100644 index 0000000..b7cdca1 --- /dev/null +++ b/build/tools/lib/h5tools_utils.lo @@ -0,0 +1,12 @@ +# h5tools_utils.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5tools_utils.o' + +# Name of the non-PIC object +non_pic_object='h5tools_utils.o' + diff --git a/build/tools/lib/h5tools_utils.o b/build/tools/lib/h5tools_utils.o new file mode 100644 index 0000000..2d0cc67 Binary files /dev/null and b/build/tools/lib/h5tools_utils.o differ diff --git a/build/tools/lib/h5trav.lo b/build/tools/lib/h5trav.lo new file mode 100644 index 0000000..314fba2 --- /dev/null +++ b/build/tools/lib/h5trav.lo @@ -0,0 +1,12 @@ +# h5trav.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/h5trav.o' + +# Name of the non-PIC object +non_pic_object='h5trav.o' + diff --git a/build/tools/lib/h5trav.o b/build/tools/lib/h5trav.o new file mode 100644 index 0000000..e187f45 Binary files /dev/null and b/build/tools/lib/h5trav.o differ diff --git a/build/tools/lib/io_timer.lo b/build/tools/lib/io_timer.lo new file mode 100644 index 0000000..df7a561 --- /dev/null +++ b/build/tools/lib/io_timer.lo @@ -0,0 +1,12 @@ +# io_timer.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/io_timer.o' + +# Name of the non-PIC object +non_pic_object='io_timer.o' + diff --git a/build/tools/lib/io_timer.o b/build/tools/lib/io_timer.o new file mode 100644 index 0000000..5b1a98b Binary files /dev/null and b/build/tools/lib/io_timer.o differ diff --git a/build/tools/lib/libh5tools.la b/build/tools/lib/libh5tools.la new file mode 100644 index 0000000..5740634 --- /dev/null +++ b/build/tools/lib/libh5tools.la @@ -0,0 +1,41 @@ +# libh5tools.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libh5tools.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lz -ldl -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libh5tools. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/build/tools/misc/.deps/h5debug.Po b/build/tools/misc/.deps/h5debug.Po new file mode 100644 index 0000000..23aff1a --- /dev/null +++ b/build/tools/misc/.deps/h5debug.Po @@ -0,0 +1,437 @@ +h5debug.o: ../../../tools/misc/h5debug.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../src/H5Apkg.h \ + ../../../src/H5Aprivate.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5Gprivate.h ../../../src/H5Gpublic.h \ + ../../../src/H5private.h ../../../src/H5Bprivate.h \ + ../../../src/H5Bpublic.h ../../../src/H5Fprivate.h \ + ../../../src/H5Fpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5RCprivate.h ../../../src/H5RSprivate.h \ + ../../../src/H5Oprivate.h ../../../src/H5Dpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5ACprivate.h \ + ../../../src/H5Cprivate.h ../../../src/H5Pprivate.h \ + ../../../src/H5Ppublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5SLprivate.h \ + ../../../src/H5Tprivate.h ../../../src/H5Rprivate.h \ + ../../../src/H5Rpublic.h ../../../src/H5Zprivate.h \ + ../../../src/H5Sprivate.h ../../../src/H5B2private.h \ + ../../../src/H5B2public.h ../../../src/H5FLprivate.h \ + ../../../src/H5HFprivate.h ../../../src/H5HFpublic.h \ + ../../../src/H5B2pkg.h ../../../src/H5Dpkg.h ../../../src/H5Dprivate.h \ + ../../../src/H5FDprivate.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5Eprivate.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h ../../../src/H5Fpkg.h \ + ../../../src/H5FOprivate.h ../../../src/H5FSprivate.h \ + ../../../src/H5FSpublic.h ../../../src/H5FSprivate.h \ + ../../../src/H5Gpkg.h ../../../src/H5HLprivate.h \ + ../../../src/H5HLpublic.h ../../../src/H5HFpkg.h \ + ../../../src/H5HGprivate.h ../../../src/H5HGpublic.h \ + ../../../src/H5Iprivate.h ../../../src/H5Opkg.h ../../../src/H5SMpkg.h \ + ../../../src/H5SMprivate.h ../../../src/H5FDfamily.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../src/H5Apkg.h: + +../../../src/H5Aprivate.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5Gprivate.h: + +../../../src/H5Gpublic.h: + +../../../src/H5private.h: + +../../../src/H5Bprivate.h: + +../../../src/H5Bpublic.h: + +../../../src/H5Fprivate.h: + +../../../src/H5Fpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5RCprivate.h: + +../../../src/H5RSprivate.h: + +../../../src/H5Oprivate.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5ACprivate.h: + +../../../src/H5Cprivate.h: + +../../../src/H5Pprivate.h: + +../../../src/H5Ppublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5SLprivate.h: + +../../../src/H5Tprivate.h: + +../../../src/H5Rprivate.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Zprivate.h: + +../../../src/H5Sprivate.h: + +../../../src/H5B2private.h: + +../../../src/H5B2public.h: + +../../../src/H5FLprivate.h: + +../../../src/H5HFprivate.h: + +../../../src/H5HFpublic.h: + +../../../src/H5B2pkg.h: + +../../../src/H5Dpkg.h: + +../../../src/H5Dprivate.h: + +../../../src/H5FDprivate.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5Eprivate.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpkg.h: + +../../../src/H5FOprivate.h: + +../../../src/H5FSprivate.h: + +../../../src/H5FSpublic.h: + +../../../src/H5FSprivate.h: + +../../../src/H5Gpkg.h: + +../../../src/H5HLprivate.h: + +../../../src/H5HLpublic.h: + +../../../src/H5HFpkg.h: + +../../../src/H5HGprivate.h: + +../../../src/H5HGpublic.h: + +../../../src/H5Iprivate.h: + +../../../src/H5Opkg.h: + +../../../src/H5SMpkg.h: + +../../../src/H5SMprivate.h: + +../../../src/H5FDfamily.h: diff --git a/build/tools/misc/.deps/h5mkgrp.Po b/build/tools/misc/.deps/h5mkgrp.Po new file mode 100644 index 0000000..6d34244 --- /dev/null +++ b/build/tools/misc/.deps/h5mkgrp.Po @@ -0,0 +1,362 @@ +h5mkgrp.o: ../../../tools/misc/h5mkgrp.c /usr/include/stdc-predef.h \ + ../../../src/H5private.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../src/hdf5.h ../../../src/H5Apublic.h ../../../src/H5Ipublic.h \ + ../../../src/H5Opublic.h ../../../src/H5Lpublic.h \ + ../../../src/H5Tpublic.h ../../../src/H5ACpublic.h \ + ../../../src/H5Cpublic.h ../../../src/H5Dpublic.h \ + ../../../src/H5Epublic.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/H5private.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../src/hdf5.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/misc/.deps/h5repart.Po b/build/tools/misc/.deps/h5repart.Po new file mode 100644 index 0000000..b9dd1b0 --- /dev/null +++ b/build/tools/misc/.deps/h5repart.Po @@ -0,0 +1,350 @@ +h5repart.o: ../../../tools/misc/h5repart.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/misc/.deps/h5repart_gentest.Po b/build/tools/misc/.deps/h5repart_gentest.Po new file mode 100644 index 0000000..13c409b --- /dev/null +++ b/build/tools/misc/.deps/h5repart_gentest.Po @@ -0,0 +1,350 @@ +h5repart_gentest.o: ../../../tools/misc/h5repart_gentest.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/misc/.deps/repart_test.Po b/build/tools/misc/.deps/repart_test.Po new file mode 100644 index 0000000..e58ecb5 --- /dev/null +++ b/build/tools/misc/.deps/repart_test.Po @@ -0,0 +1,350 @@ +repart_test.o: ../../../tools/misc/repart_test.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/misc/.deps/talign.Po b/build/tools/misc/.deps/talign.Po new file mode 100644 index 0000000..b2c3247 --- /dev/null +++ b/build/tools/misc/.deps/talign.Po @@ -0,0 +1,360 @@ +talign.o: ../../../tools/misc/talign.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: diff --git a/build/tools/misc/.libs/h5debug b/build/tools/misc/.libs/h5debug new file mode 100755 index 0000000..05b97c8 Binary files /dev/null and b/build/tools/misc/.libs/h5debug differ diff --git a/build/tools/misc/.libs/h5mkgrp b/build/tools/misc/.libs/h5mkgrp new file mode 100755 index 0000000..d149d1e Binary files /dev/null and b/build/tools/misc/.libs/h5mkgrp differ diff --git a/build/tools/misc/.libs/h5repart b/build/tools/misc/.libs/h5repart new file mode 100755 index 0000000..54140fe Binary files /dev/null and b/build/tools/misc/.libs/h5repart differ diff --git a/build/tools/misc/.libs/h5repart_gentest b/build/tools/misc/.libs/h5repart_gentest new file mode 100755 index 0000000..79690ef Binary files /dev/null and b/build/tools/misc/.libs/h5repart_gentest differ diff --git a/build/tools/misc/.libs/lt-h5mkgrp b/build/tools/misc/.libs/lt-h5mkgrp new file mode 100755 index 0000000..2c90d7c Binary files /dev/null and b/build/tools/misc/.libs/lt-h5mkgrp differ diff --git a/build/tools/misc/.libs/lt-h5repart b/build/tools/misc/.libs/lt-h5repart new file mode 100755 index 0000000..7c89303 Binary files /dev/null and b/build/tools/misc/.libs/lt-h5repart differ diff --git a/build/tools/misc/.libs/lt-h5repart_gentest b/build/tools/misc/.libs/lt-h5repart_gentest new file mode 100755 index 0000000..300fd23 Binary files /dev/null and b/build/tools/misc/.libs/lt-h5repart_gentest differ diff --git a/build/tools/misc/.libs/lt-repart_test b/build/tools/misc/.libs/lt-repart_test new file mode 100755 index 0000000..e21fa81 Binary files /dev/null and b/build/tools/misc/.libs/lt-repart_test differ diff --git a/build/tools/misc/.libs/lt-talign b/build/tools/misc/.libs/lt-talign new file mode 100755 index 0000000..5651764 Binary files /dev/null and b/build/tools/misc/.libs/lt-talign differ diff --git a/build/tools/misc/.libs/repart_test b/build/tools/misc/.libs/repart_test new file mode 100755 index 0000000..930644c Binary files /dev/null and b/build/tools/misc/.libs/repart_test differ diff --git a/build/tools/misc/.libs/talign b/build/tools/misc/.libs/talign new file mode 100755 index 0000000..cab23df Binary files /dev/null and b/build/tools/misc/.libs/talign differ diff --git a/build/tools/misc/Makefile b/build/tools/misc/Makefile new file mode 100644 index 0000000..15f7040 --- /dev/null +++ b/build/tools/misc/Makefile @@ -0,0 +1,1583 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/misc/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Makefile(.in) +# + + +VPATH = ../../../tools/misc +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +check_PROGRAMS = $(am__EXEEXT_1) repart_test$(EXEEXT) +bin_PROGRAMS = h5debug$(EXEEXT) h5repart$(EXEEXT) h5mkgrp$(EXEEXT) +TESTS = $(am__EXEEXT_1) $(TEST_SCRIPT) +subdir = tools/misc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = h5cc testh5mkgrp.sh testh5repart.sh +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = h5repart_gentest$(EXEEXT) talign$(EXEEXT) +PROGRAMS = $(bin_PROGRAMS) +h5debug_SOURCES = h5debug.c +h5debug_OBJECTS = h5debug.$(OBJEXT) +h5debug_LDADD = $(LDADD) +h5debug_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +h5debug_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5debug_LDFLAGS) $(LDFLAGS) -o $@ +h5mkgrp_SOURCES = h5mkgrp.c +h5mkgrp_OBJECTS = h5mkgrp.$(OBJEXT) +h5mkgrp_LDADD = $(LDADD) +h5mkgrp_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5mkgrp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5mkgrp_LDFLAGS) $(LDFLAGS) -o $@ +h5repart_SOURCES = h5repart.c +h5repart_OBJECTS = h5repart.$(OBJEXT) +h5repart_LDADD = $(LDADD) +h5repart_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +h5repart_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5repart_LDFLAGS) $(LDFLAGS) -o $@ +h5repart_gentest_SOURCES = h5repart_gentest.c +h5repart_gentest_OBJECTS = h5repart_gentest.$(OBJEXT) +h5repart_gentest_LDADD = $(LDADD) +h5repart_gentest_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +repart_test_SOURCES = repart_test.c +repart_test_OBJECTS = repart_test.$(OBJEXT) +repart_test_LDADD = $(LDADD) +repart_test_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +talign_SOURCES = talign.c +talign_OBJECTS = talign.$(OBJEXT) +talign_LDADD = $(LDADD) +talign_DEPENDENCIES = $(LIBH5TOOLS) $(LIBHDF5) +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +SCRIPTS = $(bin_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = h5debug.c h5mkgrp.c h5repart.c h5repart_gentest.c \ + repart_test.c talign.c +DIST_SOURCES = h5debug.c h5mkgrp.c h5repart.c h5repart_gentest.c \ + repart_test.c talign.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5cc.in \ + $(srcdir)/testh5mkgrp.sh.in $(srcdir)/testh5repart.sh.in \ + $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ + $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g + +# Include src directory +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/misc +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/misc +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. + +# Temporary files. *.h5 are generated by h5repart_gentest. They should +# copied to the testfiles/ directory if update is required. fst_family*.h5 +# and scd_family*.h5 were created by setting the HDF5_NOCLEANUP variable. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 \ + ../testfiles/fst_family*.h5 ../testfiles/scd_family*.h5 + +#test script and program +TEST_PROG = h5repart_gentest talign +TEST_SCRIPT = testh5repart.sh testh5mkgrp.sh +check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5repart$(EXEEXT) h5mkgrp$(EXEEXT) +bin_SCRIPTS = h5redeploy + +# Add h5debug, h5repart, and h5mkgrp specific linker flags here +h5debug_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +h5repart_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +h5mkgrp_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# Tell automake to clean h5redeploy script +CLEANFILES = h5redeploy + +# These were generated by configure. Remove them only when distclean. +DISTCLEANFILES = h5cc testh5repart.sh + +# All programs rely on hdf5 library and h5tools library +LDADD = $(LIBH5TOOLS) $(LIBHDF5) +H5CC_NAME = h5cc + +# h5cc needs custom install and uninstall rules, since it may be +# named h5pcc if hdf5 is being built in parallel mode. +#H5CC_NAME = h5pcc + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/misc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/misc/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +h5cc: $(top_builddir)/config.status $(srcdir)/h5cc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5mkgrp.sh: $(top_builddir)/config.status $(srcdir)/testh5mkgrp.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +testh5repart.sh: $(top_builddir)/config.status $(srcdir)/testh5repart.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +h5debug$(EXEEXT): $(h5debug_OBJECTS) $(h5debug_DEPENDENCIES) $(EXTRA_h5debug_DEPENDENCIES) + @rm -f h5debug$(EXEEXT) + $(AM_V_CCLD)$(h5debug_LINK) $(h5debug_OBJECTS) $(h5debug_LDADD) $(LIBS) + +h5mkgrp$(EXEEXT): $(h5mkgrp_OBJECTS) $(h5mkgrp_DEPENDENCIES) $(EXTRA_h5mkgrp_DEPENDENCIES) + @rm -f h5mkgrp$(EXEEXT) + $(AM_V_CCLD)$(h5mkgrp_LINK) $(h5mkgrp_OBJECTS) $(h5mkgrp_LDADD) $(LIBS) + +h5repart$(EXEEXT): $(h5repart_OBJECTS) $(h5repart_DEPENDENCIES) $(EXTRA_h5repart_DEPENDENCIES) + @rm -f h5repart$(EXEEXT) + $(AM_V_CCLD)$(h5repart_LINK) $(h5repart_OBJECTS) $(h5repart_LDADD) $(LIBS) + +h5repart_gentest$(EXEEXT): $(h5repart_gentest_OBJECTS) $(h5repart_gentest_DEPENDENCIES) $(EXTRA_h5repart_gentest_DEPENDENCIES) + @rm -f h5repart_gentest$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(h5repart_gentest_OBJECTS) $(h5repart_gentest_LDADD) $(LIBS) + +repart_test$(EXEEXT): $(repart_test_OBJECTS) $(repart_test_DEPENDENCIES) $(EXTRA_repart_test_DEPENDENCIES) + @rm -f repart_test$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(repart_test_OBJECTS) $(repart_test_LDADD) $(LIBS) + +talign$(EXEEXT): $(talign_OBJECTS) $(talign_DEPENDENCIES) $(EXTRA_talign_DEPENDENCIES) + @rm -f talign$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(talign_OBJECTS) $(talign_LDADD) $(LIBS) +install-binSCRIPTS: $(bin_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/h5debug.Po +include ./$(DEPDIR)/h5mkgrp.Po +include ./$(DEPDIR)/h5repart.Po +include ./$(DEPDIR)/h5repart_gentest.Po +include ./$(DEPDIR)/repart_test.Po +include ./$(DEPDIR)/talign.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) $(check_SCRIPTS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +h5repart_gentest.log: h5repart_gentest$(EXEEXT) + @p='h5repart_gentest$(EXEEXT)'; \ + b='h5repart_gentest'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +talign.log: talign$(EXEEXT) + @p='talign$(EXEEXT)'; \ + b='talign'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS install-binSCRIPTS \ + install-exec-local + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ + uninstall-local + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-binSCRIPTS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-exec-local \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-binSCRIPTS uninstall-local + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp + +install-exec-local: + @$(INSTALL) h5cc $(DESTDIR)$(bindir)/$(H5CC_NAME) +uninstall-local: + @$(RM) $(DESTDIR)$(bindir)/$(H5CC_NAME) + +# How to build h5redeploy script +h5redeploy: h5redeploy.in + @cp $(srcdir)/$@.in $@ +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/misc/family_file00000.h5 b/build/tools/misc/family_file00000.h5 new file mode 100644 index 0000000..c4fa2f2 Binary files /dev/null and b/build/tools/misc/family_file00000.h5 differ diff --git a/build/tools/misc/family_file00001.h5 b/build/tools/misc/family_file00001.h5 new file mode 100644 index 0000000..c040743 Binary files /dev/null and b/build/tools/misc/family_file00001.h5 differ diff --git a/build/tools/misc/family_file00002.h5 b/build/tools/misc/family_file00002.h5 new file mode 100644 index 0000000..d03d8d6 Binary files /dev/null and b/build/tools/misc/family_file00002.h5 differ diff --git a/build/tools/misc/family_file00003.h5 b/build/tools/misc/family_file00003.h5 new file mode 100644 index 0000000..cf59e50 Binary files /dev/null and b/build/tools/misc/family_file00003.h5 differ diff --git a/build/tools/misc/family_file00004.h5 b/build/tools/misc/family_file00004.h5 new file mode 100644 index 0000000..da5585a Binary files /dev/null and b/build/tools/misc/family_file00004.h5 differ diff --git a/build/tools/misc/family_file00005.h5 b/build/tools/misc/family_file00005.h5 new file mode 100644 index 0000000..62756bd Binary files /dev/null and b/build/tools/misc/family_file00005.h5 differ diff --git a/build/tools/misc/family_file00006.h5 b/build/tools/misc/family_file00006.h5 new file mode 100644 index 0000000..75def6d Binary files /dev/null and b/build/tools/misc/family_file00006.h5 differ diff --git a/build/tools/misc/family_file00007.h5 b/build/tools/misc/family_file00007.h5 new file mode 100644 index 0000000..3303ce1 Binary files /dev/null and b/build/tools/misc/family_file00007.h5 differ diff --git a/build/tools/misc/family_file00008.h5 b/build/tools/misc/family_file00008.h5 new file mode 100644 index 0000000..cfed948 Binary files /dev/null and b/build/tools/misc/family_file00008.h5 differ diff --git a/build/tools/misc/family_file00009.h5 b/build/tools/misc/family_file00009.h5 new file mode 100644 index 0000000..3398aa5 Binary files /dev/null and b/build/tools/misc/family_file00009.h5 differ diff --git a/build/tools/misc/family_file00010.h5 b/build/tools/misc/family_file00010.h5 new file mode 100644 index 0000000..970eef6 Binary files /dev/null and b/build/tools/misc/family_file00010.h5 differ diff --git a/build/tools/misc/family_file00011.h5 b/build/tools/misc/family_file00011.h5 new file mode 100644 index 0000000..6d1933e Binary files /dev/null and b/build/tools/misc/family_file00011.h5 differ diff --git a/build/tools/misc/family_file00012.h5 b/build/tools/misc/family_file00012.h5 new file mode 100644 index 0000000..e936235 Binary files /dev/null and b/build/tools/misc/family_file00012.h5 differ diff --git a/build/tools/misc/family_file00013.h5 b/build/tools/misc/family_file00013.h5 new file mode 100644 index 0000000..79a0af5 Binary files /dev/null and b/build/tools/misc/family_file00013.h5 differ diff --git a/build/tools/misc/family_file00014.h5 b/build/tools/misc/family_file00014.h5 new file mode 100644 index 0000000..ff65e3e Binary files /dev/null and b/build/tools/misc/family_file00014.h5 differ diff --git a/build/tools/misc/family_file00015.h5 b/build/tools/misc/family_file00015.h5 new file mode 100644 index 0000000..5802650 Binary files /dev/null and b/build/tools/misc/family_file00015.h5 differ diff --git a/build/tools/misc/family_file00016.h5 b/build/tools/misc/family_file00016.h5 new file mode 100644 index 0000000..16ba3eb Binary files /dev/null and b/build/tools/misc/family_file00016.h5 differ diff --git a/build/tools/misc/family_file00017.h5 b/build/tools/misc/family_file00017.h5 new file mode 100644 index 0000000..3650cf7 Binary files /dev/null and b/build/tools/misc/family_file00017.h5 differ diff --git a/build/tools/misc/family_file00018.h5 b/build/tools/misc/family_file00018.h5 new file mode 100644 index 0000000..c656a2c Binary files /dev/null and b/build/tools/misc/family_file00018.h5 differ diff --git a/build/tools/misc/h5cc b/build/tools/misc/h5cc new file mode 100755 index 0000000..52dbb51 --- /dev/null +++ b/build/tools/misc/h5cc @@ -0,0 +1,399 @@ +#! /bin/sh +## +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +## + +# This tool is adapted from the mpicc command of the MPICH Software. + +############################################################################ +## ## +## Things You May Have to Modify: ## +## ## +## If the following paths don't point to the place were HDF5 is installed ## +## on your system (i.e., you received a binary distribution or moved the ## +## files from the originally installed directory to another directory) ## +## then modify them accordingly to represent the new paths. ## +## ## +############################################################################ +prefix="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" +exec_prefix="${prefix}" +libdir="${exec_prefix}/lib" +includedir="${prefix}/include" +HL="hl" + +############################################################################ +## ## +## Things You Can Modify to Override HDF5 Library Build Components: ## +## ## +## (Advanced usage - know what you're doing - you're on your own here.) ## +## The four variables below can be used to insert paths and flags in ## +## CPPFLAGS, CFLAGS, LDFLAGS, or LIBS in the h5cc compile line: ## +## $CLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CFLAGS $CFLAGS $LDFLAGS ## +## $LIBS $clibpath $link_objs $link_args $shared_link ## +## ## +## These settings can be overriden by setting HDF5_CFLAGS, ## +## HDF5_CPPFLAGS, HDF5_LDFLAGS, or HDF5_LIBS in the environment. ## +## ## +############################################################################ +CFLAGSBASE="" +CPPFLAGSBASE="" +LDFLAGSBASE="" +LIBSBASE="" + +############################################################################ +## ## +## You shouldn't have to modify anything below this line. ## +## ## +############################################################################ + +# Constants definitions +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +host_os="linux-gnu" + +prog_name="`basename $0`" + +allargs="" +compile_args="" +libraries="" +link_args="" +link_objs="" +clibpath="" + +do_link="yes" +do_compile="no" +dash_o="no" +dash_c="no" +get_output_file="no" + +SHOW="eval" +CCBASE="gcc" +CLINKERBASE="gcc" + +# CFLAGS, CPPFLAGS and LDFLAGS are reserved for use by the script user. +# FLAGS brought from the hdf5 build are put in H5BLD_*FLAGS. + +# User's CPPFLAGS and CFLAGS come after their H5BLD counterparts. User's +# LDFLAGS come just before clibpath, user's LIBS come after $link_objs and +# before the hdf5 libraries in $link_args, followed by any external library +# paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in +# from the hdf5 build. The order of the flags is intended to give precedence +# to the user's flags. +H5BLD_CFLAGS=" " +H5BLD_CPPFLAGS=" " +H5BLD_LDFLAGS=" " +H5BLD_LIBS="-lz -ldl -lm " + +CC="${HDF5_CC:-$CCBASE}" +CLINKER="${HDF5_CLINKER:-$CLINKERBASE}" +CFLAGS="${HDF5_CFLAGS:-$CFLAGSBASE}" +CPPFLAGS="${HDF5_CPPFLAGS:-$CPPFLAGSBASE}" +LDFLAGS="${HDF5_LDFLAGS:-$LDFLAGSBASE}" +LIBS="${HDF5_LIBS:-$LIBSBASE}" + +# If a static library is available, the default will be to use it. If the only +# available library is shared, it will be used by default. The user can +# override either default, although choosing an unavailable library will result +# in link errors. +STATIC_AVAILABLE="yes" +if test "${STATIC_AVAILABLE}" = "yes"; then + USE_SHARED_LIB="${HDF5_USE_SHLIB:-no}" +else + USE_SHARED_LIB="${HDF5_USE_SHLIB:-yes}" +fi + + +usage() { + # A wonderfully informative "usage" message. + echo "usage: $prog_name [OPTIONS] " + echo " OPTIONS:" + echo " -help This help message." + echo " -echo Show all the shell commands executed" + echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" + echo " subdirectories [default: $prefix]" + # A wonderfully informative "usage" message. + echo "usage: $prog_name [OPTIONS] " + echo " OPTIONS:" + echo " -help This help message." + echo " -echo Show all the shell commands executed" + echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" + echo " subdirectories [default: $prefix]" + echo " -show Show the commands without executing them" + echo " -showconfig Show the HDF5 library configuration summary" + echo " -shlib Compile with shared HDF5 libraries [default for hdf5 built" + echo " without static libraries]" + echo " -noshlib Compile with static HDF5 libraries [default for hdf5 built" + echo " with static libraries]" + echo " " + echo " - the normal compile line options for your compiler." + echo " $prog_name uses the same compiler you used to compile" + echo " HDF5. Check with your compiler's man pages for more" + echo " information on which options are needed." + echo " " + echo " You can override the compiler, linker, and whether or not to use static" + echo " or shared libraries to compile your program by setting the following" + echo " environment variables accordingly:" + echo " " + echo " HDF5_CC - use a different C compiler" + echo " HDF5_CLINKER - use a different linker" + echo " HDF5_USE_SHLIB=[yes|no] - use shared or static version of the HDF5 library" + echo " [default: no except when built with only" + echo " shared libraries]" + echo " " + echo " You can also add or change paths and flags to the compile line using" + echo " the following environment varibles or by assigning them to their counterparts" + echo " in the 'Things You Can Modify to Override...'" section of $prog_name + echo " " + echo " Variable Current value to be replaced" + echo " HDF5_CPPFLAGS \"$CPPFLAGSBASE\"" + echo " HDF5_CFLAGS \"$CFLAGSBASE\"" + echo " HDF5_LDFLAGS \"$LDFLAGSBASE\"" + echo " HDF5_LIBS \"$LIBSBASE\"" + echo " " + echo " Note that adding library paths to HDF5_LDFLAGS where another hdf5 version" + echo " is located may link your program with that other hdf5 library version." + echo " " + exit $EXIT_FAILURE +} + +# Show the configuration summary of the library recorded in the +# libhdf5.settings file reside in the lib directory. +showconfigure() +{ + cat ${libdir}/libhdf5.settings + status=$? +} + +# Main +status=$EXIT_SUCCESS + +if test "$#" = "0"; then + # No parameters specified, issue usage statement and exit. + usage +fi + +case "$CC" in + gcc) + kind="gcc" + ;; + mpicc|mpcc|mpicc_r) + # Is this gcc masquarading as an MPI compiler? + if test "`${CC} -v 2>&1 | sed -n 2p | cut -c1-3`" = "gcc"; then + kind="gcc" + else + # Nope + kind="$host_os" + fi + ;; + *) + kind="$host_os" + ;; +esac + +for arg in $@ ; do + if test "x$get_output_file" = "xyes"; then + link_args="$link_args $arg" + output_file="$arg" + get_output_file="no" + continue + fi + + case "$arg" in + -c) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + + if test "x$do_link" = "xyes" -a -n "$output_file"; then + compile_args="$compile_args -o $output_file" + fi + + do_link="no" + dash_c="yes" + ;; + -o) + allargs="$allargs $arg" + dash_o="yes" + + if test "x$dash_c" = "xyes"; then + compile_args="$compile_args $arg" + else + link_args="$link_args $arg" + do_link="yes" + get_output_file="yes" + fi + ;; + -E|-M|-MT) + allargs="$allargs $arg" + compile_args="$compile_args $arg" + dash_c="yes" + do_link="no" + ;; + -l*) + libraries=" $libraries $arg " + allargs="$allargs $arg" + ;; + -prefix=*) + prefix="`expr "$arg" : '-prefix=\(.*\)'`" + ;; + -echo) + set -x + ;; + -show) + SHOW="echo" + ;; + -showconfig) + showconfigure + exit $status + ;; + -shlib) + USE_SHARED_LIB="yes" + ;; + -noshlib) + USE_SHARED_LIB="no" + ;; + -help) + usage + ;; + *\"*) + qarg="'"$arg"'" + allargs="$allargs $qarg" + ;; + *\'*) + qarg='\"'"$arg"'\"' + allargs="$allargs $qarg" + ;; + *) + allargs="$allargs $qarg" + + if test -s "$arg"; then + ext=`expr "$arg" : '.*\(\..*\)'` + + if test "x$ext" = "x.c"; then + do_compile="yes" + compile_args="$compile_args $arg" + fname=`basename $arg .c` + link_objs="$link_objs $fname.o" + elif test "x$ext" = "x.o"; then + if test "x$dash_c" = "xyes"; then + compile_args="$compile_args $arg" + else + do_link="yes" + link_objs="$link_objs $arg" + fi + elif test "x$ext" = "x.a"; then + # This is an archive that we're linking in + libraries=" $libraries $arg " + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + else + compile_args="$compile_args $arg" + link_args="$link_args $arg" + fi + ;; + esac +done + +if test "$dash_c" = "yes" -a "$do_compile" = no -a "$do_link" = no ; then + # -c was specified. Force do_compile on. + do_compile=yes +fi + +if test "x$do_compile" = "xyes"; then + if test "x$dash_c" != "xyes"; then + compile_args="-c $compile_args" + fi + + $SHOW $CC -I$includedir $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CFLAGS $CFLAGS $compile_args + status=$? + + if test "$status" != "0"; then + exit $status + fi +fi + +if test "x$do_link" = "xyes"; then + shared_link="" +# conditionnaly link with the hl library + if test "X$HL" = "Xhl"; then + libraries=" $libraries -lhdf5_hl -lhdf5 " + else + libraries=" $libraries -lhdf5 " + fi + link_args="$link_args -L${libdir}" + + case "$kind" in + gcc|linux*) + # MacOS X doesn't support the "-Wl,-rpath -Wl," style of linker flags. + # It appears to want none of them specified. + case "$host_os" in + darwin*) flag="" ;; + *) flag="-Wl,-rpath -Wl," ;; + esac + ;; + hpux*) flag="-Wl,+b -Wl," ;; + freebsd*|solaris*) flag="-R" ;; + rs6000*|aix*) flag="-L" ;; + sgi) flag="-rpath " ;; + *) flag="" ;; + esac + + if test -n "$flag"; then + shared_link="${flag}${libdir}" + fi + + if test "x$USE_SHARED_LIB" != "xyes"; then + # The "-lhdf5" & "-lhdf5_hl" flags are in here already...This is a static + # compile though, so change it to the static version (.a) of the library. + new_libraries="" + for lib in $libraries; do + case "$lib" in + -lhdf5) + new_libraries="$new_libraries ${libdir}/libhdf5.a" + ;; + -lhdf5_hl) + new_libraries="$new_libraries ${libdir}/libhdf5_hl.a" + ;; + *) + new_libraries="$new_libraries $lib" + ;; + esac + done + libraries="$new_libraries" + fi + + for lib in $libraries; do + if echo $link_args | grep " $lib " > /dev/null || + echo $link_args | grep " $lib$" > /dev/null; then + : + else + link_args="$link_args $lib " + fi + done + + # The LIBS are just a bunch of -l* libraries necessary for the HDF5 + # module. It's okay if they're included twice in the compile line. + link_args="$link_args $H5BLD_LDFLAGS $H5BLD_LIBS" + + # User's CPPFLAGS and CFLAGS come after their H5BLD counterparts. User's + # LDFLAGS come just before clibpath, user's LIBS come after $link_objs and + # before the hdf5 libraries in $link_args, followed by any external library + # paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in + # from the hdf5 build. The order of the flags is intended to give precedence + # to the user's flags. + $SHOW $CLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CFLAGS $CFLAGS $LDFLAGS $clibpath $link_objs $LIBS $link_args $shared_link + status=$? +fi + +exit $status diff --git a/build/tools/misc/h5debug b/build/tools/misc/h5debug new file mode 100755 index 0000000..5517e62 --- /dev/null +++ b/build/tools/misc/h5debug @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5debug - temporary wrapper script for .libs/h5debug +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5debug program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5debug.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5debug:h5debug:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5debug:h5debug:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5debug:h5debug:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5debug' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/h5debug.o b/build/tools/misc/h5debug.o new file mode 100644 index 0000000..dbe1989 Binary files /dev/null and b/build/tools/misc/h5debug.o differ diff --git a/build/tools/misc/h5mkgrp b/build/tools/misc/h5mkgrp new file mode 100755 index 0000000..47093f9 --- /dev/null +++ b/build/tools/misc/h5mkgrp @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5mkgrp - temporary wrapper script for .libs/h5mkgrp +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5mkgrp program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5mkgrp.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5mkgrp:h5mkgrp:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5mkgrp:h5mkgrp:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5mkgrp:h5mkgrp:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5mkgrp' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/h5mkgrp.o b/build/tools/misc/h5mkgrp.o new file mode 100644 index 0000000..ef3dc12 Binary files /dev/null and b/build/tools/misc/h5mkgrp.o differ diff --git a/build/tools/misc/h5redeploy b/build/tools/misc/h5redeploy new file mode 100644 index 0000000..242459a --- /dev/null +++ b/build/tools/misc/h5redeploy @@ -0,0 +1,216 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# + +## Update HDF5 compiler tools after the HDF5 software has been installed ## +## in a new location. ## +## For help page, use "h5redeploy -help" ## +## ## + +# Constants definitions +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +# Function definitions + +# show help page +usage() { + # A wonderfully informative "usage" message. + echo "usage: $prog_name [OPTIONS]" + echo " OPTIONS:" + echo " -help|help This help message" + echo " -echo Show all the shell commands executed" + echo " -force No prompt, just do it" + echo " -prefix=DIR New directory to find HDF5 lib/ and include/" + echo " subdirectories [default: current directory]" + echo " -exec-prefix=DIR New directory to find HDF5 lib/" + echo " subdirectory [default: ]" + echo " -libdir=DIR New directory for the HDF5 lib directory" + echo " [default: /lib]" + echo " -includedir=DIR New directory for the HDF5 header files" + echo " [default: /include]" + echo " -tool=TOOL Tool to update. TOOL must be in the current" + echo " directory and writable. [default: $h5tools]" + echo " -show Show the commands without executing them" + echo " " + exit $EXIT_FAILURE +} + +# display variable values +dump_vars(){ + echo "====Showing all variable values=====" + echo prefix=$prefix + echo h5tools=$h5tools + echo "====End Showing=====" +} + +# show actions to be taken +show_action() +{ + echo "Update the following tools because they are now installed at a new directory" + for t in $foundtools; do + echo "${t}:" + echo " current setting=`sed -e '/^prefix=/s/prefix=//p' -e d $t`" + echo " new setting="\""$prefix"\" + done +} + + +# Report Error message +ERROR() +{ + echo "***ERROR***" + echo "$1" +} + +# Main +# +############################################################################ +## Installation directories: ## +## prefix architecture-independent files. ## +## exec_prefix architecture-dependent files, default is . ## +## libdir libraries, default is /lib. ## +## includedir header files, default is . ## +## Not used here: ## +## bindir executables, . ## +############################################################################ +# Initialization +h5tools="h5cc h5pcc h5fc h5pfc h5c++" # possible hdf5 tools +foundtools= # tools found and will be modified +fmode= # force mode, default is off +prefix= +exec_prefix= +libdir= +includedir= + +# Parse options +for arg in $@ ; do + case "$arg" in + -prefix=*) + prefix="`echo $arg | cut -f2 -d=`" + ;; + -exec-prefix=*) + exec_prefix="`echo $arg | cut -f2 -d=`" + ;; + -libdir=*) + libdir="`echo $arg | cut -f2 -d=`" + ;; + -includedir=*) + includedir="`echo $arg | cut -f2 -d=`" + ;; + -echo) + set -x + ;; + -show) + SHOW="echo" + ;; + -tool=*) + h5tools="`echo $arg | cut -f2 -d=`" + ;; + -help|help) + usage + ;; + -force) + fmode=yes + ;; + *) + ERROR "Unknown Option($arg)" + usage + exit $EXIT_FAILURE + ;; + esac +done + +# Set to default value, one above where i am, if not given by user +if [ -z "$prefix" ]; then + prefix=`(cd ..;pwd)` +fi +if [ -z "$exec_prefix" ]; then + exec_prefix='${prefix}' # use single quotes to prevent expansion of $ +fi +if [ -z "$libdir" ]; then + libdir='${exec_prefix}'/lib # use single quotes to prevent expansion of $ +fi +if [ -z "$includedir" ]; then + includedir='${prefix}'/include # use single quotes to prevent expansion of $ +fi + +for x in $h5tools; do + if [ -f $x ]; then + foundtools="$foundtools $x" + if [ ! -w $x ]; then + ERROR "h5tool($x) is not writable" + exit $EXIT_FAILURE + fi + fi +done + +if [ -z "$foundtools" ]; then + ERROR "found no tools to modify" + exit $EXIT_FAILURE +fi + +# Show actions to be taken and get consent +show_action +# Ask confirmation unless fmode is on +if [ x-$fmode = x- ]; then + echo "Continue? (yes/no)" + read ansx + ans=`echo $ansx | tr "[A-Z]" "[a-z]"` + if [ x-$ans != x-yes ]; then + echo ABORT. No tools changed. + exit $EXIT_FAILURE + fi +fi + + +# Create the update commands +CMDFILE=/tmp/h5redeploy.$$ +touch $CMDFILE +chmod 0600 $CMDFILE +echo "/^prefix=/c" >> $CMDFILE +echo prefix=\""$prefix"\" >> $CMDFILE +echo . >> $CMDFILE +echo "/^exec_prefix=/c" >> $CMDFILE +echo exec_prefix=\""$exec_prefix"\" >> $CMDFILE +echo . >> $CMDFILE +echo "/^libdir=/c" >> $CMDFILE +echo libdir=\""$libdir"\" >> $CMDFILE +echo . >> $CMDFILE +echo "/^includedir=/c" >> $CMDFILE +echo includedir=\""$includedir"\" >> $CMDFILE +echo . >> $CMDFILE +(echo w; echo q) >> $CMDFILE + + +# Update them +if [ "$SHOW" = "echo" ]; then + echo "===Update commands are:====" + cat $CMDFILE + echo "===End Update commands=====" +fi + +for t in $foundtools; do + echo Update $t ... + COMMAND="ed - $t" + if [ "$SHOW" = "echo" ]; then + echo $COMMAND + else + $COMMAND < $CMDFILE + fi +done + + +# Cleanup +rm -f $CMDFILE +exit $EXIT_SUCCESS diff --git a/build/tools/misc/h5repart b/build/tools/misc/h5repart new file mode 100755 index 0000000..50cec43 --- /dev/null +++ b/build/tools/misc/h5repart @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5repart - temporary wrapper script for .libs/h5repart +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5repart program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5repart.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5repart:h5repart:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5repart:h5repart:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5repart:h5repart:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5repart' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/h5repart.o b/build/tools/misc/h5repart.o new file mode 100644 index 0000000..613a4af Binary files /dev/null and b/build/tools/misc/h5repart.o differ diff --git a/build/tools/misc/h5repart_gentest b/build/tools/misc/h5repart_gentest new file mode 100755 index 0000000..7454e0c --- /dev/null +++ b/build/tools/misc/h5repart_gentest @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5repart_gentest - temporary wrapper script for .libs/h5repart_gentest +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5repart_gentest program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h5repart_gentest.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5repart_gentest:h5repart_gentest:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5repart_gentest:h5repart_gentest:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5repart_gentest:h5repart_gentest:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5repart_gentest' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/h5repart_gentest.chkexe b/build/tools/misc/h5repart_gentest.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/misc/h5repart_gentest.chklog b/build/tools/misc/h5repart_gentest.chklog new file mode 100644 index 0000000..eef8e77 --- /dev/null +++ b/build/tools/misc/h5repart_gentest.chklog @@ -0,0 +1,9 @@ +============================ + h5repart_gentest Test Log +============================ + PASSED +0.04user 0.02system 0:00.06elapsed 102%CPU (0avgtext+0avgdata 6904maxresident)k +0inputs+200outputs (0major+8682minor)pagefaults 0swaps + +Finished testing h5repart_gentest +============================ diff --git a/build/tools/misc/h5repart_gentest.o b/build/tools/misc/h5repart_gentest.o new file mode 100644 index 0000000..325b3bd Binary files /dev/null and b/build/tools/misc/h5repart_gentest.o differ diff --git a/build/tools/misc/repart_test b/build/tools/misc/repart_test new file mode 100755 index 0000000..ffac512 --- /dev/null +++ b/build/tools/misc/repart_test @@ -0,0 +1,228 @@ +#! /bin/sh + +# repart_test - temporary wrapper script for .libs/repart_test +# Generated by libtool (GNU libtool) 2.4.6 +# +# The repart_test program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file repart_test.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "repart_test:repart_test:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "repart_test:repart_test:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "repart_test:repart_test:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'repart_test' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/repart_test.o b/build/tools/misc/repart_test.o new file mode 100644 index 0000000..59224a0 Binary files /dev/null and b/build/tools/misc/repart_test.o differ diff --git a/build/tools/misc/talign b/build/tools/misc/talign new file mode 100755 index 0000000..6c747c5 --- /dev/null +++ b/build/tools/misc/talign @@ -0,0 +1,228 @@ +#! /bin/sh + +# talign - temporary wrapper script for .libs/talign +# Generated by libtool (GNU libtool) 2.4.6 +# +# The talign program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file talign.o ../../tools/lib/.libs/libh5tools.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "talign:talign:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "talign:talign:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "talign:talign:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'talign' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/misc/talign.chkexe b/build/tools/misc/talign.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/misc/talign.chklog b/build/tools/misc/talign.chklog new file mode 100644 index 0000000..f9d5a99 --- /dev/null +++ b/build/tools/misc/talign.chklog @@ -0,0 +1,9 @@ +============================ + talign Test Log +============================ +Testing alignment in compound datatypes PASSED +0.04user 0.02system 0:00.06elapsed 103%CPU (0avgtext+0avgdata 6908maxresident)k +0inputs+56outputs (0major+9712minor)pagefaults 0swaps + +Finished testing talign +============================ diff --git a/build/tools/misc/talign.o b/build/tools/misc/talign.o new file mode 100644 index 0000000..a46be39 Binary files /dev/null and b/build/tools/misc/talign.o differ diff --git a/build/tools/misc/testh5mkgrp.sh b/build/tools/misc/testh5mkgrp.sh new file mode 100644 index 0000000..b4698c7 --- /dev/null +++ b/build/tools/misc/testh5mkgrp.sh @@ -0,0 +1,327 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5mkgrp tool +# +# Quincey Koziol (koziol@hdfgroup.org) +# Tuesday, February 13, 2007 +# + +srcdir=../../../tools/misc + +TESTNAME=h5mkgrp +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +H5MKGRP=h5mkgrp # The tool name +H5MKGRP_BIN=`pwd`/$H5MKGRP # The path of the tool binary +H5LS=h5ls # The h5ls tool name +H5LS_ARGS=-vr # Arguments to the h5ls tool +H5LS_BIN=`pwd`/../h5ls/$H5LS # The path of the h5ls tool binary + +RM='rm -rf' +CMP='cmp' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/../" + +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" +# testfiles source dirs for tools +SRC_H5MKGRP_TESTFILES="$SRC_TOOLS/misc/testfiles" + +TESTDIR=./testgrp +test -d $TESTDIR || mkdir -p $TESTDIR + +###################################################################### +# test files +# -------------------------------------------------------------------- +# All the test files copy from source directory to test directory +# NOTE: Keep this framework to add/remove test files. +# Any test files from other tools can be used in this framework. +# This list are also used for checking exist. +# Comment '#' without space can be used. +# -------------------------------------------------------------------- + +CMP='cmp -s' +DIFF='diff -c' + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES=" +$SRC_H5MKGRP_TESTFILES/h5mkgrp_help.txt +$SRC_TOOLS_TESTFILES/h5mkgrp_single.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_single_v.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_single_p.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_single_l.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_several.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_several_v.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_several_p.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_several_l.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_nested_p.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_nested_lp.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_nested_mult_p.ls +$SRC_TOOLS_TESTFILES/h5mkgrp_nested_mult_lp.ls +" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_H5MKGRP_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +TESTING() +{ + SPACES=" " + echo "Testing $* $SPACES" |cut -c1-70 |tr -d '\012' +} + +# Source in the output filter function definitions. +. $srcdir/../../bin/output_filter.sh + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Verifying". +# +VERIFY_H5LS() +{ + SPACES=" " + echo "Verifying h5ls file structure $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Run a test and print PASS or *FAIL*. If h5mkgrp can complete +# with exit status 0, consider it pass. If a test fails then increment +# the `nerrors' global variable. +# Assumed arguments: +# $* arguments for h5mkgrp. + +TOOLTEST() +{ + TESTING $H5MKGRP $@ + ( + cd $TESTDIR + $RUNSERIAL $H5MKGRP_BIN $@ + ) > output.out + RET=$? + if [ $RET != 0 ]; then + echo "*FAILED*" + echo "failed result is:" + cat output.out + nerrors="`expr $nerrors + 1`" + else + echo " PASSED" + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f output.out + fi + fi +} + +# Call the h5ls tool to verify the correct output data in the destination file +# +H5LSTEST() +{ + expect="$TESTDIR/`basename $1 .h5`.ls" + actual="$TESTDIR/`basename $1 .h5`.out" + actual_sav=${actual}-sav + + # Stderr is included in stdout so that the diff can detect + # any unexpected output from that stream too. + VERIFY_H5LS $@ + ( + cd $TESTDIR + $RUNSERIAL $H5LS_BIN $H5LS_ARGS $@ + ) 2>&1 |sed 's/Modified:.*/Modified: XXXX-XX-XX XX:XX:XX XXX/' >$actual + + # save actual in case it is needed later. + cp $actual $actual_sav + STDOUT_FILTER $actual + STDERR_FILTER $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.ls) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.ls) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_sav + fi +} + +# Single run of tool +# +# Assumed arguments: +# $1 is test file name +# $2 is h5mkgrp options +# $* are groups to create +RUNTEST() +{ + FILEOUT=$1 + shift + H5MKGRP_ARGS=$1 + shift + + # Remove any output file left over from previous test run + rm -f $FILEOUT + + # Run test + TOOLTEST $H5MKGRP_ARGS $FILEOUT $@ + + # Verify that the file created above is correct + H5LSTEST $FILEOUT + + # Remove output file created, if the "no cleanup" environment variable is + # not defined + if test -z "$HDF5_NOCLEANUP"; then + rm -f $TESTDIR/$FILEOUT + fi +} + +# Single run of tool +# +# Assumed arguments: +# $1 is test expected output file +# $2 is h5mkgrp options +# $* are groups to create +CMPTEST() +{ + FILEOUT=$1 + expect="$TESTDIR/`basename $1 .h5`.txt" + actual="$TESTDIR/`basename $1 .h5`.out" + actual_err="$TESTDIR/`basename $1 .h5`.err" + shift + + # Stderr is included in stdout so that the diff can detect + # any unexpected output from that stream too. + TESTING $H5MKGRP $@ + ( + cd $TESTDIR + $RUNSERIAL $H5MKGRP_BIN $@ + ) >$actual 2>$actual_err + cat $actual_err >> $actual + + if [ ! -f $expect ]; then + # Create the expect file if it doesn't yet exist. + echo " CREATED" + cp $actual $expect + echo " Expected result (*.txt) missing" + nerrors="`expr $nerrors + 1`" + elif $CMP $expect $actual; then + echo " PASSED" + else + echo "*FAILED*" + echo " Expected result (*.txt) differs from actual result (*.out)" + nerrors="`expr $nerrors + 1`" + test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /' + fi + + # Clean up output file + if test -z "$HDF5_NOCLEANUP"; then + rm -f $actual $actual_err + fi +} + +############################################################################## +### T H E T E S T S ### +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# Check that help & version is displayed properly +CMPTEST h5mkgrp_help.h5 "-h" +#CMPTEST h5mkgrp_version.h5 "-V" + +# Create single group at root level +RUNTEST h5mkgrp_single.h5 " " single +RUNTEST h5mkgrp_single_v.h5 "-v" single +RUNTEST h5mkgrp_single_p.h5 "-p" single +RUNTEST h5mkgrp_single_l.h5 "-l" latest + +# Create several groups at root level +RUNTEST h5mkgrp_several.h5 " " one two +RUNTEST h5mkgrp_several_v.h5 "-v" one two +RUNTEST h5mkgrp_several_p.h5 "-p" one two +RUNTEST h5mkgrp_several_l.h5 "-l" one two + +# Create various nested groups +RUNTEST h5mkgrp_nested_p.h5 "-p" /one/two +RUNTEST h5mkgrp_nested_lp.h5 "-lp" /one/two +RUNTEST h5mkgrp_nested_mult_p.h5 "-p" /one/two /three/four +RUNTEST h5mkgrp_nested_mult_lp.h5 "-lp" /one/two /three/four + +# Clean up temporary files/directories +CLEAN_TESTFILES_AND_TESTDIR + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/misc/testh5mkgrp.sh.chkexe b/build/tools/misc/testh5mkgrp.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/misc/testh5mkgrp.sh.chklog b/build/tools/misc/testh5mkgrp.sh.chklog new file mode 100644 index 0000000..8c90571 --- /dev/null +++ b/build/tools/misc/testh5mkgrp.sh.chklog @@ -0,0 +1,34 @@ +============================ +testh5mkgrp.sh Test Log +============================ +Testing h5mkgrp -h PASSED +Testing h5mkgrp h5mkgrp_single.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single.h5 PASSED +Testing h5mkgrp -v h5mkgrp_single_v.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single_v.h5 PASSED +Testing h5mkgrp -p h5mkgrp_single_p.h5 single PASSED +Verifying h5ls file structure h5mkgrp_single_p.h5 PASSED +Testing h5mkgrp -l h5mkgrp_single_l.h5 latest PASSED +Verifying h5ls file structure h5mkgrp_single_l.h5 PASSED +Testing h5mkgrp h5mkgrp_several.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several.h5 PASSED +Testing h5mkgrp -v h5mkgrp_several_v.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_v.h5 PASSED +Testing h5mkgrp -p h5mkgrp_several_p.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_p.h5 PASSED +Testing h5mkgrp -l h5mkgrp_several_l.h5 one two PASSED +Verifying h5ls file structure h5mkgrp_several_l.h5 PASSED +Testing h5mkgrp -p h5mkgrp_nested_p.h5 /one/two PASSED +Verifying h5ls file structure h5mkgrp_nested_p.h5 PASSED +Testing h5mkgrp -lp h5mkgrp_nested_lp.h5 /one/two PASSED +Verifying h5ls file structure h5mkgrp_nested_lp.h5 PASSED +Testing h5mkgrp -p h5mkgrp_nested_mult_p.h5 /one/two /three/four PASSED +Verifying h5ls file structure h5mkgrp_nested_mult_p.h5 PASSED +Testing h5mkgrp -lp h5mkgrp_nested_mult_lp.h5 /one/two /three/four PASSED +Verifying h5ls file structure h5mkgrp_nested_mult_lp.h5 PASSED +All h5mkgrp tests passed. +0.51user 0.97system 0:01.23elapsed 120%CPU (0avgtext+0avgdata 7296maxresident)k +0inputs+1888outputs (0major+294489minor)pagefaults 0swaps + +Finished testing testh5mkgrp.sh +============================ diff --git a/build/tools/misc/testh5repart.sh b/build/tools/misc/testh5repart.sh new file mode 100644 index 0000000..6ee5887 --- /dev/null +++ b/build/tools/misc/testh5repart.sh @@ -0,0 +1,195 @@ +#! /bin/sh +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# Tests for the h5repart tool + +srcdir=../../../tools/misc + +TESTNAME=h5repart +EXIT_SUCCESS=0 +EXIT_FAILURE=1 + +REPART=./h5repart # The tool name +REPART_BIN=`pwd`/$REPART # The path of the tool binary + +REPARTED_FAM=repart_test # The test name +REPARTED_FAM_BIN=`pwd`/$REPARTED_FAM # The path of the test binary + +RM='rm -rf' +CMP='cmp -s' +DIFF='diff -c' +CP='cp' +DIRNAME='dirname' +LS='ls' +AWK='awk' + +nerrors=0 +verbose=yes + +# source dirs +SRC_TOOLS="$srcdir/.." + +SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" + +TESTDIR=./testrepart +test -d $TESTDIR || mkdir -p $TESTDIR + +# +# copy test files and expected output files from source dirs to test dir +# +COPY_TESTFILES=" +$SRC_TOOLS_TESTFILES/family_file00000.h5 +$SRC_TOOLS_TESTFILES/family_file00001.h5 +$SRC_TOOLS_TESTFILES/family_file00002.h5 +$SRC_TOOLS_TESTFILES/family_file00003.h5 +$SRC_TOOLS_TESTFILES/family_file00004.h5 +$SRC_TOOLS_TESTFILES/family_file00005.h5 +$SRC_TOOLS_TESTFILES/family_file00006.h5 +$SRC_TOOLS_TESTFILES/family_file00007.h5 +$SRC_TOOLS_TESTFILES/family_file00008.h5 +$SRC_TOOLS_TESTFILES/family_file00009.h5 +$SRC_TOOLS_TESTFILES/family_file00010.h5 +$SRC_TOOLS_TESTFILES/family_file00011.h5 +$SRC_TOOLS_TESTFILES/family_file00012.h5 +$SRC_TOOLS_TESTFILES/family_file00013.h5 +$SRC_TOOLS_TESTFILES/family_file00014.h5 +$SRC_TOOLS_TESTFILES/family_file00015.h5 +$SRC_TOOLS_TESTFILES/family_file00016.h5 +$SRC_TOOLS_TESTFILES/family_file00017.h5 +" + +COPY_TESTFILES_TO_TESTDIR() +{ + # copy test files. Used -f to make sure get a new copy + for tstfile in $COPY_TESTFILES + do + # ignore '#' comment + echo $tstfile | tr -d ' ' | grep '^#' > /dev/null + RET=$? + if [ $RET -eq 1 ]; then + # skip cp if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=`$DIRNAME $tstfile` + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $CP -f $tstfile $TESTDIR + if [ $? -ne 0 ]; then + echo "Error: FAILED to copy $tstfile ." + + # Comment out this to CREATE expected file + exit $EXIT_FAILURE + fi + fi + fi + done +} + +CLEAN_TESTFILES_AND_TESTDIR() +{ + # skip rm if srcdir is same as destdir + # this occurs when build/test performed in source dir and + # make cp fail + SDIR=$SRC_TOOLS_TESTFILES + INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` + INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` + if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then + $RM $TESTDIR + fi +} + +# Print a line-line message left justified in a field of 70 characters +# beginning with the word "Testing". +# +TESTING() { + SPACES=" " + echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' +} + +# Run a test and print PASS or *FAIL*. If a test fails then increment +# the `nerrors' global variable. +# +TOOLTEST() { + # Run tool test. + TESTING $REPART $@ + ( +# echo + cd $TESTDIR + $RUNSERIAL $REPART_BIN $@ + ) + + if test $? -eq 0; then + echo " PASSED" + else + echo " FAILED" + nerrors=`expr $nerrors + 1` + fi +} + +OUTPUTTEST() { + # Run test program. + TESTING $REPARTED_FAM $@ + ( + cd $TESTDIR + $RUNSERIAL $REPARTED_FAM_BIN $@ + ) + + if test $? -eq 0; then + echo " PASSED" + else + echo " FAILED" + nerrors=`expr $nerrors + 1` + fi +} + +# Print a "SKIP" message +SKIP() { + TESTING $REPART $@ + echo " -SKIP-" +} + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## +# prepare for test +COPY_TESTFILES_TO_TESTDIR + +# repartition family member size to 20,000 bytes. +TOOLTEST -m 20000 family_file%05d.h5 fst_family%05d.h5 +# repartition family member size to 5 KB. +TOOLTEST -m 5k family_file%05d.h5 scd_family%05d.h5 +# convert family file to sec2 file of 20,000 bytes +TOOLTEST -m 20000 -family_to_sec2 family_file%05d.h5 family_to_sec2.h5 + +# test the output files repartitioned above. +OUTPUTTEST +echo + +# Clean up output file +CLEAN_TESTFILES_AND_TESTDIR + +if test -z "$HDF5_NOCLEANUP"; then + cd $actual_dir + rm -f fst_family*.h5 scd_family*.h5 family_to_sec2.h5 +fi + +if test $nerrors -eq 0 ; then + echo "All $TESTNAME tests passed." + exit $EXIT_SUCCESS +else + echo "$TESTNAME tests failed with $nerrors errors." + exit $EXIT_FAILURE +fi diff --git a/build/tools/misc/testh5repart.sh.chkexe b/build/tools/misc/testh5repart.sh.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/misc/testh5repart.sh.chklog b/build/tools/misc/testh5repart.sh.chklog new file mode 100644 index 0000000..51c6f24 --- /dev/null +++ b/build/tools/misc/testh5repart.sh.chklog @@ -0,0 +1,14 @@ +============================ +testh5repart.sh Test Log +============================ +Testing ./h5repart -m 20000 family_file%05d.h5 fst_family%05d.h5 PASSED +Testing ./h5repart -m 5k family_file%05d.h5 scd_family%05d.h5 PASSED +Testing ./h5repart -m 20000 -family_to_sec2 family_file%05d.h5 family_ PASSED +Testing repart_test PASSED + +All h5repart tests passed. +0.18user 0.31system 0:00.39elapsed 128%CPU (0avgtext+0avgdata 6928maxresident)k +0inputs+400outputs (0major+102046minor)pagefaults 0swaps + +Finished testing testh5repart.sh +============================ diff --git a/build/tools/perform/.deps/chunk.Po b/build/tools/perform/.deps/chunk.Po new file mode 100644 index 0000000..e35bf1e --- /dev/null +++ b/build/tools/perform/.deps/chunk.Po @@ -0,0 +1,203 @@ +chunk.o: ../../../tools/perform/chunk.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h /usr/include/assert.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/xlocale.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/include/string.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +/usr/include/assert.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/xlocale.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: diff --git a/build/tools/perform/.deps/iopipe.Po b/build/tools/perform/.deps/iopipe.Po new file mode 100644 index 0000000..4fe0be3 --- /dev/null +++ b/build/tools/perform/.deps/iopipe.Po @@ -0,0 +1,350 @@ +iopipe.o: ../../../tools/perform/iopipe.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/perform/.deps/overhead.Po b/build/tools/perform/.deps/overhead.Po new file mode 100644 index 0000000..6f16851 --- /dev/null +++ b/build/tools/perform/.deps/overhead.Po @@ -0,0 +1,350 @@ +overhead.o: ../../../tools/perform/overhead.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/perform/.deps/perf.Po b/build/tools/perform/.deps/perf.Po new file mode 100644 index 0000000..7775c69 --- /dev/null +++ b/build/tools/perform/.deps/perf.Po @@ -0,0 +1,350 @@ +perf.o: ../../../tools/perform/perf.c /usr/include/stdc-predef.h \ + ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ + ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/perform/.deps/perf_meta.Po b/build/tools/perform/.deps/perf_meta.Po new file mode 100644 index 0000000..4140300 --- /dev/null +++ b/build/tools/perform/.deps/perf_meta.Po @@ -0,0 +1,353 @@ +perf_meta.o: ../../../tools/perform/perf_meta.c \ + /usr/include/stdc-predef.h ../../../test/h5test.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h + +/usr/include/stdc-predef.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: diff --git a/build/tools/perform/.deps/pio_engine.Po b/build/tools/perform/.deps/pio_engine.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/tools/perform/.deps/pio_engine.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/tools/perform/.deps/pio_perf.Po b/build/tools/perform/.deps/pio_perf.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/build/tools/perform/.deps/pio_perf.Po @@ -0,0 +1 @@ +# dummy diff --git a/build/tools/perform/.deps/sio_engine.Po b/build/tools/perform/.deps/sio_engine.Po new file mode 100644 index 0000000..5706dac --- /dev/null +++ b/build/tools/perform/.deps/sio_engine.Po @@ -0,0 +1,370 @@ +sio_engine.o: ../../../tools/perform/sio_engine.c \ + /usr/include/stdc-predef.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/uio.h /usr/include/bits/stat.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/xlocale.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/stat.h ../../../tools/perform/sio_perf.h \ + ../../../tools/lib/io_timer.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h ../../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/string.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../test/h5test.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/xlocale.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/stat.h: + +../../../tools/perform/sio_perf.h: + +../../../tools/lib/io_timer.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/string.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../test/h5test.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/perform/.deps/sio_perf.Po b/build/tools/perform/.deps/sio_perf.Po new file mode 100644 index 0000000..e7fdfce --- /dev/null +++ b/build/tools/perform/.deps/sio_perf.Po @@ -0,0 +1,370 @@ +sio_perf.o: ../../../tools/perform/sio_perf.c /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ + /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/sigset.h \ + /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ + /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h ../../../src/hdf5.h \ + ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ + ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ + ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ + ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ + ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ + ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ + ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ + ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ + ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ + ../../../src/H5FDdirect.h ../../../tools/perform/sio_perf.h \ + ../../../tools/lib/io_timer.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h ../../../src/H5private.h /usr/include/assert.h \ + /usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/string.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ + /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \ + /usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \ + /usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \ + /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ + /usr/include/sys/ttydefaults.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../test/h5test.h \ + ../../../tools/lib/h5tools.h ../../../tools/lib/h5tools_error.h \ + ../../../src/H5Epublic.h ../../../tools/lib/h5tools_str.h \ + ../../../tools/lib/h5tools_utils.h + +/usr/include/stdc-predef.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/xlocale.h: + +/usr/include/sys/types.h: + +/usr/include/time.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../tools/perform/sio_perf.h: + +../../../tools/lib/io_timer.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../test/h5test.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: diff --git a/build/tools/perform/.deps/zip_perf.Po b/build/tools/perform/.deps/zip_perf.Po new file mode 100644 index 0000000..31ef52e --- /dev/null +++ b/build/tools/perform/.deps/zip_perf.Po @@ -0,0 +1,369 @@ +zip_perf.o: ../../../tools/perform/zip_perf.c /usr/include/stdc-predef.h \ + ../../../test/h5test.h ../../../src/hdf5.h ../../../src/H5public.h \ + ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ + /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/sigset.h /usr/include/bits/time.h \ + /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ + ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ + ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ + ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ + ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ + ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ + /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ + ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ + ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ + ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ + ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ + ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ + ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ + ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ + ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ + ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ + /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ + /usr/include/bits/stat.h \ + /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ + /usr/include/math.h /usr/include/bits/huge_val.h \ + /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ + /usr/include/bits/inf.h /usr/include/bits/nan.h \ + /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ + /usr/include/sys/stat.h /usr/include/sys/time.h \ + /usr/include/bits/timex.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ + /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ + /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ + /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ + /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ + /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ + ../../../src/H5overflow.h ../../../tools/lib/h5tools.h \ + ../../../tools/lib/h5tools_error.h ../../../src/H5Epublic.h \ + ../../../tools/lib/h5tools_str.h ../../../tools/lib/h5tools_utils.h \ + /usr/include/zlib.h /usr/include/zconf.h + +/usr/include/stdc-predef.h: + +../../../test/h5test.h: + +../../../src/hdf5.h: + +../../../src/H5public.h: + +../../src/H5pubconf.h: + +../../../src/H5version.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/wordsize.h: + +/usr/include/gnu/stubs.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/types.h: + +/usr/include/bits/types.h: + +/usr/include/bits/typesizes.h: + +/usr/include/time.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: + +/usr/include/endian.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/byteswap-16.h: + +/usr/include/sys/select.h: + +/usr/include/bits/select.h: + +/usr/include/bits/sigset.h: + +/usr/include/bits/time.h: + +/usr/include/sys/sysmacros.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/stdio_lim.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: + +/usr/include/stdint.h: + +/usr/include/bits/wchar.h: + +/usr/include/inttypes.h: + +../../../src/H5api_adpt.h: + +../../../src/H5Apublic.h: + +../../../src/H5Ipublic.h: + +../../../src/H5Opublic.h: + +../../../src/H5Lpublic.h: + +../../../src/H5Tpublic.h: + +../../../src/H5ACpublic.h: + +../../../src/H5Cpublic.h: + +../../../src/H5Dpublic.h: + +../../../src/H5Epublic.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: + +/usr/include/bits/sys_errlist.h: + +../../../src/H5Epubgen.h: + +../../../src/H5Fpublic.h: + +../../../src/H5FDpublic.h: + +../../../src/H5Gpublic.h: + +../../../src/H5MMpublic.h: + +../../../src/H5Ppublic.h: + +../../../src/H5Zpublic.h: + +../../../src/H5PLpublic.h: + +../../../src/H5Rpublic.h: + +../../../src/H5Spublic.h: + +../../../src/H5FDcore.h: + +../../../src/H5FDfamily.h: + +../../../src/H5FDlog.h: + +../../../src/H5FDmpi.h: + +../../../src/H5FDmpio.h: + +../../../src/H5FDmulti.h: + +../../../src/H5FDsec2.h: + +../../../src/H5FDstdio.h: + +../../../src/H5FDdirect.h: + +../../../src/H5private.h: + +/usr/include/assert.h: + +/usr/include/ctype.h: + +/usr/include/xlocale.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/bits/fcntl-linux.h: + +/usr/include/bits/uio.h: + +/usr/include/bits/stat.h: + +/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: + +/usr/include/math.h: + +/usr/include/bits/huge_val.h: + +/usr/include/bits/huge_valf.h: + +/usr/include/bits/huge_vall.h: + +/usr/include/bits/inf.h: + +/usr/include/bits/nan.h: + +/usr/include/bits/mathdef.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/bits/sigstack.h: + +/usr/include/sys/ucontext.h: + +/usr/include/bits/sigthread.h: + +/usr/include/stdlib.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/alloca.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/string.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/environments.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/sys/wait.h: + +/usr/include/pwd.h: + +/usr/include/sys/stat.h: + +/usr/include/sys/time.h: + +/usr/include/bits/timex.h: + +/usr/include/setjmp.h: + +/usr/include/bits/setjmp.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/sys/ioctl.h: + +/usr/include/bits/ioctls.h: + +/usr/include/asm/ioctls.h: + +/usr/include/asm-generic/ioctls.h: + +/usr/include/linux/ioctl.h: + +/usr/include/asm/ioctl.h: + +/usr/include/asm-generic/ioctl.h: + +/usr/include/bits/ioctl-types.h: + +/usr/include/sys/ttydefaults.h: + +/usr/include/dlfcn.h: + +/usr/include/bits/dlfcn.h: + +/usr/include/dirent.h: + +/usr/include/bits/dirent.h: + +../../../src/H5win32defs.h: + +../../../src/H5overflow.h: + +../../../tools/lib/h5tools.h: + +../../../tools/lib/h5tools_error.h: + +../../../src/H5Epublic.h: + +../../../tools/lib/h5tools_str.h: + +../../../tools/lib/h5tools_utils.h: + +/usr/include/zlib.h: + +/usr/include/zconf.h: diff --git a/build/tools/perform/.libs/chunk b/build/tools/perform/.libs/chunk new file mode 100755 index 0000000..536d2d9 Binary files /dev/null and b/build/tools/perform/.libs/chunk differ diff --git a/build/tools/perform/.libs/h5perf_serial b/build/tools/perform/.libs/h5perf_serial new file mode 100755 index 0000000..4e39142 Binary files /dev/null and b/build/tools/perform/.libs/h5perf_serial differ diff --git a/build/tools/perform/.libs/iopipe b/build/tools/perform/.libs/iopipe new file mode 100755 index 0000000..eb95b3c Binary files /dev/null and b/build/tools/perform/.libs/iopipe differ diff --git a/build/tools/perform/.libs/lt-chunk b/build/tools/perform/.libs/lt-chunk new file mode 100755 index 0000000..bf33ac4 Binary files /dev/null and b/build/tools/perform/.libs/lt-chunk differ diff --git a/build/tools/perform/.libs/lt-h5perf_serial b/build/tools/perform/.libs/lt-h5perf_serial new file mode 100755 index 0000000..7fab085 Binary files /dev/null and b/build/tools/perform/.libs/lt-h5perf_serial differ diff --git a/build/tools/perform/.libs/lt-iopipe b/build/tools/perform/.libs/lt-iopipe new file mode 100755 index 0000000..4bf83c2 Binary files /dev/null and b/build/tools/perform/.libs/lt-iopipe differ diff --git a/build/tools/perform/.libs/lt-overhead b/build/tools/perform/.libs/lt-overhead new file mode 100755 index 0000000..1592e73 Binary files /dev/null and b/build/tools/perform/.libs/lt-overhead differ diff --git a/build/tools/perform/.libs/lt-perf_meta b/build/tools/perform/.libs/lt-perf_meta new file mode 100755 index 0000000..bc1183f Binary files /dev/null and b/build/tools/perform/.libs/lt-perf_meta differ diff --git a/build/tools/perform/.libs/lt-zip_perf b/build/tools/perform/.libs/lt-zip_perf new file mode 100755 index 0000000..8f10080 Binary files /dev/null and b/build/tools/perform/.libs/lt-zip_perf differ diff --git a/build/tools/perform/.libs/overhead b/build/tools/perform/.libs/overhead new file mode 100755 index 0000000..f8b85a5 Binary files /dev/null and b/build/tools/perform/.libs/overhead differ diff --git a/build/tools/perform/.libs/perf b/build/tools/perform/.libs/perf new file mode 100755 index 0000000..a55c220 Binary files /dev/null and b/build/tools/perform/.libs/perf differ diff --git a/build/tools/perform/.libs/perf_meta b/build/tools/perform/.libs/perf_meta new file mode 100755 index 0000000..b2e8cfc Binary files /dev/null and b/build/tools/perform/.libs/perf_meta differ diff --git a/build/tools/perform/.libs/zip_perf b/build/tools/perform/.libs/zip_perf new file mode 100755 index 0000000..0d4eb22 Binary files /dev/null and b/build/tools/perform/.libs/zip_perf differ diff --git a/build/tools/perform/Makefile b/build/tools/perform/Makefile new file mode 100644 index 0000000..4be36af --- /dev/null +++ b/build/tools/perform/Makefile @@ -0,0 +1,1576 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/perform/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# +# Copyright by The HDF Group. +# Copyright by the Board of Trustees of the University of Illinois. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# +# HDF5 Library Performance Makefile(.in) +# + +VPATH = ../../../tools/perform +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/hdf5 +pkgincludedir = $(includedir)/hdf5 +pkglibdir = $(libdir)/hdf5 +pkglibexecdir = $(libexecdir)/hdf5 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +bin_PROGRAMS = \ + h5perf_serial$(EXEEXT) +#bin_PROGRAMS = \ +# h5perf_serial$(EXEEXT) \ +# h5perf$(EXEEXT) +check_PROGRAMS = iopipe$(EXEEXT) chunk$(EXEEXT) overhead$(EXEEXT) \ + zip_perf$(EXEEXT) perf_meta$(EXEEXT) $(am__EXEEXT_2) \ + perf$(EXEEXT) +TESTS = $(am__EXEEXT_3) +subdir = tools/perform +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ + $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/H5config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +am__EXEEXT_1 = +#am__EXEEXT_2 = $(am__EXEEXT_1) +PROGRAMS = $(bin_PROGRAMS) +chunk_SOURCES = chunk.c +chunk_OBJECTS = chunk.$(OBJEXT) +chunk_LDADD = $(LDADD) +chunk_DEPENDENCIES = $(LIBHDF5) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +am_h5perf_OBJECTS = pio_perf.$(OBJEXT) pio_engine.$(OBJEXT) +h5perf_OBJECTS = $(am_h5perf_OBJECTS) +h5perf_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +h5perf_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5perf_LDFLAGS) $(LDFLAGS) -o $@ +am_h5perf_serial_OBJECTS = sio_perf.$(OBJEXT) sio_engine.$(OBJEXT) +h5perf_serial_OBJECTS = $(am_h5perf_serial_OBJECTS) +h5perf_serial_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +h5perf_serial_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(h5perf_serial_LDFLAGS) $(LDFLAGS) -o $@ +iopipe_SOURCES = iopipe.c +iopipe_OBJECTS = iopipe.$(OBJEXT) +iopipe_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +overhead_SOURCES = overhead.c +overhead_OBJECTS = overhead.$(OBJEXT) +overhead_LDADD = $(LDADD) +overhead_DEPENDENCIES = $(LIBHDF5) +perf_SOURCES = perf.c +perf_OBJECTS = perf.$(OBJEXT) +perf_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +perf_meta_SOURCES = perf_meta.c +perf_meta_OBJECTS = perf_meta.$(OBJEXT) +perf_meta_DEPENDENCIES = $(LIBH5TEST) $(LIBHDF5) +zip_perf_SOURCES = zip_perf.c +zip_perf_OBJECTS = zip_perf.$(OBJEXT) +zip_perf_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/bin/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = chunk.c $(h5perf_SOURCES) $(h5perf_serial_SOURCES) iopipe.c \ + overhead.c perf.c perf_meta.c zip_perf.c +DIST_SOURCES = chunk.c $(h5perf_SOURCES) $(h5perf_serial_SOURCES) \ + iopipe.c overhead.c perf.c perf_meta.c zip_perf.c +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +am__EXEEXT_3 = iopipe$(EXEEXT) chunk$(EXEEXT) overhead$(EXEEXT) \ + zip_perf$(EXEEXT) perf_meta$(EXEEXT) h5perf_serial$(EXEEXT) \ + $(am__EXEEXT_2) +TEST_SUITE_LOG = test-suite.log +LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.sh.log=.log) +SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver +SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ + $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ + $(top_srcdir)/config/commence.am \ + $(top_srcdir)/config/conclude.am COPYING +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 +ADD_PARALLEL_FILES = no +AMTAR = $${TAR-tar} + +# H5_CFLAGS holds flags that should be used when building hdf5, +# but which should not be exported to h5cc for building other programs. +# AM_CFLAGS is an automake construct which should be used by Makefiles +# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. +# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. +AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ + -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib +AM_CXXFLAGS = +AM_DEFAULT_VERBOSITY = 0 +AM_FCFLAGS = +AM_LDFLAGS = +AM_MAKEFLAGS = +AR = ar +AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf +AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader +AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 +AWK = gawk +BYTESEX = little-endian +CC = gcc +CCDEPMODE = depmode=gcc3 +CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) +CFLAGS = +CLEARFILEBUF = yes +CODESTACK = no +CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 +CONFIG_MODE = development +CONFIG_USER = lrknox@jelly +CPP = gcc -E +CPPFLAGS = +CXX = no +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = +CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) +CYGPATH_W = echo +DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z +DEFAULT_API_VERSION = v18 +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DEPRECATED_SYMBOLS = yes +DIRECT_VFD = no +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +EXTERNAL_FILTERS = deflate(zlib) + +# Make sure that these variables are exported to the Makefiles +F9XMODEXT = +F9XMODFLAG = +F9XSUFFIXFLAG = +FC = no +FC2003 = +FCFLAGS = +FCFLAGS_f90 = +FCLIBS = +FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) +FGREP = /usr/bin/grep -F +FSEARCH_DIRS = +GREP = /usr/bin/grep +H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g +H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API +H5_CXXFLAGS = +H5_FCFLAGS = +H5_FORTRAN_SHARED = no +H5_LDFLAGS = +H5_VERSION = 1.8.21-pre1 +HADDR_T = +HAVE_DMALLOC = no +HAVE_FORTRAN_2003 = +HAVE_PTHREAD = +HDF5_HL = yes +HDF5_INTERFACES = +HDF_CXX = no +HDF_FORTRAN = no +HDF_FORTRAN2003 = no +HID_T = +HL = hl +HL_FOR = +HSIZE_T = +HSSIZE_T = +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INSTRUMENT = yes +INSTRUMENT_LIBRARY = yes +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBOBJS = +LIBS = -lz -ldl -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LL_PATH = +LN_S = ln -s +LTLIBOBJS = +LT_STATIC_EXEC = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /usr/bin/mkdir -p +MPE = no +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJECT_NAMELEN_DEFAULT_F = +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = hdf5 +PACKAGE_BUGREPORT = help@hdfgroup.org +PACKAGE_NAME = HDF5 +PACKAGE_STRING = HDF5 1.8.21-pre1 +PACKAGE_TARNAME = hdf5 +PACKAGE_URL = +PACKAGE_VERSION = 1.8.21-pre1 +PARALLEL = no +PATH_SEPARATOR = : +PERL = perl +RANLIB = ranlib +ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build +RUNPARALLEL = +RUNSERIAL = +R_INTEGER = +R_LARGE = +SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SIZE_T = +STATIC_EXEC = no +STATIC_SHARED = static, shared +STRICT_FORMAT_CHECKS = yes +STRIP = strip +TESTPARALLEL = +THREADSAFE = no +TIME = time +TR = /usr/bin/tr +TRACE_API = yes +UNAME_CYGWIN = no +UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux +USE_FILTER_DEFLATE = yes +USE_FILTER_SZIP = no +USINGMEMCHECKER = no +VERSION = 1.8.21-pre1 +WORDS_BIGENDIAN = no +abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform +abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../tools/perform +abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build +abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. +ac_ct_AR = +ac_ct_CC = gcc +ac_ct_CXX = +ac_ct_DUMPBIN = +ac_ct_FC = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share + +# Install directories that automake doesn't know about +docdir = $(exec_prefix)/doc +dvidir = ${docdir} +enable_shared = yes +enable_static = yes +exec_prefix = ${prefix} +fortran_linux_linker_option = +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = ../../../tools/perform +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../../.. + +# Shell commands used in Makefiles +RM = rm -f +CP = cp + +# Some machines need a command to run executables; this is that command +# so that our tests will run. +# We use RUNEXEC instead of RUNSERIAL directly because it may be that +# some tests need to be run with a different command. Older versions +# of the makefiles used the command +# $(LIBTOOL) --mode=execute +# in some directories, for instance. +RUNEXEC = $(RUNSERIAL) + +# Libraries to link to while building +LIBHDF5 = $(top_builddir)/src/libhdf5.la +LIBH5TEST = $(top_builddir)/test/libh5test.la +LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la +LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la +LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la +LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la +LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la +LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la +LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la + +# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below +# has been removed. According to the official description of DESTDIR by Gnu at +# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is +# prepended to the normal and complete install path that it precedes for the +# purpose of installing in a temporary directory which is useful for building +# rpms and other packages. The '/' after ${DESTDIR} will be followed by another +# '/' at the beginning of the normal install path. When DESTDIR is empty the +# path then begins with '//', which is incorrect and causes problems at least for +# Cygwin. + +# Scripts used to build examples +# If only shared libraries have been installed, have h5cc build examples with +# shared libraries instead of static libraries +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ +ACLOCAL_AMFLAGS = "-I m4" + +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + +# .chkexe files are used to mark tests that have run successfully. +# .chklog files are output from those tests. +# *.clog and *.clog2 are from the MPE option. +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 + +# Add h5perf and h5perf_serial specific linker flags here +h5perf_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +h5perf_serial_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) + +# Some programs are not built or run by default, but can be built by hand or by +# specifying --enable-build-all at configure time. +# Also, some of these programs should only be built in parallel. +# Currently there is no such program. +#PARA_BUILD_ALL = +#BUILD_ALL_PROGS = $(PARA_BUILD_ALL) + +# Define programs that will be run in 'make check' +# List them in the order they should be run. +# Parallel test programs. +#TEST_PROG_PARA = h5perf perf +# Serial test programs. +TEST_PROG = iopipe chunk overhead zip_perf perf_meta h5perf_serial $(BUILD_ALL_PROGS) +h5perf_SOURCES = pio_perf.c pio_engine.c +h5perf_serial_SOURCES = sio_perf.c sio_engine.c + +# These are the files that `make clean' (and derivatives) will remove from +# this directory. +CLEANFILES = *.h5 *.raw *.dat x-gnuplot perftest.out + +# All of the programs depend on the main hdf5 library, and some of them +# depend on test or tools library. +LDADD = $(LIBHDF5) +h5perf_LDADD = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +h5perf_serial_LDADD = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +perf_LDADD = $(LIBH5TEST) $(LIBHDF5) +iopipe_LDADD = $(LIBH5TEST) $(LIBHDF5) +zip_perf_LDADD = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) +perf_meta_LDADD = $(LIBH5TEST) $(LIBHDF5) + +# Automake needs to be taught how to build lib, dyn, progs, and tests targets. +# These will be filled in automatically for the most part (e.g., +# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and +# EXTRA_TEST variables are supplied to allow the user to force targets to +# be built at certain times. +LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ + $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) + +PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ + $(EXTRA_PROG) + +chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) +TEST_EXTENSIONS = .sh +SH_LOG_COMPILER = $(SHELL) +AM_SH_LOG_FLAGS = +REALTIMEOUTPUT = $(realtimeOutput) +TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) +TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) +TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) +TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/perform/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tools/perform/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +chunk$(EXEEXT): $(chunk_OBJECTS) $(chunk_DEPENDENCIES) $(EXTRA_chunk_DEPENDENCIES) + @rm -f chunk$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(chunk_OBJECTS) $(chunk_LDADD) $(LIBS) + +h5perf$(EXEEXT): $(h5perf_OBJECTS) $(h5perf_DEPENDENCIES) $(EXTRA_h5perf_DEPENDENCIES) + @rm -f h5perf$(EXEEXT) + $(AM_V_CCLD)$(h5perf_LINK) $(h5perf_OBJECTS) $(h5perf_LDADD) $(LIBS) + +h5perf_serial$(EXEEXT): $(h5perf_serial_OBJECTS) $(h5perf_serial_DEPENDENCIES) $(EXTRA_h5perf_serial_DEPENDENCIES) + @rm -f h5perf_serial$(EXEEXT) + $(AM_V_CCLD)$(h5perf_serial_LINK) $(h5perf_serial_OBJECTS) $(h5perf_serial_LDADD) $(LIBS) + +iopipe$(EXEEXT): $(iopipe_OBJECTS) $(iopipe_DEPENDENCIES) $(EXTRA_iopipe_DEPENDENCIES) + @rm -f iopipe$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(iopipe_OBJECTS) $(iopipe_LDADD) $(LIBS) + +overhead$(EXEEXT): $(overhead_OBJECTS) $(overhead_DEPENDENCIES) $(EXTRA_overhead_DEPENDENCIES) + @rm -f overhead$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(overhead_OBJECTS) $(overhead_LDADD) $(LIBS) + +perf$(EXEEXT): $(perf_OBJECTS) $(perf_DEPENDENCIES) $(EXTRA_perf_DEPENDENCIES) + @rm -f perf$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(perf_OBJECTS) $(perf_LDADD) $(LIBS) + +perf_meta$(EXEEXT): $(perf_meta_OBJECTS) $(perf_meta_DEPENDENCIES) $(EXTRA_perf_meta_DEPENDENCIES) + @rm -f perf_meta$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(perf_meta_OBJECTS) $(perf_meta_LDADD) $(LIBS) + +zip_perf$(EXEEXT): $(zip_perf_OBJECTS) $(zip_perf_DEPENDENCIES) $(EXTRA_zip_perf_DEPENDENCIES) + @rm -f zip_perf$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(zip_perf_OBJECTS) $(zip_perf_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/chunk.Po +include ./$(DEPDIR)/iopipe.Po +include ./$(DEPDIR)/overhead.Po +include ./$(DEPDIR)/perf.Po +include ./$(DEPDIR)/perf_meta.Po +include ./$(DEPDIR)/pio_engine.Po +include ./$(DEPDIR)/pio_perf.Po +include ./$(DEPDIR)/sio_engine.Po +include ./$(DEPDIR)/sio_perf.Po +include ./$(DEPDIR)/zip_perf.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +iopipe.log: iopipe$(EXEEXT) + @p='iopipe$(EXEEXT)'; \ + b='iopipe'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +chunk.log: chunk$(EXEEXT) + @p='chunk$(EXEEXT)'; \ + b='chunk'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +overhead.log: overhead$(EXEEXT) + @p='overhead$(EXEEXT)'; \ + b='overhead'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +zip_perf.log: zip_perf$(EXEEXT) + @p='zip_perf$(EXEEXT)'; \ + b='zip_perf'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +perf_meta.log: perf_meta$(EXEEXT) + @p='perf_meta$(EXEEXT)'; \ + b='perf_meta'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +h5perf_serial.log: h5perf_serial$(EXEEXT) + @p='h5perf_serial$(EXEEXT)'; \ + b='h5perf_serial'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.sh.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.sh$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) all-local +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ + check-am clean clean-binPROGRAMS clean-checkPROGRAMS \ + clean-generic clean-libtool cscopelist-am ctags ctags-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ + pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ + uninstall-binPROGRAMS + +.PRECIOUS: Makefile + + +# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. +# This tells the Makefiles that these targets are not files to be built but +# commands that should be executed even if a file with the same name already +# exists. +.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ + build-tests check-clean check-install check-p check-s check-vfd \ + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp +# lib/progs/tests targets recurse into subdirectories. build-* targets +# build files in this directory. +build-lib: $(LIB) +build-progs: $(LIB) $(PROGS) +build-tests: $(LIB) $(PROGS) $(chk_TESTS) + +# General rule for recursive building targets. +# BUILT_SOURCES contain targets that need to be built before anything else +# in the directory (e.g., for Fortran type detection) +lib progs tests check-s check-p :: $(BUILT_SOURCES) + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# General rule for recursive cleaning targets. Like the rule above, +# but doesn't require building BUILT_SOURCES. +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS); do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + +# Tell Automake to build tests when the user types `make all' (this is +# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since +# Automake won't build them automatically, either. +all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) + +# make install-doc doesn't do anything outside of doc directory, but +# Makefiles should recognize it. +# UPDATE: docs no longer reside in this build tree, so this target +# is depreciated. +install-doc uninstall-doc: + @echo "Nothing to be done." + +# clean up files generated by tests so they can be re-run. +build-check-clean: + $(RM) -rf $(CHECK_CLEANFILES) + +# run check-clean whenever mostlyclean is run +mostlyclean-local: build-check-clean + +# check-install is just a synonym for installcheck +check-install: installcheck + +# Run each test in order, passing $(TEST_FLAGS) to the program. +# Since tests are done in a shell loop, "make -i" does apply inside it. +# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. +# The timestamps give a rough idea how much time the tests use. +# +# Note that targets in chk_TESTS (defined above) will be built when the user +# types 'make tests' or 'make check', but only programs in TEST_PROG, +# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. +check-TESTS: test + +test _test: + @$(MAKE) build-check-s + @$(MAKE) build-check-p + +# Actual execution of check-s. +build-check-s: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s + @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ + echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) + +# The dummy.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ + tname=$(@:.chkexe_=)$(EXEEXT);\ + log=$(@:.chkexe_=.chklog); \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + echo "No need to test $${tname} again."; \ + else \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee $${log}; \ + else \ + echo "============================" > $${log}; \ + fi; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ + else \ + echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ + fi; \ + else \ + echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ + else \ + echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "============================" | tee -a $${log}; \ + else \ + echo "============================" >> $${log}; \ + fi; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + else \ + srcdir="$(srcdir)" \ + $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $(@:.chkexe_=.chkexe) || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + fi; \ + echo "" >> $${log}; \ + if test -n "$(REALTIMEOUTPUT)"; then \ + echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ + echo "============================" | tee -a $${log}; \ + else \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + fi; \ + if test -z "$(REALTIMEOUTPUT)"; then \ + cat $${log}; \ + fi; \ + fi; \ + fi + +# The dummysh.chkexe here prevents the target from being +# empty if there are no tests in the current directory. +# $${log} is the log file. +# $${tname} is the name of test. +$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: + @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ + cmd=$(@:.chkexe_=);\ + tname=`basename $$cmd`;\ + chkname=`basename $(@:.chkexe_=.chkexe)`;\ + log=`basename $(@:.chkexe_=.chklog)`; \ + echo "============================"; \ + if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + echo "No need to test $${tname} again."; \ + else \ + echo "============================" > $${log}; \ + if test "X$(FORTRAN_API)" = "Xyes"; then \ + echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + elif test "X$(CXX_API)" = "Xyes"; then \ + echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ + echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + else \ + echo "Testing $${tname} $(TEST_FLAGS)"; \ + echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ + fi; \ + echo "============================" >> $${log}; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ + srcdir="$(srcdir)" \ + $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ + && touch $${chkname} || \ + (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ + (cat $${log} && false) || exit 1; \ + echo "" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ + echo "============================" >> $${log}; \ + echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ + fi; \ + echo "============================"; \ + fi + +# Actual execution of check-p. +build-check-p: $(LIB) $(PROGS) $(chk_TESTS) + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ + fi + @if test -n "$(TEST_PROG_PARA)"; then \ + echo "**** Hint ****"; \ + echo "Parallel test files reside in the current directory" \ + "by default."; \ + echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ + echo " HDF5_PARAPREFIX=/PFS/user/me"; \ + echo " export HDF5_PARAPREFIX"; \ + echo " make check"; \ + echo "**** end of Hint ****"; \ + fi + @for test in $(TEST_PROG_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ + RUNEXEC="$(RUNPARALLEL)" || exit 1; \ + fi; \ + done + @for test in $(TEST_SCRIPT_PARA) dummy; do \ + if test $$test != dummy; then \ + $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ + fi; \ + done + @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ + echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ + fi + +# Run test with different Virtual File Driver +check-vfd: $(LIB) $(PROGS) $(chk_TESTS) + @for vfd in $(VFD_LIST) dummy; do \ + if test $$vfd != dummy; then \ + echo "============================"; \ + echo "Testing Virtual File Driver $$vfd"; \ + echo "============================"; \ + $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ + HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ + fi; \ + done + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/build/tools/perform/chunk b/build/tools/perform/chunk new file mode 100755 index 0000000..6c09ead --- /dev/null +++ b/build/tools/perform/chunk @@ -0,0 +1,228 @@ +#! /bin/sh + +# chunk - temporary wrapper script for .libs/chunk +# Generated by libtool (GNU libtool) 2.4.6 +# +# The chunk program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file chunk.o ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "chunk:chunk:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "chunk:chunk:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "chunk:chunk:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'chunk' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/chunk.chkexe b/build/tools/perform/chunk.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/chunk.chklog b/build/tools/perform/chunk.chklog new file mode 100644 index 0000000..1b88361 --- /dev/null +++ b/build/tools/perform/chunk.chklog @@ -0,0 +1,50 @@ +============================ + chunk Test Log +============================ +Test CacheSz ChunkSz Effic +--------- -------- -------- -------- +Rowmaj-rd 25 0.50 1.00 +Rowmaj-rd 25 1.00 1.00 +Rowmaj-rd 25 1.50 0.75 +Rowmaj-rd 25 2.00 1.00 +Rowmaj-rd 25 2.50 0.83 +Rowmaj-rd 25 3.00 1.00 +Rowmaj-rd 25 3.50 0.87 +Rowmaj-rd 25 4.00 1.00 +Rowmaj-rd 25 4.50 0.91 +Rowmaj-rd 25 5.00 1.00 +Rowmaj-wr 25 0.50 0.50 +Rowmaj-wr 25 1.00 1.00 +Rowmaj-wr 25 1.50 0.45 +Rowmaj-wr 25 2.00 1.00 +Rowmaj-wr 25 2.50 0.57 +Rowmaj-wr 25 3.00 1.00 +Rowmaj-wr 25 3.50 0.63 +Rowmaj-wr 25 4.00 1.00 +Rowmaj-wr 25 4.50 0.72 +Rowmaj-wr 25 5.00 1.00 +Diag-rd 25 0.50 0.26 +Diag-rd 25 1.00 0.51 +Diag-rd 25 1.50 0.62 +Diag-rd 25 2.00 1.00 +Diag-rd 25 2.50 0.72 +Diag-rd 25 3.00 0.80 +Diag-rd 25 3.50 0.78 +Diag-rd 25 4.00 1.00 +Diag-rd 25 4.50 0.84 +Diag-rd 25 5.00 0.89 +Diag-wr 25 0.50 0.13 +Diag-wr 25 1.00 0.26 +Diag-wr 25 1.50 0.31 +Diag-wr 25 2.00 1.00 +Diag-wr 25 2.50 0.41 +Diag-wr 25 3.00 0.53 +Diag-wr 25 3.50 0.49 +Diag-wr 25 4.00 1.00 +Diag-wr 25 4.50 0.58 +Diag-wr 25 5.00 0.69 +0.21user 0.06system 0:00.27elapsed 100%CPU (0avgtext+0avgdata 8140maxresident)k +0inputs+7960outputs (0major+10235minor)pagefaults 0swaps + +Finished testing chunk +============================ diff --git a/build/tools/perform/chunk.h5 b/build/tools/perform/chunk.h5 new file mode 100644 index 0000000..8129cdc Binary files /dev/null and b/build/tools/perform/chunk.h5 differ diff --git a/build/tools/perform/chunk.o b/build/tools/perform/chunk.o new file mode 100644 index 0000000..333d9cd Binary files /dev/null and b/build/tools/perform/chunk.o differ diff --git a/build/tools/perform/h5perf_serial b/build/tools/perform/h5perf_serial new file mode 100755 index 0000000..a08a472 --- /dev/null +++ b/build/tools/perform/h5perf_serial @@ -0,0 +1,228 @@ +#! /bin/sh + +# h5perf_serial - temporary wrapper script for .libs/h5perf_serial +# Generated by libtool (GNU libtool) 2.4.6 +# +# The h5perf_serial program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file sio_perf.o sio_engine.o ../../tools/lib/.libs/libh5tools.a ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "h5perf_serial:h5perf_serial:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "h5perf_serial:h5perf_serial:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "h5perf_serial:h5perf_serial:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'h5perf_serial' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/h5perf_serial.chkexe b/build/tools/perform/h5perf_serial.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/h5perf_serial.chklog b/build/tools/perform/h5perf_serial.chklog new file mode 100644 index 0000000..10b2d74 --- /dev/null +++ b/build/tools/perform/h5perf_serial.chklog @@ -0,0 +1,56 @@ +============================ + h5perf_serial Test Log +============================ +HDF5 Library: Version 1.8.21-pre1 +==== Parameters ==== +IO API=posix hdf5 +Number of iterations=1 +Dataset size=100 200 +Transfer buffer size=10 20 +Dimension access order=1 2 +HDF5 data storage method=Contiguous +HDF5 file driver=sec2 +Env HDF5_PREFIX=not set +==== End of Parameters ==== + +Transfer Buffer Size (bytes): 200 +File Size(MB): 0.02 + IO API = POSIX + Write (1 iteration(s)): + Maximum Throughput: 11.13 MB/s + Average Throughput: 11.13 MB/s + Minimum Throughput: 11.13 MB/s + Write Open-Close (1 iteration(s)): + Maximum Throughput: 10.34 MB/s + Average Throughput: 10.34 MB/s + Minimum Throughput: 10.34 MB/s + Read (1 iteration(s)): + Maximum Throughput: 20.84 MB/s + Average Throughput: 20.84 MB/s + Minimum Throughput: 20.84 MB/s + Read Open-Close (1 iteration(s)): + Maximum Throughput: 20.55 MB/s + Average Throughput: 20.55 MB/s + Minimum Throughput: 20.55 MB/s + IO API = HDF5 + Write (1 iteration(s)): + Maximum Throughput: 13.85 MB/s + Average Throughput: 13.85 MB/s + Minimum Throughput: 13.85 MB/s + Write Open-Close (1 iteration(s)): + Maximum Throughput: 5.97 MB/s + Average Throughput: 5.97 MB/s + Minimum Throughput: 5.97 MB/s + Read (1 iteration(s)): + Maximum Throughput: 18.77 MB/s + Average Throughput: 18.77 MB/s + Minimum Throughput: 18.77 MB/s + Read Open-Close (1 iteration(s)): + Maximum Throughput: 8.63 MB/s + Average Throughput: 8.63 MB/s + Minimum Throughput: 8.63 MB/s +0.04user 0.02system 0:00.07elapsed 102%CPU (0avgtext+0avgdata 7424maxresident)k +0inputs+680outputs (0major+9011minor)pagefaults 0swaps + +Finished testing h5perf_serial +============================ diff --git a/build/tools/perform/iopipe b/build/tools/perform/iopipe new file mode 100755 index 0000000..2c2acd1 --- /dev/null +++ b/build/tools/perform/iopipe @@ -0,0 +1,228 @@ +#! /bin/sh + +# iopipe - temporary wrapper script for .libs/iopipe +# Generated by libtool (GNU libtool) 2.4.6 +# +# The iopipe program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file iopipe.o ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "iopipe:iopipe:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "iopipe:iopipe:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "iopipe:iopipe:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'iopipe' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/iopipe.chkexe b/build/tools/perform/iopipe.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/iopipe.chklog b/build/tools/perform/iopipe.chklog new file mode 100644 index 0000000..1373881 --- /dev/null +++ b/build/tools/perform/iopipe.chklog @@ -0,0 +1,23 @@ +============================ + iopipe Test Log +============================ +fill raw ============================================= +fill hdf5 ============================================= +out raw ============================================= +out hdf5 ============================================= +in raw ============================================= +in hdf5 ============================================= +in hdf5 partial ============================================= +I/O request size is 1000000.0MB +fill raw 0.01user 0.00system 0.01elapsed 7815.89MB/s +fill hdf5 0.01user 0.00system 0.01elapsed 5875.63MB/s +out raw 0.00user 0.01system 0.01elapsed 3420.10MB/s +out hdf5 0.00user 0.01system 0.01elapsed 3294.59MB/s +in raw 0.00user 0.01system 0.01elapsed 3753.99MB/s +in hdf5 0.00user 0.01system 0.01elapsed 4905.17MB/s +in hdf5 partial 0.01user 0.01system 0.02elapsed 2206.44MB/s +0.09user 2.68system 0:03.87elapsed 71%CPU (0avgtext+0avgdata 6908maxresident)k +0inputs+4072outputs (0major+19669minor)pagefaults 0swaps + +Finished testing iopipe +============================ diff --git a/build/tools/perform/iopipe.h5 b/build/tools/perform/iopipe.h5 new file mode 100644 index 0000000..664e69f Binary files /dev/null and b/build/tools/perform/iopipe.h5 differ diff --git a/build/tools/perform/iopipe.o b/build/tools/perform/iopipe.o new file mode 100644 index 0000000..f9215d2 Binary files /dev/null and b/build/tools/perform/iopipe.o differ diff --git a/build/tools/perform/iopipe.raw b/build/tools/perform/iopipe.raw new file mode 100644 index 0000000..7c2624a Binary files /dev/null and b/build/tools/perform/iopipe.raw differ diff --git a/build/tools/perform/overhead b/build/tools/perform/overhead new file mode 100755 index 0000000..21ac3f6 --- /dev/null +++ b/build/tools/perform/overhead @@ -0,0 +1,228 @@ +#! /bin/sh + +# overhead - temporary wrapper script for .libs/overhead +# Generated by libtool (GNU libtool) 2.4.6 +# +# The overhead program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file overhead.o ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "overhead:overhead:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "overhead:overhead:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "overhead:overhead:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'overhead' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/overhead.chkexe b/build/tools/perform/overhead.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/overhead.chklog b/build/tools/perform/overhead.chklog new file mode 100644 index 0000000..6e67aef --- /dev/null +++ b/build/tools/perform/overhead.chklog @@ -0,0 +1,15 @@ +============================ + overhead Test Log +============================ +Style Bytes/Chunk +----- ----------- +forward 41.320 +reverse 43.416 +inward 70.664 +outward 41.320 +random 53.896 +0.11user 0.03system 0:00.25elapsed 60%CPU (0avgtext+0avgdata 6912maxresident)k +0inputs+656outputs (0major+9005minor)pagefaults 0swaps + +Finished testing overhead +============================ diff --git a/build/tools/perform/overhead.o b/build/tools/perform/overhead.o new file mode 100644 index 0000000..06a4845 Binary files /dev/null and b/build/tools/perform/overhead.o differ diff --git a/build/tools/perform/perf b/build/tools/perform/perf new file mode 100755 index 0000000..f8a496e --- /dev/null +++ b/build/tools/perform/perf @@ -0,0 +1,228 @@ +#! /bin/sh + +# perf - temporary wrapper script for .libs/perf +# Generated by libtool (GNU libtool) 2.4.6 +# +# The perf program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file perf.o ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "perf:perf:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "perf:perf:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "perf:perf:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'perf' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/perf.o b/build/tools/perform/perf.o new file mode 100644 index 0000000..c0989c3 Binary files /dev/null and b/build/tools/perform/perf.o differ diff --git a/build/tools/perform/perf_meta b/build/tools/perform/perf_meta new file mode 100755 index 0000000..3939d0e --- /dev/null +++ b/build/tools/perform/perf_meta @@ -0,0 +1,228 @@ +#! /bin/sh + +# perf_meta - temporary wrapper script for .libs/perf_meta +# Generated by libtool (GNU libtool) 2.4.6 +# +# The perf_meta program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file perf_meta.o ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "perf_meta:perf_meta:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "perf_meta:perf_meta:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "perf_meta:perf_meta:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'perf_meta' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/perf_meta.chkexe b/build/tools/perform/perf_meta.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/perf_meta.chklog b/build/tools/perform/perf_meta.chklog new file mode 100644 index 0000000..54acf19 --- /dev/null +++ b/build/tools/perform/perf_meta.chklog @@ -0,0 +1,23 @@ +============================ + perf_meta Test Log +============================ + Performance result of metadata for datasets and attributes + +1. Create 8 attributes for each of 16 existing datasets + H5Dopen2: avg=0.000035s; max=0.000072s; min=0.000031s + H5Dclose: avg=0.000012s; max=0.000026s; min=0.000010s + H5A(create & close): avg=0.000015s; max=0.000067s; min=0.000010s +2. Create 8 attributes for each of 16 new datasets + H5Dcreate2: avg=0.000044s; max=0.000082s; min=0.000032s + H5Dclose: avg=0.000003s; max=0.000007s; min=0.000002s + H5A(create & close): avg=0.000012s; max=0.000035s; min=0.000007s +3. Create 2 attributes for each of 16 existing datasets for 4 times + H5Dopen2: avg=0.000045s; max=0.000073s; min=0.000035s + H5Dclose: avg=0.000013s; max=0.000020s; min=0.000011s + H5A(create & close): avg=0.000024s; max=0.000049s; min=0.000013s +All metadata performance tests passed. +0.06user 0.02system 0:00.18elapsed 48%CPU (0avgtext+0avgdata 7020maxresident)k +0inputs+1072outputs (0major+9131minor)pagefaults 0swaps + +Finished testing perf_meta +============================ diff --git a/build/tools/perform/perf_meta.o b/build/tools/perform/perf_meta.o new file mode 100644 index 0000000..09cf0ee Binary files /dev/null and b/build/tools/perform/perf_meta.o differ diff --git a/build/tools/perform/sio_engine.o b/build/tools/perform/sio_engine.o new file mode 100644 index 0000000..ada8efa Binary files /dev/null and b/build/tools/perform/sio_engine.o differ diff --git a/build/tools/perform/sio_perf.o b/build/tools/perform/sio_perf.o new file mode 100644 index 0000000..64615fd Binary files /dev/null and b/build/tools/perform/sio_perf.o differ diff --git a/build/tools/perform/x-diag-rd.dat b/build/tools/perform/x-diag-rd.dat new file mode 100644 index 0000000..f5588f6 --- /dev/null +++ b/build/tools/perform/x-diag-rd.dat @@ -0,0 +1,11 @@ +0.5 0.256466 +1 0.508621 +1.5 0.625 +2 1 +2.5 0.71875 +3 0.801887 +3.5 0.77877 +4 1 +4.5 0.840372 +5 0.892857 + diff --git a/build/tools/perform/x-diag-wr.dat b/build/tools/perform/x-diag-wr.dat new file mode 100644 index 0000000..d3e86b1 --- /dev/null +++ b/build/tools/perform/x-diag-wr.dat @@ -0,0 +1,11 @@ +0.5 0.128233 +1 0.256522 +1.5 0.314748 +2 1 +2.5 0.410714 +3 0.53125 +3.5 0.485767 +4 1 +4.5 0.578488 +5 0.690955 + diff --git a/build/tools/perform/x-gnuplot b/build/tools/perform/x-gnuplot new file mode 100644 index 0000000..c6d8f44 --- /dev/null +++ b/build/tools/perform/x-gnuplot @@ -0,0 +1,44 @@ +set yrange [0:1.2] +set ytics 0, 0.1, 1 +set xlabel "Request size as a fraction of chunk size" +set ylabel "Efficiency" +set title "Cache 25 chunks, w0=0.75, Size=(total=2000, chunk=100)" +set terminal postscript +set output "x-rowmaj-rd.ps" +plot "x-rowmaj-rd.dat" title "RowMaj-Read" with lines +set terminal x11 +replot +pause -1 +set yrange [0:1.2] +set ytics 0, 0.1, 1 +set xlabel "Request size as a fraction of chunk size" +set ylabel "Efficiency" +set title "Cache 25 chunks,w0=0.75, Size=(total=2000, chunk=100)" +set terminal postscript +set output "x-rowmaj-wr.ps" +plot "x-rowmaj-wr.dat" title "RowMaj-Write" with lines +set terminal x11 +replot +pause -1 +set yrange [0:1.2] +set ytics 0, 0.1, 1 +set xlabel "Request size as a fraction of chunk size" +set ylabel "Efficiency" +set title "Cache 25 chunks,w0=0.75, Size=(total=2000, chunk=100)" +set terminal postscript +set output "x-diag-rd.ps" +plot "x-diag-rd.dat" title "Diag-Read" with lines +set terminal x11 +replot +pause -1 +set yrange [0:1.2] +set ytics 0, 0.1, 1 +set xlabel "Request size as a fraction of chunk size" +set ylabel "Efficiency" +set title "Cache 25 chunks, w0=0.75, Size=(total=2000, chunk=100)" +set terminal postscript +set output "x-diag-wr.ps" +plot "x-diag-wr.dat" title "Diag-Write" with lines +set terminal x11 +replot +pause -1 diff --git a/build/tools/perform/x-rowmaj-rd.dat b/build/tools/perform/x-rowmaj-rd.dat new file mode 100644 index 0000000..43c1bcb --- /dev/null +++ b/build/tools/perform/x-rowmaj-rd.dat @@ -0,0 +1,11 @@ +0.5 1 +1 1 +1.5 0.750469 +2 1 +2.5 0.833333 +3 1 +3.5 0.869565 +4 1 +4.5 0.909091 +5 1 + diff --git a/build/tools/perform/x-rowmaj-wr.dat b/build/tools/perform/x-rowmaj-wr.dat new file mode 100644 index 0000000..600859b --- /dev/null +++ b/build/tools/perform/x-rowmaj-wr.dat @@ -0,0 +1,11 @@ +0.5 0.5 +1 1 +1.5 0.445931 +2 1 +2.5 0.568182 +3 1 +3.5 0.633914 +4 1 +4.5 0.719424 +5 1 + diff --git a/build/tools/perform/zip_perf b/build/tools/perform/zip_perf new file mode 100755 index 0000000..abd1874 --- /dev/null +++ b/build/tools/perform/zip_perf @@ -0,0 +1,228 @@ +#! /bin/sh + +# zip_perf - temporary wrapper script for .libs/zip_perf +# Generated by libtool (GNU libtool) 2.4.6 +# +# The zip_perf program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/tools/perform; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file zip_perf.o ../../tools/lib/.libs/libh5tools.a ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" + +# This environment variable determines our operation mode. +if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then + # install mode needs the following variables: + generated_by_libtool_version='2.4.6' + notinst_deplibs=' ../../src/libhdf5.la' +else + # When we are sourced in execute mode, $file and $ECHO are already set. + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + file="$0" + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + ECHO="printf %s\\n" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string --lt- +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's ../../libtool value, followed by no. +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=$0 + shift + for lt_opt + do + case "$lt_opt" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` + test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. + lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` + cat "$lt_dump_D/$lt_dump_F" + exit 0 + ;; + --lt-*) + $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n "$lt_option_debug"; then + echo "zip_perf:zip_perf:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + $ECHO "zip_perf:zip_perf:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" + lt_dump_args_N=`expr $lt_dump_args_N + 1` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ + + if test -n "$lt_option_debug"; then + $ECHO "zip_perf:zip_perf:$LINENO: newargv[0]: $progdir/$program" 1>&2 + func_lt_dump_args ${1+"$@"} 1>&2 + fi + exec "$progdir/$program" ${1+"$@"} + + $ECHO "$0: cannot exec $program $*" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from $@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case " $* " in + *\ --lt-*) + for lt_wr_arg + do + case $lt_wr_arg in + --lt-*) ;; + *) set x "$@" "$lt_wr_arg"; shift;; + esac + shift + done ;; + esac + func_exec_program_core ${1+"$@"} +} + + # Parse options + func_parse_lt_options "$0" ${1+"$@"} + + # Find the directory that this script lives in. + thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + test "x$thisdir" = "x$file" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` + while test -n "$file"; do + destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` + + # If there was a directory component, then change thisdir. + if test "x$destdir" != "x$file"; then + case "$destdir" in + [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; + *) thisdir="$thisdir/$destdir" ;; + esac + fi + + file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` + file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no + if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then + # special case for '.' + if test "$thisdir" = "."; then + thisdir=`pwd` + fi + # remove .libs from thisdir + case "$thisdir" in + *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; + .libs ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=`cd "$thisdir" && pwd` + test -n "$absdir" && thisdir="$absdir" + + program=lt-'zip_perf' + progdir="$thisdir/.libs" + + if test ! -f "$progdir/$program" || + { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ + test "X$file" != "X$progdir/$program"; }; then + + file="$$-$program" + + if test ! -d "$progdir"; then + mkdir "$progdir" + else + rm -f "$progdir/$file" + fi + + # relink executable if necessary + if test -n "$relink_command"; then + if relink_command_output=`eval $relink_command 2>&1`; then : + else + $ECHO "$relink_command_output" >&2 + rm -f "$progdir/$file" + exit 1 + fi + fi + + mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || + { rm -f "$progdir/$program"; + mv -f "$progdir/$file" "$progdir/$program"; } + rm -f "$progdir/$file" + fi + + if test -f "$progdir/$program"; then + if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then + # Run the actual program with our arguments. + func_exec_program ${1+"$@"} + fi + else + # The program doesn't exist. + $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 + $ECHO "This script is just a wrapper for $program." 1>&2 + $ECHO "See the libtool documentation for more information." 1>&2 + exit 1 + fi +fi diff --git a/build/tools/perform/zip_perf.chkexe b/build/tools/perform/zip_perf.chkexe new file mode 100644 index 0000000..e69de29 diff --git a/build/tools/perform/zip_perf.chklog b/build/tools/perform/zip_perf.chklog new file mode 100644 index 0000000..a4584fd --- /dev/null +++ b/build/tools/perform/zip_perf.chklog @@ -0,0 +1,38 @@ +============================ + zip_perf Test Log +============================ +Filesize: 67108864 +Compression Level: 6 +Buffer size == 128KB + Uncompressed Write Time: 0.05s + Uncompressed Write Throughput: 1328.96MB/s + Compression Ratio: 0.00113678 + Compressed Write Time: 0.40s + Compressed Write Throughput: 160.69MB/s + Compression Time: 0.39s +Buffer size == 256KB + Uncompressed Write Time: 0.03s + Uncompressed Write Throughput: 2191.02MB/s + Compression Ratio: 0.00105667 + Compressed Write Time: 0.36s + Compressed Write Throughput: 179.40MB/s + Compression Time: 0.355997s +Buffer size == 512KB + Uncompressed Write Time: 0.03s + Uncompressed Write Throughput: 2074.75MB/s + Compression Ratio: 0.0010128 + Compressed Write Time: 0.41s + Compressed Write Throughput: 155.71MB/s + Compression Time: 0.410566s +Buffer size == 1MB + Uncompressed Write Time: 0.03s + Uncompressed Write Throughput: 2303.24MB/s + Compression Ratio: 0.000990868 + Compressed Write Time: 0.36s + Compressed Write Throughput: 176.08MB/s + Compression Time: 0.363219s +1.53user 0.26system 0:02.08elapsed 86%CPU (0avgtext+0avgdata 7332maxresident)k +0inputs+529256outputs (0major+36172minor)pagefaults 0swaps + +Finished testing zip_perf +============================ diff --git a/build/tools/perform/zip_perf.o b/build/tools/perform/zip_perf.o new file mode 100644 index 0000000..2a9ac6d Binary files /dev/null and b/build/tools/perform/zip_perf.o differ diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 55949b1..c01d90a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-pre1 currently under development +HDF5 version 1.8.21-pre1 released on 2018-05-21 ================================================================================ INTRODUCTION -- cgit v0.12 From de5b5cc06ae9a0126ec7f6eb223d2cf1502255f7 Mon Sep 17 00:00:00 2001 From: lrknox Date: Mon, 21 May 2018 20:11:53 -0500 Subject: Add missing C++ entries to RELEASE.txt. --- release_docs/RELEASE.txt | 122 ++++++++++++++++++++++++++++++----------------- 1 file changed, 77 insertions(+), 45 deletions(-) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 1410cb2..55949b1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -87,41 +87,74 @@ New Features (ADB - 2018/01/08, HDFFV-10385, HDFFV-10296) - - None + C++ API + ------- + - The following C++ API wrappers have been added to class H5Location + + H5Lcreate_soft: + // Creates a soft link from link_name to target_name. + void link(const char *target_name, const char *link_name,...) + void link(const H5std_string& target_name,...) + + H5Lcreate_hard: + // Creates a hard link from new_name to curr_name. + void link(const char *curr_name, const Group& new_loc,...) + void link(const H5std_string& curr_name, const Group& new_loc,...) - Library - ------- - - None + // Creates a hard link from new_name to curr_name in the same location. + void link(const char *curr_name, const hid_t same_loc,...) + void link(const H5std_string& curr_name, const hid_t same_loc,...) + Note: previous version CommonFG::link will be deprecated. - Parallel Library - ---------------- - - None + + H5Lcopy: + // Copy an object from a group of file to another. + void copyLink(const char *src_name, const Group& dst,...) + void copyLink(const H5std_string& src_name, const Group& dst,...) + // Copy an object from a group of file to the same location. + void copyLink(const char *src_name, const char *dst_name,...) + void copyLink(const H5std_string& src_name,...) - Tools - ----- - - None + + H5Lmove: + // Rename an object in a group or file to a new location. + void moveLink(const char* src_name, const Group& dst,...) + void moveLink(const H5std_string& src_name, const Group& dst,...) + // Rename an object in a group or file to the same location. + void moveLink(const char* src_name, const char* dst_name,...) + void moveLink(const H5std_string& src_name,...) - High-Level APIs - --------------- - - None + Note: previous version CommonFG::move will be deprecated. + + H5Ldelete: + // Removes the specified link from this location. + void unlink(const char *link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + void unlink(const H5std_string& link_name, + const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) - Fortran API - ----------- - - None + Note: An additional parameter is added to CommonFG::unlink and it + is moved to H5Location. + (BMR - 2018/05/11 - HDFFV-10445) - C++ API - ------- - - None + - New property list subclasses + + Property list subclasses StrCreatPropList, LinkCreatPropList, and + AttrCreatPropList are added for the C property list classes + H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. + + (BMR - 2018/05/11 - HDFFV-10445) + + - Another argument, LinkCreatPropList& lcpl, is added to the following + functions for the use of link creation property list. + Group createGroup(const char* name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + Group createGroup(const H5std_string& name, size_t size_hint = 0, + const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) + + (BMR - 2018/05/11 - HDFFV-10445) - High-Level APIs - --------------- - - None Support for New Platforms, Languages, and Compilers @@ -226,6 +259,7 @@ Bug Fixes since HDF5-1.8.20 (DER - 2018/03/12, HDFFV-10358) + Configuration ------------- - CMake @@ -270,17 +304,6 @@ Bug Fixes since HDF5-1.8.20 (ADB - 2017/12/18, HDFFV-10307) - - Parallel Library - ---------------- - - None - - - Performance - ------------- - - None - - Tools ----- - h5repack @@ -359,25 +382,34 @@ Bug Fixes since HDF5-1.8.20 (ADB - 2018/01/04, HDFFV-8745) + C++ API + ------- + - Removal of memory leaks - Fortran API - ----------- - - None + A private function was inadvertently called, causing memory leaks. This + is now fixed. + (BMR - 2018/04/12 - User reported in email) - C++ API - ------- - - None + - Changes in exception classes + Some exception classes are reorganized to reflect the HDF5 object + hierarchy and allow customization. + DataSetIException -> LocationException -> Exception + DataTypeIException -> LocationException -> Exception + GroupIException -> LocationException -> Exception + AttributeIException -> LocationException -> Exception + FileIException -> GroupIException -> LocationException -> Exception + Member functions in H5Location and H5Object now throw specific exceptions + associated with the invoking objects. - High-Level APIs: - --------------- - - None + (BMR - 2018/05/11) + - H5Location::closeObjId is made static + (BMR - 2018/05/11) - Packet Table APIs: - ------------------ - - None + - H5A wrappers in H5Location are removed as they have been in H5Object. + (BMR - 2018/05/11) Supported Platforms -- cgit v0.12 From ca075ca546785aa4a6ea68603d8adcd40e05b40f Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Tue, 22 May 2018 11:31:52 -0500 Subject: HDFFV-10473 fix HDFFV-10398 attribute location --- config/cmake/ConversionTests.c | 12 ++++++------ release_docs/RELEASE.txt | 11 +++++++++++ src/H5detect.c | 40 ++++++++++++++++++++-------------------- 3 files changed, 37 insertions(+), 26 deletions(-) diff --git a/config/cmake/ConversionTests.c b/config/cmake/ConversionTests.c index 002bc88..321d879 100644 --- a/config/cmake/ConversionTests.c +++ b/config/cmake/ConversionTests.c @@ -25,7 +25,7 @@ #include #include -int main(void) HDF_NO_UBSAN +int HDF_NO_UBSAN main(void) { long double ld = 20041683600089727.779961L; long ll; @@ -86,7 +86,7 @@ done: #include #include -int main(void) HDF_NO_UBSAN +int HDF_NO_UBSAN main(void) { long double ld; long ll; @@ -149,7 +149,7 @@ done: #include #include -int main(void) HDF_NO_UBSAN +int HDF_NO_UBSAN main(void) { long double ld = 20041683600089727.779961L; long long ll; @@ -192,7 +192,7 @@ done: #include #include -int main(void) HDF_NO_UBSAN +int HDF_NO_UBSAN main(void) { long double ld; long long ll; @@ -253,8 +253,8 @@ int FC_DUMMY_MAIN() { return 1;} #endif #endif -int -main () HDF_NO_UBSAN +int HDF_NO_UBSAN +main () { char *chp = "beefs"; diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 55949b1..1cbc114 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -262,6 +262,17 @@ Bug Fixes since HDF5-1.8.20 Configuration ------------- + - Library + + Moved the location of gcc attribute. + + The gcc attribute(no_sanitize), named as the macro HDF_NO_UBSAN, + was located after the function name. Builds with GCC 7 did not + indicate any problem, but GCC 8 issued errors. Moved the + attribute before the function name, as required. + + (ADB 2018/05/22, HDFFV-10473) + - CMake Update CMake commands configuration. diff --git a/src/H5detect.c b/src/H5detect.c index 33eba81..1780932 100644 --- a/src/H5detect.c +++ b/src/H5detect.c @@ -1357,8 +1357,8 @@ bit.\n"; * *------------------------------------------------------------------------- */ -static void -detect_C89_integers(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C89_integers(void) { DETECT_BYTE(signed char, SCHAR, d_g[nd_g]); nd_g++; DETECT_BYTE(unsigned char, UCHAR, d_g[nd_g]); nd_g++; @@ -1385,8 +1385,8 @@ detect_C89_integers(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C89_floats(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C89_floats(void) { DETECT_F(float, FLOAT, d_g[nd_g]); nd_g++; DETECT_F(double, DOUBLE, d_g[nd_g]); nd_g++; @@ -1407,8 +1407,8 @@ detect_C89_floats(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_integers8(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_integers8(void) { #if H5_SIZEOF_INT8_T>0 #if H5_SIZEOF_INT8_T==1 @@ -1469,8 +1469,8 @@ detect_C99_integers8(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_integers16(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_integers16(void) { #if H5_SIZEOF_INT16_T>0 DETECT_I(int16_t, INT16, d_g[nd_g]); nd_g++; @@ -1507,8 +1507,8 @@ detect_C99_integers16(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_integers32(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_integers32(void) { #if H5_SIZEOF_INT32_T>0 DETECT_I(int32_t, INT32, d_g[nd_g]); nd_g++; @@ -1545,8 +1545,8 @@ detect_C99_integers32(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_integers64(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_integers64(void) { #if H5_SIZEOF_INT64_T>0 DETECT_I(int64_t, INT64, d_g[nd_g]); nd_g++; @@ -1596,8 +1596,8 @@ detect_C99_integers64(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_integers(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_integers(void) { /* break it down to more subroutines so that each module subroutine */ /* is smaller and takes less time to compile with optimization on. */ @@ -1622,8 +1622,8 @@ detect_C99_integers(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_C99_floats(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_C99_floats(void) { #if H5_SIZEOF_DOUBLE == H5_SIZEOF_LONG_DOUBLE /* @@ -1653,8 +1653,8 @@ detect_C99_floats(void) HDF_NO_UBSAN * *------------------------------------------------------------------------- */ -static void -detect_alignments(void) HDF_NO_UBSAN +static void HDF_NO_UBSAN +detect_alignments(void) { /* Detect structure alignment for pointers, hvl_t, hobj_ref_t, hdset_reg_ref_t */ DETECT_M(void *, POINTER, m_g[na_g]); na_g++; @@ -1741,8 +1741,8 @@ static int verify_signal_handlers(int signum, void (*handler)(int)) * *------------------------------------------------------------------------- */ -int -main(void) HDF_NO_UBSAN +int HDF_NO_UBSAN +main(void) { #if defined(H5_HAVE_SETSYSINFO) && defined(SSI_NVPAIRS) -- cgit v0.12 From 861934175ad997f629e72f163a60d4a4682f17a4 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Tue, 22 May 2018 21:54:20 -0500 Subject: Fixed EED-319 Description: Added an html version for the C++ function mapping table and removed the single web page version. Updated cpp_doc_config to use the html file. Fixed some typos. Running "doxygen cpp_doc_config" successfully. --- c++/src/C2Cppfunction_map.htm | 24268 ++++++++++++++++++++++++++++++++++++++++ c++/src/H5CppDoc.h | 6 +- c++/src/H5StrcreatProp.h | 4 +- c++/src/cpp_doc_config | 21 +- 4 files changed, 24278 insertions(+), 21 deletions(-) create mode 100644 c++/src/C2Cppfunction_map.htm diff --git a/c++/src/C2Cppfunction_map.htm b/c++/src/C2Cppfunction_map.htm new file mode 100644 index 0000000..b3f406d --- /dev/null +++ b/c++/src/C2Cppfunction_map.htm @@ -0,0 +1,24268 @@ + + + + + + + + + + + + + + + + + + +
+ +

C++ API Wrappers of HDF5 C Functions

+ +

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

C Function

+
+

C++ + Wrapper

+
+

1.8

+
+

1.10

+
+

Comment

+
+

H5Acreate2

+
+

Attribute H5Location::createAttribute( const char* name, const + DataType& data_type, const DataSpace& data_space, const PropList& + create_plist = PropList::DEFAULT)

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

Attribute H5Location::createAttribute( const H5std_string& name, + const DataType& data_type, const DataSpace& data_space, const + PropList& create_plist = PropList::DEFAULT)

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

Attribute H5Object::createAttribute( const char* name, const + DataType& data_type, const DataSpace& data_space, const PropList& + create_plist = PropList::DEFAULT)

+
+

x

+
+

x

+
+

Revised model

+
+

Attribute H5Object::createAttribute( const H5std_string& name, + const DataType& data_type, const DataSpace& data_space, const + PropList& create_plist = PropList::DEFAULT)

+
+

x

+
+

x

+
+

Revised model

+
+

H5Acreate_by_name

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aopen

+
+

Attribute H5Location::openAttribute( const char* name )

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

Attribute H5Location::openAttribute( const H5std_string& name )

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

Attribute H5Object::openAttribute( const char* name )

+
+

x

+
+

x

+
+

 

+
+

Attribute H5Object::openAttribute( const H5std_string& name )

+
+

x

+
+

x

+
+

 

+
+

H5Aopen_by_idx

+

H5Aopen_by_idx

+
+

Attribute H5Location::openAttribute( const unsigned int idx )

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

Attribute H5Object::openAttribute( const unsigned int idx )

+
+

x

+
+

x

+
+

 

+
+

H5Aopen_by_name

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Awrite

+
+

void Attribute::write( const DataType& mem_type, const void *buf + )

+
+

x

+
+

x

+
+

 

+
+

void Attribute::write(const DataType& mem_type, const + H5std_string& strg)

+
+

x

+
+

x

+
+

 

+
+

H5Aread

+
+

void Attribute::read( const DataType& mem_type, void *buf )

+
+

x

+
+

x

+
+

 

+
+

void Attribute::read(const DataType& mem_type, H5std_string& + strg)

+
+

x

+
+

x

+
+

 

+
+

H5Aclose

+
+

void Attribute::close()

+
+

x

+
+

x

+
+

 

+
+

Attribute::~Attribute()

+
+

x

+
+

x

+
+

 

+
+

H5Aget_space

+
+

DataSpace Attribute::getSpace()

+
+

x

+
+

x

+
+

 

+
+

H5Aget_type

+
+

DataType AbstractDs::getDataType()

+
+

x

+
+

x

+
+

 

+
+

ArrayType AbstractDs::getArrayType()

+
+

x

+
+

x

+
+

 

+
+

CompType AbstractDs::getCompType()

+
+

x

+
+

x

+
+

 

+
+

EnumType AbstractDs::getEnumType()

+
+

x

+
+

x

+
+

 

+
+

IntType AbstractDs::getIntType()

+
+

x

+
+

x

+
+

 

+
+

FloatType AbstractDs::getFloatType()

+
+

x

+
+

x

+
+

 

+
+

StrType AbstractDs::getStrType()

+
+

x

+
+

x

+
+

 

+
+

VarLenType AbstractDs::getVarLenType()

+
+

x

+
+

x

+
+

 

+
+

H5Aget_create_plist

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aget_name

+
+

ssize_t Attribute::getName(char* attr_name, size_t buf_size)

+
+

x

+
+

x

+
+

 

+
+

H5std_string Attribute::getName()

+
+

x

+
+

x

+
+

 

+
+

H5std_string Attribute::getName(size_t len) const

+
+

x

+
+

x

+
+

 

+
+

ssize_t Attribute::getName(H5std_string& attr_name, size_t len)

+
+

x

+
+

x

+
+

 

+
+

ssize_t Attribute::getName( size_t len, H5std_string& attr_name )

+
+

x

+
+

x

+
+

 

+
+

H5Aget_name_by_idx

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aget_storage_size

+
+

hsize_t Attribute::getStorageSize()

+
+

x

+
+

x

+
+

 

+
+

H5Aget_info

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aget_info_by_name

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aget_info_by_idx

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Arename

+
+

void H5Location::renameAttr(const char* oldname, const char* newname)

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

void H5Object::renameAttr(const char* oldname, const char* newname)

+
+

x

+
+

x

+
+

 

+
+

H5Arename_by_name

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Aiterate2

+
+

int H5Location::iterateAttrs( attr_operator_t user_op, unsigned + *_idx, void *op_data )

+
+

x

+
+

 

+
+

 

+
+

int H5Object::iterateAttrs( attr_operator_t user_op, unsigned *_idx, + void *op_data )

+
+

 

+
+

x

+
+

 

+
+

H5Aiterate_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Adelete

+
+

void H5Location::removeAttr( const char* name )

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

void H5Object::removeAttr( const char* name )

+
+

x

+
+

x

+
+

 

+
+

H5Adelete_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Adelete_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Aexists

+
+

bool H5Location::attrExists(const char* name)

+
+

x

+
+

 

+
+

Deprecated in 1.8.19

+
+

bool H5Object::attrExists(const char* name)

+
+

x

+
+

x

+
+

 

+
+

H5Aexists_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Dcreate2

+
+

DataSet CommonFG::createDataSet( const char* name, const + DataType& data_type, const DataSpace& data_space, const + DSetCreatPropList& create_plist )

+
+

x

+
+

 

+
+

 

+
+

DataSet CommonFG::createDataSet( const H5std_string& name, const + DataType& data_type, const DataSpace& data_space, const + DSetCreatPropList& create_plist )

+
+

x

+
+

 

+
+

 

+
+

DataSet H5Location::createDataSet( const char* name, const + DataType& data_type, const DataSpace& data_space, const + DSetCreatPropList& create_plist )

+
+

 

+
+

x

+
+

 

+
+

DataSet H5Location::createDataSet( const H5std_string& name, + const DataType& data_type, const DataSpace& data_space, const + DSetCreatPropList& create_plist )

+
+

 

+
+

x

+
+

 

+
+

H5Dcreate_anon

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Dopen2

+
+

DataSet CommonFG::openDataSet( const char* name )

+
+

x

+
+

 

+
+

 

+
+

DataSet CommonFG::openDataSet( const H5std_string& name)

+
+

x

+
+

 

+
+

 

+
+

DataSet H5Location::openDataSet( const char* name )

+
+

 

+
+

x

+
+

 

+
+

DataSet H5Location::openDataSet( const H5std_string& name)

+
+

 

+
+

x

+
+

 

+
+

H5Dclose

+
+

void DataSet::close()

+
+

x

+
+

x

+
+

 

+
+

DataSet destructor

+
+

 

+
+

x

+
+

 

+
+

H5Dget_space

+
+

DataSpace DataSet::getSpace()

+
+

x

+
+

x

+
+

 

+
+

H5Dget_space_status

+
+

void DataSet::getSpaceStatus(H5D_space_status_t& status)

+
+

 

+
+

 

+
+

 

+
+

H5Dget_type

+
+

DataType AbstractDs::getDataType()

+
+

 

+
+

 

+
+

 

+
+

ArrayType AbstractDs::getArrayType()

+
+

 

+
+

 

+
+

 

+
+

CompType AbstractDs::getCompType()

+
+

 

+
+

 

+
+

 

+
+

EnumType AbstractDs::getEnumType()

+
+

 

+
+

 

+
+

 

+
+

IntType AbstractDs::getIntType()

+
+

 

+
+

 

+
+

 

+
+

FloatType AbstractDs::getFloatType()

+
+

 

+
+

 

+
+

 

+
+

StrType AbstractDs::getStrType()

+
+

 

+
+

 

+
+

 

+
+

VarLenType AbstractDs::getVarLenType()

+
+

 

+
+

 

+
+

 

+
+

H5Dget_create_plist

+
+

DSetCreatPropList DataSet::getCreatePlist()

+
+

 

+
+

 

+
+

 

+
+

H5Dget_access_plist

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Dget_storage_size

+
+

hsize_t DataSet::getStorageSize()

+
+

 

+
+

 

+
+

 

+
+

H5Dget_offset

+
+

haddr_t DataSet::getOffset()

+
+

 

+
+

 

+
+

 

+
+

H5Dread

+
+

void DataSet::read( void* buf, const DataType& mem_type, const + DataSpace& mem_space, const DataSpace& file_space, const + DSetMemXferPropList& xfer_plist )

+
+

 

+
+

 

+
+

 

+
+

void DataSet::read(H5std_string& strg, const DataType& + mem_type, const DataSpace& mem_space, const DataSpace& file_space, + const DSetMemXferPropList& xfer_plist)

+
+

 

+
+

 

+
+

 

+
+

H5Dwrite

+
+

void DataSet::write( const void* buf, const DataType& mem_type, + const DataSpace& mem_space, const DataSpace& file_space, const + DSetMemXferPropList& xfer_plist )

+
+

 

+
+

 

+
+

 

+
+

void DataSet::write( const H5std_string& strg, const + DataType& mem_type, const DataSpace& mem_space, const DataSpace& + file_space, const DSetMemXferPropList& xfer_plist )

+
+

 

+
+

 

+
+

 

+
+

H5Diterate

+
+

int DataSet::iterateElems( void* buf, const DataType& type, const + DataSpace& space, H5D_operator_t op, void* op_data )

+
+

 

+
+

 

+
+

 

+
+

H5Dvlen_reclaim

+
+

void DataSet::vlenReclaim(const DataType& type, const + DataSpace& space, const DSetMemXferPropList& xfer_plist, void* buf )

+
+

 

+
+

 

+
+

Remove this one

+
+

void DataSet::vlenReclaim(void* buf, const DataType& type, const + DataSpace& space, const DSetMemXferPropList& xfer_plist)

+
+

 

+
+

 

+
+

Better prototype

+
+

H5Dvlen_get_buf_size

+
+

hsize_t DataSet::getVlenBufSize(const DataType& type, const + DataSpace& space)

+
+

 

+
+

 

+
+

 

+
+

H5Dfill

+
+

void DataSet::fillMemBuf(const void *fill, const DataType& + fill_type, void *buf, const DataType& buf_type, const DataSpace& + space)

+
+

 

+
+

 

+
+

 

+
+

void DataSet::fillMemBuf(void *buf, const DataType& buf_type, + const DataSpace& space

+
+

 

+
+

 

+
+

 

+
+

H5Dset_extent

+
+

void DataSet::extend( const hsize_t* size )

+
+

 

+
+

 

+
+

 

+
+

H5Dscatter

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Dgather

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Ddebug

+
+

no

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Eregister_class

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eunregister_class

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eclose_msg

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Ecreate_msg

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Ecreate_stack

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eget_current_stack

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eclose_stack

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eget_class_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eset_current_stack

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Epush2

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Epop

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Eprint2

+
+

void Exception::printErrorStack(FILE* stream, hid_t err_stack)

+
+

 

+
+

 

+
+

 

+
+

H5Ewalk2

+
+

void Exception::walkErrorStack( H5E_direction_t direction, + H5E_walk2_t func, void* client_data )

+
+

 

+
+

 

+
+

 

+
+

H5Eget_auto2

+
+

void Exception::getAutoPrint( H5E_auto2_t& func, void** + client_data )

+
+

 

+
+

 

+
+

 

+
+

H5Eset_auto2

+
+

void Exception::setAutoPrint( H5E_auto2_t& func, void* + client_data )

+
+

 

+
+

 

+
+

 

+
+

H5Eclear2

+
+

void Exception::clearErrorStack()

+
+

 

+
+

 

+
+

 

+
+

H5Eauto_is_v2

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Eget_msg

+
+

H5std_string Exception::getMajorString( hid_t err_major )

+
+

 

+
+

 

+
+

 

+
+

H5std_string Exception::getMinorString( hid_t err_minor )

+
+

 

+
+

 

+
+

 

+
+

H5Eget_num

+
+

no

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_core

+
+

void FileAccPropList::setCore (size_t increment, hbool_t + backing_store)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fapl_core

+
+

void FileAccPropList::getCore (size_t& increment, hbool_t& + backing_store)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_direct

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fapl_direct

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FD_family_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_family

+
+

void FileAccPropList::setFamily( hsize_t memb_size, const FileAccPropList& + memb_plist)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fapl_family

+
+

void FileAccPropList::getFamily(hsize_t& memb_size, + FileAccPropList& memb_plist)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_log

+
+

void FileAccPropList::setLog(const char *logfile, unsigned flags, + size_t buf_size)

+
+

 

+
+

 

+
+

 

+
+

H5FD_multi_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_multi

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fapl_multi

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_split

+
+

void FileAccPropList::setSplit(const FileAccPropList& meta_plist, + const FileAccPropList& raw_plist, const char* meta_ext, const char* + raw_ext )

+
+

 

+
+

 

+
+

 

+
+

void FileAccPropList::setSplit(FileAccPropList& meta_plist, + FileAccPropList& raw_plist, const char* meta_ext, const char* raw_ext )

+
+

 

+
+

 

+
+

 

+
+

void FileAccPropList::setSplit(const FileAccPropList& meta_plist, + const FileAccPropList& raw_plist, const H5std_string& meta_ext, const + H5std_string& raw_ext )

+
+

 

+
+

 

+
+

 

+
+

void FileAccPropList::setSplit(FileAccPropList& meta_plist, + FileAccPropList& raw_plist, const H5std_string& meta_ext, const + H5std_string& raw_ext )

+
+

 

+
+

 

+
+

 

+
+

H5FD_log_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FD_core_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FD_direct_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5FDregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDunregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDopen

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDclose

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDcmp

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDquery

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDalloc

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDfree

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDget_eoa

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDset_eoa

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDget_eof

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDget_vfd_handle

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDread

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDwrite

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDflush

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FDtruncate

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5FD_sec2_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_sec2

+
+

void FileAccPropList::setSec2()

+
+

 

+
+

 

+
+

 

+
+

H5FD_stdio_init

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_stdio

+
+

void FileAccPropList::setStdio()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fapl_windows

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fis_hdf5

+
+

bool H5File::isHdf5(const char* name)

+
+

 

+
+

 

+
+

 

+
+

H5Fcreate

+
+

H5File::H5File( const char* name, unsigned int flags, const + FileCreatPropList& create_plist, const FileAccPropList& access_plist + )

+
+

 

+
+

 

+
+

 

+
+

H5File::H5File( const H5std_string& name, unsigned int flags, + const FileCreatPropList& create_plist, const FileAccPropList& + access_plist )

+
+

 

+
+

 

+
+

 

+
+

H5Fopen

+
+

H5File::H5File( const char* name, unsigned int flags, const + FileCreatPropList& create_plist, const FileAccPropList& access_plist + )

+
+

 

+
+

 

+
+

 

+
+

H5File::H5File( const H5std_string& name, unsigned int flags, + const FileCreatPropList& create_plist, const FileAccPropList& + access_plist )

+
+

 

+
+

 

+
+

 

+
+

void H5File::openFile(const char* name, unsigned int flags, const + FileAccPropList& access_plist)

+
+

 

+
+

 

+
+

 

+
+

H5Freopen

+
+

void H5File::reOpen()

+
+

 

+
+

 

+
+

 

+
+

H5Fflush

+
+

void H5Location::flush(H5F_scope_t scope)

+
+

 

+
+

 

+
+

 

+
+

void Attribute::flush(H5F_scope_t scope)

+
+

 

+
+

 

+
+

 

+
+

H5Fclose

+
+

void H5File::close()

+
+

 

+
+

 

+
+

 

+
+

H5File destructor

+
+

 

+
+

 

+
+

 

+
+

H5Fget_create_plist

+
+

FileCreatPropList H5File::getCreatePlist()

+
+

 

+
+

 

+
+

 

+
+

H5Fget_access_plist

+
+

FileAccPropList H5File::getAccessPlist()

+
+

 

+
+

 

+
+

 

+
+

H5Fget_intent

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_obj_count

+
+

ssize_t H5File::getObjCount(unsigned types)

+
+

 

+
+

 

+
+

 

+
+

ssize_t H5File::getObjCount()

+
+

 

+
+

 

+
+

 

+
+

H5Fget_obj_ids

+
+

void H5File::getObjIDs(unsigned types, size_t max_objs, hid_t + *oid_list)

+
+

 

+
+

 

+
+

 

+
+

H5Fget_vfd_handle

+
+

void H5File::getVFDHandle(const FileAccPropList& fapl, void + **file_handle)

+
+

 

+
+

 

+
+

 

+
+

void H5File::getVFDHandle(void **file_handle)

+
+

 

+
+

 

+
+

 

+
+

H5Fmount

+
+

void CommonFG::mount(const char* name, const H5File& child, const + PropList& plist )

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::mount(const char* name, H5File& child, + PropList& plist)

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::mount(const H5std_string& name, const H5File& + child, const PropList& plist)

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::mount(const H5std_string& name, H5File& child, + PropList& plist)

+
+

 

+
+

 

+
+

 

+
+

H5Funmount

+
+

void CommonFG::unmount( const char* name )

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::unmount( const H5std_string& name )

+
+

 

+
+

 

+
+

 

+
+

H5Fget_freespace

+
+

hssize_t H5File::getFreeSpace()

+
+

 

+
+

 

+
+

 

+
+

H5Fget_filesize

+
+

hsize_t H5File::getFileSize()

+
+

 

+
+

 

+
+

 

+
+

H5Fget_file_image

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_mdc_config

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fset_mdc_config

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_mdc_hit_rate

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_mdc_size

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Freset_mdc_hit_rate_stats

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_name

+
+

H5std_string H5Location::getFileName()

+
+

 

+
+

 

+
+

 

+
+

H5std_string Attribute::getFileName()

+
+

 

+
+

 

+
+

Will be retired

+
+

H5Fget_info2

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fget_free_sections

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Fclear_elink_file_cache

+
+

no

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Gcreate2

+
+

Group CommonFG::createGroup( const char* name, size_t size_hint )

+
+

x

+
+

 

+
+

 

+
+

Group CommonFG::createGroup( const H5std_string& name, size_t + size_hint )

+
+

x

+
+

 

+
+

 

+
+

Group H5Location::createGroup( const char* name, size_t size_hint )

+
+

 

+
+

x

+
+

 

+
+

Group H5Location::createGroup( const H5std_string& name, size_t + size_hint )

+
+

 

+
+

x

+
+

 

+
+

Group createGroup(const char* name, const LinkCreatPropList& + lcpl)

+
+

 

+
+

x

+
+

 

+
+

Group createGroup(const H5std_string& name, const + LinkCreatPropList& lcpl)

+
+

 

+
+

x

+
+

 

+
+

H5Gcreate_anon

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gopen2

+
+

Group CommonFG::openGroup( const char* name )

+
+

x

+
+

 

+
+

 

+
+

Group CommonFG::openGroup( const H5std_string& name )

+
+

x

+
+

 

+
+

 

+
+

Group H5Location::openGroup( const char* name )

+
+

 

+
+

x

+
+

 

+
+

Group H5Location::openGroup( const H5std_string& name )

+
+

 

+
+

x

+
+

 

+
+

H5Gget_create_plist

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gget_info

+
+

hsize_t CommonFG::getNumObjs()

+
+

x

+
+

 

+
+

 

+
+

hsize_t H5Location::getNumObjs()

+
+

 

+
+

x

+
+

Moved to Group in 1.10.2

+
+

hsize_t Group::getNumObjs()

+
+

 

+
+

x

+
+

 

+
+

H5Gget_info_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gget_info_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gclose

+
+

void Group::close()

+
+

 

+
+

 

+
+

 

+
+

Group destructor

+
+

 

+
+

 

+
+

 

+
+

H5Glink

+
+

Deprecated

+
+

 

+
+

 

+
+

 

+
+

H5Glink2

+
+

Deprecated

+
+

 

+
+

 

+
+

 

+
+

H5Gmove

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gmove2

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gunlink

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lcreate_hard

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lcreate_soft

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gget_linkval

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gset_comment

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gget_comment

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Giterate

+
+

int CommonFG::iterateElems( const char* name, int *idx, H5G_iterate_t + op , void* op_data )

+
+

 

+
+

 

+
+

 

+
+

int CommonFG::iterateElems( const H5std_string& name, int *idx, + H5G_iterate_t op , void* op_data )

+
+

 

+
+

 

+
+

 

+
+

H5Gget_num_objs

+
+

no

+
+

 

+
+

 

+
+

 

+
+

H5Gget_objinfo

+
+

void CommonFG::getObjinfo( const char* name, hbool_t follow_link, + H5G_stat_t& statbuf )

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::getObjinfo( const H5std_string& name, hbool_t + follow_link, H5G_stat_t& statbuf )

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::getObjinfo( const char* name, H5G_stat_t& statbuf + )

+
+

 

+
+

 

+
+

 

+
+

void CommonFG::getObjinfo( const H5std_string& name, + H5G_stat_t& statbuf )

+
+

 

+
+

 

+
+

 

+
+

H5Gget_objname_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Gget_objtype_by_idx

+
+

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx)

+
+

 

+
+

 

+
+

 

+
+

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx, char* type_name)

+
+

 

+
+

 

+
+

 

+
+

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx, H5std_string& + type_name)

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Iregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iobject_verify

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iremove_verify

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iget_type

+
+

H5I_type_t IdComponent::getHDFObjType(const hid_t obj_id)

+
+

 

+
+

 

+
+

 

+
+

H5Iget_file_id

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iget_name

+
+

ssize_t H5Object::getObjName(char *obj_name, size_t buf_size)

+
+

 

+
+

 

+
+

 

+
+

H5std_string H5Object::getObjName()

+
+

 

+
+

 

+
+

 

+
+

ssize_t H5Object::getObjName(H5std_string& obj_name, size_t len)

+
+

 

+
+

 

+
+

 

+
+

H5Iinc_ref

+
+

void IdComponent::incRefCount(const hid_t obj_id)

+
+

 

+
+

 

+
+

 

+
+

void IdComponent::incRefCount()

+
+

 

+
+

 

+
+

 

+
+

H5Idec_ref

+
+

void IdComponent::decRefCount(const hid_t obj_id)

+
+

 

+
+

 

+
+

 

+
+

void IdComponent::decRefCount()

+
+

 

+
+

 

+
+

 

+
+

H5Iget_ref

+
+

int IdComponent::getCounter(const hid_t obj_id)

+
+

 

+
+

 

+
+

 

+
+

int IdComponent::getCounter()

+
+

 

+
+

 

+
+

 

+
+

H5Iregister_type

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iclear_type

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Idestroy_type

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iinc_type_ref

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Idec_type_ref

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iget_type_ref

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Isearch

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Inmembers

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Itype_exists

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Iis_valid

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Lmove

+
+

void H5Location::moveLink(const char* src_name,

+

            const Group& + dst, const char* dst_name,

+

            const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

            const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::moveLink(const H5std_string& src_name,

+

            const Group& + dst, const H5std_string& dst_name,

+

            const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

            const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::moveLink(const char* src_name, const char* dst_name,

+

            const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

            const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::moveLink(const H5std_string& src_name,

+

            const + H5std_string& dst_name,

+

            const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

            const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void CommonFG::move( const char* src, const char* dst )

+
+

x

+
+

x

+
+

Deprecated due to inadequate functionality

+
+

void CommonFG::move( const H5std_string& src, const + H5std_string& dst )

+
+

x

+
+

x

+
+

Same as above

+
+

H5Lcopy

+
+

void H5Location::copyLink(const char *src_name, const Group& dst, + const char *dst_name, const LinkCreatPropList& lcpl = + LinkCreatPropList::DEFAULT,

+

const LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::copyLink(const H5std_string& src_name, const + Group& dst, const H5std_string& dst_name,

+

const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

const LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::copyLink(const char *src_name, const char *dst_name,

+

const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

const  LinkAccPropList& + lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::copyLink(const H5std_string& src_name,

+

const H5std_string& dst_name,

+

const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

const LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

H5Lcreate_hard

+

 

+
+

void H5Location::link(const char *curr_name,

+

             const Group& + new_loc, const char *new_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::link(const H5std_string& curr_name,

+

             const Group& + new_loc, const H5std_string& new_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::link(const char *curr_name,

+

             const hid_t + same_loc, const char *new_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::link(const H5std_string& curr_name,

+

             const hid_t + same_loc, const H5std_string& new_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

H5Lcreate_soft

+
+

void H5Location::link(const char *target_name, const char *link_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

void H5Location::link(const H5std_string& target_name,

+

             const + H5std_string& link_name,

+

             const + LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

 

+
+

H5Lcreate_hard

+

H5Lcreate_soft

+

 

+
+

void CommonFG::link( H5L_type_t link_type, const char* curr_name, + const char* new_name )

+
+

x

+
+

x

+
+

Deprecated due to inadequate functionality

+
+

void CommonFG::link( H5L_type_t link_type, const H5std_string& + curr_name, const H5std_string& new_name )

+
+

x

+
+

x

+
+

Deprecated due to inadequate functionality

+
+

H5Ldelete

+
+

void CommonFG::unlink( const char* name,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

x

+
+

 

+
+

Added second argument in 1.8.21

+
+

void CommonFG::unlink( const H5std_string& name,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

x

+
+

 

+
+

Added second argument in 1.8.21

+
+

void H5Location::unlink( const char* name,

+

             const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

Moved from CommonFG & added 2nd arg in 1.10.2

+
+

void H5Location::unlink( const H5std_string& name,

+

             const LinkAccPropList& + lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

x

+
+

Moved from CommonFG & added 2nd arg in 1.10.2

+
+

H5Ldelete_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lget_val

+
+

H5std_string CommonFG::getLinkval( const char* name, size_t size )

+
+

x

+
+

 

+
+

 

+
+

H5std_string CommonFG::getLinkval( const H5std_string& name, + size_t size )

+
+

x

+
+

 

+
+

 

+
+

H5std_string H5Location::getLinkval( const char* name, size_t size )

+
+

 

+
+

x

+
+

 

+
+

H5std_string H5Location::getLinkval( const H5std_string& name, + size_t size )

+
+

 

+
+

x

+
+

 

+
+

H5Lget_val_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lexists

+
+

bool H5Location::nameExists(const char* name, const + LinkAccPropList& lapl)

+
+

 

+
+

 

+
+

 

+
+

bool H5Location::nameExists(const H5std_string& name, const + LinkAccPropList& lapl)

+
+

 

+
+

 

+
+

 

+
+

H5Lget_info

+
+

H5L_info_t getLinkInfo(const char* link_name,

+

               const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

 

+
+

 

+
+

H5L_info_t getLinkInfo(const H5std_string& link_name,

+

               const + LinkAccPropList& lapl = LinkAccPropList::DEFAULT)

+
+

 

+
+

 

+
+

 

+
+

H5Lget_info_by_idx

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Lget_name_by_idx

+
+

H5std_string CommonFG::getObjnameByIdx(hsize_t idx)

+
+

x

+
+

 

+
+

 

+
+

ssize_t CommonFG::getObjnameByIdx(hsize_t idx, char* name, size_t + size)

+
+

x

+
+

 

+
+

 

+
+

ssize_t CommonFG::getObjnameByIdx(hsize_t idx, H5std_string& + name, size_t size)

+
+

x

+
+

 

+
+

 

+
+

H5std_string H5Location::getObjnameByIdx(hsize_t idx)

+
+

 

+
+

x

+
+

 

+
+

ssize_t H5Location::getObjnameByIdx(hsize_t idx, char* name, size_t + size)

+
+

 

+
+

x

+
+

 

+
+

ssize_t H5Location::getObjnameByIdx(hsize_t idx, H5std_string& + name, size_t size)

+
+

 

+
+

x

+
+

 

+
+

H5Literate

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Literate_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lvisit

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lvisit_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Lcreate_ud

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lunregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lis_registered

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lunpack_elink_val

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Lcreate_external

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Oopen

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oopen_by_addr

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oopen_by_idx

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oexists_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oget_info

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oget_info_by_name

+
+

H5O_type_t CommonFG::childObjType(const char* objname)

+
+

 

+
+

 

+
+

 

+
+

H5O_type_t CommonFG::childObjType(const H5std_string& objname)

+
+

 

+
+

 

+
+

 

+
+

H5O_type_t H5Location::childObjType(const char* objname)

+
+

 

+
+

x

+
+

 

+
+

H5O_type_t H5Location::childObjType(const H5std_string& objname)

+
+

 

+
+

x

+
+

 

+
+

H5Oget_info_by_idx

+
+

H5O_type_t CommonFG::childObjType(hsize_t index, H5_index_t + index_type, H5_iter_order_t order, const char* objname)

+
+

 

+
+

 

+
+

 

+
+

H5O_type_t H5Location::childObjType(hsize_t index, H5_index_t + index_type, H5_iter_order_t order, const char* objname)

+
+

 

+
+

x

+
+

 

+
+

H5Olink

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oincr_refcount

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Odecr_refcount

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Ocopy

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oset_comment

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oset_comment_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oget_comment

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oget_comment_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Ovisit

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Ovisit_by_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Oclose

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5PLset_loading_state

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5PLget_loading_state

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Pcreate_class

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_class_name

+
+

H5std_string PropList::getClassName()

+
+

 

+
+

 

+
+

 

+
+

H5Pcreate

+
+

PropList::PropList(const hid_t plist_id)

+
+

 

+
+

 

+
+

 

+
+

H5Pregister2

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pinsert2

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset

+
+

void PropList::setProperty(const char* name, void* value)

+
+

 

+
+

 

+
+

 

+
+

void PropList::setProperty(const char* name, const char* charptr)

+
+

 

+
+

 

+
+

 

+
+

void PropList::setProperty(const char* name, H5std_string& strg)

+
+

 

+
+

 

+
+

 

+
+

void PropList::setProperty(const H5std_string& name, void* value)

+
+

 

+
+

 

+
+

 

+
+

void PropList::setProperty(const H5std_string& name, + H5std_string& strg)

+
+

 

+
+

 

+
+

 

+
+

H5Pexist

+
+

bool PropList::propExist(const char* name )

+
+

 

+
+

 

+
+

 

+
+

bool PropList::propExist(const H5std_string& name )

+
+

 

+
+

 

+
+

 

+
+

H5Pencode

+
+

void DataType::encode()

+
+

 

+
+

 

+
+

 

+
+

H5Pdecode

+
+

virtual DataType* DataType::decode()

+

virtual DataType* ArrayType::decode()

+

virtual DataType* CompType::decode()

+

virtual DataType* DataType::decode()

+

virtual DataType* EnumType::decode()

+

virtual DataType* FloatType::decode()

+

virtual DataType* IntType::decode()

+

virtual DataType* StrType::decode()

+

virtual DataType* VarLenType::decode()

+
+

 

+
+

 

+
+

 

+
+

H5Pget_size

+
+

size_t PropList::getPropSize(const char *name)

+
+

 

+
+

 

+
+

 

+
+

size_t PropList::getPropSize(const H5std_string& name)

+
+

H5Pget_nprops

+
+

size_t PropList::getNumProps()

+
+

 

+
+

 

+
+

 

+
+

H5Pget_class

+
+

hid_t PropList::getClass()

+
+

 

+
+

 

+
+

 

+
+

H5Pget_class_parent

+
+

PropList PropList::getClassParent()

+
+

 

+
+

 

+
+

 

+
+

H5Pget

+
+

void PropList::getProperty(const char* name, void* value)

+
+

 

+
+

 

+
+

 

+
+

H5std_string PropList::getProperty(const char* name)

+
+

void PropList::getProperty(const H5std_string& name, void* value)

+
+

H5std_string PropList::getProperty(const H5std_string& name)

+
+

H5Pequal

+
+

bool PropList::operator==(const PropList& rhs)

+
+

 

+
+

 

+
+

 

+
+

H5Pisa_class

+
+

bool PropList::isAClass(const PropList& prop_class)

+
+

 

+
+

 

+
+

 

+
+

H5Piterate

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pcopy_prop

+
+

void PropList::copyProp(PropList& dest, const char *name)

+
+

 

+
+

 

+
+

 

+
+

void PropList::copyProp( PropList& dest, const H5std_string& + name )

+
+

void PropList::copyProp( PropList& dest, PropList& src, const + char *name )

+
+

void PropList::copyProp( PropList& dest, PropList& src, const + H5std_string& name )

+
+

H5Premove

+
+

void PropList::removeProp(const char *name)

+
+

 

+
+

 

+
+

 

+
+

void PropList::removeProp(const H5std_string& name)

+
+

H5Punregister

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pclose_class

+
+

void PropList::closeClass()

+
+

 

+
+

 

+
+

 

+
+

H5Pclose

+
+

void PropList::close()

+
+

 

+
+

 

+
+

 

+
+

PropList destructor

+
+

 

+
+

 

+
+

 

+
+

H5Pcopy

+
+

void PropList::copy( const PropList& like_plist )

+
+

 

+
+

 

+
+

 

+
+

H5Pset_attr_phase_change

+
+

void ObjCreatPropList::setAttrPhaseChange(unsigned max_compact = 8, + unsigned min_dense = 6)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_attr_phase_change

+
+

void ObjCreatPropList::getAttrPhaseChange(unsigned& max_compact, + unsigned& min_dense)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_attr_creation_order

+
+

void ObjCreatPropList::setAttrCrtOrder(unsigned crt_order_flags)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_attr_creation_order

+
+

unsigned ObjCreatPropList::getAttrCrtOrder()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_obj_track_times

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_obj_track_times

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pmodify_filter

+
+

void modifyFilter(H5Z_filter_t filter_id, unsigned int flags, size_t + cd_nelmts, const unsigned int cd_values[])

+
+

 

+
+

 

+
+

 

+
+

H5Pset_filter

+
+

void DSetCreatPropList::setFilter(H5Z_filter_t filter_id, unsigned + int flags,

+

        size_t cd_nelmts, const + unsigned int cd_values[])

+
+

 

+
+

 

+
+

 

+
+

H5Pget_nfilters

+
+

int DSetCreatPropList::getNfilters()

+
+

 

+
+

 

+
+

 

+
+

H5Pget_filter2

+
+

H5Z_filter_t DSetCreatPropList::getFilter(int filter_number,

+

        unsigned int + &flags, size_t &cd_nelmts, unsigned int* cd_values,

+

        size_t namelen, char + name[], unsigned int& filter_config)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_filter_by_id2

+
+

void DSetCreatPropList::getFilterById(H5Z_filter_t filter_id,

+

        unsigned int + &flags, size_t &cd_nelmts, unsigned int* cd_values,

+

        size_t namelen, char + name[], unsigned int &filter_config)

+
+

 

+
+

 

+
+

 

+
+

H5Pall_filters_avail

+
+

bool DSetCreatPropList::allFiltersAvail()

+
+

 

+
+

 

+
+

 

+
+

H5Premove_filter

+
+

void DSetCreatPropList::removeFilter(H5Z_filter_t filter_id)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_deflate

+
+

void DSetCreatPropList::setDeflate(int level)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fletcher32

+
+

void DSetCreatPropList::setFletcher32()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_userblock

+
+

void FileCreatPropList::setUserblock(hsize_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_userblock

+
+

hsize_t FileCreatPropList::getUserblock()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_sizes

+
+

void FileCreatPropList::setSizes(size_t sizeof_addr, size_t + sizeof_size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_sizes

+
+

void FileCreatPropList::getSizes(size_t& sizeof_addr, size_t& + sizeof_size)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_sym_k

+
+

void FileCreatPropList::setSymk(unsigned ik, unsigned lk)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_sym_k

+
+

void FileCreatPropList::getSymk(unsigned& ik, unsigned& lk)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_istore_k

+
+

void FileCreatPropList::setIstorek(unsigned ik)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_istore_k

+
+

unsigned FileCreatPropList::getIstorek()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_shared_mesg_nindexes

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_shared_mesg_nindexes

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_shared_mesg_index

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_shared_mesg_index

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_shared_mesg_phase_change

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_shared_mesg_phase_change

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_file_space

+
+

void FileCreatPropList::setFileSpaceStrategy(H5F_fspace_strategy_t + strategy, hbool_t persist, hsize_t threshold)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_file_space

+
+

void + FileCreatPropList::getFileSpaceStrategy(H5F_fspace_strategy_t& strategy, + hbool_t& persist, hsize_t& threshold)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_alignment

+
+

void FileAccPropList::setAlignment(hsize_t threshold, hsize_t + alignment)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_alignment

+
+

void FileAccPropList::getAlignment(hsize_t &threshold, hsize_t + &alignment)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_driver

+
+

void FileAccPropList::setDriver(hid_t new_driver_id, const void + *new_driver_info)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_driver

+
+

hid_t FileAccPropList::getDriver()

+
+

 

+
+

 

+
+

 

+
+

H5Pget_driver_info

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_family_offset

+
+

void FileAccPropList::setFamilyOffset(hsize_t offset)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_family_offset

+
+

hsize_t FileAccPropList::getFamilyOffset()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_multi_type

+
+

void FileAccPropList::setMultiType(H5FD_mem_t dtype)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_multi_type

+
+

H5FD_mem_t FileAccPropList::getMultiType()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_cache

+
+

void FileAccPropList::setCache(int mdc_nelmts, size_t rdcc_nelmts, + size_t rdcc_nbytes, double rdcc_w0)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_cache

+
+

void FileAccPropList::getCache(int& mdc_nelmts, size_t& + rdcc_nelmts, size_t& rdcc_nbytes, double& rdcc_w0)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_mdc_config

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_mdc_config

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_gc_references

+
+

void FileAccPropList::setGcReferences(unsigned gc_ref)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_gc_references

+
+

unsigned FileAccPropList::getGcReferences()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fclose_degree

+
+

void FileAccPropList::setFcloseDegree(H5F_close_degree_t degree)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fclose_degree

+
+

H5F_close_degree_t FileAccPropList::getFcloseDegree()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_meta_block_size

+
+

void FileAccPropList::setMetaBlockSize(hsize_t &block_size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_meta_block_size

+
+

hsize_t FileAccPropList::getMetaBlockSize()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_sieve_buf_size

+
+

void FileAccPropList::setSieveBufSize(size_t bufsize)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_sieve_buf_size

+
+

size_t FileAccPropList::getSieveBufSize()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_small_data_block_size

+
+

void DSetMemXferPropList::setSmallDataBlockSize(hsize_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_small_data_block_size

+
+

hsize_t DSetMemXferPropList::getSmallDataBlockSize()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_libver_bounds

+
+

void FileAccPropList::setLibverBounds(H5F_libver_t libver_low, + H5F_libver_t libver_high)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_libver_bounds

+
+

void FileAccPropList::getLibverBounds(H5F_libver_t& libver_low, + H5F_libver_t& libver_high)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_file_cache_size

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_file_cache_size

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_elink_file_cache_size

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_file_image

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_file_image

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_file_image_callbacks

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_file_image_callbacks

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Pset_core_write_tracking

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_core_write_tracking

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Pset_layout

+
+

void DSetCreatPropList::setLayout(H5D_layout_t layout)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_layout

+
+

H5D_layout_t DSetCreatPropList::getLayout()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_chunk

+
+

void DSetCreatPropList::setChunk(int ndims, const hsize_t* dim)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_chunk

+
+

int DSetCreatPropList::getChunk(int max_ndims, hsize_t* dim)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_external

+
+

void DSetCreatPropList::setExternal(const char* name, off_t offset, + hsize_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_external_count

+
+

int DSetCreatPropList::getExternalCount

+
+

 

+
+

 

+
+

 

+
+

H5Pget_external

+
+

void DSetCreatPropList::getExternal(unsigned idx, size_t name_size, + char* name, off_t& offset, hsize_t& size)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_szip

+
+

void DSetCreatPropList::setSzip(unsigned int options_mask, unsigned + int pixels_per_block)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_shuffle

+
+

void DSetCreatPropList::setShuffle()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_nbit

+
+

void DSetCreatPropList::setNbit()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_scaleoffset

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fill_value

+
+

void DSetCreatPropList::setFillValue(const DataType& fvalue_type, + const void* value)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fill_value

+
+

void DSetCreatPropList::getFillValue(const DataType& fvalue_type, + void* value)

+
+

 

+
+

 

+
+

 

+
+

H5Pfill_value_defined

+
+

H5D_fill_value_t DSetCreatPropList::isFillValueDefined()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_alloc_time

+
+

void DSetCreatPropList::setAllocTime(H5D_alloc_time_t alloc_time)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_alloc_time

+
+

H5D_alloc_time_t DSetCreatPropList::getAllocTime()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_fill_time

+
+

void DSetCreatPropList::setFillTime(H5D_fill_time_t fill_time)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_fill_time

+
+

H5D_fill_time_t DSetCreatPropList::getFillTime()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_chunk_cache

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_chunk_cache

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_data_transform

+
+

void DSetMemXferPropList::setDataTransform(const char* expression)

+

void DSetMemXferPropList::setDataTransform(const H5std_string& + expression)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_data_transform

+
+

ssize_t DSetMemXferPropList::getDataTransform(char* exp, size_t + buf_size)

+

H5std_string DSetMemXferPropList::getDataTransform()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_buffer

+
+

void DSetMemXferPropList::setBuffer(size_t size, void* tconv, void* + bkg)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_buffer

+
+

size_t DSetMemXferPropList::getBuffer(void** tconv, void** bkg)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_preserve

+
+

void DSetMemXferPropList::setPreserve(bool status)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_preserve

+
+

bool DSetMemXferPropList::getPreserve()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_edc_check

+
+

void DSetMemXferPropList::setEDCCheck(H5Z_EDC_t check)

+
+

 

+
+

 

+
+

 

+
+

H5Z_EDC_t H5Pget_edc_check

+
+

H5Z_EDC_t DSetMemXferPropList::getEDCCheck()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_filter_callback

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_btree_ratios

+
+

void DSetMemXferPropList::setBtreeRatios(double left, double middle, + double right)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_btree_ratios

+
+

void DSetMemXferPropList::getBtreeRatios(double& left, + double& middle, double& right)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_vlen_mem_manager

+
+

void DSetMemXferPropList::setVlenMemManager()

+

void DSetMemXferPropList::setVlenMemManager(H5MM_allocate_t alloc_func, + void* alloc_info, H5MM_free_t free_func, void* free_info)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_vlen_mem_manager

+
+

void DSetMemXferPropList::getVlenMemManager(H5MM_allocate_t& + alloc_func, void** alloc_info, H5MM_free_t& free_func, void** free_info)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_hyper_vector_size

+
+

void DSetMemXferPropList::setHyperVectorSize(size_t vector_size)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_hyper_vector_size

+
+

size_t DSetMemXferPropList::getHyperVectorSize()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_type_conv_cb

+
+

void DSetMemXferPropList::setTypeConvCB(H5T_conv_except_func_t op, + void *user_data)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_type_conv_cb

+
+

void DSetMemXferPropList::getTypeConvCB(H5T_conv_except_func_t *op, + void **user_data)

+
+

 

+
+

 

+
+

 

+
+

H5Pset_create_intermediate_group

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_create_intermediate_group

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_local_heap_size_hint

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_local_heap_size_hint

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_link_phase_change

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_link_phase_change

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_est_link_info

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_est_link_info

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_link_creation_order

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_link_creation_order

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_char_encoding

+
+

ASAP

+
+

 

+
+

 

+
+

 

+
+

H5Pget_char_encoding

+
+

ASAP

+
+

 

+
+

 

+
+

 

+
+

H5Pset_nlinks

+
+

void LinkAccPropList::setNumLinks(size_t nlinks)

+
+

 

+
+

 

+
+

 

+
+

H5Pget_nlinks

+
+

size_t LinkAccPropList::getNumLinks()

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_prefix

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_elink_prefix

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_elink_fapl

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_fapl

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_acc_flags

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_elink_acc_flags

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_elink_cb

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_elink_cb

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Pset_copy_object

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_copy_object

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Padd_merge_committed_dtype_path

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pfree_merge_committed_dtype_paths

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pset_mcdt_search_cb

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Pget_mcdt_search_cb

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5open

+
+

void H5Library::open()

+
+

x

+
+

x

+
+

 

+
+

H5close

+
+

void H5Library::close()

+
+

x

+
+

x

+
+

 

+
+

H5dont_atexit

+
+

void H5Library::dontAtExit()

+
+

x

+
+

x

+
+

 

+
+

H5garbage_collect

+
+

void H5Library::garbageCollect()

+
+

x

+
+

x

+
+

 

+
+

H5set_free_list_limits

+
+

void H5Library::setFreeListLimits(int reg_global_lim, int + reg_list_lim,

+

        int arr_global_lim, int + arr_list_lim, int blk_global_lim,

+

        int blk_list_lim)

+
+

x

+
+

x

+
+

 

+
+

H5get_libversion

+
+

void H5Library::getLibVersion(unsigned& majnum, unsigned& + minnum, unsigned& relnum)

+
+

x

+
+

x

+
+

 

+
+

H5check_version

+
+

void H5Library::checkVersion(unsigned majnum, unsigned minnum, + unsigned relnum)

+
+

x

+
+

x

+
+

 

+
+

H5free_memory

+
+

No wrapper

+
+

 

+
+

 

+
+

 

+
+

H5allocate_memory

+
+

No wrapper

+
+

 

+
+

 

+
+

 

+
+

H5resize_memory

+
+

No wrapper

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Rcreate

+
+

void H5Location::reference(void* ref, const char* name, const + DataSpace& dataspace, H5R_type_t ref_type)

+
+

 

+
+

 

+
+

 

+
+

void H5Location::reference(void* ref, const H5std_string& name, + const DataSpace& dataspace, H5R_type_t ref_type)

+
+

void H5Location::reference(void* ref, const char* name, H5R_type_t + ref_type)

+
+

void H5Location::reference(void* ref, const H5std_string& name, + H5R_type_t ref_type)

+
+

H5Rdereference2

+
+

DataSet::DataSet(const H5Location& loc, const void* ref, + H5R_type_t ref_type)

+

 

+
+

 

+
+

 

+
+

 

+
+

H5Rget_region

+
+

DataSpace H5Location::getRegion(void *ref, H5R_type_t ref_type)

+
+

 

+
+

 

+
+

 

+
+

H5Rget_obj_type2

+
+

H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type)

+
+

 

+
+

 

+
+

 

+
+

H5Rget_name

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Rget_obj_type1

+
+

Should be remove from code

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Screate

+
+

DataSpace::DataSpace(H5S_class_t type)

+
+

x

+
+

x

+
+

 

+
+

H5Screate_simple

+
+

DataSpace::DataSpace(int rank, const hsize_t * dims, const hsize_t * + maxdims)

+
+

x

+
+

x

+
+

 

+
+

H5Sset_extent_simple

+
+

void DataSpace::setExtentSimple(int rank, const hsize_t + *current_size, const hsize_t *maximum_size)

+
+

 

+
+

 

+
+

 

+
+

H5Scopy

+
+

void DataSpace::copy(const DataSpace& like_space)

+
+

 

+
+

 

+
+

 

+
+

H5Sclose

+
+

void DataSpace::close()

+
+

 

+
+

 

+
+

 

+
+

H5Sencode

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Sdecode

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Sget_simple_extent_npoints

+
+

hssize_t DataSpace::getSimpleExtentNpoints

+
+

 

+
+

 

+
+

 

+
+

H5Sget_simple_extent_ndims

+
+

int DataSpace::getSimpleExtentNdims ()

+
+

 

+
+

 

+
+

 

+
+

H5Sget_simple_extent_dims

+
+

int DataSpace::getSimpleExtentDims (hsize_t *dims, hsize_t *maxdims)

+
+

 

+
+

 

+
+

 

+
+

H5Sis_simple

+
+

bool DataSpace::isSimple ()

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_npoints

+
+

hssize_t DataSpace::getSelectNpoints ()

+
+

 

+
+

 

+
+

 

+
+

H5Sselect_hyperslab

+
+

void DataSpace::selectHyperslab(H5S_seloper_t op, const hsize_t + *count, const hsize_t *start, const hsize_t *stride, const hsize_t *block)

+
+

 

+
+

 

+
+

 

+
+

H5Sselect_elements

+
+

void DataSpace::selectElements (H5S_seloper_t op, const size_t + num_elements, const hsize_t *coord)

+
+

 

+
+

 

+
+

 

+
+

H5Sget_simple_extent_type

+
+

H5S_class_t DataSpace::getSimpleExtentType ()

+
+

 

+
+

 

+
+

 

+
+

H5Sset_extent_none

+
+

void DataSpace::setExtentNone ()

+
+

 

+
+

 

+
+

 

+
+

H5Sextent_copy

+
+

void DataSpace::extentCopy (const DataSpace& dest_space)

+
+

 

+
+

 

+
+

 

+
+

H5Sextent_equal

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Sselect_all

+
+

void DataSpace::selectAll ()

+
+

 

+
+

 

+
+

 

+
+

H5Sselect_none

+
+

void DataSpace::selectNone ()

+
+

 

+
+

 

+
+

 

+
+

H5Soffset_simple

+
+

void DataSpace::offsetSimple (const hssize_t* offset)

+
+

 

+
+

 

+
+

 

+
+

H5Sselect_valid

+
+

bool DataSpace::selectValid ()

+
+

 

+
+

 

+
+

 

+
+

H5Sis_regular_hyperslab

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Sget_regular_hyperslab

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_hyper_nblocks

+
+

hssize_t DataSpace::getSelectHyperNblocks ()

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_elem_npoints

+
+

hssize_t DataSpace::getSelectElemNpoints ()

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_hyper_blocklist

+
+

void DataSpace::getSelectHyperBlocklist(hsize_t startblock, hsize_t + numblocks, hsize_t *buf)

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_elem_pointlist

+
+

void DataSpace::getSelectElemPointlist (hsize_t startpoint, hsize_t + numpoints, hsize_t *buf)

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_bounds

+
+

void DataSpace::getSelectBounds (hsize_t* start, hsize_t* end)

+
+

 

+
+

 

+
+

 

+
+

H5Sget_select_type

+
+

No

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

H5Tcreate

+
+

DataType::DataType(const H5T_class_t type_class, size_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Tcopy

+
+

DataType::DataType(const PredType& pred_type)

+
+

 

+
+

 

+
+

 

+
+

void DataType::copy(const DataType& like_type)

+
+

 

+
+

 

+
+

 

+
+

void DataType::copy(const DataSet& dset)

+
+

 

+
+

 

+
+

 

+
+

H5Tclose

+
+

void DataType::close()

+
+

 

+
+

 

+
+

 

+
+

DataType destructor

+
+

 

+
+

 

+
+

 

+
+

H5Tequal

+
+

bool DataType::operator==(const DataType& compared_type)

+
+

 

+
+

 

+
+

 

+
+

H5Tlock

+
+

void DataType::lock()

+
+

 

+
+

 

+
+

 

+
+

H5Tcommit2

+
+

void DataType::commit(const H5Location& loc, const char* name)

+
+

 

+
+

 

+
+

 

+
+

void DataType::commit(const H5Location& loc, const + H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

H5Topen2

+
+

DataType CommonFG::openDataType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

DataType CommonFG::openDataType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

ArrayType CommonFG::openArrayType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

ArrayType CommonFG::openArrayType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

CompType CommonFG::openCompType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

CompType CommonFG::openCompType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

EnumType CommonFG::openEnumType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

EnumType CommonFG::openEnumType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

IntType CommonFG::openIntType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

IntType CommonFG::openIntType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

FloatType CommonFG::openFloatType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

FloatType CommonFG::openFloatType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

StrType CommonFG::openStrType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

StrType CommonFG::openStrType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

VarLenType CommonFG::openVarLenType(const char* name)

+
+

 

+
+

 

+
+

 

+
+

VarLenType CommonFG::openVarLenType(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

H5Tcommit_anon

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Tget_create_plist

+
+

PropList DataType::getCreatePlist()

+
+

 

+
+

 

+
+

 

+
+

H5Tcommitted

+
+

bool DataType::committed()

+
+

 

+
+

 

+
+

 

+
+

H5Tencode

+
+

void DataType::encode()

+
+

 

+
+

 

+
+

 

+
+

H5Tdecode

+
+

virtual DataType* DataType::decode() const;

+

virtual DataType* ArrayType::decode() const;

+

virtual DataType* CompType::decode() const;

+

virtual DataType* DataType::decode() const;

+

virtual DataType* EnumType::decode() const;

+

virtual DataType* FloatType::decode() const;

+

virtual DataType* IntType::decode() const;

+

virtual DataType* StrType::decode() const;

+

virtual DataType* VarLenType::decode() const;

+
+

 

+
+

 

+
+

 

+
+

H5Tinsert

+
+

void CompType::insertMember(const H5std_string& name, size_t + offset, const DataType& new_member)

+
+

 

+
+

 

+
+

 

+
+

H5Tpack

+
+

void CompType::pack()

+
+

 

+
+

 

+
+

 

+
+

H5Tenum_create

+
+

EnumType::EnumType(const IntType& data_type)

+
+

 

+
+

 

+
+

 

+
+

H5Tenum_insert

+
+

void EnumType::insert(const char* name, void *value)

+
+

 

+
+

 

+
+

 

+
+

H5Tenum_nameof

+
+

H5std_string EnumType::nameOf(void *value, size_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Tenum_valueof

+
+

void EnumType::valueOf(const char* name, void *value)

+
+

 

+
+

 

+
+

 

+
+

H5Tvlen_create

+
+

VarLenType::VarLenType(const DataType* base_type)

+
+

 

+
+

 

+
+

 

+
+

H5Tarray_create2

+
+

ArrayType::ArrayType(const DataType& base_type, int ndims, const + hsize_t* dims)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_array_ndims

+
+

int ArrayType::getArrayNDims()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_array_dims2

+
+

int ArrayType::getArrayDims(hsize_t* dims)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_tag

+
+

void DataType::setTag(const char* tag)

+
+

 

+
+

 

+
+

 

+
+

void DataType::setTag(const H5std_string& tag)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_tag

+
+

H5std_string DataType::getTag()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_super

+
+

DataType DataType::getSuper()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_class

+
+

H5T_class_t DataType::getClass()

+
+

 

+
+

 

+
+

 

+
+

H5Tdetect_class

+
+

bool DataType::detectClass(H5T_class_t cls)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_size

+
+

size_t DataType::getSize()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_order

+
+

H5T_order_t AtomType::getOrder()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_precision

+
+

size_t AtomType::getPrecision()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_offset

+
+

int AtomType::getOffset()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_pad

+
+

void AtomType::getPad(H5T_pad_t& lsb, H5T_pad_t& msb)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_sign

+
+

H5T_sign_t IntType::getSign()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_fields

+
+

void FloatType::getFields(size_t& spos, size_t& epos, + size_t& esize, size_t& mpos, size_t& msize)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_ebias

+
+

size_t FloatType::getEbias()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_norm

+
+

H5T_norm_t FloatType::getNorm(H5std_string& norm_string)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_inpad

+
+

H5T_pad_t FloatType::getInpad(H5std_string& pad_string)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_strpad

+
+

H5T_str_t StrType::getStrpad()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_nmembers

+
+

int CompType::getNmembers()

+
+

 

+
+

 

+
+

 

+
+

int EnumType::getNmembers()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_name

+
+

H5std_string CompType::getMemberName(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_index

+
+

int CompType::getMemberIndex(const char* name)

+
+

 

+
+

 

+
+

 

+
+

int CompType::getMemberIndex(const H5std_string& name)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_offset

+
+

size_t CompType::getMemberOffset(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_class

+
+

H5T_class_t CompType::getMemberClass(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_type

+
+

DataType CompType::getMemberDataType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

ArrayType CompType::getMemberArrayType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

CompType CompType::getMemberCompType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

EnumType CompType::getMemberEnumType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

IntType CompType::getMemberIntType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

FloatType CompType::getMemberFloatType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

StrType CompType::getMemberStrType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

VarLenType CompType::getMemberVarLenType(unsigned member_num)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_member_value

+
+

void EnumType::getMemberValue(unsigned memb_no, void *value)

+
+

 

+
+

 

+
+

 

+
+

H5Tget_cset

+
+

H5T_cset_t StrType::getCset()

+
+

 

+
+

 

+
+

 

+
+

H5Tis_variable_str

+
+

bool DataType::isVariableStr()

+
+

 

+
+

 

+
+

 

+
+

H5Tget_native_type

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Tset_size

+
+

void AtomType::setSize(size_t size)

+
+

 

+
+

 

+
+

 

+
+

void CompType::setSize(size_t size)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_order

+
+

void AtomType::setOrder(H5T_order_t order)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_precision

+
+

void AtomType::setPrecision(size_t precision)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_offset

+
+

void AtomType::setOffset(size_t offset)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_pad

+
+

void AtomType::setPad(H5T_pad_t lsb, H5T_pad_t msb)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_sign

+
+

void IntType::setSign(H5T_sign_t sign)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_fields

+
+

void FloatType::setFields(size_t spos, size_t epos, size_t esize, + size_t mpos, size_t msize)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_ebias

+
+

void FloatType::setEbias(size_t ebias)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_norm

+
+

void FloatType::setNorm(H5T_norm_t norm)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_inpad

+
+

void FloatType::setInpad(H5T_pad_t inpad)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_cset

+
+

void StrType::setCset(H5T_cset_t cset)

+
+

 

+
+

 

+
+

 

+
+

H5Tset_strpad

+
+

void StrType::setStrpad(H5T_str_t strpad)

+
+

 

+
+

 

+
+

 

+
+

H5Tregister

+
+

void DataType::registerFunc(H5T_pers_t pers, const char* name, const + DataType& dest, H5T_conv_t func)

+
+

 

+
+

 

+
+

 

+
+

H5Tunregister

+
+

void DataType::unregister(H5T_pers_t pers, const char* name, const + DataType& dest, H5T_conv_t func)

+
+

 

+
+

 

+
+

 

+
+

H5Tfind

+
+

H5T_conv_t DataType::find(const DataType& dest, H5T_cdata_t + **pcdata)

+
+

 

+
+

 

+
+

 

+
+

H5Tcompiler_conv

+
+

No

+
+

 

+
+

 

+
+

 

+
+

H5Tconvert

+
+

void DataType::convert(const DataType& dest, size_t nelmts, void + *buf, void *background, const PropList& plist)

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+

 

+
+ +

 

+ +

 

+ +
+ + + + diff --git a/c++/src/H5CppDoc.h b/c++/src/H5CppDoc.h index 16361b2..220185e 100644 --- a/c++/src/H5CppDoc.h +++ b/c++/src/H5CppDoc.h @@ -48,15 +48,15 @@ Datatype Interface (H5T) DataType and subclasses \endverbatim * - * This + * This * table provides a map from the C APIs to the C++ member functions. *
* \section install_sec Installation * * The HDF5 C++ API is included with the HDF5 source code and can * be obtained from - * - * https://support.hdfgroup.org/HDF5/release/obtainsrc.html. + * + * https://portal.hdfgroup.org/display/support/Downloads. * * Please refer to the release_docs/INSTALL file under the top directory * of the HDF5 source code for information about installing, building, diff --git a/c++/src/H5StrcreatProp.h b/c++/src/H5StrcreatProp.h index 9679a55..3e78c45 100644 --- a/c++/src/H5StrcreatProp.h +++ b/c++/src/H5StrcreatProp.h @@ -36,13 +36,13 @@ class H5_DLLCPP StrCreatPropList : public PropList { #ifndef DOXYGEN_SHOULD_SKIP_THIS protected: - // Creates a link creation property list. + // Creates a string creation property list. StrCreatPropList(); // Copy constructor: same as the original StrCreatPropList. StrCreatPropList(const StrCreatPropList& original); - // Creates a copy of an existing link creation property list + // Creates a copy of an existing string creation property list // using the property list id. StrCreatPropList(const hid_t plist_id); diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index b368692..9b59d44 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -1,14 +1,3 @@ -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - # Doxyfile 1.8.5 # This file describes the settings to be used by the documentation system @@ -1022,7 +1011,7 @@ USE_HTAGS = NO VERBATIM_HEADERS = YES # If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the -# clang parser (see: http://clang.llvm.org/) for more acurate parsing at the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the # cost of reduced performance. This can be particularly helpful with template # rich C++ code for which doxygen's built-in parser lacks the necessary type # information. @@ -1136,7 +1125,7 @@ HTML_STYLESHEET = # defined cascading style sheet that is included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefor more robust against future updates. +# standard style sheet and is therefore more robust against future updates. # Doxygen will copy the style sheet file to the output directory. For an example # see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. @@ -1151,8 +1140,8 @@ HTML_EXTRA_STYLESHEET = # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_EXTRA_FILES = ./header_files/help.jpg \ - ./C2Cppfunction_map.mht +HTML_EXTRA_FILES = ./header_files/help.jpg \ + ./C2Cppfunction_map.htm # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the stylesheet and background images according to @@ -2021,7 +2010,7 @@ PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will -# remove all refrences to function-like macros that are alone on a line, have an +# remove all references to function-like macros that are alone on a line, have an # all uppercase name, and do not end with a semicolon. Such function macros are # typically used for boiler-plate code, and will confuse the parser if not # removed. -- cgit v0.12 From c6018f8c2ca124b45adbf6d2fc1089157204f212 Mon Sep 17 00:00:00 2001 From: lrknox Date: Wed, 23 May 2018 11:35:26 -0500 Subject: Switch default build mode to production. Update version to 1.8.21 in anticipation of release. --- README.txt | 2 +- c++/src/cpp_doc_config | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- configure | 28 +++++++++++++++------------- configure.ac | 8 +++++--- release_docs/RELEASE.txt | 2 +- src/H5public.h | 4 ++-- 7 files changed, 26 insertions(+), 22 deletions(-) diff --git a/README.txt b/README.txt index 1dac361..b562a94 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-pre1 currently under development +HDF5 version 1.8.21 currently under development Please refer to the release_docs/INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/c++/src/cpp_doc_config b/c++/src/cpp_doc_config index 9b59d44..e6642ad 100644 --- a/c++/src/cpp_doc_config +++ b/c++/src/cpp_doc_config @@ -39,7 +39,7 @@ PROJECT_NAME = "HDF5 C++ API" # control system is used. -PROJECT_NUMBER = "1.8.21-pre1, currently under development" +PROJECT_NUMBER = "1.8.21" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 36c4888..b811e80 100755 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -35,7 +35,7 @@ cmake_minimum_required (VERSION 3.10) ############################################################################## set (CTEST_SOURCE_VERSION "1.8.21") -set (CTEST_SOURCE_VERSEXT "-pre1") +set (CTEST_SOURCE_VERSEXT "") ############################################################################## # handle input parameters to script. diff --git a/configure b/configure index c4d9c63..3117049 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Id. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HDF5 1.8.21-pre1. +# Generated by GNU Autoconf 2.69 for HDF5 1.8.21. # # Report bugs to . # @@ -591,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='HDF5' PACKAGE_TARNAME='hdf5' -PACKAGE_VERSION='1.8.21-pre1' -PACKAGE_STRING='HDF5 1.8.21-pre1' +PACKAGE_VERSION='1.8.21' +PACKAGE_STRING='HDF5 1.8.21' PACKAGE_BUGREPORT='help@hdfgroup.org' PACKAGE_URL='' @@ -1480,7 +1480,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HDF5 1.8.21-pre1 to adapt to many kinds of systems. +\`configure' configures HDF5 1.8.21 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1550,7 +1550,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HDF5 1.8.21-pre1:";; + short | recursive ) echo "Configuration of HDF5 1.8.21:";; esac cat <<\_ACEOF @@ -1745,7 +1745,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HDF5 configure 1.8.21-pre1 +HDF5 configure 1.8.21 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HDF5 $as_me 1.8.21-pre1, which was +It was created by HDF5 $as_me 1.8.21, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3553,7 +3553,7 @@ fi # Define the identity of the package. PACKAGE='hdf5' - VERSION='1.8.21-pre1' + VERSION='1.8.21' cat >>confdefs.h <<_ACEOF @@ -22385,6 +22385,8 @@ fi ## ---------------------------------------------------------------------- ## Production flags? Save the value in $CONFIG_MODE so we have it for ## the record. +## To switch the default between production and development, move X-| +## to X-yes) or X-no) ## { $as_echo "$as_me:${as_lineno-$LINENO}: checking for production mode" >&5 $as_echo_n "checking for production mode... " >&6; } @@ -22395,7 +22397,7 @@ fi case "X-$enable_production" in - X-yes) + X-|X-yes) enable_production="yes" { $as_echo "$as_me:${as_lineno-$LINENO}: result: production" >&5 $as_echo "production" >&6; } @@ -22405,7 +22407,7 @@ $as_echo "production" >&6; } H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS" H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS" ;; - X-|X-no) + X-no) enable_production="no" { $as_echo "$as_me:${as_lineno-$LINENO}: result: development" >&5 $as_echo "development" >&6; } @@ -29313,7 +29315,7 @@ Usage: $0 [OPTIONS] Report bugs to ." lt_cl_version="\ -HDF5 config.lt 1.8.21-pre1 +HDF5 config.lt 1.8.21 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -31373,7 +31375,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.8.21-pre1, which was +This file was extended by HDF5 $as_me 1.8.21, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -31439,7 +31441,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HDF5 config.status 1.8.21-pre1 +HDF5 config.status 1.8.21 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 18b215a..2301d05 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.8.21-pre1], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.21], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) @@ -777,6 +777,8 @@ fi ## ---------------------------------------------------------------------- ## Production flags? Save the value in $CONFIG_MODE so we have it for ## the record. +## To switch the default between production and development, move X-| +## to X-yes) or X-no) ## AC_MSG_CHECKING([for production mode]) AC_ARG_ENABLE([production], @@ -784,7 +786,7 @@ AC_ARG_ENABLE([production], [Determines how to run the compiler.])]) case "X-$enable_production" in - X-yes) + X-|X-yes) enable_production="yes" AC_MSG_RESULT([production]) CONFIG_MODE=production @@ -793,7 +795,7 @@ case "X-$enable_production" in H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS" H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS" ;; - X-|X-no) + X-no) enable_production="no" AC_MSG_RESULT([development]) CONFIG_MODE=development diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 1cbc114..314a249 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.8.21-pre1 currently under development +HDF5 version 1.8.21 currently under development ================================================================================ INTRODUCTION diff --git a/src/H5public.h b/src/H5public.h index 8a3a936..997e871 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -93,9 +93,9 @@ extern "C" { #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 8 /* For minor interface/format changes */ #define H5_VERS_RELEASE 21 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "pre1" /* For pre-releases like snap0 */ +#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.8.21-pre1" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.8.21" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12 From 2fd71f451859459b15d58ab50ac10a257c602bf8 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Thu, 24 May 2018 09:05:08 -0500 Subject: Updated MANIFEST --- MANIFEST | 2 +- c++/src/C2Cppfunction_map.mht | 35293 ---------------------------------------- 2 files changed, 1 insertion(+), 35294 deletions(-) delete mode 100644 c++/src/C2Cppfunction_map.mht diff --git a/MANIFEST b/MANIFEST index 76a40dc..23e5242 100644 --- a/MANIFEST +++ b/MANIFEST @@ -415,7 +415,7 @@ ./c++/src/Makefile.am ./c++/src/Makefile.in ./c++/src/RM_stylesheet.css -./c++/src/C2Cppfunction_map.mht +./c++/src/C2Cppfunction_map.htm ./c++/src/cpp_doc_config ./c++/src/footer.html ./c++/src/h5c++.in diff --git a/c++/src/C2Cppfunction_map.mht b/c++/src/C2Cppfunction_map.mht deleted file mode 100644 index d87fbd6..0000000 --- a/c++/src/C2Cppfunction_map.mht +++ /dev/null @@ -1,35293 +0,0 @@ -MIME-Version: 1.0 -Content-Type: multipart/related; boundary="----=_NextPart_01D32FBF.F2FA1110" - -This document is a Single File Web Page, also known as a Web Archive file. If you are seeing this message, your browser or editor doesn't support Web Archive files. Please download a browser that supports Web Archive, such as Windows® Internet Explorer®. - -------=_NextPart_01D32FBF.F2FA1110 -Content-Location: file:///C:/25114090/C2Cppfunction_map.htm -Content-Transfer-Encoding: quoted-printable -Content-Type: text/html; charset="windows-1252" - - - - - - - - - - - - - - - - - - - -
- -

C++ API Wrappers of HDF5 C Functi= -ons

- -

 

- -

Shaded rows are in 1.10 versions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

C Function

-
-

C++ - Wrapper

-
-

1.8

-
-

1.10

-
-

Comment

-
-

H5Acreate2

-
-

Attribute H5Location::createAttribute( const char* name, const - DataType& data_type, const DataSpace& data_space, const PropList&= -amp; - create_plist =3D PropList::DEFAULT)

-
-

x

-
-

 

-
-

Old model kept for backward compatibility

-
-

Attribute H5Location::createAttribute( const H5std_string& na= -me, - const DataType& data_type, const DataSpace& data_space, const - PropList& create_plist =3D PropList::DEFAULT)

-
-

x

-
-

 

-
-

Old model kept for backward compatibility

-
-

Attribute H5Object::createAttribute( const char* name, const - DataType& data_type, const DataSpace& data_space, const PropList&= -amp; - create_plist =3D PropList::DEFAULT)

-
-

 

-
-

x

-
-

Revised model

-
-

Attribute H5Object::createAttribute( const H5std_string& name, - const DataType& data_type, const DataSpace& data_space, const - PropList& create_plist =3D PropList::DEFAULT)

-
-

 

-
-

x

-
-

Revised model

-
-

H5Acreate_by_name

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aopen

-
-

Attribute H5Location::openAttribute( const char* name )

-
-

x

-
-

 

-
-

 

-
-

Attribute H5Location::openAttribute( const H5std_string& name= - )

-
-

x

-
-

 

-
-

 

-
-

Attribute H5Object::openAttribute( const char* name )

-
-

 

-
-

x

-
-

 

-
-

Attribute H5Object::openAttribute( const H5std_string& name )= -

-
-

 

-
-

x

-
-

 

-
-

H5Aopen_by_idx

-

H5Aopen_by_idx

-
-

Attribute H5Location::openAttribute( const unsigned int idx )

-
-

x

-
-

 

-
-

 

-
-

Attribute H5Object::openAttribute( const unsigned int idx )

-
-

 

-
-

x

-
-

 

-
-

H5Aopen_by_name

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Awrite

-
-

void Attribute::write( const DataType& mem_type, const void *= -buf - )

-
-

 

-
-

 

-
-

 

-
-

void Attribute::write(const DataType& mem_type, const - H5std_string& strg) const

-
-

 

-
-

 

-
-

 

-
-

H5Aread

-
-

void Attribute::read( const DataType& mem_type, void *buf ) -

-

 

-
-

 

-
-

 

-
-

void Attribute::read(const DataType& mem_type, H5std_string&a= -mp; - strg)

-
-

 

-
-

 

-
-

 

-
-

H5Aclose

-
-

void Attribute::close()

-
-

 

-
-

 

-
-

 

-
-

Attribute::~Attribute()

-
-

 

-
-

 

-
-

 

-
-

H5Aget_space

-
-

DataSpace Attribute::getSpace()

-
-

 

-
-

 

-
-

 

-
-

H5Aget_type

-
-

DataType AbstractDs::getDataType()

-
-

 

-
-

 

-
-

 

-
-

ArrayType AbstractDs::getArrayType()

-
-

 

-
-

 

-
-

 

-
-

CompType AbstractDs::getCompType()

-
-

 

-
-

 

-
-

 

-
-

EnumType AbstractDs::getEnumType()

-
-

 

-
-

 

-
-

 

-
-

IntType AbstractDs::getIntType()

-
-

 

-
-

 

-
-

 

-
-

FloatType AbstractDs::getFloatType()

-
-

 

-
-

 

-
-

 

-
-

StrType AbstractDs::getStrType()

-
-

 

-
-

 

-
-

 

-
-

VarLenType AbstractDs::getVarLenType()

-
-

 

-
-

 

-
-

 

-
-

H5Aget_create_plist

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aget_name

-
-

ssize_t Attribute::getName(char* attr_name, size_t buf_size)

-
-

 

-
-

 

-
-

 

-
-

H5std_string Attribute::getName()

-
-

 

-
-

 

-
-

 

-
-

H5std_string Attribute::getName(size_t len) const

-
-

 

-
-

 

-
-

 

-
-

ssize_t Attribute::getName(H5std_string& attr_name, size_t le= -n)

-
-

 

-
-

 

-
-

 

-
-

ssize_t Attribute::getName( size_t len, H5std_string& attr_na= -me )

-
-

 

-
-

 

-
-

 

-
-

H5Aget_name_by_idx

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aget_storage_size

-
-

hsize_t Attribute::getStorageSize()

-
-

 

-
-

 

-
-

 

-
-

H5Aget_info

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aget_info_by_name

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aget_info_by_idx

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Arename

-
-

void H5Location::renameAttr(const char* oldname, const char* newn= -ame)

-
-

x

-
-

 

-
-

 

-
-

void H5Object::renameAttr(const char* oldname, const char* newnam= -e)

-
-

 

-
-

x

-
-

 

-
-

H5Arename_by_name

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Aiterate2

-
-

int H5Location::iterateAttrs( attr_operator_t user_op, unsigned - *_idx, void *op_data )

-
-

x

-
-

 

-
-

 

-
-

int H5Object::iterateAttrs( attr_operator_t user_op, unsigned *_i= -dx, - void *op_data )

-
-

 

-
-

x

-
-

 

-
-

H5Aiterate_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Adelete

-
-

void H5Location::removeAttr( const char* name )

-
-

x

-
-

 

-
-

 

-
-

void H5Object::removeAttr( const char* name )

-
-

 

-
-

x

-
-

 

-
-

H5Adelete_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Adelete_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Aexists

-
-

bool H5Location::attrExists(const char* name)

-
-

x

-
-

 

-
-

 

-
-

bool H5Object::attrExists(const char* name)

-
-

 

-
-

x

-
-

 

-
-

H5Aexists_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Dcreate2

-
-

DataSet CommonFG::createDataSet( const char* name, const - DataType& data_type, const DataSpace& data_space, const - DSetCreatPropList& create_plist )

-
-

x

-
-

 

-
-

 

-
-

DataSet CommonFG::createDataSet( const H5std_string& name, co= -nst - DataType& data_type, const DataSpace& data_space, const - DSetCreatPropList& create_plist )

-
-

x

-
-

 

-
-

 

-
-

DataSet H5Location::createDataSet( const char* name, const - DataType& data_type, const DataSpace& data_space, const - DSetCreatPropList& create_plist )

-
-

 

-
-

x

-
-

 

-
-

DataSet H5Location::createDataSet( const H5std_string& name, - const DataType& data_type, const DataSpace& data_space, const - DSetCreatPropList& create_plist )

-
-

 

-
-

x

-
-

 

-
-

H5Dcreate_anon

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Dopen2

-
-

DataSet CommonFG::openDataSet( const char* name )

-
-

x

-
-

 

-
-

 

-
-

DataSet CommonFG::openDataSet( const H5std_string& name)

-
-

x

-
-

 

-
-

 

-
-

DataSet H5Location::openDataSet( const char* name )

-
-

 

-
-

x

-
-

 

-
-

DataSet H5Location::openDataSet( const H5std_string& name)

-
-

 

-
-

x

-
-

 

-
-

H5Dclose

-
-

void DataSet::close()

-
-

 

-
-

 

-
-

 

-
-

DataSet destructor

-
-

 

-
-

 

-
-

 

-
-

H5Dget_space

-
-

DataSpace DataSet::getSpace()

-
-

 

-
-

 

-
-

 

-
-

H5Dget_space_status

-
-

void DataSet::getSpaceStatus(H5D_space_status_t& status)

-
-

 

-
-

 

-
-

 

-
-

H5Dget_type

-
-

DataType AbstractDs::getDataType()

-
-

 

-
-

 

-
-

 

-
-

ArrayType AbstractDs::getArrayType()

-
-

 

-
-

 

-
-

 

-
-

CompType AbstractDs::getCompType()

-
-

 

-
-

 

-
-

 

-
-

EnumType AbstractDs::getEnumType()

-
-

 

-
-

 

-
-

 

-
-

IntType AbstractDs::getIntType()

-
-

 

-
-

 

-
-

 

-
-

FloatType AbstractDs::getFloatType()

-
-

 

-
-

 

-
-

 

-
-

StrType AbstractDs::getStrType()

-
-

 

-
-

 

-
-

 

-
-

VarLenType AbstractDs::getVarLenType()

-
-

 

-
-

 

-
-

 

-
-

H5Dget_create_plist

-
-

DSetCreatPropList DataSet::getCreatePlist()

-
-

 

-
-

 

-
-

 

-
-

H5Dget_access_plist

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Dget_storage_size

-
-

hsize_t DataSet::getStorageSize()

-
-

 

-
-

 

-
-

 

-
-

H5Dget_offset

-
-

haddr_t DataSet::getOffset()

-
-

 

-
-

 

-
-

 

-
-

H5Dread

-
-

void DataSet::read( void* buf, const DataType& mem_type, const - DataSpace& mem_space, const DataSpace& file_space, const - DSetMemXferPropList& xfer_plist )

-
-

 

-
-

 

-
-

 

-
-

void DataSet::read(H5std_string& strg, const DataType& - mem_type, const DataSpace& mem_space, const DataSpace& file_space, - const DSetMemXferPropList& xfer_plist)

-
-

 

-
-

 

-
-

 

-
-

H5Dwrite

-
-

void DataSet::write( const void* buf, const DataType& mem_typ= -e, - const DataSpace& mem_space, const DataSpace& file_space, const - DSetMemXferPropList& xfer_plist )

-
-

 

-
-

 

-
-

 

-
-

void DataSet::write( const H5std_string& strg, const - DataType& mem_type, const DataSpace& mem_space, const DataSpace&a= -mp; - file_space, const DSetMemXferPropList& xfer_plist )

-
-

 

-
-

 

-
-

 

-
-

H5Diterate

-
-

int DataSet::iterateElems( void* buf, const DataType& type, c= -onst - DataSpace& space, H5D_operator_t op, void* op_data )

-
-

 

-
-

 

-
-

 

-
-

H5Dvlen_reclaim

-
-

void DataSet::vlenReclaim(const DataType& type, const - DataSpace& space, const DSetMemXferPropList& xfer_plist, void* bu= -f )

-
-

 

-
-

 

-
-

Remove this one

-
-

void DataSet::vlenReclaim(void* buf, const DataType& type, co= -nst - DataSpace& space, const DSetMemXferPropList& xfer_plist)

-
-

 

-
-

 

-
-

Better prototype

-
-

H5Dvlen_get_buf_size

-
-

hsize_t DataSet::getVlenBufSize(const DataType& type, const - DataSpace& space)

-
-

 

-
-

 

-
-

 

-
-

H5Dfill

-
-

void DataSet::fillMemBuf(const void *fill, const DataType& - fill_type, void *buf, const DataType& buf_type, const DataSpace& - space)

-
-

 

-
-

 

-
-

 

-
-

void DataSet::fillMemBuf(void *buf, const DataType& buf_type, - const DataSpace& space

-
-

 

-
-

 

-
-

 

-
-

H5Dset_extent

-
-

void DataSet::extend( const hsize_t* size )

-
-

 

-
-

 

-
-

 

-
-

H5Dscatter

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Dgather

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Ddebug

-
-

no

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Eregister_class

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eunregister_class

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eclose_msg

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Ecreate_msg

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Ecreate_stack

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eget_current_stack

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eclose_stack

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eget_class_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eset_current_stack

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Epush2

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Epop

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Eprint2

-
-

void Exception::printErrorStack(FILE* stream, hid_t err_stack)

-
-

 

-
-

 

-
-

 

-
-

H5Ewalk2

-
-

void Exception::walkErrorStack( H5E_direction_t direction, - H5E_walk2_t func, void* client_data )

-
-

 

-
-

 

-
-

 

-
-

H5Eget_auto2

-
-

void Exception::getAutoPrint( H5E_auto2_t& func, void** - client_data )

-
-

 

-
-

 

-
-

 

-
-

H5Eset_auto2

-
-

void Exception::setAutoPrint( H5E_auto2_t& func, void* - client_data )

-
-

 

-
-

 

-
-

 

-
-

H5Eclear2

-
-

void Exception::clearErrorStack()

-
-

 

-
-

 

-
-

 

-
-

H5Eauto_is_v2

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Eget_msg

-
-

H5std_string Exception::getMajorString( hid_t err_major )

-
-

 

-
-

 

-
-

 

-
-

H5std_string Exception::getMinorString( hid_t err_minor )

-
-

 

-
-

 

-
-

 

-
-

H5Eget_num

-
-

no

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_core

-
-

void FileAccPropList::setCore (size_t increment, hbool_t - backing_store)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fapl_core

-
-

void FileAccPropList::getCore (size_t& increment, hbool_t& - backing_store)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_direct

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fapl_direct

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FD_family_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_family

-
-

void FileAccPropList::setFamily( hsize_t memb_size, const FileAcc= -PropList& - memb_plist)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fapl_family

-
-

void FileAccPropList::getFamily(hsize_t& memb_size, - FileAccPropList& memb_plist)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_log

-
-

void FileAccPropList::setLog(const char *logfile, unsigned flags, - size_t buf_size)

-
-

 

-
-

 

-
-

 

-
-

H5FD_multi_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_multi

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fapl_multi

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_split

-
-

void FileAccPropList::setSplit(const FileAccPropList& meta_pl= -ist, - const FileAccPropList& raw_plist, const char* meta_ext, const char* - raw_ext )

-
-

 

-
-

 

-
-

 

-
-

void FileAccPropList::setSplit(FileAccPropList& meta_plist, - FileAccPropList& raw_plist, const char* meta_ext, const char* raw_ext= - )

-
-

 

-
-

 

-
-

 

-
-

void FileAccPropList::setSplit(const FileAccPropList& meta_pl= -ist, - const FileAccPropList& raw_plist, const H5std_string& meta_ext, c= -onst - H5std_string& raw_ext )

-
-

 

-
-

 

-
-

 

-
-

void FileAccPropList::setSplit(FileAccPropList& meta_plist, - FileAccPropList& raw_plist, const H5std_string& meta_ext, const - H5std_string& raw_ext )

-
-

 

-
-

 

-
-

 

-
-

H5FD_log_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FD_core_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FD_direct_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5FDregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDunregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDopen

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDclose

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDcmp

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDquery

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDalloc

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDfree

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDget_eoa

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDset_eoa

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDget_eof

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDget_vfd_handle

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDread

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDwrite

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDflush

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FDtruncate

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5FD_sec2_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_sec2

-
-

void FileAccPropList::setSec2()

-
-

 

-
-

 

-
-

 

-
-

H5FD_stdio_init

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_stdio

-
-

void FileAccPropList::setStdio()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fapl_windows

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fis_hdf5

-
-

bool H5File::isHdf5(const char* name)

-
-

 

-
-

 

-
-

 

-
-

H5Fcreate

-
-

H5File::H5File( const char* name, unsigned int flags, const - FileCreatPropList& create_plist, const FileAccPropList& access_pl= -ist - )

-
-

 

-
-

 

-
-

 

-
-

H5File::H5File( const H5std_string& name, unsigned int flags, - const FileCreatPropList& create_plist, const FileAccPropList& - access_plist )

-
-

 

-
-

 

-
-

 

-
-

H5Fopen

-
-

H5File::H5File( const char* name, unsigned int flags, const - FileCreatPropList& create_plist, const FileAccPropList& access_pl= -ist - )

-
-

 

-
-

 

-
-

 

-
-

H5File::H5File( const H5std_string& name, unsigned int flags, - const FileCreatPropList& create_plist, const FileAccPropList& - access_plist )

-
-

 

-
-

 

-
-

 

-
-

void H5File::openFile(const char* name, unsigned int flags, const - FileAccPropList& access_plist)

-
-

 

-
-

 

-
-

 

-
-

H5Freopen

-
-

void H5File::reOpen()

-
-

 

-
-

 

-
-

 

-
-

H5Fflush

-
-

void H5Location::flush(H5F_scope_t scope)

-
-

 

-
-

 

-
-

 

-
-

void Attribute::flush(H5F_scope_t scope)

-
-

 

-
-

 

-
-

 

-
-

H5Fclose

-
-

void H5File::close()

-
-

 

-
-

 

-
-

 

-
-

H5File destructor

-
-

 

-
-

 

-
-

 

-
-

H5Fget_create_plist

-
-

FileCreatPropList H5File::getCreatePlist()

-
-

 

-
-

 

-
-

 

-
-

H5Fget_access_plist

-
-

FileAccPropList H5File::getAccessPlist()

-
-

 

-
-

 

-
-

 

-
-

H5Fget_intent

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_obj_count

-
-

ssize_t H5File::getObjCount(unsigned types)

-
-

 

-
-

 

-
-

 

-
-

ssize_t H5File::getObjCount()

-
-

 

-
-

 

-
-

 

-
-

H5Fget_obj_ids

-
-

void H5File::getObjIDs(unsigned types, size_t max_objs, hid_t - *oid_list)

-
-

 

-
-

 

-
-

 

-
-

H5Fget_vfd_handle

-
-

void H5File::getVFDHandle(const FileAccPropList& fapl, void - **file_handle)

-
-

 

-
-

 

-
-

 

-
-

void H5File::getVFDHandle(void **file_handle)

-
-

 

-
-

 

-
-

 

-
-

H5Fmount

-
-

void CommonFG::mount(const char* name, const H5File& child, c= -onst - PropList& plist )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::mount(const char* name, H5File& child, - PropList& plist)

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::mount(const H5std_string& name, const H5File&a= -mp; - child, const PropList& plist)

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::mount(const H5std_string& name, H5File& ch= -ild, - PropList& plist)

-
-

 

-
-

 

-
-

 

-
-

H5Funmount

-
-

void CommonFG::unmount( const char* name )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::unmount( const H5std_string& name )

-
-

 

-
-

 

-
-

 

-
-

H5Fget_freespace

-
-

hssize_t H5File::getFreeSpace()

-
-

 

-
-

 

-
-

 

-
-

H5Fget_filesize

-
-

hsize_t H5File::getFileSize()

-
-

 

-
-

 

-
-

 

-
-

H5Fget_file_image

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_mdc_config

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fset_mdc_config

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_mdc_hit_rate

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_mdc_size

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Freset_mdc_hit_rate_stats

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_name

-
-

H5std_string H5Location::getFileName()

-
-

 

-
-

 

-
-

 

-
-

H5std_string Attribute::getFileName()

-
-

 

-
-

 

-
-

Will be retired

-
-

H5Fget_info2

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fget_free_sections

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Fclear_elink_file_cache

-
-

no

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Gcreate2

-
-

Group CommonFG::createGroup( const char* name, size_t size_hint )= -

-
-

x

-
-

 

-
-

 

-
-

Group CommonFG::createGroup( const H5std_string& name, size_t - size_hint )

-
-

x

-
-

 

-
-

 

-
-

 

-
-

Group H5Location::createGroup( const char* name, size_t size_hint= - )

-
-

 

-
-

x

-
-

 

-
-

Group H5Location::createGroup( const H5std_string& name, size= -_t - size_hint )

-
-

 

-
-

x

-
-

 

-
-

H5Gcreate_anon

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gopen2

-
-

Group CommonFG::openGroup( const char* name )

-
-

x

-
-

 

-
-

 

-
-

Group CommonFG::openGroup( const H5std_string& name )

-
-

x

-
-

 

-
-

 

-
-

Group H5Location::openGroup( const char* name )

-
-

 

-
-

x

-
-

 

-
-

Group H5Location::openGroup( const H5std_string& name )

-
-

 

-
-

x

-
-

 

-
-

H5Gget_create_plist

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gget_info

-
-

hsize_t CommonFG::getNumObjs()

-
-

x

-
-

 

-
-

 

-
-

hsize_t H5Location::getNumObjs()

-
-

 

-
-

x

-
-

Moved to Group in 1.10.2

-
-

hsize_t Group::getNumObjs()

-
-

 

-
-

x

-
-

 

-
-

H5Gget_info_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gget_info_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gclose

-
-

void Group::close()

-
-

 

-
-

 

-
-

 

-
-

Group destructor

-
-

 

-
-

 

-
-

 

-
-

H5Glink

-
-

Deprecated

-
-

 

-
-

 

-
-

 

-
-

H5Glink2

-
-

Deprecated

-
-

 

-
-

 

-
-

 

-
-

H5Gmove

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gmove2

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gunlink

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lcreate_hard

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lcreate_soft

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gget_linkval

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gset_comment

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gget_comment

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Giterate

-
-

int CommonFG::iterateElems( const char* name, int *idx, H5G_itera= -te_t - op , void* op_data )

-
-

 

-
-

 

-
-

 

-
-

int CommonFG::iterateElems( const H5std_string& name, int *id= -x, - H5G_iterate_t op , void* op_data )

-
-

 

-
-

 

-
-

 

-
-

H5Gget_num_objs

-
-

no

-
-

 

-
-

 

-
-

 

-
-

H5Gg= -et_objinfo

-
-

void CommonFG::getObjinfo( const char* name, hbool_t follow_link, - H5G_stat_t& statbuf )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::getObjinfo( const H5std_string& name, hbool_t - follow_link, H5G_stat_t& statbuf )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::getObjinfo( const char* name, H5G_stat_t& stat= -buf - )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::getObjinfo( const H5std_string& name, - H5G_stat_t& statbuf )

-
-

 

-
-

 

-
-

 

-
-

H5Gget_objname_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Gg= -et_objtype_by_idx

-
-

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx)

-
-

 

-
-

 

-
-

 

-
-

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx, char* type_name)= -

-
-

 

-
-

 

-
-

 

-
-

H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx, H5std_string& - type_name)

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Iregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iobject_verify

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iremove_verify

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iget_type

-
-

H5I_type_t IdComponent::getHDFObjType(const hid_t obj_id)

-
-

 

-
-

 

-
-

 

-
-

H5Iget_file_id

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iget_name

-
-

ssize_t H5Object::getObjName(char *obj_name, size_t buf_size)

-
-

 

-
-

 

-
-

 

-
-

H5std_string H5Object::getObjName()

-
-

 

-
-

 

-
-

 

-
-

ssize_t H5Object::getObjName(H5std_string& obj_name, size_t l= -en)

-
-

 

-
-

 

-
-

 

-
-

H5Iinc_ref

-
-

void IdComponent::incRefCount(const hid_t obj_id)

-
-

 

-
-

 

-
-

 

-
-

void IdComponent::incRefCount()

-
-

 

-
-

 

-
-

 

-
-

H5Idec_ref

-
-

void IdComponent::decRefCount(const hid_t obj_id)

-
-

 

-
-

 

-
-

 

-
-

void IdComponent::decRefCount()

-
-

 

-
-

 

-
-

 

-
-

H5Iget_ref

-
-

int IdComponent::getCounter(const hid_t obj_id)

-
-

 

-
-

 

-
-

 

-
-

int IdComponent::getCounter()

-
-

 

-
-

 

-
-

 

-
-

H5Iregister_type

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iclear_type

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Idestroy_type

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iinc_type_ref

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Idec_type_ref

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iget_type_ref

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Isearch

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Inmembers

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Itype_exists

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Iis_valid

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Lmove

-
-

void CommonFG::move( const char* src, const char* dst )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::move( const H5std_string& src, const - H5std_string& dst )

-
-

 

-
-

 

-
-

 

-
-

H5Lcopy

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lcreate_hard

-

H5Lcreate_soft

-
-

void CommonFG::link( H5L_type_t link_type, const char* curr_name, - const char* new_name )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::link( H5L_type_t link_type, const H5std_string& - curr_name, const H5std_string& new_name )

-
-

 

-
-

 

-
-

 

-
-

H5Ldelete

-
-

void CommonFG::unlink( const char* name )

-
-

 

-
-

 

-
-

 

-
-

void CommonFG::unlink( const H5std_string& name )

-
-

 

-
-

 

-
-

 

-
-

H5Ldelete_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lget_val

-
-

H5std_string CommonFG::getLinkval( const char* name, size_t size = -)

-
-

x

-
-

 

-
-

 

-
-

H5std_string CommonFG::getLinkval( const H5std_string& name, - size_t size )

-
-

x

-
-

 

-
-

 

-
-

H5std_string H5Location::getLinkval( const char* name, size_t siz= -e )

-
-

 

-
-

x

-
-

 

-
-

H5std_string H5Location::getLinkval( const H5std_string& name, - size_t size )

-
-

 

-
-

x

-
-

 

-
-

H5Lget_val_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lexists

-
-

bool H5Location::nameExists(const char* name, const - LinkAccPropList& lapl)

-
-

 

-
-

 

-
-

 

-
-

bool H5Location::nameExists(const H5std_string& name, const - LinkAccPropList& lapl)

-
-

 

-
-

 

-
-

 

-
-

H5Lget_info

-
-

Only used in getLinkval; need to replace H5Gget_objinfo occurrenc= -es

-
-

 

-
-

 

-
-

 

-
-

H5Lget_info_by_idx

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Lget_name_by_idx

-
-

H5std_string CommonFG::getObjnameByIdx(hsize_t idx)

-
-

x

-
-

 

-
-

 

-
-

ssize_t CommonFG::getObjnameByIdx(hsize_t idx, char* name, size_t - size)

-
-

x

-
-

 

-
-

 

-
-

ssize_t CommonFG::getObjnameByIdx(hsize_t idx, H5std_string& - name, size_t size)

-
-

x

-
-

 

-
-

 

-
-

H5std_string H5Location::getObjnameByIdx(hsize_t idx)

-
-

 

-
-

x

-
-

 

-
-

ssize_t H5Location::getObjnameByIdx(hsize_t idx, char* name, size= -_t - size)

-
-

 

-
-

x

-
-

 

-
-

ssize_t H5Location::getObjnameByIdx(hsize_t idx, H5std_string& - name, size_t size)

-
-

 

-
-

x

-
-

 

-
-

H5Literate

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Literate_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lvisit

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lvisit_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Lcreate_ud

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lunregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lis_registered

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lunpack_elink_val

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Lcreate_external

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Oopen

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oopen_by_addr

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oopen_by_idx

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oexists_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oget_info

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oget_info_by_name

-
-

H5O_type_t CommonFG::childObjType(const char* objname)

-
-

 

-
-

 

-
-

 

-
-

H5O_type_t CommonFG::childObjType(const H5std_string& objname= -)

-
-

 

-
-

 

-
-

 

-
-

H5O_type_t H5Location::childObjType(const char* objname)

-
-

 

-
-

 

-
-

 

-
-

H5O_type_t H5Location::childObjType(const H5std_string& objna= -me)

-
-

 

-
-

 

-
-

 

-
-

H5Oget_info_by_idx

-
-

H5O_type_t CommonFG::childObjType(hsize_t index, H5_index_t - index_type, H5_iter_order_t order, const char* objname)

-
-

 

-
-

 

-
-

 

-
-

H5O_type_t H5Location::childObjType(hsize_t index, H5_index_t - index_type, H5_iter_order_t order, const char* objname)

-
-

 

-
-

 

-
-

 

-
-

H5Olink

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oincr_refcount

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Odecr_refcount

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Ocopy

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oset_comment

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oset_comment_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oget_comment

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oget_comment_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Ovisit

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Ovisit_by_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Oclose

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5PLset_loading_state

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5PLget_loading_state

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Pcreate_class

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_class_name

-
-

H5std_string PropList::getClassName()

-
-

 

-
-

 

-
-

 

-
-

H5Pcreate

-
-

PropList::PropList(const hid_t plist_id)

-
-

 

-
-

 

-
-

 

-
-

H5Pregister2

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pinsert2

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset

-
-

void PropList::setProperty(const char* name, void* value)

-
-

 

-
-

 

-
-

 

-
-

void PropList::setProperty(const char* name, const char* charptr)= -

-
-

 

-
-

 

-
-

 

-
-

void PropList::setProperty(const char* name, H5std_string& st= -rg)

-
-

 

-
-

 

-
-

 

-
-

void PropList::setProperty(const H5std_string& name, void* va= -lue)

-
-

 

-
-

 

-
-

 

-
-

void PropList::setProperty(const H5std_string& name, - H5std_string& strg)

-
-

 

-
-

 

-
-

 

-
-

H5Pexist

-
-

bool PropList::propExist(const char* name )

-
-

 

-
-

 

-
-

 

-
-

bool PropList::propExist(const H5std_string& name )

-
-

 

-
-

 

-
-

 

-
-

H5Pencode

-
-

void DataType::encode()

-
-

 

-
-

 

-
-

 

-
-

H5Pdecode

-
-

virtual DataType* DataType::decode()

-

virtual DataType* ArrayType::decode()

-

virtual DataType* CompType::decode()

-

virtual DataType* DataType::decode()

-

virtual DataType* EnumType::decode()

-

virtual DataType* FloatType::decode()

-

virtual DataType* IntType::decode()

-

virtual DataType* StrType::decode()

-

virtual DataType* VarLenType::decode()

-
-

 

-
-

 

-
-

 

-
-

H5Pget_size

-
-

size_t PropList::getPropSize(const char *name)

-
-

 

-
-

 

-
-

 

-
-

size_t PropList::getPropSize(const H5std_string& name)

-
-

H5Pget_nprops

-
-

size_t PropList::getNumProps()

-
-

 

-
-

 

-
-

 

-
-

H5Pget_class

-
-

hid_t PropList::getClass()

-
-

 

-
-

 

-
-

 

-
-

H5Pget_class_parent

-
-

PropList PropList::getClassParent()

-
-

 

-
-

 

-
-

 

-
-

H5Pget

-
-

void PropList::getProperty(const char* name, void* value)

-
-

 

-
-

 

-
-

 

-
-

H5std_string PropList::getProperty(const char* name)

-
-

void PropList::getProperty(const H5std_string& name, void* va= -lue)

-
-

H5std_string PropList::getProperty(const H5std_string& name)<= -/p> -

-

H5Pequal

-
-

bool PropList::operator=3D=3D(const PropList& rhs)

-
-

 

-
-

 

-
-

 

-
-

H5Pisa_class

-
-

bool PropList::isAClass(const PropList& prop_class)

-
-

 

-
-

 

-
-

 

-
-

H5Piterate

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pcopy_prop

-
-

void PropList::copyProp(PropList& dest, const char *name)

-
-

 

-
-

 

-
-

 

-
-

void PropList::copyProp( PropList& dest, const H5std_string&a= -mp; - name )

-
-

void PropList::copyProp( PropList& dest, PropList& src, c= -onst - char *name )

-
-

void PropList::copyProp( PropList& dest, PropList& src, c= -onst - H5std_string& name )

-
-

H5Premove

-
-

void PropList::removeProp(const char *name)

-
-

 

-
-

 

-
-

 

-
-

void PropList::removeProp(const H5std_string& name)

-
-

H5Punregister

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pclose_class

-
-

void PropList::closeClass()

-
-

 

-
-

 

-
-

 

-
-

H5Pclose

-
-

void PropList::close()

-
-

 

-
-

 

-
-

 

-
-

PropList destructor

-
-

 

-
-

 

-
-

 

-
-

H5Pcopy

-
-

void PropList::copy( const PropList& like_plist )

-
-

 

-
-

 

-
-

 

-
-

H5Pset_attr_phase_change

-
-

void ObjCreatPropList::setAttrPhaseChange(unsigned max_compact = -=3D 8, - unsigned min_dense =3D 6)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_attr_phase_change

-
-

void ObjCreatPropList::getAttrPhaseChange(unsigned& max_compa= -ct, - unsigned& min_dense)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_attr_creation_order

-
-

void ObjCreatPropList::setAttrCrtOrder(unsigned crt_order_flags)<= -/p> -

-

 

-
-

 

-
-

 

-
-

H5Pget_attr_creation_order

-
-

unsigned ObjCreatPropList::getAttrCrtOrder()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_obj_track_times

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_obj_track_times

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pmodify_filter

-
-

void modifyFilter(H5Z_filter_t filter_id, unsigned int flags, siz= -e_t - cd_nelmts, const unsigned int cd_values[])

-
-

 

-
-

 

-
-

 

-
-

H5Pset_filter

-
-

void DSetCreatPropList::setFilter(H5Z_filter_t filter_id, unsigned - int flags,

-

        size_t cd_nelmts,= - const - unsigned int cd_values[])

-
-

 

-
-

 

-
-

 

-
-

H5Pget_nfilters

-
-

int DSetCreatPropList::getNfilters()

-
-

 

-
-

 

-
-

 

-
-

H5Pget_filter2

-
-

H5Z_filter_t DSetCreatPropList::getFilter(int filter_number,

-

        unsigned int - &flags, size_t &cd_nelmts, unsigned int* cd_values,

-

        size_t namelen, c= -har - name[], unsigned int& filter_config)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_filter_by_id2

-
-

void DSetCreatPropList::getFilterById(H5Z_filter_t filter_id,

-

        unsigned int - &flags, size_t &cd_nelmts, unsigned int* cd_values,

-

        size_t namelen, c= -har - name[], unsigned int &filter_config)

-
-

 

-
-

 

-
-

 

-
-

H5Pall_filters_avail

-
-

bool DSetCreatPropList::allFiltersAvail()

-
-

 

-
-

 

-
-

 

-
-

H5Premove_filter

-
-

void DSetCreatPropList::removeFilter(H5Z_filter_t filter_id)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_deflate

-
-

void DSetCreatPropList::setDeflate(int level)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fletcher32

-
-

void DSetCreatPropList::setFletcher32()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_userblock

-
-

void FileCreatPropList::setUserblock(hsize_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_userblock

-
-

hsize_t FileCreatPropList::getUserblock()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_sizes

-
-

void FileCreatPropList::setSizes(size_t sizeof_addr, size_t - sizeof_size)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_sizes

-
-

void FileCreatPropList::getSizes(size_t& sizeof_addr, size_t&= -amp; - sizeof_size)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_sym_k

-
-

void FileCreatPropList::setSymk(unsigned ik, unsigned lk)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_sym_k

-
-

void FileCreatPropList::getSymk(unsigned& ik, unsigned& l= -k)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_istore_k

-
-

void FileCreatPropList::setIstorek(unsigned ik)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_istore_k

-
-

unsigned FileCreatPropList::getIstorek()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_shared_mesg_nindexes

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_shared_mesg_nindexes

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_shared_mesg_index

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_shared_mesg_index

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_shared_mesg_phase_change

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_shared_mesg_phase_change

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_file_space

-
-

void FileCreatPropList::setFileSpaceStrategy(H5F_fspace_strategy_t - strategy, hbool_t persist, hsize_t threshold)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_file_space

-
-

void - FileCreatPropList::getFileSpaceStrategy(H5F_fspace_strategy_t& strate= -gy, - hbool_t& persist, hsize_t& threshold)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_alignment

-
-

void FileAccPropList::setAlignment(hsize_t threshold, hsize_t - alignment)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_alignment

-
-

void FileAccPropList::getAlignment(hsize_t &threshold, hsize_t - &alignment)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_driver

-
-

void FileAccPropList::setDriver(hid_t new_driver_id, const void - *new_driver_info)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_driver

-
-

hid_t FileAccPropList::getDriver()

-
-

 

-
-

 

-
-

 

-
-

H5Pget_driver_info

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_family_offset

-
-

void FileAccPropList::setFamilyOffset(hsize_t offset)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_family_offset

-
-

hsize_t FileAccPropList::getFamilyOffset()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_multi_type

-
-

void FileAccPropList::setMultiType(H5FD_mem_t dtype)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_multi_type

-
-

H5FD_mem_t FileAccPropList::getMultiType()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_cache

-
-

void FileAccPropList::setCache(int mdc_nelmts, size_t rdcc_nelmts, - size_t rdcc_nbytes, double rdcc_w0)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_cache

-
-

void FileAccPropList::getCache(int& mdc_nelmts, size_t& - rdcc_nelmts, size_t& rdcc_nbytes, double& rdcc_w0)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_mdc_config

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_mdc_config

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_gc_references

-
-

void FileAccPropList::setGcReferences(unsigned gc_ref)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_gc_references

-
-

unsigned FileAccPropList::getGcReferences()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fclose_degree

-
-

void FileAccPropList::setFcloseDegree(H5F_close_degree_t degree)<= -/p> -

-

 

-
-

 

-
-

 

-
-

H5Pget_fclose_degree

-
-

H5F_close_degree_t FileAccPropList::getFcloseDegree()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_meta_block_size

-
-

void FileAccPropList::setMetaBlockSize(hsize_t &block_size) -

-

 

-
-

 

-
-

 

-
-

H5Pget_meta_block_size

-
-

hsize_t FileAccPropList::getMetaBlockSize()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_sieve_buf_size

-
-

void FileAccPropList::setSieveBufSize(size_t bufsize)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_sieve_buf_size

-
-

size_t FileAccPropList::getSieveBufSize()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_small_data_block_size

-
-

void DSetMemXferPropList::setSmallDataBlockSize(hsize_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_small_data_block_size

-
-

hsize_t DSetMemXferPropList::getSmallDataBlockSize()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_libver_bounds

-
-

void FileAccPropList::setLibverBounds(H5F_libver_t libver_low, - H5F_libver_t libver_high)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_libver_bounds

-
-

void FileAccPropList::getLibverBounds(H5F_libver_t& libver_lo= -w, H5F_libver_t& - libver_high)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_file_cache_size

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_file_cache_size

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_elink_file_cache_size

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_file_image

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_file_image

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_file_image_callbacks

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_file_image_callbacks

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Pset_core_write_tracking

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_core_write_tracking

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Pset_layout

-
-

void DSetCreatPropList::setLayout(H5D_layout_t layout)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_layout

-
-

H5D_layout_t DSetCreatPropList::getLayout()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_chunk

-
-

void DSetCreatPropList::setChunk(int ndims, const hsize_t* dim) -

-

 

-
-

 

-
-

 

-
-

H5Pget_chunk

-
-

int DSetCreatPropList::getChunk(int max_ndims, hsize_t* dim)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_external

-
-

void DSetCreatPropList::setExternal(const char* name, off_t offse= -t, - hsize_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_external_count

-
-

int DSetCreatPropList::getExternalCount

-
-

 

-
-

 

-
-

 

-
-

H5Pget_external

-
-

void DSetCreatPropList::getExternal(unsigned idx, size_t name_siz= -e, - char* name, off_t& offset, hsize_t& size)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_szip

-
-

void DSetCreatPropList::setSzip(unsigned int options_mask, unsign= -ed - int pixels_per_block)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_shuffle

-
-

void DSetCreatPropList::setShuffle()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_nbit

-
-

void DSetCreatPropList::setNbit()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_scaleoffset

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fill_value

-
-

void DSetCreatPropList::setFillValue(const DataType& fvalue_t= -ype, - const void* value)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fill_value

-
-

void DSetCreatPropList::getFillValue(const DataType& fvalue_t= -ype, - void* value)

-
-

 

-
-

 

-
-

 

-
-

H5Pfill_value_defined

-
-

H5D_fill_value_t DSetCreatPropList::isFillValueDefined()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_alloc_time

-
-

void DSetCreatPropList::setAllocTime(H5D_alloc_time_t alloc_time)= -

-
-

 

-
-

 

-
-

 

-
-

H5Pget_alloc_time

-
-

H5D_alloc_time_t DSetCreatPropList::getAllocTime()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_fill_time

-
-

void DSetCreatPropList::setFillTime(H5D_fill_time_t fill_time)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_fill_time

-
-

H5D_fill_time_t DSetCreatPropList::getFillTime()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_chunk_cache

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_chunk_cache

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_data_transform

-
-

void DSetMemXferPropList::setDataTransform(const char* expression= -)

-

void DSetMemXferPropList::setDataTransform(const H5std_string& - expression)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_data_transform

-
-

ssize_t DSetMemXferPropList::getDataTransform(char* exp, size_t - buf_size)

-

H5std_string DSetMemXferPropList::getDataTransform()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_buffer

-
-

void DSetMemXferPropList::setBuffer(size_t size, void* tconv, voi= -d* - bkg)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_buffer

-
-

size_t DSetMemXferPropList::getBuffer(void** tconv, void** bkg) -

-

 

-
-

 

-
-

 

-
-

H5Pset_preserve

-
-

void DSetMemXferPropList::setPreserve(bool status)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_preserve

-
-

bool DSetMemXferPropList::getPreserve()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_edc_check

-
-

void DSetMemXferPropList::setEDCCheck(H5Z_EDC_t check)

-
-

 

-
-

 

-
-

 

-
-

H5Z_EDC_t H5Pget_edc_check

-
-

H5Z_EDC_t DSetMemXferPropList::getEDCCheck()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_filter_callback

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_btree_ratios

-
-

void DSetMemXferPropList::setBtreeRatios(double left, double midd= -le, - double right)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_btree_ratios

-
-

void DSetMemXferPropList::getBtreeRatios(double& left, - double& middle, double& right)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_vlen_mem_manager

-
-

void DSetMemXferPropList::setVlenMemManager()

-

void DSetMemXferPropList::setVlenMemManager(H5MM_allocate_t - alloc_func, void* alloc_info, H5MM_free_t free_func, void* free_info)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_vlen_mem_manager

-
-

void DSetMemXferPropList::getVlenMemManager(H5MM_allocate_t& - alloc_func, void** alloc_info, H5MM_free_t& free_func, void** free_in= -fo)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_hyper_vector_size

-
-

void DSetMemXferPropList::setHyperVectorSize(size_t vector_size)<= -/p> -

-

 

-
-

 

-
-

 

-
-

H5Pget_hyper_vector_size

-
-

size_t DSetMemXferPropList::getHyperVectorSize()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_type_conv_cb

-
-

void DSetMemXferPropList::setTypeConvCB(H5T_conv_except_func_t op, - void *user_data)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_type_conv_cb

-
-

void DSetMemXferPropList::getTypeConvCB(H5T_conv_except_func_t *o= -p, - void **user_data)

-
-

 

-
-

 

-
-

 

-
-

H5Pset_create_intermediate_group

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_create_intermediate_group

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_local_heap_size_hint

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_local_heap_size_hint

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_link_phase_change

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_link_phase_change

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_est_link_info

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_est_link_info

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_link_creation_order

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_link_creation_order

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_char_encoding

-
-

ASAP

-
-

 

-
-

 

-
-

 

-
-

H5Pget_char_encoding

-
-

ASAP

-
-

 

-
-

 

-
-

 

-
-

H5Pset_nlinks

-
-

void LinkAccPropList::setNumLinks(size_t nlinks)

-
-

 

-
-

 

-
-

 

-
-

H5Pget_nlinks

-
-

size_t LinkAccPropList::getNumLinks()

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_prefix

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_elink_prefix

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_elink_fapl

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_fapl

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_acc_flags

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_elink_acc_flags

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_elink_cb

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_elink_cb

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Pset_copy_object

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_copy_object

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Padd_merge_committed_dtype_path

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pfree_merge_committed_dtype_paths

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pset_mcdt_search_cb

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Pget_mcdt_search_cb

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5open

-
-

void H5Library::open()

-
-

 

-
-

 

-
-

 

-
-

H5close

-
-

void H5Library::close()

-
-

 

-
-

 

-
-

 

-
-

H5dont_atexit

-
-

void H5Library::dontAtExit()

-
-

 

-
-

 

-
-

 

-
-

H5garbage_collect

-
-

void H5Library::garbageCollect()

-
-

 

-
-

 

-
-

 

-
-

H5set_free_list_limits

-
-

void H5Library::setFreeListLimits(int reg_global_lim, int reg_lis= -t_lim,

-

        int arr_global_li= -m, int - arr_list_lim, int blk_global_lim,

-

        int blk_list_lim)= -

-
-

 

-
-

 

-
-

 

-
-

H5get_libversion

-
-

void H5Library::getLibVersion(unsigned& majnum, unsigned& - minnum, unsigned& relnum)

-
-

 

-
-

 

-
-

 

-
-

H5check_version

-
-

void H5Library::checkVersion(unsigned majnum, unsigned minnum, - unsigned relnum)

-
-

 

-
-

 

-
-

 

-
-

H5free_memory

-
-

No wrapper

-
-

 

-
-

 

-
-

 

-
-

H5allocate_memory

-
-

No wrapper

-
-

 

-
-

 

-
-

 

-
-

H5resize_memory

-
-

No wrapper

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Rcreate

-
-

void H5Location::reference(void* ref, const char* name, const Dat= -aSpace& - dataspace, H5R_type_t ref_type)

-
-

 

-
-

 

-
-

 

-
-

void H5Location::reference(void* ref, const H5std_string& nam= -e, - const DataSpace& dataspace, H5R_type_t ref_type)

-
-

void H5Location::reference(void* ref, const char* name, H5R_type_t - ref_type)

-
-

void H5Location::reference(void* ref, const H5std_string& nam= -e, - H5R_type_t ref_type)

-
-

H5Rdereference2

-
-

DataSet::DataSet(const H5Location& loc, const void* ref, - H5R_type_t ref_type)

-

 

-
-

 

-
-

 

-
-

 

-
-

H5Rget_region

-
-

DataSpace H5Location::getRegion(void *ref, H5R_type_t ref_type) -

-

 

-
-

 

-
-

 

-
-

H5Rget_obj_type2

-
-

H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_ty= -pe)

-
-

 

-
-

 

-
-

 

-
-

H5Rget_name

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Rg= -et_obj_type1

-
-

Should remove from code

-
-

 

-
-

 

-
-

 

-
-

H5Rd= -ereference1

-
-

Removed

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Screate

-
-

DataSpace::DataSpace(H5S_class_t type)

-
-

 

-
-

 

-
-

 

-
-

H5Screate_simple

-
-

DataSpace::DataSpace(int rank, const hsize_t * dims, const hsize_= -t * - maxdims)

-
-

 

-
-

 

-
-

 

-
-

H5Sset_extent_simple

-
-

void DataSpace::setExtentSimple(int rank, const hsize_t - *current_size, const hsize_t *maximum_size)

-
-

 

-
-

 

-
-

 

-
-

H5Scopy

-
-

void DataSpace::copy(const DataSpace& like_space)

-
-

 

-
-

 

-
-

 

-
-

H5Sclose

-
-

void DataSpace::close()

-
-

 

-
-

 

-
-

 

-
-

H5Sencode

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Sdecode

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Sget_simple_extent_npoints

-
-

hssize_t DataSpace::getSimpleExtentNpoints

-
-

 

-
-

 

-
-

 

-
-

H5Sget_simple_extent_ndims

-
-

int DataSpace::getSimpleExtentNdims ()

-
-

 

-
-

 

-
-

 

-
-

H5Sget_simple_extent_dims

-
-

int DataSpace::getSimpleExtentDims (hsize_t *dims, hsize_t *maxdi= -ms)

-
-

 

-
-

 

-
-

 

-
-

H5Sis_simple

-
-

bool DataSpace::isSimple ()

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_npoints

-
-

hssize_t DataSpace::getSelectNpoints ()

-
-

 

-
-

 

-
-

 

-
-

H5Sselect_hyperslab

-
-

void DataSpace::selectHyperslab(H5S_seloper_t op, const hsize_t - *count, const hsize_t *start, const hsize_t *stride, const hsize_t *block= -)

-
-

 

-
-

 

-
-

 

-
-

H5Sselect_elements

-
-

void DataSpace::selectElements (H5S_seloper_t op, const size_t nu= -m_elements, - const hsize_t *coord)

-
-

 

-
-

 

-
-

 

-
-

H5Sget_simple_extent_type

-
-

H5S_class_t DataSpace::getSimpleExtentType ()

-
-

 

-
-

 

-
-

 

-
-

H5Sset_extent_none

-
-

void DataSpace::setExtentNone ()

-
-

 

-
-

 

-
-

 

-
-

H5Sextent_copy

-
-

void DataSpace::extentCopy (const DataSpace& dest_space)

-
-

 

-
-

 

-
-

 

-
-

H5Sextent_equal

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Sselect_all

-
-

void DataSpace::selectAll ()

-
-

 

-
-

 

-
-

 

-
-

H5Sselect_none

-
-

void DataSpace::selectNone ()

-
-

 

-
-

 

-
-

 

-
-

H5Soffset_simple

-
-

void DataSpace::offsetSimple (const hssize_t* offset)

-
-

 

-
-

 

-
-

 

-
-

H5Sselect_valid

-
-

bool DataSpace::selectValid ()

-
-

 

-
-

 

-
-

 

-
-

H5Sis_regular_hyperslab

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Sget_regular_hyperslab

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_hyper_nblocks

-
-

hssize_t DataSpace::getSelectHyperNblocks ()

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_elem_npoints

-
-

hssize_t DataSpace::getSelectElemNpoints ()

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_hyper_blocklist

-
-

void DataSpace::getSelectHyperBlocklist(hsize_t startblock, hsize= -_t - numblocks, hsize_t *buf)

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_elem_pointlist

-
-

void DataSpace::getSelectElemPointlist (hsize_t startpoint, hsize= -_t - numpoints, hsize_t *buf)

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_bounds

-
-

void DataSpace::getSelectBounds (hsize_t* start, hsize_t* end)

-
-

 

-
-

 

-
-

 

-
-

H5Sget_select_type

-
-

No

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

H5Tcreate

-
-

DataType::DataType(const H5T_class_t type_class, size_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Tcopy

-
-

DataType::DataType(const PredType& pred_type)

-
-

 

-
-

 

-
-

 

-
-

void DataType::copy(const DataType& like_type)

-
-

 

-
-

 

-
-

 

-
-

void DataType::copy(const DataSet& dset)

-
-

 

-
-

 

-
-

 

-
-

H5Tclose

-
-

void DataType::close()

-
-

 

-
-

 

-
-

 

-
-

DataType destructor

-
-

 

-
-

 

-
-

 

-
-

H5Tequal

-
-

bool DataType::operator=3D=3D(const DataType& compared_type)<= -/p> -

-

 

-
-

 

-
-

 

-
-

H5Tlock

-
-

void DataType::lock()

-
-

 

-
-

 

-
-

 

-
-

H5Tcommit2

-
-

void DataType::commit(const H5Location& loc, const char* name= -)

-
-

 

-
-

 

-
-

 

-
-

void DataType::commit(const H5Location& loc, const - H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

H5Topen2

-
-

DataType CommonFG::openDataType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

DataType CommonFG::openDataType(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

ArrayType CommonFG::openArrayType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

ArrayType CommonFG::openArrayType(const H5std_string& name) -

-

 

-
-

 

-
-

 

-
-

CompType CommonFG::openCompType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

CompType CommonFG::openCompType(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

EnumType CommonFG::openEnumType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

EnumType CommonFG::openEnumType(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

IntType CommonFG::openIntType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

IntType CommonFG::openIntType(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

FloatType CommonFG::openFloatType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

FloatType CommonFG::openFloatType(const H5std_string& name) -

-

 

-
-

 

-
-

 

-
-

StrType CommonFG::openStrType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

StrType CommonFG::openStrType(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

VarLenType CommonFG::openVarLenType(const char* name)

-
-

 

-
-

 

-
-

 

-
-

VarLenType CommonFG::openVarLenType(const H5std_string& name)= -

-
-

 

-
-

 

-
-

 

-
-

H5Tcommit_anon

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Tget_create_plist

-
-

PropList DataType::getCreatePlist()

-
-

 

-
-

 

-
-

 

-
-

H5Tcommitted

-
-

bool DataType::committed()

-
-

 

-
-

 

-
-

 

-
-

H5Tencode

-
-

void DataType::encode()

-
-

 

-
-

 

-
-

 

-
-

H5Tdecode

-
-

virtual DataType* DataType::decode() const;

-

virtual DataType* ArrayType::decode() const;

-

virtual DataType* CompType::decode() const;

-

virtual DataType* DataType::decode() const;

-

virtual DataType* EnumType::decode() const;

-

virtual DataType* FloatType::decode() const;

-

virtual DataType* IntType::decode() const;

-

virtual DataType* StrType::decode() const;

-

virtual DataType* VarLenType::decode() const;

-
-

 

-
-

 

-
-

 

-
-

H5Tinsert

-
-

void CompType::insertMember(const H5std_string& name, size_t - offset, const DataType& new_member)

-
-

 

-
-

 

-
-

 

-
-

H5Tpack

-
-

void CompType::pack()

-
-

 

-
-

 

-
-

 

-
-

H5Tenum_create

-
-

EnumType::EnumType(const IntType& data_type)

-
-

 

-
-

 

-
-

 

-
-

H5Tenum_insert

-
-

void EnumType::insert(const char* name, void *value)

-
-

 

-
-

 

-
-

 

-
-

H5Tenum_nameof

-
-

H5std_string EnumType::nameOf(void *value, size_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Tenum_valueof

-
-

void EnumType::valueOf(const char* name, void *value)

-
-

 

-
-

 

-
-

 

-
-

H5Tvlen_create

-
-

VarLenType::VarLenType(const DataType* base_type)

-
-

 

-
-

 

-
-

 

-
-

H5Tarray_create2

-
-

ArrayType::ArrayType(const DataType& base_type, int ndims, co= -nst - hsize_t* dims)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_array_ndims

-
-

int ArrayType::getArrayNDims()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_array_dims2

-
-

int ArrayType::getArrayDims(hsize_t* dims)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_tag

-
-

void DataType::setTag(const char* tag)

-
-

 

-
-

 

-
-

 

-
-

void DataType::setTag(const H5std_string& tag)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_tag

-
-

H5std_string DataType::getTag()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_super

-
-

DataType DataType::getSuper()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_class

-
-

H5T_class_t DataType::getClass()

-
-

 

-
-

 

-
-

 

-
-

H5Tdetect_class

-
-

bool DataType::detectClass(H5T_class_t cls)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_size

-
-

size_t DataType::getSize()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_order

-
-

H5T_order_t AtomType::getOrder()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_precision

-
-

size_t AtomType::getPrecision()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_offset

-
-

int AtomType::getOffset()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_pad

-
-

void AtomType::getPad(H5T_pad_t& lsb, H5T_pad_t& msb)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_sign

-
-

H5T_sign_t IntType::getSign()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_fields

-
-

void FloatType::getFields(size_t& spos, size_t& epos, - size_t& esize, size_t& mpos, size_t& msize)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_ebias

-
-

size_t FloatType::getEbias()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_norm

-
-

H5T_norm_t FloatType::getNorm(H5std_string& norm_string)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_inpad

-
-

H5T_pad_t FloatType::getInpad(H5std_string& pad_string)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_strpad

-
-

H5T_str_t StrType::getStrpad()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_nmembers

-
-

int CompType::getNmembers()

-
-

 

-
-

 

-
-

 

-
-

int EnumType::getNmembers()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_name

-
-

H5std_string CompType::getMemberName(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_index

-
-

int CompType::getMemberIndex(const char* name)

-
-

 

-
-

 

-
-

 

-
-

int CompType::getMemberIndex(const H5std_string& name)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_offset

-
-

size_t CompType::getMemberOffset(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_class

-
-

H5T_class_t CompType::getMemberClass(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_type

-
-

DataType CompType::getMemberDataType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

ArrayType CompType::getMemberArrayType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

CompType CompType::getMemberCompType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

EnumType CompType::getMemberEnumType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

IntType CompType::getMemberIntType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

FloatType CompType::getMemberFloatType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

StrType CompType::getMemberStrType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

VarLenType CompType::getMemberVarLenType(unsigned member_num)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_member_value

-
-

void EnumType::getMemberValue(unsigned memb_no, void *value)

-
-

 

-
-

 

-
-

 

-
-

H5Tget_cset

-
-

H5T_cset_t StrType::getCset()

-
-

 

-
-

 

-
-

 

-
-

H5Tis_variable_str

-
-

bool DataType::isVariableStr()

-
-

 

-
-

 

-
-

 

-
-

H5Tget_native_type

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Tset_size

-
-

void AtomType::setSize(size_t size)

-
-

 

-
-

 

-
-

 

-
-

void CompType::setSize(size_t size)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_order

-
-

void AtomType::setOrder(H5T_order_t order)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_precision

-
-

void AtomType::setPrecision(size_t precision)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_offset

-
-

void AtomType::setOffset(size_t offset)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_pad

-
-

void AtomType::setPad(H5T_pad_t lsb, H5T_pad_t msb)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_sign

-
-

void IntType::setSign(H5T_sign_t sign)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_fields

-
-

void FloatType::setFields(size_t spos, size_t epos, size_t esize, - size_t mpos, size_t msize)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_ebias

-
-

void FloatType::setEbias(size_t ebias)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_norm

-
-

void FloatType::setNorm(H5T_norm_t norm)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_inpad

-
-

void FloatType::setInpad(H5T_pad_t inpad)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_cset

-
-

void StrType::setCset(H5T_cset_t cset)

-
-

 

-
-

 

-
-

 

-
-

H5Tset_strpad

-
-

void StrType::setStrpad(H5T_str_t strpad)

-
-

 

-
-

 

-
-

 

-
-

H5Tregister

-
-

void DataType::registerFunc(H5T_pers_t pers, const char* name, co= -nst - DataType& dest, H5T_conv_t func)

-
-

 

-
-

 

-
-

 

-
-

H5Tunregister

-
-

void DataType::unregister(H5T_pers_t pers, const char* name, const - DataType& dest, H5T_conv_t func)

-
-

 

-
-

 

-
-

 

-
-

H5Tfind

-
-

H5T_conv_t DataType::find(const DataType& dest, H5T_cdata_t - **pcdata)

-
-

 

-
-

 

-
-

 

-
-

H5Tcompiler_conv

-
-

No

-
-

 

-
-

 

-
-

 

-
-

H5Tconvert

-
-

void DataType::convert(const DataType& dest, size_t nelmts, v= -oid - *buf, void *background, const PropList& plist)

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
-

 

-
- -

 

- -

 

- -
- - - - - -------=_NextPart_01D32FBF.F2FA1110 -Content-Location: file:///C:/25114090/C2Cppfunction_map_files/themedata.thmx -Content-Transfer-Encoding: base64 -Content-Type: application/vnd.ms-officetheme - -UEsDBBQABgAIAAAAIQDp3g+//wAAABwCAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbKyRy07DMBBF -90j8g+UtSpyyQAgl6YLHjseifMDImSQWydiyp1X790zSVEKoIBZsLNkz954743K9Hwe1w5icp0qv -8kIrJOsbR12l3zdP2a1WiYEaGDxhpQ+Y9Lq+vCg3h4BJiZpSpXvmcGdMsj2OkHIfkKTS+jgCyzV2 -JoD9gA7NdVHcGOuJkTjjyUPX5QO2sB1YPe7l+Zgk4pC0uj82TqxKQwiDs8CS1Oyo+UbJFkIuyrkn -9S6kK4mhzVnCVPkZsOheZTXRNajeIPILjBLDsAyJX89nIBkt5r87nons29ZZbLzdjrKOfDZezE7B -/xRg9T/oE9PMf1t/AgAA//8DAFBLAwQUAAYACAAAACEApdan58AAAAA2AQAACwAAAF9yZWxzLy5y -ZWxzhI/PasMwDIfvhb2D0X1R0sMYJXYvpZBDL6N9AOEof2giG9sb69tPxwYKuwiEpO/3qT3+rov5 -4ZTnIBaaqgbD4kM/y2jhdj2/f4LJhaSnJQhbeHCGo3vbtV+8UNGjPM0xG6VItjCVEg+I2U+8Uq5C -ZNHJENJKRds0YiR/p5FxX9cfmJ4Z4DZM0/UWUtc3YK6PqMn/s8MwzJ5PwX+vLOVFBG43lExp5GKh -qC/jU72QqGWq1B7Qtbj51v0BAAD//wMAUEsDBBQABgAIAAAAIQBreZYWgwAAAIoAAAAcAAAAdGhl -bWUvdGhlbWUvdGhlbWVNYW5hZ2VyLnhtbAzMTQrDIBBA4X2hd5DZN2O7KEVissuuu/YAQ5waQceg -0p/b1+XjgzfO3xTVm0sNWSycBw2KZc0uiLfwfCynG6jaSBzFLGzhxxXm6XgYybSNE99JyHNRfSPV -kIWttd0g1rUr1SHvLN1euSRqPYtHV+jT9yniResrJgoCOP0BAAD//wMAUEsDBBQABgAIAAAAIQCq -UiXfxgYAAIsaAAAWAAAAdGhlbWUvdGhlbWUvdGhlbWUxLnhtbOxZXYvbRhR9L/Q/CL07/pL8scQb -bNnOttlNQuyk5HFsj63JjjRGM96NCYGSPBYKpWnpQwN960NpG0igL+mv2TalTSF/oXdGtjxjj7ub -JYWlZA2LNDr3zpl7r84dSZev3I+oc4QTTljccIuXCq6D4yEbkXjScG/3u7ma63CB4hGiLMYNd465 -e2X3ww8uox0R4gg7YB/zHdRwQyGmO/k8H8Iw4pfYFMdwbcySCAk4TSb5UYKOwW9E86VCoZKPEIld -J0YRuL0xHpMhdvrSpbu7dN6hcBoLLgeGNOlJ19iwUNjRYVEi+JwHNHGOEG24MM+IHffxfeE6FHEB -FxpuQf25+d3LebSzMKJii61m11V/C7uFweiwpOZMJoNsUs/zvUoz868AVGziOtVOpVPJ/CkAGg5h -pSkX3affqrfa/gKrgdJDi+92tV0uGnjNf3mDc9OXPwOvQKl/bwPf7QYQRQOvQCne38B7XrUUeAZe -gVJ8ZQNfLTTbXtXAK1BISXy4gS74lXKwXG0GGTO6Z4XXfa9bLS2cr1BQDVl1ySnGLBbbai1C91jS -BYAEUiRI7Ij5FI/REKo4QJQMEuLsk0kIhTdFMeMwXCgVuoUy/Jc/Tx2piKAdjDRryQuY8I0hycfh -w4RMRcP9GLy6GuTNyx/fvHzunDx6cfLol5PHj08e/Zw6Mqz2UDzRrV5//8XfTz91/nr+3esnX9nx -XMf//tNnv/36pR0IK12F4NXXz/548ezVN5//+cMTC7yZoIEO75MIc+c6PnZusQgWpkJgMseD5O0s -+iEiukUznnAUIzmLxX9HhAb6+hxRZMG1sBnBOwlIjA14dXbPINwLk5kgFo/XwsgAHjBGWyyxRuGa -nEsLc38WT+yTJzMddwuhI9vcAYqN/HZmU9BWYnMZhNigeZOiWKAJjrFw5DV2iLFldXcJMeJ6QIYJ -42wsnLvEaSFiDUmfDIxqWhntkQjyMrcRhHwbsTm447QYta26jY9MJNwViFrI9zE1wngVzQSKbC77 -KKJ6wPeRCG0ke/NkqOM6XECmJ5gypzPCnNtsbiSwXi3p10Be7Gk/oPPIRCaCHNp87iPGdGSbHQYh -iqY2bI/EoY79iB9CiSLnJhM2+AEz7xB5DnlA8dZ03yHYSPfpanAblFWntCoQeWWWWHJ5FTOjfntz -OkZYSQ0Iv6HnEYlPFfc1Wff/W1kHIX317VPLqi6qoDcTYr2j9tZkfBtuXbwDlozIxdfuNprFNzHc -LpsN7L10v5du938v3dvu53cv2CuNBvmWW8V0q6427tHWffuYUNoTc4r3udq6c+hMoy4MSjv1zIqz -57hpCIfyToYJDNwkQcrGSZj4hIiwF6Ip7O+LrnQy4QvXE+5MGYdtvxq2+pZ4OosO2Ch9XC0W5aNp -Kh4cidV4wc/G4VFDpOhKdfUIlrlXbCfqUXlJQNq+DQltMpNE2UKiuhyUQVIP5hA0Cwm1snfCom5h -UZPul6naYAHUsqzA1smBDVfD9T0wASN4okIUj2Se0lQvs6uS+S4zvS2YRgXAPmJZAatM1yXXrcuT -q0tL7QyZNkho5WaSUJFRPYyHaIQX1SlHz0LjbXNdX6XUoCdDoeaD0lrRqNb+jcV5cw1269pAY10p -aOwcN9xK2YeSGaJpwx3DYz8cRlOoHS63vIhO4N3ZUCTpDX8eZZkmXLQRD9OAK9FJ1SAiAicOJVHD -lcvP0kBjpSGKW7EEgnBhydVBVi4aOUi6mWQ8HuOh0NOujchIp6eg8KlWWK8q8/ODpSWbQbp74ejY -GdBZcgtBifnVogzgiHB4+1NMozki8DozE7JV/a01poXs6u8TVQ2l44hOQ7ToKLqYp3Al5RkddZbF -QDtbrBkCqoVk0QgHE9lg9aAa3TTrGimHrV33dCMZOU00Vz3TUBXZNe0qZsywbANrsTxfk9dYLUMM -mqZ3+FS61yW3vtS6tX1C1iUg4Fn8LF33DA1Bo7aazKAmGW/KsNTsxajZO5YLPIXaWZqEpvqVpdu1 -uGU9wjodDJ6r84PdetXC0Hi5r1SRVt899E8TbHAPxKMNL4FnVHCVSvjwkCDYEPXUniSVDbhF7ovF -rQFHziwhDfdBwW96QckPcoWa38l5Za+Qq/nNcq7p++Vixy8W2q3SQ2gsIoyKfvrNpQuvouh88eVF -jW98fYmWb9suDVmUZ+rrSl4RV19fiqXtX18cAqLzoFLq1sv1ViVXLze7Oa/dquXqQaWVa1eCarvb -DvxavfvQdY4U2GuWA6/SqeUqxSDIeZWCpF+r56peqdT0qs1ax2s+XGxjYOWpfCxiAeFVvHb/AQAA -//8DAFBLAwQUAAYACAAAACEADdGQn7YAAAAbAQAAJwAAAHRoZW1lL3RoZW1lL19yZWxzL3RoZW1l -TWFuYWdlci54bWwucmVsc4SPTQrCMBSE94J3CG9v07oQkSbdiNCt1AOE5DUNNj8kUeztDa4sCC6H -Yb6ZabuXnckTYzLeMWiqGgg66ZVxmsFtuOyOQFIWTonZO2SwYIKObzftFWeRSyhNJiRSKC4xmHIO -J0qTnNCKVPmArjijj1bkIqOmQci70Ej3dX2g8ZsBfMUkvWIQe9UAGZZQmv+z/TgaiWcvHxZd/lFB -c9mFBSiixszgI5uqTATKW7q6xN8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAOneD7//AAAAHAIAABMA -AAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEApdan58AA -AAA2AQAACwAAAAAAAAAAAAAAAAAwAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAa3mWFoMA -AACKAAAAHAAAAAAAAAAAAAAAAAAZAgAAdGhlbWUvdGhlbWUvdGhlbWVNYW5hZ2VyLnhtbFBLAQIt -ABQABgAIAAAAIQCqUiXfxgYAAIsaAAAWAAAAAAAAAAAAAAAAANYCAAB0aGVtZS90aGVtZS90aGVt -ZTEueG1sUEsBAi0AFAAGAAgAAAAhAA3RkJ+2AAAAGwEAACcAAAAAAAAAAAAAAAAA0AkAAHRoZW1l -L3RoZW1lL19yZWxzL3RoZW1lTWFuYWdlci54bWwucmVsc1BLBQYAAAAABQAFAF0BAADLCgAAAAA= - -------=_NextPart_01D32FBF.F2FA1110 -Content-Location: file:///C:/25114090/C2Cppfunction_map_files/colorschememapping.xml -Content-Transfer-Encoding: quoted-printable -Content-Type: text/xml - - - -------=_NextPart_01D32FBF.F2FA1110 -Content-Location: file:///C:/25114090/C2Cppfunction_map_files/filelist.xml -Content-Transfer-Encoding: quoted-printable -Content-Type: text/xml; charset="utf-8" - - - - - - - -------=_NextPart_01D32FBF.F2FA1110-- -- cgit v0.12 From 1ef3cf804db20931b266503ffca37de98eb3544c Mon Sep 17 00:00:00 2001 From: lrknox Date: Fri, 25 May 2018 08:45:41 -0500 Subject: Remove build directory which was unintentionally committed. --- build/Makefile | 1126 - build/c++/Makefile | 1413 - build/c++/examples/Makefile | 1366 - build/c++/examples/run-c++-ex.sh | 122 - build/c++/examples/testh5c++.sh | 279 - build/c++/src/.deps/H5AbstractDs.Plo | 1 - build/c++/src/.deps/H5AcreatProp.Plo | 1 - build/c++/src/.deps/H5ArrayType.Plo | 1 - build/c++/src/.deps/H5AtomType.Plo | 1 - build/c++/src/.deps/H5Attribute.Plo | 1 - build/c++/src/.deps/H5CommonFG.Plo | 1 - build/c++/src/.deps/H5CompType.Plo | 1 - build/c++/src/.deps/H5DataSet.Plo | 1 - build/c++/src/.deps/H5DataSpace.Plo | 1 - build/c++/src/.deps/H5DataType.Plo | 1 - build/c++/src/.deps/H5DcreatProp.Plo | 1 - build/c++/src/.deps/H5DxferProp.Plo | 1 - build/c++/src/.deps/H5EnumType.Plo | 1 - build/c++/src/.deps/H5Exception.Plo | 1 - build/c++/src/.deps/H5FaccProp.Plo | 1 - build/c++/src/.deps/H5FcreatProp.Plo | 1 - build/c++/src/.deps/H5File.Plo | 1 - build/c++/src/.deps/H5FloatType.Plo | 1 - build/c++/src/.deps/H5Group.Plo | 1 - build/c++/src/.deps/H5IdComponent.Plo | 1 - build/c++/src/.deps/H5IntType.Plo | 1 - build/c++/src/.deps/H5LaccProp.Plo | 1 - build/c++/src/.deps/H5LcreatProp.Plo | 1 - build/c++/src/.deps/H5Library.Plo | 1 - build/c++/src/.deps/H5Location.Plo | 1 - build/c++/src/.deps/H5Object.Plo | 1 - build/c++/src/.deps/H5OcreatProp.Plo | 1 - build/c++/src/.deps/H5PredType.Plo | 1 - build/c++/src/.deps/H5PropList.Plo | 1 - build/c++/src/.deps/H5StrType.Plo | 1 - build/c++/src/.deps/H5StrcreatProp.Plo | 1 - build/c++/src/.deps/H5VarLenType.Plo | 1 - build/c++/src/Makefile | 1580 - build/c++/src/h5c++ | 393 - build/c++/test/.deps/dsets.Po | 1 - build/c++/test/.deps/h5cpputil.Po | 1 - build/c++/test/.deps/tarray.Po | 1 - build/c++/test/.deps/tattr.Po | 1 - build/c++/test/.deps/tcompound.Po | 1 - build/c++/test/.deps/tdspl.Po | 1 - build/c++/test/.deps/testhdf5.Po | 1 - build/c++/test/.deps/tfile.Po | 1 - build/c++/test/.deps/tfilter.Po | 1 - build/c++/test/.deps/th5s.Po | 1 - build/c++/test/.deps/tlinks.Po | 1 - build/c++/test/.deps/tobject.Po | 1 - build/c++/test/.deps/trefer.Po | 1 - build/c++/test/.deps/ttypes.Po | 1 - build/c++/test/.deps/tvlstr.Po | 1 - build/c++/test/H5srcdir_str.h | 20 - build/c++/test/Makefile | 1420 - build/config.log | 33663 ------------------- build/config.lt | 1598 - build/config.status | 2716 -- build/config/stamp1 | 0 build/config/stamp2 | 0 build/examples/Makefile | 1396 - build/examples/run-c-ex.sh | 140 - build/examples/testh5cc.sh | 351 - build/fortran/Makefile | 1422 - build/fortran/examples/Makefile | 1387 - build/fortran/examples/run-fortran-ex.sh | 131 - build/fortran/examples/testh5fc.sh | 224 - build/fortran/src/.deps/H5Af.Plo | 1 - build/fortran/src/.deps/H5Df.Plo | 1 - build/fortran/src/.deps/H5Ef.Plo | 1 - build/fortran/src/.deps/H5FDmpiof.Plo | 1 - build/fortran/src/.deps/H5Ff.Plo | 1 - build/fortran/src/.deps/H5Gf.Plo | 1 - build/fortran/src/.deps/H5If.Plo | 1 - build/fortran/src/.deps/H5Lf.Plo | 1 - build/fortran/src/.deps/H5Of.Plo | 1 - build/fortran/src/.deps/H5Pf.Plo | 1 - build/fortran/src/.deps/H5Rf.Plo | 1 - build/fortran/src/.deps/H5Sf.Plo | 1 - build/fortran/src/.deps/H5Tf.Plo | 1 - build/fortran/src/.deps/H5Zf.Plo | 1 - build/fortran/src/.deps/H5_f.Plo | 1 - build/fortran/src/.deps/H5f90kit.Plo | 1 - build/fortran/src/.deps/H5match_types.Po | 1 - build/fortran/src/Makefile | 1719 - build/fortran/src/h5fc | 370 - build/fortran/test/.deps/t.Plo | 1 - build/fortran/test/Makefile | 1695 - build/fortran/testpar/Makefile | 1367 - build/hl/Makefile | 1423 - build/hl/c++/Makefile | 1413 - build/hl/c++/examples/Makefile | 1331 - build/hl/c++/examples/run-hlc++-ex.sh | 78 - build/hl/c++/src/.deps/H5PacketTable.Plo | 1 - build/hl/c++/src/Makefile | 1464 - build/hl/c++/test/.deps/ptableTest.Po | 1 - build/hl/c++/test/Makefile | 1387 - build/hl/examples/Makefile | 1370 - build/hl/examples/run-hlc-ex.sh | 119 - build/hl/fortran/Makefile | 1417 - build/hl/fortran/examples/Makefile | 1342 - build/hl/fortran/examples/run-hlfortran-ex.sh | 84 - build/hl/fortran/src/.deps/H5DSfc.Plo | 1 - build/hl/fortran/src/.deps/H5IMcc.Plo | 1 - build/hl/fortran/src/.deps/H5IMfc.Plo | 1 - build/hl/fortran/src/.deps/H5LTfc.Plo | 1 - build/hl/fortran/src/.deps/H5TBfc.Plo | 1 - build/hl/fortran/src/Makefile | 1512 - build/hl/fortran/test/Makefile | 1422 - build/hl/src/.deps/H5DO.Plo | 370 - build/hl/src/.deps/H5DS.Plo | 379 - build/hl/src/.deps/H5IM.Plo | 375 - build/hl/src/.deps/H5LT.Plo | 373 - build/hl/src/.deps/H5LTanalyze.Plo | 217 - build/hl/src/.deps/H5LTparse.Plo | 188 - build/hl/src/.deps/H5PT.Plo | 374 - build/hl/src/.deps/H5TB.Plo | 374 - build/hl/src/.libs/H5DO.o | Bin 7024 -> 0 bytes build/hl/src/.libs/H5DS.o | Bin 50376 -> 0 bytes build/hl/src/.libs/H5IM.o | Bin 29064 -> 0 bytes build/hl/src/.libs/H5LT.o | Bin 99280 -> 0 bytes build/hl/src/.libs/H5LTanalyze.o | Bin 57480 -> 0 bytes build/hl/src/.libs/H5LTparse.o | Bin 42208 -> 0 bytes build/hl/src/.libs/H5PT.o | Bin 24672 -> 0 bytes build/hl/src/.libs/H5TB.o | Bin 70648 -> 0 bytes build/hl/src/.libs/libhdf5_hl.a | Bin 383408 -> 0 bytes build/hl/src/.libs/libhdf5_hl.la | 1 - build/hl/src/.libs/libhdf5_hl.lai | 41 - build/hl/src/.libs/libhdf5_hl.so | 1 - build/hl/src/.libs/libhdf5_hl.so.10 | 1 - build/hl/src/.libs/libhdf5_hl.so.10.2.2 | Bin 231648 -> 0 bytes build/hl/src/H5DO.lo | 12 - build/hl/src/H5DO.o | Bin 6952 -> 0 bytes build/hl/src/H5DS.lo | 12 - build/hl/src/H5DS.o | Bin 50168 -> 0 bytes build/hl/src/H5IM.lo | 12 - build/hl/src/H5IM.o | Bin 28928 -> 0 bytes build/hl/src/H5LT.lo | 12 - build/hl/src/H5LT.o | Bin 98888 -> 0 bytes build/hl/src/H5LTanalyze.lo | 12 - build/hl/src/H5LTanalyze.o | Bin 57144 -> 0 bytes build/hl/src/H5LTparse.lo | 12 - build/hl/src/H5LTparse.o | Bin 41776 -> 0 bytes build/hl/src/H5PT.lo | 12 - build/hl/src/H5PT.o | Bin 24688 -> 0 bytes build/hl/src/H5TB.lo | 12 - build/hl/src/H5TB.o | Bin 70520 -> 0 bytes build/hl/src/Makefile | 1469 - build/hl/src/libhdf5_hl.la | 42 - build/hl/test/.deps/gen_test_ds.Po | 1 - build/hl/test/.deps/test_ds.Po | 387 - build/hl/test/.deps/test_dset_opt.Po | 386 - build/hl/test/.deps/test_file_image.Po | 377 - build/hl/test/.deps/test_image.Po | 386 - build/hl/test/.deps/test_lite.Po | 382 - build/hl/test/.deps/test_packet.Po | 380 - build/hl/test/.deps/test_packet_vlen.Po | 375 - build/hl/test/.deps/test_table.Po | 382 - build/hl/test/.libs/lt-test_ds | Bin 105672 -> 0 bytes build/hl/test/.libs/lt-test_dset_opt | Bin 62136 -> 0 bytes build/hl/test/.libs/lt-test_file_image | Bin 32056 -> 0 bytes build/hl/test/.libs/lt-test_image | Bin 30112 -> 0 bytes build/hl/test/.libs/lt-test_lite | Bin 58632 -> 0 bytes build/hl/test/.libs/lt-test_packet | Bin 103152 -> 0 bytes build/hl/test/.libs/lt-test_table | Bin 44984 -> 0 bytes build/hl/test/.libs/test_ds | Bin 101576 -> 0 bytes build/hl/test/.libs/test_dset_opt | Bin 62136 -> 0 bytes build/hl/test/.libs/test_file_image | Bin 32056 -> 0 bytes build/hl/test/.libs/test_image | Bin 30112 -> 0 bytes build/hl/test/.libs/test_lite | Bin 58632 -> 0 bytes build/hl/test/.libs/test_packet | Bin 103152 -> 0 bytes build/hl/test/.libs/test_table | Bin 44984 -> 0 bytes build/hl/test/H5srcdir_str.h | 20 - build/hl/test/Makefile | 1529 - build/hl/test/combine_tables1.h5 | Bin 9184 -> 0 bytes build/hl/test/combine_tables2.h5 | Bin 6192 -> 0 bytes build/hl/test/test_dectris.h5 | Bin 36579 -> 0 bytes build/hl/test/test_detach.h5 | Bin 7864 -> 0 bytes build/hl/test/test_ds | 228 - build/hl/test/test_ds.chkexe | 0 build/hl/test/test_ds.chklog | 65 - build/hl/test/test_ds.o | Bin 172744 -> 0 bytes build/hl/test/test_ds1.h5 | Bin 27904 -> 0 bytes build/hl/test/test_ds10.h5 | Bin 6512 -> 0 bytes build/hl/test/test_ds2.h5 | Bin 16432 -> 0 bytes build/hl/test/test_ds3.h5 | Bin 23120 -> 0 bytes build/hl/test/test_ds4.h5 | Bin 7336 -> 0 bytes build/hl/test/test_ds5.h5 | Bin 97152 -> 0 bytes build/hl/test/test_ds6.h5 | Bin 8488 -> 0 bytes build/hl/test/test_ds7.h5 | Bin 8413 -> 0 bytes build/hl/test/test_ds8.h5 | Bin 148044 -> 0 bytes build/hl/test/test_ds9.h5 | Bin 6624 -> 0 bytes build/hl/test/test_dset_opt | 228 - build/hl/test/test_dset_opt.chkexe | 0 build/hl/test/test_dset_opt.chklog | 20 - build/hl/test/test_dset_opt.o | Bin 91840 -> 0 bytes build/hl/test/test_file_image | 228 - build/hl/test/test_file_image.chkexe | 0 build/hl/test/test_file_image.chklog | 15 - build/hl/test/test_file_image.o | Bin 39888 -> 0 bytes build/hl/test/test_image | 228 - build/hl/test/test_image.chkexe | 0 build/hl/test/test_image.chklog | 22 - build/hl/test/test_image.o | Bin 34448 -> 0 bytes build/hl/test/test_image1.h5 | Bin 323064 -> 0 bytes build/hl/test/test_image2.h5 | Bin 330714 -> 0 bytes build/hl/test/test_image3.h5 | Bin 1824043 -> 0 bytes build/hl/test/test_lite | 228 - build/hl/test/test_lite.chkexe | 0 build/hl/test/test_lite.chklog | 101 - build/hl/test/test_lite.o | Bin 77320 -> 0 bytes build/hl/test/test_lite1.h5 | Bin 5552 -> 0 bytes build/hl/test/test_lite2.h5 | Bin 5760 -> 0 bytes build/hl/test/test_lite3.h5 | Bin 8144 -> 0 bytes build/hl/test/test_lite4.h5 | Bin 2437 -> 0 bytes build/hl/test/test_packet | 228 - build/hl/test/test_packet.chkexe | 0 build/hl/test/test_packet.chklog | 32 - build/hl/test/test_packet.o | Bin 44744 -> 0 bytes build/hl/test/test_packet_compress.h5 | Bin 23488 -> 0 bytes build/hl/test/test_packet_table.h5 | Bin 355328 -> 0 bytes build/hl/test/test_packet_table_vlen.h5 | Bin 40680 -> 0 bytes build/hl/test/test_packet_vlen.o | Bin 56664 -> 0 bytes build/hl/test/test_table | 228 - build/hl/test/test_table.chkexe | 0 build/hl/test/test_table.chklog | 48 - build/hl/test/test_table.h5 | Bin 60120 -> 0 bytes build/hl/test/test_table.o | Bin 53776 -> 0 bytes build/hl/test/testfl_packet_table_vlen.h5 | Bin 40124 -> 0 bytes build/hl/tools/Makefile | 1399 - build/hl/tools/gif2h5/.deps/decompress.Po | 204 - build/hl/tools/gif2h5/.deps/gif2hdf.Po | 218 - build/hl/tools/gif2h5/.deps/gif2mem.Po | 204 - build/hl/tools/gif2h5/.deps/gifread.Po | 204 - build/hl/tools/gif2h5/.deps/h52gifgentst.Po | 202 - build/hl/tools/gif2h5/.deps/hdf2gif.Po | 222 - build/hl/tools/gif2h5/.deps/hdfgifwr.Po | 205 - build/hl/tools/gif2h5/.deps/writehdf.Po | 207 - build/hl/tools/gif2h5/.libs/gif2h5 | Bin 262152 -> 0 bytes build/hl/tools/gif2h5/.libs/h52gif | Bin 248696 -> 0 bytes build/hl/tools/gif2h5/.libs/h52gifgentst | Bin 10360 -> 0 bytes build/hl/tools/gif2h5/.libs/lt-gif2h5 | Bin 262152 -> 0 bytes build/hl/tools/gif2h5/.libs/lt-h52gif | Bin 248696 -> 0 bytes build/hl/tools/gif2h5/Makefile | 1469 - build/hl/tools/gif2h5/decompress.o | Bin 18736 -> 0 bytes build/hl/tools/gif2h5/gif2h5 | 228 - build/hl/tools/gif2h5/gif2hdf.o | Bin 11984 -> 0 bytes build/hl/tools/gif2h5/gif2mem.o | Bin 15232 -> 0 bytes build/hl/tools/gif2h5/gifread.o | Bin 12584 -> 0 bytes build/hl/tools/gif2h5/h52gif | 228 - build/hl/tools/gif2h5/h52gifgentst | 228 - build/hl/tools/gif2h5/h52gifgentst.o | Bin 4912 -> 0 bytes build/hl/tools/gif2h5/h52giftest.sh | 96 - build/hl/tools/gif2h5/h52giftest.sh.chkexe | 0 build/hl/tools/gif2h5/h52giftest.sh.chklog | 19 - build/hl/tools/gif2h5/hdf2gif.o | Bin 15376 -> 0 bytes build/hl/tools/gif2h5/hdfgifwr.o | Bin 17000 -> 0 bytes build/hl/tools/gif2h5/image.gif | 0 build/hl/tools/gif2h5/image1.gif | Bin 9736 -> 0 bytes build/hl/tools/gif2h5/image1.h5 | Bin 82144 -> 0 bytes build/hl/tools/gif2h5/image24.gif | 0 build/hl/tools/gif2h5/writehdf.o | Bin 10592 -> 0 bytes build/libtool | 11957 ------- build/makecheck.out | 12131 ------- build/src/.deps/H5.Plo | 372 - build/src/.deps/H5A.Plo | 384 - build/src/.deps/H5AC.Plo | 386 - build/src/.deps/H5Abtree2.Plo | 377 - build/src/.deps/H5Adense.Plo | 384 - build/src/.deps/H5Adeprec.Plo | 388 - build/src/.deps/H5Aint.Plo | 393 - build/src/.deps/H5Atest.Plo | 379 - build/src/.deps/H5B.Plo | 374 - build/src/.deps/H5B2.Plo | 332 - build/src/.deps/H5B2cache.Plo | 344 - build/src/.deps/H5B2dbg.Plo | 332 - build/src/.deps/H5B2hdr.Plo | 344 - build/src/.deps/H5B2int.Plo | 344 - build/src/.deps/H5B2stat.Plo | 332 - build/src/.deps/H5B2test.Plo | 332 - build/src/.deps/H5Bcache.Plo | 344 - build/src/.deps/H5Bdbg.Plo | 337 - build/src/.deps/H5C.Plo | 384 - build/src/.deps/H5CS.Plo | 286 - build/src/.deps/H5D.Plo | 372 - build/src/.deps/H5Dbtree.Plo | 377 - build/src/.deps/H5Dchunk.Plo | 377 - build/src/.deps/H5Dcompact.Plo | 377 - build/src/.deps/H5Dcontig.Plo | 377 - build/src/.deps/H5Ddbg.Plo | 370 - build/src/.deps/H5Ddeprec.Plo | 370 - build/src/.deps/H5Defl.Plo | 377 - build/src/.deps/H5Dfill.Plo | 377 - build/src/.deps/H5Dint.Plo | 379 - build/src/.deps/H5Dio.Plo | 374 - build/src/.deps/H5Dlayout.Plo | 372 - build/src/.deps/H5Dmpio.Plo | 374 - build/src/.deps/H5Doh.Plo | 374 - build/src/.deps/H5Dscatgath.Plo | 372 - build/src/.deps/H5Dselect.Plo | 370 - build/src/.deps/H5Dtest.Plo | 370 - build/src/.deps/H5E.Plo | 304 - build/src/.deps/H5Edeprec.Plo | 300 - build/src/.deps/H5Eint.Plo | 300 - build/src/.deps/H5F.Plo | 391 - build/src/.deps/H5FD.Plo | 400 - build/src/.deps/H5FDcore.Plo | 337 - build/src/.deps/H5FDdirect.Plo | 335 - build/src/.deps/H5FDfamily.Plo | 332 - build/src/.deps/H5FDint.Plo | 332 - build/src/.deps/H5FDlog.Plo | 335 - build/src/.deps/H5FDmpi.Plo | 325 - build/src/.deps/H5FDmpio.Plo | 370 - build/src/.deps/H5FDmulti.Plo | 199 - build/src/.deps/H5FDsec2.Plo | 335 - build/src/.deps/H5FDspace.Plo | 332 - build/src/.deps/H5FDstdio.Plo | 215 - build/src/.deps/H5FL.Plo | 295 - build/src/.deps/H5FO.Plo | 365 - build/src/.deps/H5FS.Plo | 344 - build/src/.deps/H5FScache.Plo | 349 - build/src/.deps/H5FSdbg.Plo | 377 - build/src/.deps/H5FSsection.Plo | 346 - build/src/.deps/H5FSstat.Plo | 335 - build/src/.deps/H5FStest.Plo | 335 - build/src/.deps/H5Faccum.Plo | 374 - build/src/.deps/H5Fcwfs.Plo | 381 - build/src/.deps/H5Fdbg.Plo | 384 - build/src/.deps/H5Fefc.Plo | 367 - build/src/.deps/H5Ffake.Plo | 365 - build/src/.deps/H5Fint.Plo | 407 - build/src/.deps/H5Fio.Plo | 374 - build/src/.deps/H5Fmount.Plo | 370 - build/src/.deps/H5Fmpi.Plo | 374 - build/src/.deps/H5Fquery.Plo | 372 - build/src/.deps/H5Fsfile.Plo | 372 - build/src/.deps/H5Fsuper.Plo | 379 - build/src/.deps/H5Fsuper_cache.Plo | 395 - build/src/.deps/H5Ftest.Plo | 388 - build/src/.deps/H5G.Plo | 374 - build/src/.deps/H5Gbtree2.Plo | 372 - build/src/.deps/H5Gcache.Plo | 384 - build/src/.deps/H5Gcompact.Plo | 374 - build/src/.deps/H5Gdense.Plo | 377 - build/src/.deps/H5Gdeprec.Plo | 377 - build/src/.deps/H5Gent.Plo | 372 - build/src/.deps/H5Gint.Plo | 381 - build/src/.deps/H5Glink.Plo | 379 - build/src/.deps/H5Gloc.Plo | 393 - build/src/.deps/H5Gname.Plo | 391 - build/src/.deps/H5Gnode.Plo | 384 - build/src/.deps/H5Gobj.Plo | 379 - build/src/.deps/H5Goh.Plo | 377 - build/src/.deps/H5Groot.Plo | 386 - build/src/.deps/H5Gstab.Plo | 374 - build/src/.deps/H5Gtest.Plo | 386 - build/src/.deps/H5Gtraverse.Plo | 393 - build/src/.deps/H5HF.Plo | 384 - build/src/.deps/H5HFbtree2.Plo | 381 - build/src/.deps/H5HFcache.Plo | 388 - build/src/.deps/H5HFdbg.Plo | 377 - build/src/.deps/H5HFdblock.Plo | 384 - build/src/.deps/H5HFdtable.Plo | 377 - build/src/.deps/H5HFhdr.Plo | 384 - build/src/.deps/H5HFhuge.Plo | 384 - build/src/.deps/H5HFiblock.Plo | 384 - build/src/.deps/H5HFiter.Plo | 374 - build/src/.deps/H5HFman.Plo | 386 - build/src/.deps/H5HFsection.Plo | 377 - build/src/.deps/H5HFspace.Plo | 372 - build/src/.deps/H5HFstat.Plo | 372 - build/src/.deps/H5HFtest.Plo | 372 - build/src/.deps/H5HFtiny.Plo | 372 - build/src/.deps/H5HG.Plo | 344 - build/src/.deps/H5HGcache.Plo | 344 - build/src/.deps/H5HGdbg.Plo | 335 - build/src/.deps/H5HGquery.Plo | 332 - build/src/.deps/H5HL.Plo | 342 - build/src/.deps/H5HLcache.Plo | 344 - build/src/.deps/H5HLdbg.Plo | 337 - build/src/.deps/H5HLint.Plo | 332 - build/src/.deps/H5HP.Plo | 293 - build/src/.deps/H5I.Plo | 363 - build/src/.deps/H5Itest.Plo | 342 - build/src/.deps/H5L.Plo | 374 - build/src/.deps/H5Lexternal.Plo | 381 - build/src/.deps/H5MF.Plo | 381 - build/src/.deps/H5MFaggr.Plo | 377 - build/src/.deps/H5MFdbg.Plo | 377 - build/src/.deps/H5MFsection.Plo | 377 - build/src/.deps/H5MM.Plo | 293 - build/src/.deps/H5MP.Plo | 300 - build/src/.deps/H5MPtest.Plo | 295 - build/src/.deps/H5O.Plo | 377 - build/src/.deps/H5Oainfo.Plo | 377 - build/src/.deps/H5Oalloc.Plo | 367 - build/src/.deps/H5Oattr.Plo | 384 - build/src/.deps/H5Oattribute.Plo | 384 - build/src/.deps/H5Obogus.Plo | 360 - build/src/.deps/H5Obtreek.Plo | 360 - build/src/.deps/H5Ocache.Plo | 370 - build/src/.deps/H5Ochunk.Plo | 358 - build/src/.deps/H5Ocont.Plo | 367 - build/src/.deps/H5Ocopy.Plo | 388 - build/src/.deps/H5Odbg.Plo | 360 - build/src/.deps/H5Odrvinfo.Plo | 360 - build/src/.deps/H5Odtype.Plo | 379 - build/src/.deps/H5Oefl.Plo | 365 - build/src/.deps/H5Ofill.Plo | 377 - build/src/.deps/H5Oginfo.Plo | 358 - build/src/.deps/H5Olayout.Plo | 377 - build/src/.deps/H5Olinfo.Plo | 379 - build/src/.deps/H5Olink.Plo | 384 - build/src/.deps/H5Omessage.Plo | 372 - build/src/.deps/H5Omtime.Plo | 360 - build/src/.deps/H5Oname.Plo | 360 - build/src/.deps/H5Onull.Plo | 351 - build/src/.deps/H5Opline.Plo | 377 - build/src/.deps/H5Orefcount.Plo | 358 - build/src/.deps/H5Osdspace.Plo | 377 - build/src/.deps/H5Oshared.Plo | 367 - build/src/.deps/H5Oshmesg.Plo | 360 - build/src/.deps/H5Ostab.Plo | 374 - build/src/.deps/H5Otest.Plo | 379 - build/src/.deps/H5Ounknown.Plo | 358 - build/src/.deps/H5P.Plo | 323 - build/src/.deps/H5PL.Plo | 344 - build/src/.deps/H5Pacpl.Plo | 321 - build/src/.deps/H5Pdapl.Plo | 372 - build/src/.deps/H5Pdcpl.Plo | 377 - build/src/.deps/H5Pdeprec.Plo | 325 - build/src/.deps/H5Pdxpl.Plo | 370 - build/src/.deps/H5Pfapl.Plo | 377 - build/src/.deps/H5Pfcpl.Plo | 358 - build/src/.deps/H5Pfmpl.Plo | 325 - build/src/.deps/H5Pgcpl.Plo | 358 - build/src/.deps/H5Pint.Plo | 328 - build/src/.deps/H5Plapl.Plo | 363 - build/src/.deps/H5Plcpl.Plo | 360 - build/src/.deps/H5Pocpl.Plo | 367 - build/src/.deps/H5Pocpypl.Plo | 363 - build/src/.deps/H5Pstrcpl.Plo | 325 - build/src/.deps/H5Ptest.Plo | 370 - build/src/.deps/H5R.Plo | 377 - build/src/.deps/H5RC.Plo | 292 - build/src/.deps/H5RS.Plo | 292 - build/src/.deps/H5Rdeprec.Plo | 356 - build/src/.deps/H5S.Plo | 365 - build/src/.deps/H5SL.Plo | 297 - build/src/.deps/H5SM.Plo | 384 - build/src/.deps/H5SMbtree2.Plo | 372 - build/src/.deps/H5SMcache.Plo | 383 - build/src/.deps/H5SMmessage.Plo | 372 - build/src/.deps/H5SMtest.Plo | 370 - build/src/.deps/H5ST.Plo | 292 - build/src/.deps/H5Sall.Plo | 363 - build/src/.deps/H5Sdbg.Plo | 358 - build/src/.deps/H5Shyper.Plo | 365 - build/src/.deps/H5Smpio.Plo | 374 - build/src/.deps/H5Snone.Plo | 372 - build/src/.deps/H5Spoint.Plo | 367 - build/src/.deps/H5Sselect.Plo | 379 - build/src/.deps/H5Stest.Plo | 360 - build/src/.deps/H5T.Plo | 377 - build/src/.deps/H5TS.Plo | 293 - build/src/.deps/H5Tarray.Plo | 360 - build/src/.deps/H5Tbit.Plo | 363 - build/src/.deps/H5Tcommit.Plo | 365 - build/src/.deps/H5Tcompound.Plo | 363 - build/src/.deps/H5Tconv.Plo | 379 - build/src/.deps/H5Tcset.Plo | 360 - build/src/.deps/H5Tdbg.Plo | 358 - build/src/.deps/H5Tdeprec.Plo | 363 - build/src/.deps/H5Tenum.Plo | 363 - build/src/.deps/H5Tfields.Plo | 363 - build/src/.deps/H5Tfixed.Plo | 360 - build/src/.deps/H5Tfloat.Plo | 360 - build/src/.deps/H5Tinit.Plo | 365 - build/src/.deps/H5Tnative.Plo | 363 - build/src/.deps/H5Toffset.Plo | 360 - build/src/.deps/H5Toh.Plo | 363 - build/src/.deps/H5Topaque.Plo | 363 - build/src/.deps/H5Torder.Plo | 360 - build/src/.deps/H5Tpad.Plo | 360 - build/src/.deps/H5Tprecis.Plo | 360 - build/src/.deps/H5Tstrpad.Plo | 360 - build/src/.deps/H5Tvisit.Plo | 358 - build/src/.deps/H5Tvlen.Plo | 379 - build/src/.deps/H5VM.Plo | 356 - build/src/.deps/H5WB.Plo | 293 - build/src/.deps/H5Z.Plo | 377 - build/src/.deps/H5Zdeflate.Plo | 344 - build/src/.deps/H5Zfletcher32.Plo | 339 - build/src/.deps/H5Znbit.Plo | 363 - build/src/.deps/H5Zscaleoffset.Plo | 363 - build/src/.deps/H5Zshuffle.Plo | 349 - build/src/.deps/H5Zszip.Plo | 363 - build/src/.deps/H5Ztrans.Plo | 344 - build/src/.deps/H5checksum.Plo | 279 - build/src/.deps/H5dbg.Plo | 279 - build/src/.deps/H5detect.Po | 293 - build/src/.deps/H5lib_settings.Plo | 3 - build/src/.deps/H5make_libsettings.Po | 278 - build/src/.deps/H5system.Plo | 304 - build/src/.deps/H5timer.Plo | 279 - build/src/.deps/H5trace.Plo | 372 - build/src/.libs/H5.o | Bin 55512 -> 0 bytes build/src/.libs/H5A.o | Bin 153624 -> 0 bytes build/src/.libs/H5AC.o | Bin 116352 -> 0 bytes build/src/.libs/H5Abtree2.o | Bin 34936 -> 0 bytes build/src/.libs/H5Adense.o | Bin 130704 -> 0 bytes build/src/.libs/H5Adeprec.o | Bin 42728 -> 0 bytes build/src/.libs/H5Aint.o | Bin 164432 -> 0 bytes build/src/.libs/H5Atest.o | Bin 13864 -> 0 bytes build/src/.libs/H5B.o | Bin 115360 -> 0 bytes build/src/.libs/H5B2.o | Bin 85608 -> 0 bytes build/src/.libs/H5B2cache.o | Bin 86032 -> 0 bytes build/src/.libs/H5B2dbg.o | Bin 39160 -> 0 bytes build/src/.libs/H5B2hdr.o | Bin 51840 -> 0 bytes build/src/.libs/H5B2int.o | Bin 168904 -> 0 bytes build/src/.libs/H5B2stat.o | Bin 17176 -> 0 bytes build/src/.libs/H5B2test.o | Bin 39952 -> 0 bytes build/src/.libs/H5Bcache.o | Bin 39688 -> 0 bytes build/src/.libs/H5Bdbg.o | Bin 20560 -> 0 bytes build/src/.libs/H5C.o | Bin 266864 -> 0 bytes build/src/.libs/H5CS.o | Bin 2560 -> 0 bytes build/src/.libs/H5D.o | Bin 115904 -> 0 bytes build/src/.libs/H5Dbtree.o | Bin 112520 -> 0 bytes build/src/.libs/H5Dchunk.o | Bin 309024 -> 0 bytes build/src/.libs/H5Dcompact.o | Bin 77160 -> 0 bytes build/src/.libs/H5Dcontig.o | Bin 121072 -> 0 bytes build/src/.libs/H5Ddbg.o | Bin 38064 -> 0 bytes build/src/.libs/H5Ddeprec.o | Bin 59960 -> 0 bytes build/src/.libs/H5Defl.o | Bin 73272 -> 0 bytes build/src/.libs/H5Dfill.o | Bin 59480 -> 0 bytes build/src/.libs/H5Dint.o | Bin 210728 -> 0 bytes build/src/.libs/H5Dio.o | Bin 94360 -> 0 bytes build/src/.libs/H5Dlayout.o | Bin 57424 -> 0 bytes build/src/.libs/H5Dmpio.o | Bin 5192 -> 0 bytes build/src/.libs/H5Doh.o | Bin 73296 -> 0 bytes build/src/.libs/H5Dscatgath.o | Bin 97280 -> 0 bytes build/src/.libs/H5Dselect.o | Bin 51528 -> 0 bytes build/src/.libs/H5Dtest.o | Bin 41048 -> 0 bytes build/src/.libs/H5E.o | Bin 278392 -> 0 bytes build/src/.libs/H5Edeprec.o | Bin 43400 -> 0 bytes build/src/.libs/H5Eint.o | Bin 64592 -> 0 bytes build/src/.libs/H5F.o | Bin 125440 -> 0 bytes build/src/.libs/H5FD.o | Bin 143080 -> 0 bytes build/src/.libs/H5FDcore.o | Bin 81864 -> 0 bytes build/src/.libs/H5FDdirect.o | Bin 3536 -> 0 bytes build/src/.libs/H5FDfamily.o | Bin 74896 -> 0 bytes build/src/.libs/H5FDint.o | Bin 29432 -> 0 bytes build/src/.libs/H5FDlog.o | Bin 77504 -> 0 bytes build/src/.libs/H5FDmpi.o | Bin 2568 -> 0 bytes build/src/.libs/H5FDmpio.o | Bin 3528 -> 0 bytes build/src/.libs/H5FDmulti.o | Bin 74832 -> 0 bytes build/src/.libs/H5FDsec2.o | Bin 52600 -> 0 bytes build/src/.libs/H5FDspace.o | Bin 33280 -> 0 bytes build/src/.libs/H5FDstdio.o | Bin 38560 -> 0 bytes build/src/.libs/H5FL.o | Bin 103544 -> 0 bytes build/src/.libs/H5FO.o | Bin 48784 -> 0 bytes build/src/.libs/H5FS.o | Bin 59592 -> 0 bytes build/src/.libs/H5FScache.o | Bin 82672 -> 0 bytes build/src/.libs/H5FSdbg.o | Bin 28320 -> 0 bytes build/src/.libs/H5FSsection.o | Bin 118248 -> 0 bytes build/src/.libs/H5FSstat.o | Bin 15928 -> 0 bytes build/src/.libs/H5FStest.o | Bin 17120 -> 0 bytes build/src/.libs/H5Faccum.o | Bin 61920 -> 0 bytes build/src/.libs/H5Fcwfs.o | Bin 29312 -> 0 bytes build/src/.libs/H5Fdbg.o | Bin 30544 -> 0 bytes build/src/.libs/H5Fefc.o | Bin 55008 -> 0 bytes build/src/.libs/H5Ffake.o | Bin 25112 -> 0 bytes build/src/.libs/H5Fint.o | Bin 131528 -> 0 bytes build/src/.libs/H5Fio.o | Bin 25744 -> 0 bytes build/src/.libs/H5Fmount.o | Bin 64928 -> 0 bytes build/src/.libs/H5Fmpi.o | Bin 2568 -> 0 bytes build/src/.libs/H5Fquery.o | Bin 72032 -> 0 bytes build/src/.libs/H5Fsfile.o | Bin 27960 -> 0 bytes build/src/.libs/H5Fsuper.o | Bin 65712 -> 0 bytes build/src/.libs/H5Fsuper_cache.o | Bin 75184 -> 0 bytes build/src/.libs/H5Ftest.o | Bin 27304 -> 0 bytes build/src/.libs/H5G.o | Bin 69528 -> 0 bytes build/src/.libs/H5Gbtree2.o | Bin 33600 -> 0 bytes build/src/.libs/H5Gcache.o | Bin 32056 -> 0 bytes build/src/.libs/H5Gcompact.o | Bin 51528 -> 0 bytes build/src/.libs/H5Gdense.o | Bin 116456 -> 0 bytes build/src/.libs/H5Gdeprec.o | Bin 107808 -> 0 bytes build/src/.libs/H5Gent.o | Bin 44480 -> 0 bytes build/src/.libs/H5Gint.o | Bin 81080 -> 0 bytes build/src/.libs/H5Glink.o | Bin 38448 -> 0 bytes build/src/.libs/H5Gloc.o | Bin 63952 -> 0 bytes build/src/.libs/H5Gname.o | Bin 64048 -> 0 bytes build/src/.libs/H5Gnode.o | Bin 109160 -> 0 bytes build/src/.libs/H5Gobj.o | Bin 85768 -> 0 bytes build/src/.libs/H5Goh.o | Bin 46560 -> 0 bytes build/src/.libs/H5Groot.o | Bin 37568 -> 0 bytes build/src/.libs/H5Gstab.o | Bin 87832 -> 0 bytes build/src/.libs/H5Gtest.o | Bin 64200 -> 0 bytes build/src/.libs/H5Gtraverse.o | Bin 58672 -> 0 bytes build/src/.libs/H5HF.o | Bin 64872 -> 0 bytes build/src/.libs/H5HFbtree2.o | Bin 77176 -> 0 bytes build/src/.libs/H5HFcache.o | Bin 131152 -> 0 bytes build/src/.libs/H5HFdbg.o | Bin 67992 -> 0 bytes build/src/.libs/H5HFdblock.o | Bin 59760 -> 0 bytes build/src/.libs/H5HFdtable.o | Bin 22744 -> 0 bytes build/src/.libs/H5HFhdr.o | Bin 98056 -> 0 bytes build/src/.libs/H5HFhuge.o | Bin 74456 -> 0 bytes build/src/.libs/H5HFiblock.o | Bin 108984 -> 0 bytes build/src/.libs/H5HFiter.o | Bin 45384 -> 0 bytes build/src/.libs/H5HFman.o | Bin 55000 -> 0 bytes build/src/.libs/H5HFsection.o | Bin 217848 -> 0 bytes build/src/.libs/H5HFspace.o | Bin 50544 -> 0 bytes build/src/.libs/H5HFstat.o | Bin 20760 -> 0 bytes build/src/.libs/H5HFtest.o | Bin 33248 -> 0 bytes build/src/.libs/H5HFtiny.o | Bin 29136 -> 0 bytes build/src/.libs/H5HG.o | Bin 55880 -> 0 bytes build/src/.libs/H5HGcache.o | Bin 34008 -> 0 bytes build/src/.libs/H5HGdbg.o | Bin 17584 -> 0 bytes build/src/.libs/H5HGquery.o | Bin 11200 -> 0 bytes build/src/.libs/H5HL.o | Bin 70040 -> 0 bytes build/src/.libs/H5HLcache.o | Bin 60400 -> 0 bytes build/src/.libs/H5HLdbg.o | Bin 17296 -> 0 bytes build/src/.libs/H5HLint.o | Bin 28256 -> 0 bytes build/src/.libs/H5HP.o | Bin 45776 -> 0 bytes build/src/.libs/H5I.o | Bin 153848 -> 0 bytes build/src/.libs/H5Itest.o | Bin 8016 -> 0 bytes build/src/.libs/H5L.o | Bin 214032 -> 0 bytes build/src/.libs/H5Lexternal.o | Bin 52024 -> 0 bytes build/src/.libs/H5MF.o | Bin 77360 -> 0 bytes build/src/.libs/H5MFaggr.o | Bin 61664 -> 0 bytes build/src/.libs/H5MFdbg.o | Bin 2568 -> 0 bytes build/src/.libs/H5MFsection.o | Bin 47032 -> 0 bytes build/src/.libs/H5MM.o | Bin 13680 -> 0 bytes build/src/.libs/H5MP.o | Bin 22224 -> 0 bytes build/src/.libs/H5MPtest.o | Bin 13432 -> 0 bytes build/src/.libs/H5O.o | Bin 241032 -> 0 bytes build/src/.libs/H5Oainfo.o | Bin 43048 -> 0 bytes build/src/.libs/H5Oalloc.o | Bin 119720 -> 0 bytes build/src/.libs/H5Oattr.o | Bin 89944 -> 0 bytes build/src/.libs/H5Oattribute.o | Bin 130784 -> 0 bytes build/src/.libs/H5Obogus.o | Bin 2568 -> 0 bytes build/src/.libs/H5Obtreek.o | Bin 28432 -> 0 bytes build/src/.libs/H5Ocache.o | Bin 89648 -> 0 bytes build/src/.libs/H5Ochunk.o | Bin 39184 -> 0 bytes build/src/.libs/H5Ocont.o | Bin 32008 -> 0 bytes build/src/.libs/H5Ocopy.o | Bin 121408 -> 0 bytes build/src/.libs/H5Odbg.o | Bin 50776 -> 0 bytes build/src/.libs/H5Odrvinfo.o | Bin 31112 -> 0 bytes build/src/.libs/H5Odtype.o | Bin 129912 -> 0 bytes build/src/.libs/H5Oefl.o | Bin 52296 -> 0 bytes build/src/.libs/H5Ofill.o | Bin 105568 -> 0 bytes build/src/.libs/H5Oginfo.o | Bin 31600 -> 0 bytes build/src/.libs/H5Olayout.o | Bin 73896 -> 0 bytes build/src/.libs/H5Olinfo.o | Bin 50104 -> 0 bytes build/src/.libs/H5Olink.o | Bin 59056 -> 0 bytes build/src/.libs/H5Omessage.o | Bin 152920 -> 0 bytes build/src/.libs/H5Omtime.o | Bin 39440 -> 0 bytes build/src/.libs/H5Oname.o | Bin 29424 -> 0 bytes build/src/.libs/H5Onull.o | Bin 15424 -> 0 bytes build/src/.libs/H5Opline.o | Bin 67288 -> 0 bytes build/src/.libs/H5Orefcount.o | Bin 31536 -> 0 bytes build/src/.libs/H5Osdspace.o | Bin 64736 -> 0 bytes build/src/.libs/H5Oshared.o | Bin 51152 -> 0 bytes build/src/.libs/H5Oshmesg.o | Bin 27824 -> 0 bytes build/src/.libs/H5Ostab.o | Bin 43616 -> 0 bytes build/src/.libs/H5Otest.o | Bin 44544 -> 0 bytes build/src/.libs/H5Ounknown.o | Bin 19248 -> 0 bytes build/src/.libs/H5P.o | Bin 111240 -> 0 bytes build/src/.libs/H5PL.o | Bin 70448 -> 0 bytes build/src/.libs/H5Pacpl.o | Bin 8344 -> 0 bytes build/src/.libs/H5Pdapl.o | Bin 43128 -> 0 bytes build/src/.libs/H5Pdcpl.o | Bin 141192 -> 0 bytes build/src/.libs/H5Pdeprec.o | Bin 25664 -> 0 bytes build/src/.libs/H5Pdxpl.o | Bin 102984 -> 0 bytes build/src/.libs/H5Pfapl.o | Bin 174672 -> 0 bytes build/src/.libs/H5Pfcpl.o | Bin 77424 -> 0 bytes build/src/.libs/H5Pfmpl.o | Bin 12128 -> 0 bytes build/src/.libs/H5Pgcpl.o | Bin 46672 -> 0 bytes build/src/.libs/H5Pint.o | Bin 206320 -> 0 bytes build/src/.libs/H5Plapl.o | Bin 66760 -> 0 bytes build/src/.libs/H5Plcpl.o | Bin 20384 -> 0 bytes build/src/.libs/H5Pocpl.o | Bin 111168 -> 0 bytes build/src/.libs/H5Pocpypl.o | Bin 49328 -> 0 bytes build/src/.libs/H5Pstrcpl.o | Bin 22320 -> 0 bytes build/src/.libs/H5Ptest.o | Bin 17544 -> 0 bytes build/src/.libs/H5R.o | Bin 65112 -> 0 bytes build/src/.libs/H5RC.o | Bin 11624 -> 0 bytes build/src/.libs/H5RS.o | Bin 26392 -> 0 bytes build/src/.libs/H5Rdeprec.o | Bin 16880 -> 0 bytes build/src/.libs/H5S.o | Bin 151552 -> 0 bytes build/src/.libs/H5SL.o | Bin 380616 -> 0 bytes build/src/.libs/H5SM.o | Bin 171976 -> 0 bytes build/src/.libs/H5SMbtree2.o | Bin 27392 -> 0 bytes build/src/.libs/H5SMcache.o | Bin 55232 -> 0 bytes build/src/.libs/H5SMmessage.o | Bin 30552 -> 0 bytes build/src/.libs/H5SMtest.o | Bin 12784 -> 0 bytes build/src/.libs/H5ST.o | Bin 32344 -> 0 bytes build/src/.libs/H5Sall.o | Bin 58056 -> 0 bytes build/src/.libs/H5Sdbg.o | Bin 17080 -> 0 bytes build/src/.libs/H5Shyper.o | Bin 270600 -> 0 bytes build/src/.libs/H5Smpio.o | Bin 5192 -> 0 bytes build/src/.libs/H5Snone.o | Bin 56224 -> 0 bytes build/src/.libs/H5Spoint.o | Bin 90488 -> 0 bytes build/src/.libs/H5Sselect.o | Bin 93536 -> 0 bytes build/src/.libs/H5Stest.o | Bin 18624 -> 0 bytes build/src/.libs/H5T.o | Bin 359824 -> 0 bytes build/src/.libs/H5TS.o | Bin 2560 -> 0 bytes build/src/.libs/H5Tarray.o | Bin 49976 -> 0 bytes build/src/.libs/H5Tbit.o | Bin 31176 -> 0 bytes build/src/.libs/H5Tcommit.o | Bin 82176 -> 0 bytes build/src/.libs/H5Tcompound.o | Bin 59680 -> 0 bytes build/src/.libs/H5Tconv.o | Bin 2182424 -> 0 bytes build/src/.libs/H5Tcset.o | Bin 27632 -> 0 bytes build/src/.libs/H5Tdbg.o | Bin 32624 -> 0 bytes build/src/.libs/H5Tdeprec.o | Bin 34176 -> 0 bytes build/src/.libs/H5Tenum.o | Bin 61056 -> 0 bytes build/src/.libs/H5Tfields.o | Bin 45784 -> 0 bytes build/src/.libs/H5Tfixed.o | Bin 29480 -> 0 bytes build/src/.libs/H5Tfloat.o | Bin 51312 -> 0 bytes build/src/.libs/H5Tinit.o | Bin 62808 -> 0 bytes build/src/.libs/H5Tnative.o | Bin 78432 -> 0 bytes build/src/.libs/H5Toffset.o | Bin 33704 -> 0 bytes build/src/.libs/H5Toh.o | Bin 40112 -> 0 bytes build/src/.libs/H5Topaque.o | Bin 28320 -> 0 bytes build/src/.libs/H5Torder.o | Bin 34352 -> 0 bytes build/src/.libs/H5Tpad.o | Bin 28112 -> 0 bytes build/src/.libs/H5Tprecis.o | Bin 35464 -> 0 bytes build/src/.libs/H5Tstrpad.o | Bin 27680 -> 0 bytes build/src/.libs/H5Tvisit.o | Bin 21096 -> 0 bytes build/src/.libs/H5Tvlen.o | Bin 79064 -> 0 bytes build/src/.libs/H5VM.o | Bin 67080 -> 0 bytes build/src/.libs/H5WB.o | Bin 16816 -> 0 bytes build/src/.libs/H5Z.o | Bin 115936 -> 0 bytes build/src/.libs/H5Zdeflate.o | Bin 17312 -> 0 bytes build/src/.libs/H5Zfletcher32.o | Bin 11480 -> 0 bytes build/src/.libs/H5Znbit.o | Bin 78464 -> 0 bytes build/src/.libs/H5Zscaleoffset.o | Bin 130360 -> 0 bytes build/src/.libs/H5Zshuffle.o | Bin 18032 -> 0 bytes build/src/.libs/H5Zszip.o | Bin 2568 -> 0 bytes build/src/.libs/H5Ztrans.o | Bin 148872 -> 0 bytes build/src/.libs/H5checksum.o | Bin 17336 -> 0 bytes build/src/.libs/H5dbg.o | Bin 9944 -> 0 bytes build/src/.libs/H5lib_settings.o | Bin 5392 -> 0 bytes build/src/.libs/H5system.o | Bin 30256 -> 0 bytes build/src/.libs/H5timer.o | Bin 11048 -> 0 bytes build/src/.libs/H5trace.o | Bin 114520 -> 0 bytes build/src/.libs/libhdf5.a | Bin 17948322 -> 0 bytes build/src/.libs/libhdf5.la | 1 - build/src/.libs/libhdf5.lai | 41 - build/src/.libs/libhdf5.so | 1 - build/src/.libs/libhdf5.so.10 | 1 - build/src/.libs/libhdf5.so.10.3.2 | Bin 8985304 -> 0 bytes build/src/H5.lo | 12 - build/src/H5.o | Bin 54416 -> 0 bytes build/src/H5A.lo | 12 - build/src/H5A.o | Bin 148872 -> 0 bytes build/src/H5AC.lo | 12 - build/src/H5AC.o | Bin 114072 -> 0 bytes build/src/H5Abtree2.lo | 12 - build/src/H5Abtree2.o | Bin 34640 -> 0 bytes build/src/H5Adense.lo | 12 - build/src/H5Adense.o | Bin 128056 -> 0 bytes build/src/H5Adeprec.lo | 12 - build/src/H5Adeprec.o | Bin 41840 -> 0 bytes build/src/H5Aint.lo | 12 - build/src/H5Aint.o | Bin 161120 -> 0 bytes build/src/H5Atest.lo | 12 - build/src/H5Atest.o | Bin 13736 -> 0 bytes build/src/H5B.lo | 12 - build/src/H5B.o | Bin 112656 -> 0 bytes build/src/H5B2.lo | 12 - build/src/H5B2.o | Bin 83536 -> 0 bytes build/src/H5B2cache.lo | 12 - build/src/H5B2cache.o | Bin 84592 -> 0 bytes build/src/H5B2dbg.lo | 12 - build/src/H5B2dbg.o | Bin 38456 -> 0 bytes build/src/H5B2hdr.lo | 12 - build/src/H5B2hdr.o | Bin 51056 -> 0 bytes build/src/H5B2int.lo | 12 - build/src/H5B2int.o | Bin 165472 -> 0 bytes build/src/H5B2stat.lo | 12 - build/src/H5B2stat.o | Bin 17072 -> 0 bytes build/src/H5B2test.lo | 12 - build/src/H5B2test.o | Bin 39376 -> 0 bytes build/src/H5Bcache.lo | 12 - build/src/H5Bcache.o | Bin 39056 -> 0 bytes build/src/H5Bdbg.lo | 12 - build/src/H5Bdbg.o | Bin 20320 -> 0 bytes build/src/H5C.lo | 12 - build/src/H5C.o | Bin 260576 -> 0 bytes build/src/H5CS.lo | 12 - build/src/H5CS.o | Bin 2552 -> 0 bytes build/src/H5D.lo | 12 - build/src/H5D.o | Bin 113456 -> 0 bytes build/src/H5Dbtree.lo | 12 - build/src/H5Dbtree.o | Bin 110768 -> 0 bytes build/src/H5Dchunk.lo | 12 - build/src/H5Dchunk.o | Bin 304456 -> 0 bytes build/src/H5Dcompact.lo | 12 - build/src/H5Dcompact.o | Bin 76200 -> 0 bytes build/src/H5Dcontig.lo | 12 - build/src/H5Dcontig.o | Bin 119368 -> 0 bytes build/src/H5Ddbg.lo | 12 - build/src/H5Ddbg.o | Bin 37912 -> 0 bytes build/src/H5Ddeprec.lo | 12 - build/src/H5Ddeprec.o | Bin 59208 -> 0 bytes build/src/H5Defl.lo | 12 - build/src/H5Defl.o | Bin 72424 -> 0 bytes build/src/H5Dfill.lo | 12 - build/src/H5Dfill.o | Bin 58312 -> 0 bytes build/src/H5Dint.lo | 12 - build/src/H5Dint.o | Bin 206216 -> 0 bytes build/src/H5Dio.lo | 12 - build/src/H5Dio.o | Bin 92584 -> 0 bytes build/src/H5Dlayout.lo | 12 - build/src/H5Dlayout.o | Bin 56800 -> 0 bytes build/src/H5Dmpio.lo | 12 - build/src/H5Dmpio.o | Bin 5184 -> 0 bytes build/src/H5Doh.lo | 12 - build/src/H5Doh.o | Bin 72496 -> 0 bytes build/src/H5Dscatgath.lo | 12 - build/src/H5Dscatgath.o | Bin 95544 -> 0 bytes build/src/H5Dselect.lo | 12 - build/src/H5Dselect.o | Bin 50944 -> 0 bytes build/src/H5Dtest.lo | 12 - build/src/H5Dtest.o | Bin 40888 -> 0 bytes build/src/H5E.lo | 12 - build/src/H5E.o | Bin 267072 -> 0 bytes build/src/H5Edeprec.lo | 12 - build/src/H5Edeprec.o | Bin 42568 -> 0 bytes build/src/H5Eint.lo | 12 - build/src/H5Eint.o | Bin 64064 -> 0 bytes build/src/H5F.lo | 12 - build/src/H5F.o | Bin 122352 -> 0 bytes build/src/H5FD.lo | 12 - build/src/H5FD.o | Bin 139600 -> 0 bytes build/src/H5FDcore.lo | 12 - build/src/H5FDcore.o | Bin 80472 -> 0 bytes build/src/H5FDdirect.lo | 12 - build/src/H5FDdirect.o | Bin 3528 -> 0 bytes build/src/H5FDfamily.lo | 12 - build/src/H5FDfamily.o | Bin 73696 -> 0 bytes build/src/H5FDint.lo | 12 - build/src/H5FDint.o | Bin 28936 -> 0 bytes build/src/H5FDlog.lo | 12 - build/src/H5FDlog.o | Bin 76352 -> 0 bytes build/src/H5FDmpi.lo | 12 - build/src/H5FDmpi.o | Bin 2560 -> 0 bytes build/src/H5FDmpio.lo | 12 - build/src/H5FDmpio.o | Bin 3528 -> 0 bytes build/src/H5FDmulti.lo | 12 - build/src/H5FDmulti.o | Bin 73824 -> 0 bytes build/src/H5FDsec2.lo | 12 - build/src/H5FDsec2.o | Bin 51760 -> 0 bytes build/src/H5FDspace.lo | 12 - build/src/H5FDspace.o | Bin 32600 -> 0 bytes build/src/H5FDstdio.lo | 12 - build/src/H5FDstdio.o | Bin 37920 -> 0 bytes build/src/H5FL.lo | 12 - build/src/H5FL.o | Bin 101776 -> 0 bytes build/src/H5FO.lo | 12 - build/src/H5FO.o | Bin 48080 -> 0 bytes build/src/H5FS.lo | 12 - build/src/H5FS.o | Bin 58624 -> 0 bytes build/src/H5FScache.lo | 12 - build/src/H5FScache.o | Bin 81256 -> 0 bytes build/src/H5FSdbg.lo | 12 - build/src/H5FSdbg.o | Bin 27944 -> 0 bytes build/src/H5FSsection.lo | 12 - build/src/H5FSsection.o | Bin 115856 -> 0 bytes build/src/H5FSstat.lo | 12 - build/src/H5FSstat.o | Bin 15864 -> 0 bytes build/src/H5FStest.lo | 12 - build/src/H5FStest.o | Bin 17032 -> 0 bytes build/src/H5Faccum.lo | 12 - build/src/H5Faccum.o | Bin 61088 -> 0 bytes build/src/H5Fcwfs.lo | 12 - build/src/H5Fcwfs.o | Bin 29112 -> 0 bytes build/src/H5Fdbg.lo | 12 - build/src/H5Fdbg.o | Bin 30304 -> 0 bytes build/src/H5Fefc.lo | 12 - build/src/H5Fefc.o | Bin 54112 -> 0 bytes build/src/H5Ffake.lo | 12 - build/src/H5Ffake.o | Bin 24960 -> 0 bytes build/src/H5Fint.lo | 12 - build/src/H5Fint.o | Bin 128456 -> 0 bytes build/src/H5Fio.lo | 12 - build/src/H5Fio.o | Bin 25512 -> 0 bytes build/src/H5Fmount.lo | 12 - build/src/H5Fmount.o | Bin 63848 -> 0 bytes build/src/H5Fmpi.lo | 12 - build/src/H5Fmpi.o | Bin 2560 -> 0 bytes build/src/H5Fquery.lo | 12 - build/src/H5Fquery.o | Bin 71256 -> 0 bytes build/src/H5Fsfile.lo | 12 - build/src/H5Fsfile.o | Bin 27664 -> 0 bytes build/src/H5Fsuper.lo | 12 - build/src/H5Fsuper.o | Bin 64448 -> 0 bytes build/src/H5Fsuper_cache.lo | 12 - build/src/H5Fsuper_cache.o | Bin 73584 -> 0 bytes build/src/H5Ftest.lo | 12 - build/src/H5Ftest.o | Bin 27136 -> 0 bytes build/src/H5G.lo | 12 - build/src/H5G.o | Bin 67680 -> 0 bytes build/src/H5Gbtree2.lo | 12 - build/src/H5Gbtree2.o | Bin 33336 -> 0 bytes build/src/H5Gcache.lo | 12 - build/src/H5Gcache.o | Bin 31456 -> 0 bytes build/src/H5Gcompact.lo | 12 - build/src/H5Gcompact.o | Bin 50872 -> 0 bytes build/src/H5Gdense.lo | 12 - build/src/H5Gdense.o | Bin 114448 -> 0 bytes build/src/H5Gdeprec.lo | 12 - build/src/H5Gdeprec.o | Bin 105264 -> 0 bytes build/src/H5Gent.lo | 12 - build/src/H5Gent.o | Bin 43896 -> 0 bytes build/src/H5Gint.lo | 12 - build/src/H5Gint.o | Bin 79512 -> 0 bytes build/src/H5Glink.lo | 12 - build/src/H5Glink.o | Bin 38144 -> 0 bytes build/src/H5Gloc.lo | 12 - build/src/H5Gloc.o | Bin 63064 -> 0 bytes build/src/H5Gname.lo | 12 - build/src/H5Gname.o | Bin 63200 -> 0 bytes build/src/H5Gnode.lo | 12 - build/src/H5Gnode.o | Bin 107304 -> 0 bytes build/src/H5Gobj.lo | 12 - build/src/H5Gobj.o | Bin 84016 -> 0 bytes build/src/H5Goh.lo | 12 - build/src/H5Goh.o | Bin 45824 -> 0 bytes build/src/H5Groot.lo | 12 - build/src/H5Groot.o | Bin 37136 -> 0 bytes build/src/H5Gstab.lo | 12 - build/src/H5Gstab.o | Bin 86392 -> 0 bytes build/src/H5Gtest.lo | 12 - build/src/H5Gtest.o | Bin 63016 -> 0 bytes build/src/H5Gtraverse.lo | 12 - build/src/H5Gtraverse.o | Bin 57520 -> 0 bytes build/src/H5HF.lo | 12 - build/src/H5HF.o | Bin 63480 -> 0 bytes build/src/H5HFbtree2.lo | 12 - build/src/H5HFbtree2.o | Bin 76488 -> 0 bytes build/src/H5HFcache.lo | 12 - build/src/H5HFcache.o | Bin 128680 -> 0 bytes build/src/H5HFdbg.lo | 12 - build/src/H5HFdbg.o | Bin 66888 -> 0 bytes build/src/H5HFdblock.lo | 12 - build/src/H5HFdblock.o | Bin 58784 -> 0 bytes build/src/H5HFdtable.lo | 12 - build/src/H5HFdtable.o | Bin 22472 -> 0 bytes build/src/H5HFhdr.lo | 12 - build/src/H5HFhdr.o | Bin 96112 -> 0 bytes build/src/H5HFhuge.lo | 12 - build/src/H5HFhuge.o | Bin 73344 -> 0 bytes build/src/H5HFiblock.lo | 12 - build/src/H5HFiblock.o | Bin 106848 -> 0 bytes build/src/H5HFiter.lo | 12 - build/src/H5HFiter.o | Bin 44728 -> 0 bytes build/src/H5HFman.lo | 12 - build/src/H5HFman.o | Bin 53960 -> 0 bytes build/src/H5HFsection.lo | 12 - build/src/H5HFsection.o | Bin 213600 -> 0 bytes build/src/H5HFspace.lo | 12 - build/src/H5HFspace.o | Bin 50016 -> 0 bytes build/src/H5HFstat.lo | 12 - build/src/H5HFstat.o | Bin 20592 -> 0 bytes build/src/H5HFtest.lo | 12 - build/src/H5HFtest.o | Bin 32992 -> 0 bytes build/src/H5HFtiny.lo | 12 - build/src/H5HFtiny.o | Bin 28840 -> 0 bytes build/src/H5HG.lo | 12 - build/src/H5HG.o | Bin 54808 -> 0 bytes build/src/H5HGcache.lo | 12 - build/src/H5HGcache.o | Bin 33400 -> 0 bytes build/src/H5HGdbg.lo | 12 - build/src/H5HGdbg.o | Bin 17416 -> 0 bytes build/src/H5HGquery.lo | 12 - build/src/H5HGquery.o | Bin 11104 -> 0 bytes build/src/H5HL.lo | 12 - build/src/H5HL.o | Bin 68560 -> 0 bytes build/src/H5HLcache.lo | 12 - build/src/H5HLcache.o | Bin 59248 -> 0 bytes build/src/H5HLdbg.lo | 12 - build/src/H5HLdbg.o | Bin 17120 -> 0 bytes build/src/H5HLint.lo | 12 - build/src/H5HLint.o | Bin 27832 -> 0 bytes build/src/H5HP.lo | 12 - build/src/H5HP.o | Bin 44832 -> 0 bytes build/src/H5I.lo | 12 - build/src/H5I.o | Bin 150552 -> 0 bytes build/src/H5Itest.lo | 12 - build/src/H5Itest.o | Bin 7928 -> 0 bytes build/src/H5L.lo | 12 - build/src/H5L.o | Bin 208928 -> 0 bytes build/src/H5Lexternal.lo | 12 - build/src/H5Lexternal.o | Bin 50792 -> 0 bytes build/src/H5MF.lo | 12 - build/src/H5MF.o | Bin 76120 -> 0 bytes build/src/H5MFaggr.lo | 12 - build/src/H5MFaggr.o | Bin 60648 -> 0 bytes build/src/H5MFdbg.lo | 12 - build/src/H5MFdbg.o | Bin 2560 -> 0 bytes build/src/H5MFsection.lo | 12 - build/src/H5MFsection.o | Bin 46352 -> 0 bytes build/src/H5MM.lo | 12 - build/src/H5MM.o | Bin 13520 -> 0 bytes build/src/H5MP.lo | 12 - build/src/H5MP.o | Bin 21824 -> 0 bytes build/src/H5MPtest.lo | 12 - build/src/H5MPtest.o | Bin 13296 -> 0 bytes build/src/H5O.lo | 12 - build/src/H5O.o | Bin 234968 -> 0 bytes build/src/H5Oainfo.lo | 12 - build/src/H5Oainfo.o | Bin 42440 -> 0 bytes build/src/H5Oalloc.lo | 12 - build/src/H5Oalloc.o | Bin 117736 -> 0 bytes build/src/H5Oattr.lo | 12 - build/src/H5Oattr.o | Bin 88584 -> 0 bytes build/src/H5Oattribute.lo | 12 - build/src/H5Oattribute.o | Bin 127976 -> 0 bytes build/src/H5Obogus.lo | 12 - build/src/H5Obogus.o | Bin 2560 -> 0 bytes build/src/H5Obtreek.lo | 12 - build/src/H5Obtreek.o | Bin 28144 -> 0 bytes build/src/H5Ocache.lo | 12 - build/src/H5Ocache.o | Bin 87984 -> 0 bytes build/src/H5Ochunk.lo | 12 - build/src/H5Ochunk.o | Bin 38560 -> 0 bytes build/src/H5Ocont.lo | 12 - build/src/H5Ocont.o | Bin 31576 -> 0 bytes build/src/H5Ocopy.lo | 12 - build/src/H5Ocopy.o | Bin 118984 -> 0 bytes build/src/H5Odbg.lo | 12 - build/src/H5Odbg.o | Bin 50088 -> 0 bytes build/src/H5Odrvinfo.lo | 12 - build/src/H5Odrvinfo.o | Bin 30736 -> 0 bytes build/src/H5Odtype.lo | 12 - build/src/H5Odtype.o | Bin 127616 -> 0 bytes build/src/H5Oefl.lo | 12 - build/src/H5Oefl.o | Bin 51528 -> 0 bytes build/src/H5Ofill.lo | 12 - build/src/H5Ofill.o | Bin 103840 -> 0 bytes build/src/H5Oginfo.lo | 12 - build/src/H5Oginfo.o | Bin 31200 -> 0 bytes build/src/H5Olayout.lo | 12 - build/src/H5Olayout.o | Bin 73008 -> 0 bytes build/src/H5Olinfo.lo | 12 - build/src/H5Olinfo.o | Bin 49488 -> 0 bytes build/src/H5Olink.lo | 12 - build/src/H5Olink.o | Bin 58120 -> 0 bytes build/src/H5Omessage.lo | 12 - build/src/H5Omessage.o | Bin 149776 -> 0 bytes build/src/H5Omtime.lo | 12 - build/src/H5Omtime.o | Bin 38936 -> 0 bytes build/src/H5Oname.lo | 12 - build/src/H5Oname.o | Bin 29064 -> 0 bytes build/src/H5Onull.lo | 12 - build/src/H5Onull.o | Bin 15312 -> 0 bytes build/src/H5Opline.lo | 12 - build/src/H5Opline.o | Bin 66256 -> 0 bytes build/src/H5Orefcount.lo | 12 - build/src/H5Orefcount.o | Bin 31104 -> 0 bytes build/src/H5Osdspace.lo | 12 - build/src/H5Osdspace.o | Bin 63808 -> 0 bytes build/src/H5Oshared.lo | 12 - build/src/H5Oshared.o | Bin 50360 -> 0 bytes build/src/H5Oshmesg.lo | 12 - build/src/H5Oshmesg.o | Bin 27504 -> 0 bytes build/src/H5Ostab.lo | 12 - build/src/H5Ostab.o | Bin 43064 -> 0 bytes build/src/H5Otest.lo | 12 - build/src/H5Otest.o | Bin 43648 -> 0 bytes build/src/H5Ounknown.lo | 12 - build/src/H5Ounknown.o | Bin 19008 -> 0 bytes build/src/H5P.lo | 12 - build/src/H5P.o | Bin 108328 -> 0 bytes build/src/H5PL.lo | 12 - build/src/H5PL.o | Bin 68848 -> 0 bytes build/src/H5Pacpl.lo | 12 - build/src/H5Pacpl.o | Bin 8240 -> 0 bytes build/src/H5Pdapl.lo | 12 - build/src/H5Pdapl.o | Bin 42512 -> 0 bytes build/src/H5Pdcpl.lo | 12 - build/src/H5Pdcpl.o | Bin 137944 -> 0 bytes build/src/H5Pdeprec.lo | 12 - build/src/H5Pdeprec.o | Bin 25272 -> 0 bytes build/src/H5Pdxpl.lo | 12 - build/src/H5Pdxpl.o | Bin 100624 -> 0 bytes build/src/H5Pfapl.lo | 12 - build/src/H5Pfapl.o | Bin 170256 -> 0 bytes build/src/H5Pfcpl.lo | 12 - build/src/H5Pfcpl.o | Bin 75336 -> 0 bytes build/src/H5Pfmpl.lo | 12 - build/src/H5Pfmpl.o | Bin 11968 -> 0 bytes build/src/H5Pgcpl.lo | 12 - build/src/H5Pgcpl.o | Bin 45680 -> 0 bytes build/src/H5Pint.lo | 12 - build/src/H5Pint.o | Bin 202136 -> 0 bytes build/src/H5Plapl.lo | 12 - build/src/H5Plapl.o | Bin 65576 -> 0 bytes build/src/H5Plcpl.lo | 12 - build/src/H5Plcpl.o | Bin 20064 -> 0 bytes build/src/H5Pocpl.lo | 12 - build/src/H5Pocpl.o | Bin 108560 -> 0 bytes build/src/H5Pocpypl.lo | 12 - build/src/H5Pocpypl.o | Bin 48376 -> 0 bytes build/src/H5Pstrcpl.lo | 12 - build/src/H5Pstrcpl.o | Bin 21952 -> 0 bytes build/src/H5Ptest.lo | 12 - build/src/H5Ptest.o | Bin 17312 -> 0 bytes build/src/H5R.lo | 12 - build/src/H5R.o | Bin 63704 -> 0 bytes build/src/H5RC.lo | 12 - build/src/H5RC.o | Bin 11376 -> 0 bytes build/src/H5RS.lo | 12 - build/src/H5RS.o | Bin 25984 -> 0 bytes build/src/H5Rdeprec.lo | 12 - build/src/H5Rdeprec.o | Bin 16696 -> 0 bytes build/src/H5S.lo | 12 - build/src/H5S.o | Bin 147944 -> 0 bytes build/src/H5SL.lo | 12 - build/src/H5SL.o | Bin 373760 -> 0 bytes build/src/H5SM.lo | 12 - build/src/H5SM.o | Bin 168352 -> 0 bytes build/src/H5SMbtree2.lo | 12 - build/src/H5SMbtree2.o | Bin 27024 -> 0 bytes build/src/H5SMcache.lo | 12 - build/src/H5SMcache.o | Bin 54208 -> 0 bytes build/src/H5SMmessage.lo | 12 - build/src/H5SMmessage.o | Bin 30368 -> 0 bytes build/src/H5SMtest.lo | 12 - build/src/H5SMtest.o | Bin 12664 -> 0 bytes build/src/H5ST.lo | 12 - build/src/H5ST.o | Bin 31904 -> 0 bytes build/src/H5Sall.lo | 12 - build/src/H5Sall.o | Bin 57360 -> 0 bytes build/src/H5Sdbg.lo | 12 - build/src/H5Sdbg.o | Bin 17000 -> 0 bytes build/src/H5Shyper.lo | 12 - build/src/H5Shyper.o | Bin 265488 -> 0 bytes build/src/H5Smpio.lo | 12 - build/src/H5Smpio.o | Bin 5184 -> 0 bytes build/src/H5Snone.lo | 12 - build/src/H5Snone.o | Bin 55512 -> 0 bytes build/src/H5Spoint.lo | 12 - build/src/H5Spoint.o | Bin 89008 -> 0 bytes build/src/H5Sselect.lo | 12 - build/src/H5Sselect.o | Bin 92144 -> 0 bytes build/src/H5Stest.lo | 12 - build/src/H5Stest.o | Bin 18488 -> 0 bytes build/src/H5T.lo | 12 - build/src/H5T.o | Bin 350216 -> 0 bytes build/src/H5TS.lo | 12 - build/src/H5TS.o | Bin 2552 -> 0 bytes build/src/H5Tarray.lo | 12 - build/src/H5Tarray.o | Bin 49136 -> 0 bytes build/src/H5Tbit.lo | 12 - build/src/H5Tbit.o | Bin 30952 -> 0 bytes build/src/H5Tcommit.lo | 12 - build/src/H5Tcommit.o | Bin 80384 -> 0 bytes build/src/H5Tcompound.lo | 12 - build/src/H5Tcompound.o | Bin 58728 -> 0 bytes build/src/H5Tconv.lo | 12 - build/src/H5Tconv.o | Bin 2134448 -> 0 bytes build/src/H5Tcset.lo | 12 - build/src/H5Tcset.o | Bin 27352 -> 0 bytes build/src/H5Tdbg.lo | 12 - build/src/H5Tdbg.o | Bin 32272 -> 0 bytes build/src/H5Tdeprec.lo | 12 - build/src/H5Tdeprec.o | Bin 33800 -> 0 bytes build/src/H5Tenum.lo | 12 - build/src/H5Tenum.o | Bin 59936 -> 0 bytes build/src/H5Tfields.lo | 12 - build/src/H5Tfields.o | Bin 45264 -> 0 bytes build/src/H5Tfixed.lo | 12 - build/src/H5Tfixed.o | Bin 29152 -> 0 bytes build/src/H5Tfloat.lo | 12 - build/src/H5Tfloat.o | Bin 50288 -> 0 bytes build/src/H5Tinit.c | 991 - build/src/H5Tinit.lo | 12 - build/src/H5Tinit.o | Bin 61184 -> 0 bytes build/src/H5Tnative.lo | 12 - build/src/H5Tnative.o | Bin 76640 -> 0 bytes build/src/H5Toffset.lo | 12 - build/src/H5Toffset.o | Bin 33280 -> 0 bytes build/src/H5Toh.lo | 12 - build/src/H5Toh.o | Bin 39752 -> 0 bytes build/src/H5Topaque.lo | 12 - build/src/H5Topaque.o | Bin 28016 -> 0 bytes build/src/H5Torder.lo | 12 - build/src/H5Torder.o | Bin 33912 -> 0 bytes build/src/H5Tpad.lo | 12 - build/src/H5Tpad.o | Bin 27824 -> 0 bytes build/src/H5Tprecis.lo | 12 - build/src/H5Tprecis.o | Bin 34984 -> 0 bytes build/src/H5Tstrpad.lo | 12 - build/src/H5Tstrpad.o | Bin 27400 -> 0 bytes build/src/H5Tvisit.lo | 12 - build/src/H5Tvisit.o | Bin 20936 -> 0 bytes build/src/H5Tvlen.lo | 12 - build/src/H5Tvlen.o | Bin 78360 -> 0 bytes build/src/H5VM.lo | 12 - build/src/H5VM.o | Bin 66224 -> 0 bytes build/src/H5WB.lo | 12 - build/src/H5WB.o | Bin 16520 -> 0 bytes build/src/H5Z.lo | 12 - build/src/H5Z.o | Bin 113848 -> 0 bytes build/src/H5Zdeflate.lo | 12 - build/src/H5Zdeflate.o | Bin 17000 -> 0 bytes build/src/H5Zfletcher32.lo | 12 - build/src/H5Zfletcher32.o | Bin 11280 -> 0 bytes build/src/H5Znbit.lo | 12 - build/src/H5Znbit.o | Bin 77024 -> 0 bytes build/src/H5Zscaleoffset.lo | 12 - build/src/H5Zscaleoffset.o | Bin 128648 -> 0 bytes build/src/H5Zshuffle.lo | 12 - build/src/H5Zshuffle.o | Bin 17672 -> 0 bytes build/src/H5Zszip.lo | 12 - build/src/H5Zszip.o | Bin 2560 -> 0 bytes build/src/H5Ztrans.lo | 12 - build/src/H5Ztrans.o | Bin 146440 -> 0 bytes build/src/H5checksum.lo | 12 - build/src/H5checksum.o | Bin 17144 -> 0 bytes build/src/H5config.h | 563 - build/src/H5dbg.lo | 12 - build/src/H5dbg.o | Bin 9832 -> 0 bytes build/src/H5detect | Bin 135648 -> 0 bytes build/src/H5detect.o | Bin 241152 -> 0 bytes build/src/H5lib_settings.c | 93 - build/src/H5lib_settings.lo | 12 - build/src/H5lib_settings.o | Bin 5384 -> 0 bytes build/src/H5make_libsettings | Bin 17872 -> 0 bytes build/src/H5make_libsettings.o | Bin 14096 -> 0 bytes build/src/H5pubconf.h | 563 - build/src/H5system.lo | 12 - build/src/H5system.o | Bin 30080 -> 0 bytes build/src/H5timer.lo | 12 - build/src/H5timer.o | Bin 10960 -> 0 bytes build/src/H5trace.lo | 12 - build/src/H5trace.o | Bin 113336 -> 0 bytes build/src/Makefile | 1961 -- build/src/libhdf5.la | 41 - build/src/libhdf5.settings | 59 - build/src/stamp-h1 | 1 - build/test/.deps/accum.Po | 400 - build/test/.deps/app_ref.Po | 349 - build/test/.deps/big.Po | 349 - build/test/.deps/bittests.Po | 388 - build/test/.deps/btree2.Po | 372 - build/test/.deps/cache.Po | 405 - build/test/.deps/cache_api.Po | 405 - build/test/.deps/cache_common.Plo | 409 - build/test/.deps/cmpd_dset.Po | 391 - build/test/.deps/cross_read.Po | 353 - build/test/.deps/dangle.Po | 349 - build/test/.deps/dsets.Po | 379 - build/test/.deps/dt_arith.Po | 388 - build/test/.deps/dtransform.Po | 349 - build/test/.deps/dtypes.Po | 395 - build/test/.deps/dynlib1.Plo | 197 - build/test/.deps/dynlib2.Plo | 197 - build/test/.deps/dynlib3.Plo | 199 - build/test/.deps/dynlib4.Plo | 197 - build/test/.deps/efc.Po | 398 - build/test/.deps/enum.Po | 349 - build/test/.deps/err_compat.Po | 349 - build/test/.deps/error_test.Po | 353 - build/test/.deps/extend.Po | 349 - build/test/.deps/external.Po | 349 - build/test/.deps/fheap.Po | 412 - build/test/.deps/file_image.Po | 356 - build/test/.deps/fillval.Po | 353 - build/test/.deps/filter_fail.Po | 353 - build/test/.deps/flush1.Po | 349 - build/test/.deps/flush2.Po | 349 - build/test/.deps/freespace.Po | 405 - build/test/.deps/gen_bad_offset.Po | 1 - build/test/.deps/gen_bad_ohdr.Po | 1 - build/test/.deps/gen_bogus.Po | 1 - build/test/.deps/gen_cross.Po | 1 - build/test/.deps/gen_deflate.Po | 1 - build/test/.deps/gen_file_image.Po | 1 - build/test/.deps/gen_filters.Po | 1 - build/test/.deps/gen_idx.Po | 1 - build/test/.deps/gen_new_array.Po | 1 - build/test/.deps/gen_new_fill.Po | 1 - build/test/.deps/gen_new_group.Po | 1 - build/test/.deps/gen_new_mtime.Po | 1 - build/test/.deps/gen_new_super.Po | 1 - build/test/.deps/gen_noencoder.Po | 1 - build/test/.deps/gen_nullspace.Po | 1 - build/test/.deps/gen_sizes_lheap.Po | 1 - build/test/.deps/gen_udlinks.Po | 1 - build/test/.deps/getname.Po | 407 - build/test/.deps/gheap.Po | 379 - build/test/.deps/h5test.Plo | 407 - build/test/.deps/hyperslab.Po | 358 - build/test/.deps/istore.Po | 419 - build/test/.deps/lheap.Po | 374 - build/test/.deps/links.Po | 412 - build/test/.deps/links_env.Po | 407 - build/test/.deps/mf.Po | 414 - build/test/.deps/mount.Po | 356 - build/test/.deps/mtime.Po | 353 - build/test/.deps/ntypes.Po | 349 - build/test/.deps/objcopy.Po | 395 - build/test/.deps/ohdr.Po | 412 - build/test/.deps/plugin.Po | 384 - build/test/.deps/pool.Po | 356 - build/test/.deps/reserved.Po | 349 - build/test/.deps/set_extent.Po | 349 - build/test/.deps/space_overflow.Po | 1 - build/test/.deps/stab.Po | 402 - build/test/.deps/tarray.Po | 360 - build/test/.deps/tattr.Po | 418 - build/test/.deps/tcheck_version.Po | 349 - build/test/.deps/tchecksum.Po | 355 - build/test/.deps/tconfig.Po | 356 - build/test/.deps/tcoords.Po | 355 - build/test/.deps/testframe.Plo | 355 - build/test/.deps/testhdf5.Po | 355 - build/test/.deps/testmeta.Po | 180 - build/test/.deps/tfile.Po | 409 - build/test/.deps/tgenprop.Po | 397 - build/test/.deps/th5o.Po | 355 - build/test/.deps/th5s.Po | 400 - build/test/.deps/theap.Po | 359 - build/test/.deps/tid.Po | 360 - build/test/.deps/titerate.Po | 355 - build/test/.deps/tmeta.Po | 358 - build/test/.deps/tmisc.Po | 402 - build/test/.deps/trefer.Po | 355 - build/test/.deps/trefstr.Po | 360 - build/test/.deps/tselect.Po | 393 - build/test/.deps/tskiplist.Po | 359 - build/test/.deps/tsohm.Po | 400 - build/test/.deps/ttime.Po | 355 - build/test/.deps/ttsafe.Po | 358 - build/test/.deps/ttsafe_acreate.Po | 358 - build/test/.deps/ttsafe_cancel.Po | 358 - build/test/.deps/ttsafe_dcreate.Po | 358 - build/test/.deps/ttsafe_error.Po | 358 - build/test/.deps/ttst.Po | 359 - build/test/.deps/tunicode.Po | 354 - build/test/.deps/tverbounds18.Po | 360 - build/test/.deps/tvlstr.Po | 355 - build/test/.deps/tvltypes.Po | 395 - build/test/.deps/unlink.Po | 402 - build/test/.deps/unregister.Po | 349 - build/test/.deps/vfd.Po | 349 - build/test/.libs/accum | Bin 79120 -> 0 bytes build/test/.libs/app_ref | Bin 59248 -> 0 bytes build/test/.libs/big | Bin 71264 -> 0 bytes build/test/.libs/bittests | Bin 27000 -> 0 bytes build/test/.libs/btree2 | Bin 237824 -> 0 bytes build/test/.libs/cache | Bin 455712 -> 0 bytes build/test/.libs/cache_api | Bin 263872 -> 0 bytes build/test/.libs/cache_common.o | Bin 205744 -> 0 bytes build/test/.libs/cmpd_dset | Bin 123024 -> 0 bytes build/test/.libs/cross_read | Bin 63024 -> 0 bytes build/test/.libs/dangle | Bin 69304 -> 0 bytes build/test/.libs/dsets | Bin 285136 -> 0 bytes build/test/.libs/dt_arith | Bin 225008 -> 0 bytes build/test/.libs/dtransform | Bin 139896 -> 0 bytes build/test/.libs/dtypes | Bin 271248 -> 0 bytes build/test/.libs/dynlib1.o | Bin 6856 -> 0 bytes build/test/.libs/dynlib2.o | Bin 6808 -> 0 bytes build/test/.libs/dynlib3.o | Bin 7192 -> 0 bytes build/test/.libs/dynlib4.o | Bin 8256 -> 0 bytes build/test/.libs/efc | Bin 202960 -> 0 bytes build/test/.libs/enum | Bin 81664 -> 0 bytes build/test/.libs/err_compat | Bin 65256 -> 0 bytes build/test/.libs/error_test | Bin 71896 -> 0 bytes build/test/.libs/extend | Bin 64320 -> 0 bytes build/test/.libs/external | Bin 102568 -> 0 bytes build/test/.libs/fheap | Bin 397848 -> 0 bytes build/test/.libs/file_image | Bin 95688 -> 0 bytes build/test/.libs/fillval | Bin 116888 -> 0 bytes build/test/.libs/filter_fail | Bin 65696 -> 0 bytes build/test/.libs/flush1 | Bin 58408 -> 0 bytes build/test/.libs/flush2 | Bin 58064 -> 0 bytes build/test/.libs/freespace | Bin 136480 -> 0 bytes build/test/.libs/getname | Bin 176760 -> 0 bytes build/test/.libs/gheap | Bin 64384 -> 0 bytes build/test/.libs/h5test.o | Bin 40112 -> 0 bytes build/test/.libs/hyperslab | Bin 39984 -> 0 bytes build/test/.libs/istore | Bin 71424 -> 0 bytes build/test/.libs/lheap | Bin 58552 -> 0 bytes build/test/.libs/libdynlib1.la | 1 - build/test/.libs/libdynlib1.lai | 41 - build/test/.libs/libdynlib1.so | Bin 10840 -> 0 bytes build/test/.libs/libdynlib2.la | 1 - build/test/.libs/libdynlib2.lai | 41 - build/test/.libs/libdynlib2.so | Bin 10816 -> 0 bytes build/test/.libs/libdynlib3.la | 1 - build/test/.libs/libdynlib3.lai | 41 - build/test/.libs/libdynlib3.so | Bin 11016 -> 0 bytes build/test/.libs/libdynlib4.la | 1 - build/test/.libs/libdynlib4.lai | 41 - build/test/.libs/libdynlib4.so | Bin 11264 -> 0 bytes build/test/.libs/libh5test.a | Bin 275960 -> 0 bytes build/test/.libs/libh5test.la | 1 - build/test/.libs/links | Bin 535824 -> 0 bytes build/test/.libs/links_env | Bin 58144 -> 0 bytes build/test/.libs/lt-accum | Bin 79120 -> 0 bytes build/test/.libs/lt-app_ref | Bin 59248 -> 0 bytes build/test/.libs/lt-big | Bin 71264 -> 0 bytes build/test/.libs/lt-bittests | Bin 27000 -> 0 bytes build/test/.libs/lt-btree2 | Bin 237824 -> 0 bytes build/test/.libs/lt-cache | Bin 455712 -> 0 bytes build/test/.libs/lt-cache_api | Bin 263872 -> 0 bytes build/test/.libs/lt-cmpd_dset | Bin 123024 -> 0 bytes build/test/.libs/lt-cross_read | Bin 63024 -> 0 bytes build/test/.libs/lt-dangle | Bin 69304 -> 0 bytes build/test/.libs/lt-dsets | Bin 285136 -> 0 bytes build/test/.libs/lt-dt_arith | Bin 225008 -> 0 bytes build/test/.libs/lt-dtransform | Bin 139896 -> 0 bytes build/test/.libs/lt-dtypes | Bin 271248 -> 0 bytes build/test/.libs/lt-efc | Bin 202960 -> 0 bytes build/test/.libs/lt-enum | Bin 81664 -> 0 bytes build/test/.libs/lt-err_compat | Bin 65256 -> 0 bytes build/test/.libs/lt-error_test | Bin 71896 -> 0 bytes build/test/.libs/lt-extend | Bin 64320 -> 0 bytes build/test/.libs/lt-external | Bin 102568 -> 0 bytes build/test/.libs/lt-fheap | Bin 397848 -> 0 bytes build/test/.libs/lt-file_image | Bin 95688 -> 0 bytes build/test/.libs/lt-fillval | Bin 116888 -> 0 bytes build/test/.libs/lt-filter_fail | Bin 65696 -> 0 bytes build/test/.libs/lt-flush1 | Bin 58408 -> 0 bytes build/test/.libs/lt-flush2 | Bin 58064 -> 0 bytes build/test/.libs/lt-freespace | Bin 136480 -> 0 bytes build/test/.libs/lt-getname | Bin 176760 -> 0 bytes build/test/.libs/lt-gheap | Bin 64384 -> 0 bytes build/test/.libs/lt-hyperslab | Bin 39984 -> 0 bytes build/test/.libs/lt-istore | Bin 71424 -> 0 bytes build/test/.libs/lt-lheap | Bin 58552 -> 0 bytes build/test/.libs/lt-links | Bin 535824 -> 0 bytes build/test/.libs/lt-links_env | Bin 58144 -> 0 bytes build/test/.libs/lt-mf | Bin 204312 -> 0 bytes build/test/.libs/lt-mount | Bin 188768 -> 0 bytes build/test/.libs/lt-mtime | Bin 63344 -> 0 bytes build/test/.libs/lt-ntypes | Bin 144328 -> 0 bytes build/test/.libs/lt-objcopy | Bin 462200 -> 0 bytes build/test/.libs/lt-ohdr | Bin 90248 -> 0 bytes build/test/.libs/lt-plugin | Bin 91576 -> 0 bytes build/test/.libs/lt-pool | Bin 69480 -> 0 bytes build/test/.libs/lt-reserved | Bin 10896 -> 0 bytes build/test/.libs/lt-set_extent | Bin 101560 -> 0 bytes build/test/.libs/lt-stab | Bin 91672 -> 0 bytes build/test/.libs/lt-tcheck_version | Bin 16512 -> 0 bytes build/test/.libs/lt-testhdf5 | Bin 2423624 -> 0 bytes build/test/.libs/lt-ttsafe | Bin 53008 -> 0 bytes build/test/.libs/lt-unlink | Bin 155328 -> 0 bytes build/test/.libs/lt-unregister | Bin 59632 -> 0 bytes build/test/.libs/lt-vfd | Bin 90968 -> 0 bytes build/test/.libs/mf | Bin 204312 -> 0 bytes build/test/.libs/mount | Bin 188768 -> 0 bytes build/test/.libs/mtime | Bin 63344 -> 0 bytes build/test/.libs/ntypes | Bin 144328 -> 0 bytes build/test/.libs/objcopy | Bin 462200 -> 0 bytes build/test/.libs/ohdr | Bin 90248 -> 0 bytes build/test/.libs/plugin | Bin 91576 -> 0 bytes build/test/.libs/pool | Bin 69480 -> 0 bytes build/test/.libs/reserved | Bin 10896 -> 0 bytes build/test/.libs/set_extent | Bin 101560 -> 0 bytes build/test/.libs/stab | Bin 91672 -> 0 bytes build/test/.libs/tcheck_version | Bin 16512 -> 0 bytes build/test/.libs/testframe.o | Bin 27896 -> 0 bytes build/test/.libs/testhdf5 | Bin 2423624 -> 0 bytes build/test/.libs/testmeta | Bin 17416 -> 0 bytes build/test/.libs/ttsafe | Bin 53008 -> 0 bytes build/test/.libs/unlink | Bin 155328 -> 0 bytes build/test/.libs/unregister | Bin 59632 -> 0 bytes build/test/.libs/vfd | Bin 90968 -> 0 bytes build/test/H5srcdir_str.h | 20 - build/test/Makefile | 2650 -- build/test/accum | 228 - build/test/accum.chkexe | 0 build/test/accum.chklog | 22 - build/test/accum.o | Bin 179528 -> 0 bytes build/test/app_ref | 228 - build/test/app_ref.chkexe | 0 build/test/app_ref.chklog | 9 - build/test/app_ref.o | Bin 21840 -> 0 bytes build/test/big | 228 - build/test/big.chkexe | 0 build/test/big.chklog | 61 - build/test/big.o | Bin 37424 -> 0 bytes build/test/bittests | 228 - build/test/bittests.chkexe | 0 build/test/bittests.chklog | 17 - build/test/bittests.o | Bin 35600 -> 0 bytes build/test/btree2 | 228 - build/test/btree2.chkexe | 0 build/test/btree2.chklog | 163 - build/test/btree2.o | Bin 492720 -> 0 bytes build/test/cache | 228 - build/test/cache.chkexe | 0 build/test/cache.chklog | 52 - build/test/cache.o | Bin 543592 -> 0 bytes build/test/cache_api | 228 - build/test/cache_api.chkexe | 0 build/test/cache_api.chklog | 14 - build/test/cache_api.o | Bin 141952 -> 0 bytes build/test/cache_common.lo | 12 - build/test/cache_common.o | Bin 201072 -> 0 bytes build/test/cmpd_dset | 228 - build/test/cmpd_dset.chkexe | 0 build/test/cmpd_dset.chklog | 47 - build/test/cmpd_dset.o | Bin 152968 -> 0 bytes build/test/core_file.h5 | Bin 133920 -> 0 bytes build/test/cross_read | 228 - build/test/cross_read.chkexe | 0 build/test/cross_read.chklog | 63 - build/test/cross_read.o | Bin 25040 -> 0 bytes build/test/dangle | 228 - build/test/dangle.chkexe | 0 build/test/dangle.chklog | 27 - build/test/dangle.o | Bin 46472 -> 0 bytes build/test/dsets | 228 - build/test/dsets.chkexe | 0 build/test/dsets.chklog | 326 - build/test/dsets.o | Bin 508752 -> 0 bytes build/test/dt_arith | 228 - build/test/dt_arith.chkexe | 0 build/test/dt_arith.chklog | 359 - build/test/dt_arith.o | Bin 281760 -> 0 bytes build/test/dt_arith1.h5 | Bin 1224 -> 0 bytes build/test/dt_arith2.h5 | Bin 1208 -> 0 bytes build/test/dtransform | 228 - build/test/dtransform.chkexe | 0 build/test/dtransform.chklog | 87 - build/test/dtransform.h5 | Bin 122000 -> 0 bytes build/test/dtransform.o | Bin 316248 -> 0 bytes build/test/dtypes | 228 - build/test/dtypes.chkexe | 0 build/test/dtypes.chklog | 55 - build/test/dtypes.o | Bin 539984 -> 0 bytes build/test/dtypes10.h5 | Bin 8328 -> 0 bytes build/test/dtypes3.h5 | Bin 1832 -> 0 bytes build/test/dtypes4.h5 | Bin 473 -> 0 bytes build/test/dynlib1.lo | 12 - build/test/dynlib1.o | Bin 6736 -> 0 bytes build/test/dynlib2.lo | 12 - build/test/dynlib2.o | Bin 6688 -> 0 bytes build/test/dynlib3.lo | 12 - build/test/dynlib3.o | Bin 7048 -> 0 bytes build/test/dynlib4.lo | 12 - build/test/dynlib4.o | Bin 8072 -> 0 bytes build/test/efc | 228 - build/test/efc.chkexe | 0 build/test/efc.chklog | 13 - build/test/efc.o | Bin 482232 -> 0 bytes build/test/enum | 228 - build/test/enum.chkexe | 0 build/test/enum.chklog | 15 - build/test/enum.o | Bin 76696 -> 0 bytes build/test/err_compat | 228 - build/test/err_compat.o | Bin 32712 -> 0 bytes build/test/error_test | 228 - build/test/error_test.o | Bin 52448 -> 0 bytes build/test/extend | 228 - build/test/extend.chkexe | 0 build/test/extend.chklog | 13 - build/test/extend.o | Bin 29072 -> 0 bytes build/test/external | 228 - build/test/external.chkexe | 0 build/test/external.chklog | 40 - build/test/external.o | Bin 129640 -> 0 bytes build/test/extlinks16A00000.h5 | Bin 1024 -> 0 bytes build/test/extlinks16A00001.h5 | Bin 832 -> 0 bytes build/test/extlinks16A00002.h5 | 0 build/test/extlinks16B-b.h5 | Bin 1416 -> 0 bytes build/test/extlinks16B-g.h5 | 0 build/test/extlinks16B-l.h5 | Bin 240 -> 0 bytes build/test/extlinks16B-r.h5 | 0 build/test/extlinks16B-s.h5 | Bin 320 -> 0 bytes build/test/extlinks19B00000.h5 | Bin 100 -> 0 bytes build/test/extlinks19B00001.h5 | Bin 100 -> 0 bytes build/test/extlinks19B00002.h5 | Bin 100 -> 0 bytes build/test/extlinks19B00003.h5 | Bin 100 -> 0 bytes build/test/extlinks19B00004.h5 | Bin 8 -> 0 bytes build/test/extlinks19B00005.h5 | 0 build/test/extlinks19B00006.h5 | 0 build/test/extlinks19B00007.h5 | 0 build/test/extlinks19B00008.h5 | 0 build/test/extlinks19B00009.h5 | 0 build/test/extlinks19B00010.h5 | 0 build/test/extlinks19B00011.h5 | 0 build/test/extlinks19B00012.h5 | 0 build/test/extlinks19B00013.h5 | 0 build/test/extlinks19B00014.h5 | 0 build/test/extlinks19B00015.h5 | 0 build/test/extlinks19B00016.h5 | 0 build/test/extlinks19B00017.h5 | 0 build/test/extlinks19B00018.h5 | 0 build/test/extlinks19B00019.h5 | 0 build/test/extlinks19B00020.h5 | 0 build/test/extlinks19B00021.h5 | 0 build/test/extlinks19B00022.h5 | 0 build/test/extlinks19B00023.h5 | 0 build/test/extlinks19B00024.h5 | 0 build/test/extlinks19B00025.h5 | 0 build/test/extlinks19B00026.h5 | 0 build/test/extlinks19B00027.h5 | 0 build/test/extlinks19B00028.h5 | 0 build/test/fheap | 228 - build/test/fheap.chkexe | 0 build/test/fheap.chklog | 1016 - build/test/fheap.o | Bin 836760 -> 0 bytes build/test/file_image | 228 - build/test/file_image.chkexe | 0 build/test/file_image.chklog | 17 - build/test/file_image.o | Bin 107760 -> 0 bytes build/test/fillval | 228 - build/test/fillval.chkexe | 0 build/test/fillval.chklog | 36 - build/test/fillval.o | Bin 129472 -> 0 bytes build/test/filter_fail | 228 - build/test/filter_fail.chkexe | 0 build/test/filter_fail.chklog | 12 - build/test/filter_fail.o | Bin 35040 -> 0 bytes build/test/flush1 | 228 - build/test/flush1.chkexe | 0 build/test/flush1.chklog | 9 - build/test/flush1.o | Bin 16440 -> 0 bytes build/test/flush2 | 228 - build/test/flush2.chkexe | 0 build/test/flush2.chklog | 11 - build/test/flush2.o | Bin 14296 -> 0 bytes build/test/freespace | 228 - build/test/freespace.chkexe | 0 build/test/freespace.chklog | 31 - build/test/freespace.o | Bin 215080 -> 0 bytes build/test/getname | 228 - build/test/getname.chkexe | 0 build/test/getname.chklog | 68 - build/test/getname.o | Bin 389816 -> 0 bytes build/test/gheap | 228 - build/test/gheap.chkexe | 0 build/test/gheap.chklog | 14 - build/test/gheap.o | Bin 28792 -> 0 bytes build/test/h5test.lo | 12 - build/test/h5test.o | Bin 39864 -> 0 bytes build/test/hyperslab | 228 - build/test/hyperslab.chkexe | 0 build/test/hyperslab.chklog | 53 - build/test/hyperslab.o | Bin 47208 -> 0 bytes build/test/istore | 228 - build/test/istore.chkexe | 0 build/test/istore.chklog | 24 - build/test/istore.o | Bin 39144 -> 0 bytes build/test/lheap | 228 - build/test/lheap.chkexe | 0 build/test/lheap.chklog | 12 - build/test/lheap.o | Bin 19392 -> 0 bytes build/test/libdynlib1.la | 41 - build/test/libdynlib2.la | 41 - build/test/libdynlib3.la | 41 - build/test/libdynlib4.la | 41 - build/test/libh5test.la | 41 - build/test/links | 228 - build/test/links.chkexe | 0 build/test/links.chklog | 284 - build/test/links.o | Bin 1296656 -> 0 bytes build/test/links_env | 228 - build/test/links_env.o | Bin 17592 -> 0 bytes build/test/log_vfd_out.log | 23 - build/test/mf | 228 - build/test/mf.chkexe | 0 build/test/mf.chklog | 66 - build/test/mf.o | Bin 390360 -> 0 bytes build/test/mount | 228 - build/test/mount.chkexe | 0 build/test/mount.chklog | 42 - build/test/mount.o | Bin 390616 -> 0 bytes build/test/mtime | 228 - build/test/mtime.chkexe | 0 build/test/mtime.chklog | 12 - build/test/mtime.o | Bin 24072 -> 0 bytes build/test/ntypes | 228 - build/test/ntypes.chkexe | 0 build/test/ntypes.chklog | 25 - build/test/ntypes.o | Bin 239744 -> 0 bytes build/test/objcopy | 228 - build/test/objcopy.chkexe | 0 build/test/objcopy.chklog | 1913 -- build/test/objcopy.o | Bin 1138664 -> 0 bytes build/test/objcopy_ext.dat | Bin 48 -> 0 bytes build/test/ohdr | 228 - build/test/ohdr.chkexe | 0 build/test/ohdr.chklog | 59 - build/test/ohdr.o | Bin 103048 -> 0 bytes build/test/plugin | 228 - build/test/plugin.o | Bin 91576 -> 0 bytes build/test/pool | 228 - build/test/pool.chkexe | 0 build/test/pool.chklog | 18 - build/test/pool.o | Bin 49112 -> 0 bytes build/test/reserved | 228 - build/test/reserved.chkexe | 0 build/test/reserved.chklog | 9 - build/test/reserved.o | Bin 5680 -> 0 bytes build/test/set_extent | 228 - build/test/set_extent.chkexe | 0 build/test/set_extent.chklog | 21 - build/test/set_extent.o | Bin 127696 -> 0 bytes build/test/stab | 228 - build/test/stab.chkexe | 0 build/test/stab.chklog | 22 - build/test/stab.o | Bin 111112 -> 0 bytes build/test/tarray.o | Bin 192888 -> 0 bytes build/test/tattr.o | Bin 1125712 -> 0 bytes build/test/tbogus.h5.copy | Bin 3792 -> 0 bytes build/test/tcheck_version | 228 - build/test/tcheck_version.o | Bin 10112 -> 0 bytes build/test/tchecksum.o | Bin 27224 -> 0 bytes build/test/tconfig.o | Bin 4336 -> 0 bytes build/test/tcoords.o | Bin 69736 -> 0 bytes build/test/test_plugin.sh | 100 - build/test/test_plugin.sh.chkexe | 0 build/test/test_plugin.sh.chklog | 104 - build/test/testcheck_version.sh | 261 - build/test/testcheck_version.sh.chkexe | 0 build/test/testcheck_version.sh.chklog | 40 - build/test/testerror.sh | 118 - build/test/testerror.sh.chkexe | 0 build/test/testerror.sh.chklog | 11 - build/test/testframe.lo | 12 - build/test/testframe.o | Bin 27552 -> 0 bytes build/test/testhdf5 | 228 - build/test/testhdf5.chkexe | 0 build/test/testhdf5.chklog | 43 - build/test/testhdf5.o | Bin 10424 -> 0 bytes build/test/testlibinfo.sh | 120 - build/test/testlibinfo.sh.chkexe | 0 build/test/testlibinfo.sh.chklog | 12 - build/test/testlinks_env.sh | 41 - build/test/testlinks_env.sh.chkexe | 0 build/test/testlinks_env.sh.chklog | 13 - build/test/testmeta | 228 - build/test/testmeta.o | Bin 13336 -> 0 bytes build/test/tfile.o | Bin 368160 -> 0 bytes build/test/tfile5.h5 | Bin 800 -> 0 bytes build/test/tfile6.h5 | Bin 3624 -> 0 bytes build/test/tgenprop.o | Bin 238280 -> 0 bytes build/test/th5o.o | Bin 208472 -> 0 bytes build/test/th5s.o | Bin 361984 -> 0 bytes build/test/theap.o | Bin 94736 -> 0 bytes build/test/tid.o | Bin 79696 -> 0 bytes build/test/titerate.o | Bin 98208 -> 0 bytes build/test/tmeta.o | Bin 8040 -> 0 bytes build/test/tmisc.o | Bin 582448 -> 0 bytes build/test/trefer.o | Bin 223928 -> 0 bytes build/test/trefstr.o | Bin 34288 -> 0 bytes build/test/tselect.o | Bin 916472 -> 0 bytes build/test/tskiplist.o | Bin 153880 -> 0 bytes build/test/tsohm.o | Bin 450344 -> 0 bytes build/test/tstint1.h5 | Bin 2224 -> 0 bytes build/test/tstint2.h5 | Bin 2224 -> 0 bytes build/test/ttime.o | Bin 19440 -> 0 bytes build/test/ttsafe | 228 - build/test/ttsafe.chkexe | 0 build/test/ttsafe.chklog | 20 - build/test/ttsafe.o | Bin 6384 -> 0 bytes build/test/ttsafe_acreate.o | Bin 2576 -> 0 bytes build/test/ttsafe_cancel.o | Bin 2576 -> 0 bytes build/test/ttsafe_dcreate.o | Bin 2576 -> 0 bytes build/test/ttsafe_error.o | Bin 2568 -> 0 bytes build/test/ttst.o | Bin 30824 -> 0 bytes build/test/tunicode.o | Bin 86584 -> 0 bytes build/test/tverbounds18.o | Bin 23432 -> 0 bytes build/test/tvlstr.o | Bin 84448 -> 0 bytes build/test/tvltypes.o | Bin 273464 -> 0 bytes build/test/unlink | 228 - build/test/unlink.chkexe | 0 build/test/unlink.chklog | 93 - build/test/unlink.o | Bin 284432 -> 0 bytes build/test/unregister | 228 - build/test/unregister.chkexe | 0 build/test/unregister.chklog | 10 - build/test/unregister.o | Bin 17408 -> 0 bytes build/test/vfd | 228 - build/test/vfd.chkexe | 0 build/test/vfd.chklog | 20 - build/test/vfd.o | Bin 101192 -> 0 bytes build/testpar/.deps/t_cache.Po | 1 - build/testpar/.deps/t_chunk_alloc.Po | 1 - build/testpar/.deps/t_coll_chunk.Po | 1 - build/testpar/.deps/t_dset.Po | 1 - build/testpar/.deps/t_file.Po | 1 - build/testpar/.deps/t_file_image.Po | 1 - build/testpar/.deps/t_filter_read.Po | 1 - build/testpar/.deps/t_init_term.Po | 1 - build/testpar/.deps/t_mdset.Po | 1 - build/testpar/.deps/t_mpi.Po | 1 - build/testpar/.deps/t_pflush1.Po | 1 - build/testpar/.deps/t_pflush2.Po | 1 - build/testpar/.deps/t_ph5basic.Po | 1 - build/testpar/.deps/t_prestart.Po | 1 - build/testpar/.deps/t_pshutdown.Po | 1 - build/testpar/.deps/t_shapesame.Po | 1 - build/testpar/.deps/t_span_tree.Po | 1 - build/testpar/.deps/testphdf5.Po | 1 - build/testpar/Makefile | 1469 - build/tools/Makefile | 1402 - build/tools/h5copy/.deps/h5copy.Po | 362 - build/tools/h5copy/.deps/h5copygentest.Po | 350 - build/tools/h5copy/.libs/h5copy | Bin 249968 -> 0 bytes build/tools/h5copy/.libs/h5copygentest | Bin 32016 -> 0 bytes build/tools/h5copy/.libs/lt-h5copy | Bin 249968 -> 0 bytes build/tools/h5copy/.libs/lt-h5copygentest | Bin 32016 -> 0 bytes build/tools/h5copy/Makefile | 1463 - build/tools/h5copy/h5copy | 228 - build/tools/h5copy/h5copy.o | Bin 36176 -> 0 bytes build/tools/h5copy/h5copy_extlinks_src.h5 | Bin 2184 -> 0 bytes build/tools/h5copy/h5copy_extlinks_trg.h5 | Bin 2168 -> 0 bytes build/tools/h5copy/h5copy_ref.h5 | Bin 10336 -> 0 bytes build/tools/h5copy/h5copygentest | 228 - build/tools/h5copy/h5copygentest.chkexe | 0 build/tools/h5copy/h5copygentest.chklog | 8 - build/tools/h5copy/h5copygentest.o | Bin 37312 -> 0 bytes build/tools/h5copy/h5copytst.h5 | Bin 31856 -> 0 bytes build/tools/h5copy/testh5copy.sh | 620 - build/tools/h5copy/testh5copy.sh.chkexe | 0 build/tools/h5copy/testh5copy.sh.chklog | 87 - build/tools/h5diff/.deps/dynlib_diff.Plo | 201 - build/tools/h5diff/.deps/h5diff_common.Po | 371 - build/tools/h5diff/.deps/h5diff_main.Po | 371 - build/tools/h5diff/.deps/h5diffgentest.Po | 349 - build/tools/h5diff/.deps/ph5diff_main.Po | 1 - build/tools/h5diff/.libs/dynlib_diff.o | Bin 7048 -> 0 bytes build/tools/h5diff/.libs/h5diff | Bin 457080 -> 0 bytes build/tools/h5diff/.libs/h5diffgentest | Bin 147208 -> 0 bytes build/tools/h5diff/.libs/libdynlibdiff.la | 1 - build/tools/h5diff/.libs/libdynlibdiff.lai | 41 - build/tools/h5diff/.libs/libdynlibdiff.so | Bin 10960 -> 0 bytes build/tools/h5diff/.libs/lt-h5diff | Bin 457080 -> 0 bytes build/tools/h5diff/.libs/lt-h5diffgentest | Bin 147208 -> 0 bytes build/tools/h5diff/Makefile | 1530 - build/tools/h5diff/compounds_array_vlen1.h5 | Bin 20824 -> 0 bytes build/tools/h5diff/compounds_array_vlen2.h5 | Bin 20824 -> 0 bytes build/tools/h5diff/diff_strings1.h5 | Bin 4736 -> 0 bytes build/tools/h5diff/diff_strings2.h5 | Bin 4736 -> 0 bytes build/tools/h5diff/dynlib_diff.lo | 12 - build/tools/h5diff/dynlib_diff.o | Bin 6928 -> 0 bytes build/tools/h5diff/h5diff | 228 - build/tools/h5diff/h5diff_attr1.h5 | Bin 27480 -> 0 bytes build/tools/h5diff/h5diff_attr2.h5 | Bin 27480 -> 0 bytes build/tools/h5diff/h5diff_attr3.h5 | Bin 27480 -> 0 bytes build/tools/h5diff/h5diff_attr_v_level1.h5 | Bin 7360 -> 0 bytes build/tools/h5diff/h5diff_attr_v_level2.h5 | Bin 7200 -> 0 bytes build/tools/h5diff/h5diff_basic1.h5 | Bin 12248 -> 0 bytes build/tools/h5diff/h5diff_basic2.h5 | Bin 9008 -> 0 bytes build/tools/h5diff/h5diff_common.o | Bin 47664 -> 0 bytes build/tools/h5diff/h5diff_comp_vl_strs.h5 | Bin 40240 -> 0 bytes build/tools/h5diff/h5diff_danglelinks1.h5 | Bin 5482 -> 0 bytes build/tools/h5diff/h5diff_danglelinks2.h5 | Bin 5482 -> 0 bytes build/tools/h5diff/h5diff_dset1.h5 | Bin 23416 -> 0 bytes build/tools/h5diff/h5diff_dset2.h5 | Bin 23416 -> 0 bytes build/tools/h5diff/h5diff_dset3.h5 | Bin 23416 -> 0 bytes build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 | Bin 1672 -> 0 bytes build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 | Bin 1672 -> 0 bytes build/tools/h5diff/h5diff_dtypes.h5 | Bin 11240 -> 0 bytes build/tools/h5diff/h5diff_empty.h5 | Bin 800 -> 0 bytes build/tools/h5diff/h5diff_enum_invalid_values.h5 | Bin 2192 -> 0 bytes build/tools/h5diff/h5diff_exclude1-1.h5 | Bin 5064 -> 0 bytes build/tools/h5diff/h5diff_exclude1-2.h5 | Bin 5064 -> 0 bytes build/tools/h5diff/h5diff_exclude2-1.h5 | Bin 5064 -> 0 bytes build/tools/h5diff/h5diff_exclude2-2.h5 | Bin 6056 -> 0 bytes build/tools/h5diff/h5diff_exclude3-1.h5 | Bin 4792 -> 0 bytes build/tools/h5diff/h5diff_exclude3-2.h5 | Bin 2176 -> 0 bytes build/tools/h5diff/h5diff_ext2softlink_src.h5 | Bin 1072 -> 0 bytes build/tools/h5diff/h5diff_ext2softlink_trg.h5 | Bin 4640 -> 0 bytes build/tools/h5diff/h5diff_extlink_src.h5 | Bin 1256 -> 0 bytes build/tools/h5diff/h5diff_extlink_trg.h5 | Bin 6056 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse1.h5 | Bin 12338 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse2.h5 | Bin 12338 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse_ext1.h5 | Bin 8120 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 | Bin 4296 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 | Bin 5640 -> 0 bytes build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 | Bin 2464 -> 0 bytes build/tools/h5diff/h5diff_hyper1.h5 | Bin 1052072 -> 0 bytes build/tools/h5diff/h5diff_hyper2.h5 | Bin 1052072 -> 0 bytes build/tools/h5diff/h5diff_linked_softlink.h5 | Bin 8144 -> 0 bytes build/tools/h5diff/h5diff_links.h5 | Bin 2536 -> 0 bytes build/tools/h5diff/h5diff_main.o | Bin 7784 -> 0 bytes build/tools/h5diff/h5diff_plugin.sh | 314 - build/tools/h5diff/h5diff_plugin.sh.chkexe | 0 build/tools/h5diff/h5diff_plugin.sh.chklog | 10 - build/tools/h5diff/h5diff_softlinks.h5 | Bin 5744 -> 0 bytes build/tools/h5diff/h5diff_types.h5 | Bin 4714 -> 0 bytes build/tools/h5diff/h5diffgentest | 228 - build/tools/h5diff/h5diffgentest.chkexe | 0 build/tools/h5diff/h5diffgentest.chklog | 16 - build/tools/h5diff/h5diffgentest.o | Bin 245680 -> 0 bytes build/tools/h5diff/libdynlibdiff.la | 41 - build/tools/h5diff/non_comparables1.h5 | Bin 8628 -> 0 bytes build/tools/h5diff/non_comparables2.h5 | Bin 8644 -> 0 bytes build/tools/h5diff/testh5diff.sh | 1136 - build/tools/h5diff/testh5diff.sh.chkexe | 0 build/tools/h5diff/testh5diff.sh.chklog | 194 - build/tools/h5diff/testph5diff.sh | 62 - build/tools/h5dump/.deps/binread.Po | 88 - build/tools/h5dump/.deps/dynlib_dump.Plo | 201 - build/tools/h5dump/.deps/h5dump.Po | 378 - build/tools/h5dump/.deps/h5dump_ddl.Po | 382 - build/tools/h5dump/.deps/h5dump_xml.Po | 382 - build/tools/h5dump/.deps/h5dumpgentest.Po | 360 - build/tools/h5dump/.libs/binread | Bin 11624 -> 0 bytes build/tools/h5dump/.libs/dynlib_dump.o | Bin 7048 -> 0 bytes build/tools/h5dump/.libs/h5dump | Bin 400248 -> 0 bytes build/tools/h5dump/.libs/h5dumpgentest | Bin 227168 -> 0 bytes build/tools/h5dump/.libs/libdynlibdump.la | 1 - build/tools/h5dump/.libs/libdynlibdump.lai | 41 - build/tools/h5dump/.libs/libdynlibdump.so | Bin 10960 -> 0 bytes build/tools/h5dump/.libs/lt-h5dump | Bin 400248 -> 0 bytes build/tools/h5dump/.libs/lt-h5dumpgentest | Bin 227168 -> 0 bytes build/tools/h5dump/Makefile | 1526 - build/tools/h5dump/binread | 228 - build/tools/h5dump/binread.o | Bin 7160 -> 0 bytes build/tools/h5dump/charsets.h5 | Bin 6272 -> 0 bytes build/tools/h5dump/dynlib_dump.lo | 12 - build/tools/h5dump/dynlib_dump.o | Bin 6928 -> 0 bytes build/tools/h5dump/h5dump | 228 - build/tools/h5dump/h5dump.o | Bin 99056 -> 0 bytes build/tools/h5dump/h5dump_ddl.o | Bin 97512 -> 0 bytes build/tools/h5dump/h5dump_plugin.sh | 226 - build/tools/h5dump/h5dump_plugin.sh.chkexe | 0 build/tools/h5dump/h5dump_plugin.sh.chklog | 10 - build/tools/h5dump/h5dump_xml.o | Bin 165416 -> 0 bytes build/tools/h5dump/h5dumpgentest | 228 - build/tools/h5dump/h5dumpgentest.chkexe | 0 build/tools/h5dump/h5dumpgentest.chklog | 8 - build/tools/h5dump/h5dumpgentest.o | Bin 411464 -> 0 bytes build/tools/h5dump/libdynlibdump.la | 41 - build/tools/h5dump/packedbits.h5 | Bin 15968 -> 0 bytes build/tools/h5dump/taindices.h5 | Bin 19016 -> 0 bytes build/tools/h5dump/tall.h5 | Bin 9976 -> 0 bytes build/tools/h5dump/tarray1.h5 | Bin 2208 -> 0 bytes build/tools/h5dump/tarray1_big.h5 | Bin 8006288 -> 0 bytes build/tools/h5dump/tarray2.h5 | Bin 3104 -> 0 bytes build/tools/h5dump/tarray3.h5 | Bin 3296 -> 0 bytes build/tools/h5dump/tarray4.h5 | Bin 2272 -> 0 bytes build/tools/h5dump/tarray5.h5 | Bin 2464 -> 0 bytes build/tools/h5dump/tarray6.h5 | Bin 6496 -> 0 bytes build/tools/h5dump/tarray7.h5 | Bin 6496 -> 0 bytes build/tools/h5dump/tarray8.h5 | Bin 6244 -> 0 bytes build/tools/h5dump/tattr.h5 | Bin 1288 -> 0 bytes build/tools/h5dump/tattr2.h5 | Bin 34376 -> 0 bytes build/tools/h5dump/tattrintsize.h5 | Bin 13016 -> 0 bytes build/tools/h5dump/tbigdims.h5 | Bin 5544 -> 0 bytes build/tools/h5dump/tbinary.h5 | Bin 2240 -> 0 bytes build/tools/h5dump/tbitfields.h5 | Bin 4752 -> 0 bytes build/tools/h5dump/tbitnopaque.h5 | Bin 8240 -> 0 bytes build/tools/h5dump/tchar.h5 | Bin 2452 -> 0 bytes build/tools/h5dump/tcmpdattrintsize.h5 | Bin 47016 -> 0 bytes build/tools/h5dump/tcmpdintarray.h5 | Bin 9888 -> 0 bytes build/tools/h5dump/tcmpdints.h5 | Bin 9312 -> 0 bytes build/tools/h5dump/tcmpdintsize.h5 | Bin 49760 -> 0 bytes build/tools/h5dump/tcompound.h5 | Bin 9832 -> 0 bytes build/tools/h5dump/tcompound2.h5 | Bin 15344 -> 0 bytes build/tools/h5dump/tcompound_complex.h5 | Bin 7632 -> 0 bytes build/tools/h5dump/tcompound_complex2.h5 | Bin 21880 -> 0 bytes build/tools/h5dump/tdatareg.h5 | Bin 6388 -> 0 bytes build/tools/h5dump/tdset.h5 | Bin 7744 -> 0 bytes build/tools/h5dump/tdset2.h5 | Bin 10152 -> 0 bytes build/tools/h5dump/tempty.h5 | Bin 2512 -> 0 bytes build/tools/h5dump/tenum.h5 | Bin 2224 -> 0 bytes build/tools/h5dump/testh5dump.sh | 1374 - build/tools/h5dump/testh5dump.sh.chkexe | 0 build/tools/h5dump/testh5dump.sh.chklog | 190 - build/tools/h5dump/testh5dumppbits.sh | 606 - build/tools/h5dump/testh5dumppbits.sh.chkexe | 0 build/tools/h5dump/testh5dumppbits.sh.chklog | 62 - build/tools/h5dump/testh5dumpxml.sh | 400 - build/tools/h5dump/testh5dumpxml.sh.chkexe | 0 build/tools/h5dump/testh5dumpxml.sh.chklog | 74 - build/tools/h5dump/textlink.h5 | Bin 936 -> 0 bytes build/tools/h5dump/textlinkfar.h5 | Bin 888 -> 0 bytes build/tools/h5dump/textlinksrc.h5 | Bin 1224 -> 0 bytes build/tools/h5dump/textlinktar.h5 | Bin 6752 -> 0 bytes build/tools/h5dump/tfamily00000.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00001.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00002.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00003.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00004.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00005.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00006.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00007.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00008.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00009.h5 | Bin 256 -> 0 bytes build/tools/h5dump/tfamily00010.h5 | Bin 208 -> 0 bytes build/tools/h5dump/tfamily00011.h5 | 0 build/tools/h5dump/tfamily00012.h5 | 0 build/tools/h5dump/tfamily00013.h5 | 0 build/tools/h5dump/tfamily00014.h5 | 0 build/tools/h5dump/tfamily00015.h5 | 0 build/tools/h5dump/tfamily00016.h5 | 0 build/tools/h5dump/tfcontents1.h5 | Bin 7474 -> 0 bytes build/tools/h5dump/tfcontents2.h5 | Bin 800 -> 0 bytes build/tools/h5dump/tfilters.h5 | Bin 43576 -> 0 bytes build/tools/h5dump/tfpformat.h5 | Bin 2216 -> 0 bytes build/tools/h5dump/tfvalues.h5 | Bin 10336 -> 0 bytes build/tools/h5dump/tgroup.h5 | Bin 11592 -> 0 bytes build/tools/h5dump/tgrp_comments.h5 | Bin 13248 -> 0 bytes build/tools/h5dump/tgrpnullspace.h5 | Bin 2504 -> 0 bytes build/tools/h5dump/thlink.h5 | Bin 5512 -> 0 bytes build/tools/h5dump/thyperslab.h5 | Bin 1050976 -> 0 bytes build/tools/h5dump/tints4dims.h5 | Bin 9824 -> 0 bytes build/tools/h5dump/tintsattrs.h5 | Bin 28912 -> 0 bytes build/tools/h5dump/tlarge_objname.h5 | Bin 43440 -> 0 bytes build/tools/h5dump/tldouble.h5 | Bin 2192 -> 0 bytes build/tools/h5dump/tlonglinks.h5 | Bin 202792 -> 0 bytes build/tools/h5dump/tloop.h5 | Bin 3192 -> 0 bytes build/tools/h5dump/tloop2.h5 | Bin 3192 -> 0 bytes build/tools/h5dump/tmany.h5 | Bin 18680 -> 0 bytes build/tools/h5dump/tmulti-b.h5 | Bin 872 -> 0 bytes build/tools/h5dump/tmulti-g.h5 | 0 build/tools/h5dump/tmulti-l.h5 | Bin 120 -> 0 bytes build/tools/h5dump/tmulti-o.h5 | Bin 312 -> 0 bytes build/tools/h5dump/tmulti-r.h5 | Bin 600 -> 0 bytes build/tools/h5dump/tmulti-s.h5 | Bin 264 -> 0 bytes build/tools/h5dump/tnamed_dtype_attr.h5 | Bin 2304 -> 0 bytes build/tools/h5dump/tnestedcmpddt.h5 | Bin 16536 -> 0 bytes build/tools/h5dump/tnestedcomp.h5 | Bin 2464 -> 0 bytes build/tools/h5dump/tnullspace.h5 | Bin 1472 -> 0 bytes build/tools/h5dump/tobjref.h5 | Bin 5272 -> 0 bytes build/tools/h5dump/topaque.h5 | Bin 2544 -> 0 bytes build/tools/h5dump/torderattr.h5 | Bin 4120 -> 0 bytes build/tools/h5dump/tordergr.h5 | Bin 11488 -> 0 bytes build/tools/h5dump/tscalarattrintsize.h5 | Bin 12944 -> 0 bytes build/tools/h5dump/tscalarintattrsize.h5 | Bin 28928 -> 0 bytes build/tools/h5dump/tscalarintsize.h5 | Bin 15968 -> 0 bytes build/tools/h5dump/tscalarstring.h5 | Bin 2208 -> 0 bytes build/tools/h5dump/tslink.h5 | Bin 1128 -> 0 bytes build/tools/h5dump/tsoftlinks.h5 | Bin 6352 -> 0 bytes build/tools/h5dump/tsplit_file-m.h5 | Bin 1600 -> 0 bytes build/tools/h5dump/tsplit_file-r.h5 | Bin 600 -> 0 bytes build/tools/h5dump/tstr.h5 | Bin 19128 -> 0 bytes build/tools/h5dump/tstr2.h5 | Bin 13048 -> 0 bytes build/tools/h5dump/tstr3.h5 | Bin 8778 -> 0 bytes build/tools/h5dump/tudfilter.h5 | Bin 4816 -> 0 bytes build/tools/h5dump/tudlink.h5 | Bin 904 -> 0 bytes build/tools/h5dump/tvldtypes1.h5 | Bin 6384 -> 0 bytes build/tools/h5dump/tvldtypes2.h5 | Bin 6304 -> 0 bytes build/tools/h5dump/tvldtypes3.h5 | Bin 6336 -> 0 bytes build/tools/h5dump/tvldtypes4.h5 | Bin 6304 -> 0 bytes build/tools/h5dump/tvldtypes5.h5 | Bin 6304 -> 0 bytes build/tools/h5dump/tvlenstr_array.h5 | Bin 6720 -> 0 bytes build/tools/h5dump/tvlstr.h5 | Bin 6304 -> 0 bytes build/tools/h5dump/zerodim.h5 | Bin 1528 -> 0 bytes build/tools/h5import/.deps/h5import.Po | 365 - build/tools/h5import/.deps/h5importtest.Po | 280 - build/tools/h5import/.libs/h5import | Bin 333872 -> 0 bytes build/tools/h5import/.libs/h5importtest | Bin 22064 -> 0 bytes build/tools/h5import/.libs/lt-h5import | Bin 333872 -> 0 bytes build/tools/h5import/.libs/lt-h5importtest | Bin 22064 -> 0 bytes build/tools/h5import/Makefile | 1460 - build/tools/h5import/h5import | 228 - build/tools/h5import/h5import.o | Bin 188176 -> 0 bytes build/tools/h5import/h5importtest | 228 - build/tools/h5import/h5importtest.chkexe | 0 build/tools/h5import/h5importtest.chklog | 8 - build/tools/h5import/h5importtest.o | Bin 21832 -> 0 bytes build/tools/h5import/h5importtestutil.sh | 408 - build/tools/h5import/h5importtestutil.sh.chkexe | 0 build/tools/h5import/h5importtestutil.sh.chklog | 40 - build/tools/h5jam/.deps/getub.Po | 362 - build/tools/h5jam/.deps/h5jam.Po | 362 - build/tools/h5jam/.deps/h5jamgentest.Po | 350 - build/tools/h5jam/.deps/h5unjam.Po | 362 - build/tools/h5jam/.deps/tellub.Po | 362 - build/tools/h5jam/.libs/getub | Bin 238896 -> 0 bytes build/tools/h5jam/.libs/h5jam | Bin 245984 -> 0 bytes build/tools/h5jam/.libs/h5jamgentest | Bin 23448 -> 0 bytes build/tools/h5jam/.libs/h5unjam | Bin 245384 -> 0 bytes build/tools/h5jam/.libs/lt-getub | Bin 238896 -> 0 bytes build/tools/h5jam/.libs/lt-h5jam | Bin 245984 -> 0 bytes build/tools/h5jam/.libs/lt-h5unjam | Bin 245384 -> 0 bytes build/tools/h5jam/.libs/lt-tellub | Bin 239016 -> 0 bytes build/tools/h5jam/.libs/tellub | Bin 239016 -> 0 bytes build/tools/h5jam/Makefile | 1481 - build/tools/h5jam/getub | 228 - build/tools/h5jam/getub.o | Bin 11832 -> 0 bytes build/tools/h5jam/h5jam | 228 - build/tools/h5jam/h5jam.o | Bin 26944 -> 0 bytes build/tools/h5jam/h5jamgentest | 228 - build/tools/h5jam/h5jamgentest.o | Bin 19120 -> 0 bytes build/tools/h5jam/h5unjam | 228 - build/tools/h5jam/h5unjam.o | Bin 25216 -> 0 bytes build/tools/h5jam/tellub | 228 - build/tools/h5jam/tellub.o | Bin 12328 -> 0 bytes build/tools/h5jam/testh5jam.sh | 699 - build/tools/h5jam/testh5jam.sh.chkexe | 0 build/tools/h5jam/testh5jam.sh.chklog | 88 - build/tools/h5ls/.deps/dynlib_ls.Plo | 201 - build/tools/h5ls/.deps/h5ls.Po | 370 - build/tools/h5ls/.libs/dynlib_ls.o | Bin 7040 -> 0 bytes build/tools/h5ls/.libs/h5ls | Bin 295976 -> 0 bytes build/tools/h5ls/.libs/libdynlibls.la | 1 - build/tools/h5ls/.libs/libdynlibls.lai | 41 - build/tools/h5ls/.libs/libdynlibls.so | Bin 10944 -> 0 bytes build/tools/h5ls/.libs/lt-h5ls | Bin 300072 -> 0 bytes build/tools/h5ls/Makefile | 1470 - build/tools/h5ls/dynlib_ls.lo | 12 - build/tools/h5ls/dynlib_ls.o | Bin 6912 -> 0 bytes build/tools/h5ls/h5ls | 228 - build/tools/h5ls/h5ls.o | Bin 125096 -> 0 bytes build/tools/h5ls/h5ls_plugin.sh | 252 - build/tools/h5ls/h5ls_plugin.sh.chkexe | 0 build/tools/h5ls/h5ls_plugin.sh.chklog | 10 - build/tools/h5ls/libdynlibls.la | 41 - build/tools/h5ls/testh5ls.sh | 438 - build/tools/h5ls/testh5ls.sh.chkexe | 0 build/tools/h5ls/testh5ls.sh.chklog | 63 - build/tools/h5repack/.deps/dynlib_rpk.Plo | 201 - build/tools/h5repack/.deps/dynlib_vrpk.Plo | 201 - build/tools/h5repack/.deps/h5repack.Po | 367 - build/tools/h5repack/.deps/h5repack_copy.Po | 368 - build/tools/h5repack/.deps/h5repack_filters.Po | 368 - build/tools/h5repack/.deps/h5repack_main.Po | 368 - build/tools/h5repack/.deps/h5repack_opttable.Po | 368 - build/tools/h5repack/.deps/h5repack_parse.Po | 368 - build/tools/h5repack/.deps/h5repack_refs.Po | 370 - build/tools/h5repack/.deps/h5repack_verify.Po | 368 - build/tools/h5repack/.deps/h5repacktst.Po | 375 - .../h5repack/.deps/testh5repack_detect_szip.Po | 371 - build/tools/h5repack/.libs/dynlib_rpk.o | Bin 6912 -> 0 bytes build/tools/h5repack/.libs/dynlib_vrpk.o | Bin 8304 -> 0 bytes build/tools/h5repack/.libs/h5repack | Bin 387656 -> 0 bytes build/tools/h5repack/.libs/h5repacktst | Bin 695136 -> 0 bytes build/tools/h5repack/.libs/libdynlibadd.la | 1 - build/tools/h5repack/.libs/libdynlibadd.lai | 41 - build/tools/h5repack/.libs/libdynlibadd.so | Bin 10880 -> 0 bytes build/tools/h5repack/.libs/libdynlibvers.la | 1 - build/tools/h5repack/.libs/libdynlibvers.lai | 41 - build/tools/h5repack/.libs/libdynlibvers.so | Bin 11320 -> 0 bytes build/tools/h5repack/.libs/lt-h5repack | Bin 387656 -> 0 bytes build/tools/h5repack/.libs/lt-h5repacktst | Bin 695136 -> 0 bytes .../tools/h5repack/.libs/testh5repack_detect_szip | Bin 236696 -> 0 bytes build/tools/h5repack/Makefile | 1575 - build/tools/h5repack/dynlib_rpk.lo | 12 - build/tools/h5repack/dynlib_rpk.o | Bin 6784 -> 0 bytes build/tools/h5repack/dynlib_vrpk.lo | 12 - build/tools/h5repack/dynlib_vrpk.o | Bin 8144 -> 0 bytes build/tools/h5repack/h5repack | 228 - build/tools/h5repack/h5repack.o | Bin 49656 -> 0 bytes build/tools/h5repack/h5repack.sh | 1085 - build/tools/h5repack/h5repack.sh.chkexe | 0 build/tools/h5repack/h5repack.sh.chklog | 239 - build/tools/h5repack/h5repack_attr.h5 | Bin 21856 -> 0 bytes build/tools/h5repack/h5repack_attr_out.h5 | Bin 21920 -> 0 bytes build/tools/h5repack/h5repack_attr_refs.h5 | Bin 10336 -> 0 bytes build/tools/h5repack/h5repack_big.h5 | Bin 4520 -> 0 bytes build/tools/h5repack/h5repack_copy.o | Bin 73528 -> 0 bytes build/tools/h5repack/h5repack_deflate.h5 | Bin 6336 -> 0 bytes build/tools/h5repack/h5repack_deflate_out.h5 | Bin 6256 -> 0 bytes build/tools/h5repack/h5repack_early.h5 | Bin 3074224 -> 0 bytes build/tools/h5repack/h5repack_early2.h5 | Bin 14264 -> 0 bytes build/tools/h5repack/h5repack_early_out.h5 | Bin 14920 -> 0 bytes build/tools/h5repack/h5repack_ext.bin | Bin 8 -> 0 bytes build/tools/h5repack/h5repack_ext.h5 | Bin 1464 -> 0 bytes build/tools/h5repack/h5repack_ext_out.h5 | Bin 1376 -> 0 bytes build/tools/h5repack/h5repack_fill.h5 | Bin 2168 -> 0 bytes build/tools/h5repack/h5repack_fill_out.h5 | Bin 2168 -> 0 bytes build/tools/h5repack/h5repack_filters.h5 | Bin 27604 -> 0 bytes build/tools/h5repack/h5repack_filters.o | Bin 26144 -> 0 bytes build/tools/h5repack/h5repack_filters_out.h5 | Bin 22358 -> 0 bytes build/tools/h5repack/h5repack_fletcher.h5 | Bin 7232 -> 0 bytes build/tools/h5repack/h5repack_fletcher_out.h5 | Bin 7216 -> 0 bytes build/tools/h5repack/h5repack_hlink.h5 | Bin 6544 -> 0 bytes build/tools/h5repack/h5repack_hlink_out.h5 | Bin 6424 -> 0 bytes build/tools/h5repack/h5repack_layout.h5 | Bin 29480 -> 0 bytes build/tools/h5repack/h5repack_layout2.h5 | Bin 6808 -> 0 bytes build/tools/h5repack/h5repack_layout3.h5 | Bin 491840 -> 0 bytes build/tools/h5repack/h5repack_layout_out.h5 | Bin 27488 -> 0 bytes build/tools/h5repack/h5repack_main.o | Bin 49528 -> 0 bytes build/tools/h5repack/h5repack_named_dtypes.h5 | Bin 4320 -> 0 bytes build/tools/h5repack/h5repack_named_dtypes_out.h5 | Bin 4320 -> 0 bytes build/tools/h5repack/h5repack_nbit.h5 | Bin 13208 -> 0 bytes build/tools/h5repack/h5repack_nbit_out.h5 | Bin 13112 -> 0 bytes build/tools/h5repack/h5repack_objs.h5 | Bin 19738 -> 0 bytes build/tools/h5repack/h5repack_objs_out.h5 | Bin 19271 -> 0 bytes build/tools/h5repack/h5repack_opttable.o | Bin 15256 -> 0 bytes build/tools/h5repack/h5repack_parse.o | Bin 20240 -> 0 bytes build/tools/h5repack/h5repack_plugin.sh | 274 - build/tools/h5repack/h5repack_plugin.sh.chkexe | 0 build/tools/h5repack/h5repack_plugin.sh.chklog | 17 - build/tools/h5repack/h5repack_refs.h5 | Bin 10336 -> 0 bytes build/tools/h5repack/h5repack_refs.o | Bin 59224 -> 0 bytes build/tools/h5repack/h5repack_shuffle.h5 | Bin 7216 -> 0 bytes build/tools/h5repack/h5repack_shuffle_out.h5 | Bin 7216 -> 0 bytes build/tools/h5repack/h5repack_soffset.h5 | Bin 12452 -> 0 bytes build/tools/h5repack/h5repack_soffset_out.h5 | Bin 13214 -> 0 bytes build/tools/h5repack/h5repack_ub.h5 | Bin 2848 -> 0 bytes build/tools/h5repack/h5repack_ub_out.h5 | Bin 2848 -> 0 bytes build/tools/h5repack/h5repack_verify.o | Bin 33000 -> 0 bytes build/tools/h5repack/h5repacktst | 228 - build/tools/h5repack/h5repacktst.chkexe | 0 build/tools/h5repack/h5repacktst.chklog | 66 - build/tools/h5repack/h5repacktst.o | Bin 223768 -> 0 bytes build/tools/h5repack/libdynlibadd.la | 41 - build/tools/h5repack/libdynlibvers.la | 41 - build/tools/h5repack/testh5repack_detect_szip | 228 - build/tools/h5repack/testh5repack_detect_szip.o | Bin 3792 -> 0 bytes build/tools/h5repack/ublock.bin | 1 - build/tools/h5stat/.deps/h5stat.Po | 367 - build/tools/h5stat/.deps/h5stat_gentest.Po | 183 - build/tools/h5stat/.libs/h5stat | Bin 270600 -> 0 bytes build/tools/h5stat/.libs/h5stat_gentest | Bin 17000 -> 0 bytes build/tools/h5stat/.libs/lt-h5stat | Bin 270600 -> 0 bytes build/tools/h5stat/.libs/lt-h5stat_gentest | Bin 17000 -> 0 bytes build/tools/h5stat/Makefile | 1509 - build/tools/h5stat/h5stat | 228 - build/tools/h5stat/h5stat.o | Bin 66512 -> 0 bytes build/tools/h5stat/h5stat_gentest | 228 - build/tools/h5stat/h5stat_gentest.chkexe | 0 build/tools/h5stat/h5stat_gentest.chklog | 8 - build/tools/h5stat/h5stat_gentest.o | Bin 14192 -> 0 bytes build/tools/h5stat/h5stat_newgrat.h5 | Bin 6367891 -> 0 bytes build/tools/h5stat/h5stat_threshold.h5 | Bin 16312 -> 0 bytes build/tools/h5stat/testh5stat.sh | 314 - build/tools/h5stat/testh5stat.sh.chkexe | 0 build/tools/h5stat/testh5stat.sh.chklog | 40 - build/tools/lib/.deps/h5diff.Plo | 370 - build/tools/lib/.deps/h5diff_array.Plo | 371 - build/tools/lib/.deps/h5diff_attr.Plo | 368 - build/tools/lib/.deps/h5diff_dset.Plo | 371 - build/tools/lib/.deps/h5diff_util.Plo | 371 - build/tools/lib/.deps/h5tools.Plo | 367 - build/tools/lib/.deps/h5tools_dump.Plo | 368 - build/tools/lib/.deps/h5tools_filters.Plo | 361 - build/tools/lib/.deps/h5tools_ref.Plo | 373 - build/tools/lib/.deps/h5tools_str.Plo | 363 - build/tools/lib/.deps/h5tools_type.Plo | 361 - build/tools/lib/.deps/h5tools_utils.Plo | 365 - build/tools/lib/.deps/h5trav.Plo | 362 - build/tools/lib/.deps/io_timer.Plo | 352 - build/tools/lib/.libs/h5diff.o | Bin 56688 -> 0 bytes build/tools/lib/.libs/h5diff_array.o | Bin 186088 -> 0 bytes build/tools/lib/.libs/h5diff_attr.o | Bin 38096 -> 0 bytes build/tools/lib/.libs/h5diff_dset.o | Bin 39112 -> 0 bytes build/tools/lib/.libs/h5diff_util.o | Bin 27120 -> 0 bytes build/tools/lib/.libs/h5tools.o | Bin 81568 -> 0 bytes build/tools/lib/.libs/h5tools_dump.o | Bin 184672 -> 0 bytes build/tools/lib/.libs/h5tools_filters.o | Bin 9944 -> 0 bytes build/tools/lib/.libs/h5tools_ref.o | Bin 15352 -> 0 bytes build/tools/lib/.libs/h5tools_str.o | Bin 55080 -> 0 bytes build/tools/lib/.libs/h5tools_type.o | Bin 11584 -> 0 bytes build/tools/lib/.libs/h5tools_utils.o | Bin 36712 -> 0 bytes build/tools/lib/.libs/h5trav.o | Bin 42560 -> 0 bytes build/tools/lib/.libs/io_timer.o | Bin 11568 -> 0 bytes build/tools/lib/.libs/libh5tools.a | Bin 800716 -> 0 bytes build/tools/lib/.libs/libh5tools.la | 1 - build/tools/lib/Makefile | 1405 - build/tools/lib/h5diff.lo | 12 - build/tools/lib/h5diff.o | Bin 55792 -> 0 bytes build/tools/lib/h5diff_array.lo | 12 - build/tools/lib/h5diff_array.o | Bin 184296 -> 0 bytes build/tools/lib/h5diff_attr.lo | 12 - build/tools/lib/h5diff_attr.o | Bin 37176 -> 0 bytes build/tools/lib/h5diff_dset.lo | 12 - build/tools/lib/h5diff_dset.o | Bin 38352 -> 0 bytes build/tools/lib/h5diff_util.lo | 12 - build/tools/lib/h5diff_util.o | Bin 26672 -> 0 bytes build/tools/lib/h5tools.lo | 12 - build/tools/lib/h5tools.o | Bin 79968 -> 0 bytes build/tools/lib/h5tools_dump.lo | 12 - build/tools/lib/h5tools_dump.o | Bin 180880 -> 0 bytes build/tools/lib/h5tools_filters.lo | 12 - build/tools/lib/h5tools_filters.o | Bin 9792 -> 0 bytes build/tools/lib/h5tools_ref.lo | 12 - build/tools/lib/h5tools_ref.o | Bin 15328 -> 0 bytes build/tools/lib/h5tools_str.lo | 12 - build/tools/lib/h5tools_str.o | Bin 54896 -> 0 bytes build/tools/lib/h5tools_type.lo | 12 - build/tools/lib/h5tools_type.o | Bin 11432 -> 0 bytes build/tools/lib/h5tools_utils.lo | 12 - build/tools/lib/h5tools_utils.o | Bin 36192 -> 0 bytes build/tools/lib/h5trav.lo | 12 - build/tools/lib/h5trav.o | Bin 42400 -> 0 bytes build/tools/lib/io_timer.lo | 12 - build/tools/lib/io_timer.o | Bin 11496 -> 0 bytes build/tools/lib/libh5tools.la | 41 - build/tools/misc/.deps/h5debug.Po | 437 - build/tools/misc/.deps/h5mkgrp.Po | 362 - build/tools/misc/.deps/h5repart.Po | 350 - build/tools/misc/.deps/h5repart_gentest.Po | 350 - build/tools/misc/.deps/repart_test.Po | 350 - build/tools/misc/.deps/talign.Po | 360 - build/tools/misc/.libs/h5debug | Bin 36176 -> 0 bytes build/tools/misc/.libs/h5mkgrp | Bin 243832 -> 0 bytes build/tools/misc/.libs/h5repart | Bin 23840 -> 0 bytes build/tools/misc/.libs/h5repart_gentest | Bin 16864 -> 0 bytes build/tools/misc/.libs/lt-h5mkgrp | Bin 243832 -> 0 bytes build/tools/misc/.libs/lt-h5repart | Bin 23840 -> 0 bytes build/tools/misc/.libs/lt-h5repart_gentest | Bin 16864 -> 0 bytes build/tools/misc/.libs/lt-repart_test | Bin 17432 -> 0 bytes build/tools/misc/.libs/lt-talign | Bin 24016 -> 0 bytes build/tools/misc/.libs/repart_test | Bin 17432 -> 0 bytes build/tools/misc/.libs/talign | Bin 24016 -> 0 bytes build/tools/misc/Makefile | 1583 - build/tools/misc/family_file00000.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00001.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00002.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00003.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00004.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00005.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00006.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00007.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00008.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00009.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00010.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00011.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00012.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00013.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00014.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00015.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00016.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00017.h5 | Bin 1024 -> 0 bytes build/tools/misc/family_file00018.h5 | Bin 120 -> 0 bytes build/tools/misc/h5cc | 399 - build/tools/misc/h5debug | 228 - build/tools/misc/h5debug.o | Bin 40936 -> 0 bytes build/tools/misc/h5mkgrp | 228 - build/tools/misc/h5mkgrp.o | Bin 17528 -> 0 bytes build/tools/misc/h5redeploy | 216 - build/tools/misc/h5repart | 228 - build/tools/misc/h5repart.o | Bin 22976 -> 0 bytes build/tools/misc/h5repart_gentest | 228 - build/tools/misc/h5repart_gentest.chkexe | 0 build/tools/misc/h5repart_gentest.chklog | 9 - build/tools/misc/h5repart_gentest.o | Bin 10352 -> 0 bytes build/tools/misc/repart_test | 228 - build/tools/misc/repart_test.o | Bin 11608 -> 0 bytes build/tools/misc/talign | 228 - build/tools/misc/talign.chkexe | 0 build/tools/misc/talign.chklog | 9 - build/tools/misc/talign.o | Bin 18616 -> 0 bytes build/tools/misc/testh5mkgrp.sh | 327 - build/tools/misc/testh5mkgrp.sh.chkexe | 0 build/tools/misc/testh5mkgrp.sh.chklog | 34 - build/tools/misc/testh5repart.sh | 195 - build/tools/misc/testh5repart.sh.chkexe | 0 build/tools/misc/testh5repart.sh.chklog | 14 - build/tools/perform/.deps/chunk.Po | 203 - build/tools/perform/.deps/iopipe.Po | 350 - build/tools/perform/.deps/overhead.Po | 350 - build/tools/perform/.deps/perf.Po | 350 - build/tools/perform/.deps/perf_meta.Po | 353 - build/tools/perform/.deps/pio_engine.Po | 1 - build/tools/perform/.deps/pio_perf.Po | 1 - build/tools/perform/.deps/sio_engine.Po | 370 - build/tools/perform/.deps/sio_perf.Po | 370 - build/tools/perform/.deps/zip_perf.Po | 369 - build/tools/perform/.libs/chunk | Bin 24392 -> 0 bytes build/tools/perform/.libs/h5perf_serial | Bin 297232 -> 0 bytes build/tools/perform/.libs/iopipe | Bin 23848 -> 0 bytes build/tools/perform/.libs/lt-chunk | Bin 24392 -> 0 bytes build/tools/perform/.libs/lt-h5perf_serial | Bin 297232 -> 0 bytes build/tools/perform/.libs/lt-iopipe | Bin 23848 -> 0 bytes build/tools/perform/.libs/lt-overhead | Bin 24632 -> 0 bytes build/tools/perform/.libs/lt-perf_meta | Bin 69472 -> 0 bytes build/tools/perform/.libs/lt-zip_perf | Bin 252080 -> 0 bytes build/tools/perform/.libs/overhead | Bin 24632 -> 0 bytes build/tools/perform/.libs/perf | Bin 9736 -> 0 bytes build/tools/perform/.libs/perf_meta | Bin 69472 -> 0 bytes build/tools/perform/.libs/zip_perf | Bin 252080 -> 0 bytes build/tools/perform/Makefile | 1576 - build/tools/perform/chunk | 228 - build/tools/perform/chunk.chkexe | 0 build/tools/perform/chunk.chklog | 50 - build/tools/perform/chunk.h5 | Bin 4022328 -> 0 bytes build/tools/perform/chunk.o | Bin 25800 -> 0 bytes build/tools/perform/h5perf_serial | 228 - build/tools/perform/h5perf_serial.chkexe | 0 build/tools/perform/h5perf_serial.chklog | 56 - build/tools/perform/iopipe | 228 - build/tools/perform/iopipe.chkexe | 0 build/tools/perform/iopipe.chklog | 23 - build/tools/perform/iopipe.h5 | Bin 1002144 -> 0 bytes build/tools/perform/iopipe.o | Bin 22936 -> 0 bytes build/tools/perform/iopipe.raw | Bin 1000000 -> 0 bytes build/tools/perform/overhead | 228 - build/tools/perform/overhead.chkexe | 0 build/tools/perform/overhead.chklog | 15 - build/tools/perform/overhead.o | Bin 21680 -> 0 bytes build/tools/perform/perf | 228 - build/tools/perform/perf.o | Bin 3664 -> 0 bytes build/tools/perform/perf_meta | 228 - build/tools/perform/perf_meta.chkexe | 0 build/tools/perform/perf_meta.chklog | 23 - build/tools/perform/perf_meta.o | Bin 32224 -> 0 bytes build/tools/perform/sio_engine.o | Bin 54368 -> 0 bytes build/tools/perform/sio_perf.o | Bin 60040 -> 0 bytes build/tools/perform/x-diag-rd.dat | 11 - build/tools/perform/x-diag-wr.dat | 11 - build/tools/perform/x-gnuplot | 44 - build/tools/perform/x-rowmaj-rd.dat | 11 - build/tools/perform/x-rowmaj-wr.dat | 11 - build/tools/perform/zip_perf | 228 - build/tools/perform/zip_perf.chkexe | 0 build/tools/perform/zip_perf.chklog | 38 - build/tools/perform/zip_perf.o | Bin 35544 -> 0 bytes 2406 files changed, 317270 deletions(-) delete mode 100644 build/Makefile delete mode 100644 build/c++/Makefile delete mode 100644 build/c++/examples/Makefile delete mode 100644 build/c++/examples/run-c++-ex.sh delete mode 100644 build/c++/examples/testh5c++.sh delete mode 100644 build/c++/src/.deps/H5AbstractDs.Plo delete mode 100644 build/c++/src/.deps/H5AcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5ArrayType.Plo delete mode 100644 build/c++/src/.deps/H5AtomType.Plo delete mode 100644 build/c++/src/.deps/H5Attribute.Plo delete mode 100644 build/c++/src/.deps/H5CommonFG.Plo delete mode 100644 build/c++/src/.deps/H5CompType.Plo delete mode 100644 build/c++/src/.deps/H5DataSet.Plo delete mode 100644 build/c++/src/.deps/H5DataSpace.Plo delete mode 100644 build/c++/src/.deps/H5DataType.Plo delete mode 100644 build/c++/src/.deps/H5DcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5DxferProp.Plo delete mode 100644 build/c++/src/.deps/H5EnumType.Plo delete mode 100644 build/c++/src/.deps/H5Exception.Plo delete mode 100644 build/c++/src/.deps/H5FaccProp.Plo delete mode 100644 build/c++/src/.deps/H5FcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5File.Plo delete mode 100644 build/c++/src/.deps/H5FloatType.Plo delete mode 100644 build/c++/src/.deps/H5Group.Plo delete mode 100644 build/c++/src/.deps/H5IdComponent.Plo delete mode 100644 build/c++/src/.deps/H5IntType.Plo delete mode 100644 build/c++/src/.deps/H5LaccProp.Plo delete mode 100644 build/c++/src/.deps/H5LcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5Library.Plo delete mode 100644 build/c++/src/.deps/H5Location.Plo delete mode 100644 build/c++/src/.deps/H5Object.Plo delete mode 100644 build/c++/src/.deps/H5OcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5PredType.Plo delete mode 100644 build/c++/src/.deps/H5PropList.Plo delete mode 100644 build/c++/src/.deps/H5StrType.Plo delete mode 100644 build/c++/src/.deps/H5StrcreatProp.Plo delete mode 100644 build/c++/src/.deps/H5VarLenType.Plo delete mode 100644 build/c++/src/Makefile delete mode 100644 build/c++/src/h5c++ delete mode 100644 build/c++/test/.deps/dsets.Po delete mode 100644 build/c++/test/.deps/h5cpputil.Po delete mode 100644 build/c++/test/.deps/tarray.Po delete mode 100644 build/c++/test/.deps/tattr.Po delete mode 100644 build/c++/test/.deps/tcompound.Po delete mode 100644 build/c++/test/.deps/tdspl.Po delete mode 100644 build/c++/test/.deps/testhdf5.Po delete mode 100644 build/c++/test/.deps/tfile.Po delete mode 100644 build/c++/test/.deps/tfilter.Po delete mode 100644 build/c++/test/.deps/th5s.Po delete mode 100644 build/c++/test/.deps/tlinks.Po delete mode 100644 build/c++/test/.deps/tobject.Po delete mode 100644 build/c++/test/.deps/trefer.Po delete mode 100644 build/c++/test/.deps/ttypes.Po delete mode 100644 build/c++/test/.deps/tvlstr.Po delete mode 100644 build/c++/test/H5srcdir_str.h delete mode 100644 build/c++/test/Makefile delete mode 100644 build/config.log delete mode 100755 build/config.lt delete mode 100755 build/config.status delete mode 100644 build/config/stamp1 delete mode 100644 build/config/stamp2 delete mode 100644 build/examples/Makefile delete mode 100644 build/examples/run-c-ex.sh delete mode 100644 build/examples/testh5cc.sh delete mode 100644 build/fortran/Makefile delete mode 100644 build/fortran/examples/Makefile delete mode 100644 build/fortran/examples/run-fortran-ex.sh delete mode 100644 build/fortran/examples/testh5fc.sh delete mode 100644 build/fortran/src/.deps/H5Af.Plo delete mode 100644 build/fortran/src/.deps/H5Df.Plo delete mode 100644 build/fortran/src/.deps/H5Ef.Plo delete mode 100644 build/fortran/src/.deps/H5FDmpiof.Plo delete mode 100644 build/fortran/src/.deps/H5Ff.Plo delete mode 100644 build/fortran/src/.deps/H5Gf.Plo delete mode 100644 build/fortran/src/.deps/H5If.Plo delete mode 100644 build/fortran/src/.deps/H5Lf.Plo delete mode 100644 build/fortran/src/.deps/H5Of.Plo delete mode 100644 build/fortran/src/.deps/H5Pf.Plo delete mode 100644 build/fortran/src/.deps/H5Rf.Plo delete mode 100644 build/fortran/src/.deps/H5Sf.Plo delete mode 100644 build/fortran/src/.deps/H5Tf.Plo delete mode 100644 build/fortran/src/.deps/H5Zf.Plo delete mode 100644 build/fortran/src/.deps/H5_f.Plo delete mode 100644 build/fortran/src/.deps/H5f90kit.Plo delete mode 100644 build/fortran/src/.deps/H5match_types.Po delete mode 100644 build/fortran/src/Makefile delete mode 100644 build/fortran/src/h5fc delete mode 100644 build/fortran/test/.deps/t.Plo delete mode 100644 build/fortran/test/Makefile delete mode 100644 build/fortran/testpar/Makefile delete mode 100644 build/hl/Makefile delete mode 100644 build/hl/c++/Makefile delete mode 100644 build/hl/c++/examples/Makefile delete mode 100644 build/hl/c++/examples/run-hlc++-ex.sh delete mode 100644 build/hl/c++/src/.deps/H5PacketTable.Plo delete mode 100644 build/hl/c++/src/Makefile delete mode 100644 build/hl/c++/test/.deps/ptableTest.Po delete mode 100644 build/hl/c++/test/Makefile delete mode 100644 build/hl/examples/Makefile delete mode 100644 build/hl/examples/run-hlc-ex.sh delete mode 100644 build/hl/fortran/Makefile delete mode 100644 build/hl/fortran/examples/Makefile delete mode 100644 build/hl/fortran/examples/run-hlfortran-ex.sh delete mode 100644 build/hl/fortran/src/.deps/H5DSfc.Plo delete mode 100644 build/hl/fortran/src/.deps/H5IMcc.Plo delete mode 100644 build/hl/fortran/src/.deps/H5IMfc.Plo delete mode 100644 build/hl/fortran/src/.deps/H5LTfc.Plo delete mode 100644 build/hl/fortran/src/.deps/H5TBfc.Plo delete mode 100644 build/hl/fortran/src/Makefile delete mode 100644 build/hl/fortran/test/Makefile delete mode 100644 build/hl/src/.deps/H5DO.Plo delete mode 100644 build/hl/src/.deps/H5DS.Plo delete mode 100644 build/hl/src/.deps/H5IM.Plo delete mode 100644 build/hl/src/.deps/H5LT.Plo delete mode 100644 build/hl/src/.deps/H5LTanalyze.Plo delete mode 100644 build/hl/src/.deps/H5LTparse.Plo delete mode 100644 build/hl/src/.deps/H5PT.Plo delete mode 100644 build/hl/src/.deps/H5TB.Plo delete mode 100644 build/hl/src/.libs/H5DO.o delete mode 100644 build/hl/src/.libs/H5DS.o delete mode 100644 build/hl/src/.libs/H5IM.o delete mode 100644 build/hl/src/.libs/H5LT.o delete mode 100644 build/hl/src/.libs/H5LTanalyze.o delete mode 100644 build/hl/src/.libs/H5LTparse.o delete mode 100644 build/hl/src/.libs/H5PT.o delete mode 100644 build/hl/src/.libs/H5TB.o delete mode 100644 build/hl/src/.libs/libhdf5_hl.a delete mode 120000 build/hl/src/.libs/libhdf5_hl.la delete mode 100644 build/hl/src/.libs/libhdf5_hl.lai delete mode 120000 build/hl/src/.libs/libhdf5_hl.so delete mode 120000 build/hl/src/.libs/libhdf5_hl.so.10 delete mode 100755 build/hl/src/.libs/libhdf5_hl.so.10.2.2 delete mode 100644 build/hl/src/H5DO.lo delete mode 100644 build/hl/src/H5DO.o delete mode 100644 build/hl/src/H5DS.lo delete mode 100644 build/hl/src/H5DS.o delete mode 100644 build/hl/src/H5IM.lo delete mode 100644 build/hl/src/H5IM.o delete mode 100644 build/hl/src/H5LT.lo delete mode 100644 build/hl/src/H5LT.o delete mode 100644 build/hl/src/H5LTanalyze.lo delete mode 100644 build/hl/src/H5LTanalyze.o delete mode 100644 build/hl/src/H5LTparse.lo delete mode 100644 build/hl/src/H5LTparse.o delete mode 100644 build/hl/src/H5PT.lo delete mode 100644 build/hl/src/H5PT.o delete mode 100644 build/hl/src/H5TB.lo delete mode 100644 build/hl/src/H5TB.o delete mode 100644 build/hl/src/Makefile delete mode 100644 build/hl/src/libhdf5_hl.la delete mode 100644 build/hl/test/.deps/gen_test_ds.Po delete mode 100644 build/hl/test/.deps/test_ds.Po delete mode 100644 build/hl/test/.deps/test_dset_opt.Po delete mode 100644 build/hl/test/.deps/test_file_image.Po delete mode 100644 build/hl/test/.deps/test_image.Po delete mode 100644 build/hl/test/.deps/test_lite.Po delete mode 100644 build/hl/test/.deps/test_packet.Po delete mode 100644 build/hl/test/.deps/test_packet_vlen.Po delete mode 100644 build/hl/test/.deps/test_table.Po delete mode 100755 build/hl/test/.libs/lt-test_ds delete mode 100755 build/hl/test/.libs/lt-test_dset_opt delete mode 100755 build/hl/test/.libs/lt-test_file_image delete mode 100755 build/hl/test/.libs/lt-test_image delete mode 100755 build/hl/test/.libs/lt-test_lite delete mode 100755 build/hl/test/.libs/lt-test_packet delete mode 100755 build/hl/test/.libs/lt-test_table delete mode 100755 build/hl/test/.libs/test_ds delete mode 100755 build/hl/test/.libs/test_dset_opt delete mode 100755 build/hl/test/.libs/test_file_image delete mode 100755 build/hl/test/.libs/test_image delete mode 100755 build/hl/test/.libs/test_lite delete mode 100755 build/hl/test/.libs/test_packet delete mode 100755 build/hl/test/.libs/test_table delete mode 100644 build/hl/test/H5srcdir_str.h delete mode 100644 build/hl/test/Makefile delete mode 100644 build/hl/test/combine_tables1.h5 delete mode 100644 build/hl/test/combine_tables2.h5 delete mode 100644 build/hl/test/test_dectris.h5 delete mode 100644 build/hl/test/test_detach.h5 delete mode 100755 build/hl/test/test_ds delete mode 100644 build/hl/test/test_ds.chkexe delete mode 100644 build/hl/test/test_ds.chklog delete mode 100644 build/hl/test/test_ds.o delete mode 100644 build/hl/test/test_ds1.h5 delete mode 100644 build/hl/test/test_ds10.h5 delete mode 100644 build/hl/test/test_ds2.h5 delete mode 100644 build/hl/test/test_ds3.h5 delete mode 100644 build/hl/test/test_ds4.h5 delete mode 100644 build/hl/test/test_ds5.h5 delete mode 100644 build/hl/test/test_ds6.h5 delete mode 100644 build/hl/test/test_ds7.h5 delete mode 100644 build/hl/test/test_ds8.h5 delete mode 100644 build/hl/test/test_ds9.h5 delete mode 100755 build/hl/test/test_dset_opt delete mode 100644 build/hl/test/test_dset_opt.chkexe delete mode 100644 build/hl/test/test_dset_opt.chklog delete mode 100644 build/hl/test/test_dset_opt.o delete mode 100755 build/hl/test/test_file_image delete mode 100644 build/hl/test/test_file_image.chkexe delete mode 100644 build/hl/test/test_file_image.chklog delete mode 100644 build/hl/test/test_file_image.o delete mode 100755 build/hl/test/test_image delete mode 100644 build/hl/test/test_image.chkexe delete mode 100644 build/hl/test/test_image.chklog delete mode 100644 build/hl/test/test_image.o delete mode 100644 build/hl/test/test_image1.h5 delete mode 100644 build/hl/test/test_image2.h5 delete mode 100644 build/hl/test/test_image3.h5 delete mode 100755 build/hl/test/test_lite delete mode 100644 build/hl/test/test_lite.chkexe delete mode 100644 build/hl/test/test_lite.chklog delete mode 100644 build/hl/test/test_lite.o delete mode 100644 build/hl/test/test_lite1.h5 delete mode 100644 build/hl/test/test_lite2.h5 delete mode 100644 build/hl/test/test_lite3.h5 delete mode 100644 build/hl/test/test_lite4.h5 delete mode 100755 build/hl/test/test_packet delete mode 100644 build/hl/test/test_packet.chkexe delete mode 100644 build/hl/test/test_packet.chklog delete mode 100644 build/hl/test/test_packet.o delete mode 100644 build/hl/test/test_packet_compress.h5 delete mode 100644 build/hl/test/test_packet_table.h5 delete mode 100644 build/hl/test/test_packet_table_vlen.h5 delete mode 100644 build/hl/test/test_packet_vlen.o delete mode 100755 build/hl/test/test_table delete mode 100644 build/hl/test/test_table.chkexe delete mode 100644 build/hl/test/test_table.chklog delete mode 100644 build/hl/test/test_table.h5 delete mode 100644 build/hl/test/test_table.o delete mode 100644 build/hl/test/testfl_packet_table_vlen.h5 delete mode 100644 build/hl/tools/Makefile delete mode 100644 build/hl/tools/gif2h5/.deps/decompress.Po delete mode 100644 build/hl/tools/gif2h5/.deps/gif2hdf.Po delete mode 100644 build/hl/tools/gif2h5/.deps/gif2mem.Po delete mode 100644 build/hl/tools/gif2h5/.deps/gifread.Po delete mode 100644 build/hl/tools/gif2h5/.deps/h52gifgentst.Po delete mode 100644 build/hl/tools/gif2h5/.deps/hdf2gif.Po delete mode 100644 build/hl/tools/gif2h5/.deps/hdfgifwr.Po delete mode 100644 build/hl/tools/gif2h5/.deps/writehdf.Po delete mode 100755 build/hl/tools/gif2h5/.libs/gif2h5 delete mode 100755 build/hl/tools/gif2h5/.libs/h52gif delete mode 100755 build/hl/tools/gif2h5/.libs/h52gifgentst delete mode 100755 build/hl/tools/gif2h5/.libs/lt-gif2h5 delete mode 100755 build/hl/tools/gif2h5/.libs/lt-h52gif delete mode 100644 build/hl/tools/gif2h5/Makefile delete mode 100644 build/hl/tools/gif2h5/decompress.o delete mode 100755 build/hl/tools/gif2h5/gif2h5 delete mode 100644 build/hl/tools/gif2h5/gif2hdf.o delete mode 100644 build/hl/tools/gif2h5/gif2mem.o delete mode 100644 build/hl/tools/gif2h5/gifread.o delete mode 100755 build/hl/tools/gif2h5/h52gif delete mode 100755 build/hl/tools/gif2h5/h52gifgentst delete mode 100644 build/hl/tools/gif2h5/h52gifgentst.o delete mode 100644 build/hl/tools/gif2h5/h52giftest.sh delete mode 100644 build/hl/tools/gif2h5/h52giftest.sh.chkexe delete mode 100644 build/hl/tools/gif2h5/h52giftest.sh.chklog delete mode 100644 build/hl/tools/gif2h5/hdf2gif.o delete mode 100644 build/hl/tools/gif2h5/hdfgifwr.o delete mode 100644 build/hl/tools/gif2h5/image.gif delete mode 100644 build/hl/tools/gif2h5/image1.gif delete mode 100644 build/hl/tools/gif2h5/image1.h5 delete mode 100644 build/hl/tools/gif2h5/image24.gif delete mode 100644 build/hl/tools/gif2h5/writehdf.o delete mode 100644 build/libtool delete mode 100644 build/makecheck.out delete mode 100644 build/src/.deps/H5.Plo delete mode 100644 build/src/.deps/H5A.Plo delete mode 100644 build/src/.deps/H5AC.Plo delete mode 100644 build/src/.deps/H5Abtree2.Plo delete mode 100644 build/src/.deps/H5Adense.Plo delete mode 100644 build/src/.deps/H5Adeprec.Plo delete mode 100644 build/src/.deps/H5Aint.Plo delete mode 100644 build/src/.deps/H5Atest.Plo delete mode 100644 build/src/.deps/H5B.Plo delete mode 100644 build/src/.deps/H5B2.Plo delete mode 100644 build/src/.deps/H5B2cache.Plo delete mode 100644 build/src/.deps/H5B2dbg.Plo delete mode 100644 build/src/.deps/H5B2hdr.Plo delete mode 100644 build/src/.deps/H5B2int.Plo delete mode 100644 build/src/.deps/H5B2stat.Plo delete mode 100644 build/src/.deps/H5B2test.Plo delete mode 100644 build/src/.deps/H5Bcache.Plo delete mode 100644 build/src/.deps/H5Bdbg.Plo delete mode 100644 build/src/.deps/H5C.Plo delete mode 100644 build/src/.deps/H5CS.Plo delete mode 100644 build/src/.deps/H5D.Plo delete mode 100644 build/src/.deps/H5Dbtree.Plo delete mode 100644 build/src/.deps/H5Dchunk.Plo delete mode 100644 build/src/.deps/H5Dcompact.Plo delete mode 100644 build/src/.deps/H5Dcontig.Plo delete mode 100644 build/src/.deps/H5Ddbg.Plo delete mode 100644 build/src/.deps/H5Ddeprec.Plo delete mode 100644 build/src/.deps/H5Defl.Plo delete mode 100644 build/src/.deps/H5Dfill.Plo delete mode 100644 build/src/.deps/H5Dint.Plo delete mode 100644 build/src/.deps/H5Dio.Plo delete mode 100644 build/src/.deps/H5Dlayout.Plo delete mode 100644 build/src/.deps/H5Dmpio.Plo delete mode 100644 build/src/.deps/H5Doh.Plo delete mode 100644 build/src/.deps/H5Dscatgath.Plo delete mode 100644 build/src/.deps/H5Dselect.Plo delete mode 100644 build/src/.deps/H5Dtest.Plo delete mode 100644 build/src/.deps/H5E.Plo delete mode 100644 build/src/.deps/H5Edeprec.Plo delete mode 100644 build/src/.deps/H5Eint.Plo delete mode 100644 build/src/.deps/H5F.Plo delete mode 100644 build/src/.deps/H5FD.Plo delete mode 100644 build/src/.deps/H5FDcore.Plo delete mode 100644 build/src/.deps/H5FDdirect.Plo delete mode 100644 build/src/.deps/H5FDfamily.Plo delete mode 100644 build/src/.deps/H5FDint.Plo delete mode 100644 build/src/.deps/H5FDlog.Plo delete mode 100644 build/src/.deps/H5FDmpi.Plo delete mode 100644 build/src/.deps/H5FDmpio.Plo delete mode 100644 build/src/.deps/H5FDmulti.Plo delete mode 100644 build/src/.deps/H5FDsec2.Plo delete mode 100644 build/src/.deps/H5FDspace.Plo delete mode 100644 build/src/.deps/H5FDstdio.Plo delete mode 100644 build/src/.deps/H5FL.Plo delete mode 100644 build/src/.deps/H5FO.Plo delete mode 100644 build/src/.deps/H5FS.Plo delete mode 100644 build/src/.deps/H5FScache.Plo delete mode 100644 build/src/.deps/H5FSdbg.Plo delete mode 100644 build/src/.deps/H5FSsection.Plo delete mode 100644 build/src/.deps/H5FSstat.Plo delete mode 100644 build/src/.deps/H5FStest.Plo delete mode 100644 build/src/.deps/H5Faccum.Plo delete mode 100644 build/src/.deps/H5Fcwfs.Plo delete mode 100644 build/src/.deps/H5Fdbg.Plo delete mode 100644 build/src/.deps/H5Fefc.Plo delete mode 100644 build/src/.deps/H5Ffake.Plo delete mode 100644 build/src/.deps/H5Fint.Plo delete mode 100644 build/src/.deps/H5Fio.Plo delete mode 100644 build/src/.deps/H5Fmount.Plo delete mode 100644 build/src/.deps/H5Fmpi.Plo delete mode 100644 build/src/.deps/H5Fquery.Plo delete mode 100644 build/src/.deps/H5Fsfile.Plo delete mode 100644 build/src/.deps/H5Fsuper.Plo delete mode 100644 build/src/.deps/H5Fsuper_cache.Plo delete mode 100644 build/src/.deps/H5Ftest.Plo delete mode 100644 build/src/.deps/H5G.Plo delete mode 100644 build/src/.deps/H5Gbtree2.Plo delete mode 100644 build/src/.deps/H5Gcache.Plo delete mode 100644 build/src/.deps/H5Gcompact.Plo delete mode 100644 build/src/.deps/H5Gdense.Plo delete mode 100644 build/src/.deps/H5Gdeprec.Plo delete mode 100644 build/src/.deps/H5Gent.Plo delete mode 100644 build/src/.deps/H5Gint.Plo delete mode 100644 build/src/.deps/H5Glink.Plo delete mode 100644 build/src/.deps/H5Gloc.Plo delete mode 100644 build/src/.deps/H5Gname.Plo delete mode 100644 build/src/.deps/H5Gnode.Plo delete mode 100644 build/src/.deps/H5Gobj.Plo delete mode 100644 build/src/.deps/H5Goh.Plo delete mode 100644 build/src/.deps/H5Groot.Plo delete mode 100644 build/src/.deps/H5Gstab.Plo delete mode 100644 build/src/.deps/H5Gtest.Plo delete mode 100644 build/src/.deps/H5Gtraverse.Plo delete mode 100644 build/src/.deps/H5HF.Plo delete mode 100644 build/src/.deps/H5HFbtree2.Plo delete mode 100644 build/src/.deps/H5HFcache.Plo delete mode 100644 build/src/.deps/H5HFdbg.Plo delete mode 100644 build/src/.deps/H5HFdblock.Plo delete mode 100644 build/src/.deps/H5HFdtable.Plo delete mode 100644 build/src/.deps/H5HFhdr.Plo delete mode 100644 build/src/.deps/H5HFhuge.Plo delete mode 100644 build/src/.deps/H5HFiblock.Plo delete mode 100644 build/src/.deps/H5HFiter.Plo delete mode 100644 build/src/.deps/H5HFman.Plo delete mode 100644 build/src/.deps/H5HFsection.Plo delete mode 100644 build/src/.deps/H5HFspace.Plo delete mode 100644 build/src/.deps/H5HFstat.Plo delete mode 100644 build/src/.deps/H5HFtest.Plo delete mode 100644 build/src/.deps/H5HFtiny.Plo delete mode 100644 build/src/.deps/H5HG.Plo delete mode 100644 build/src/.deps/H5HGcache.Plo delete mode 100644 build/src/.deps/H5HGdbg.Plo delete mode 100644 build/src/.deps/H5HGquery.Plo delete mode 100644 build/src/.deps/H5HL.Plo delete mode 100644 build/src/.deps/H5HLcache.Plo delete mode 100644 build/src/.deps/H5HLdbg.Plo delete mode 100644 build/src/.deps/H5HLint.Plo delete mode 100644 build/src/.deps/H5HP.Plo delete mode 100644 build/src/.deps/H5I.Plo delete mode 100644 build/src/.deps/H5Itest.Plo delete mode 100644 build/src/.deps/H5L.Plo delete mode 100644 build/src/.deps/H5Lexternal.Plo delete mode 100644 build/src/.deps/H5MF.Plo delete mode 100644 build/src/.deps/H5MFaggr.Plo delete mode 100644 build/src/.deps/H5MFdbg.Plo delete mode 100644 build/src/.deps/H5MFsection.Plo delete mode 100644 build/src/.deps/H5MM.Plo delete mode 100644 build/src/.deps/H5MP.Plo delete mode 100644 build/src/.deps/H5MPtest.Plo delete mode 100644 build/src/.deps/H5O.Plo delete mode 100644 build/src/.deps/H5Oainfo.Plo delete mode 100644 build/src/.deps/H5Oalloc.Plo delete mode 100644 build/src/.deps/H5Oattr.Plo delete mode 100644 build/src/.deps/H5Oattribute.Plo delete mode 100644 build/src/.deps/H5Obogus.Plo delete mode 100644 build/src/.deps/H5Obtreek.Plo delete mode 100644 build/src/.deps/H5Ocache.Plo delete mode 100644 build/src/.deps/H5Ochunk.Plo delete mode 100644 build/src/.deps/H5Ocont.Plo delete mode 100644 build/src/.deps/H5Ocopy.Plo delete mode 100644 build/src/.deps/H5Odbg.Plo delete mode 100644 build/src/.deps/H5Odrvinfo.Plo delete mode 100644 build/src/.deps/H5Odtype.Plo delete mode 100644 build/src/.deps/H5Oefl.Plo delete mode 100644 build/src/.deps/H5Ofill.Plo delete mode 100644 build/src/.deps/H5Oginfo.Plo delete mode 100644 build/src/.deps/H5Olayout.Plo delete mode 100644 build/src/.deps/H5Olinfo.Plo delete mode 100644 build/src/.deps/H5Olink.Plo delete mode 100644 build/src/.deps/H5Omessage.Plo delete mode 100644 build/src/.deps/H5Omtime.Plo delete mode 100644 build/src/.deps/H5Oname.Plo delete mode 100644 build/src/.deps/H5Onull.Plo delete mode 100644 build/src/.deps/H5Opline.Plo delete mode 100644 build/src/.deps/H5Orefcount.Plo delete mode 100644 build/src/.deps/H5Osdspace.Plo delete mode 100644 build/src/.deps/H5Oshared.Plo delete mode 100644 build/src/.deps/H5Oshmesg.Plo delete mode 100644 build/src/.deps/H5Ostab.Plo delete mode 100644 build/src/.deps/H5Otest.Plo delete mode 100644 build/src/.deps/H5Ounknown.Plo delete mode 100644 build/src/.deps/H5P.Plo delete mode 100644 build/src/.deps/H5PL.Plo delete mode 100644 build/src/.deps/H5Pacpl.Plo delete mode 100644 build/src/.deps/H5Pdapl.Plo delete mode 100644 build/src/.deps/H5Pdcpl.Plo delete mode 100644 build/src/.deps/H5Pdeprec.Plo delete mode 100644 build/src/.deps/H5Pdxpl.Plo delete mode 100644 build/src/.deps/H5Pfapl.Plo delete mode 100644 build/src/.deps/H5Pfcpl.Plo delete mode 100644 build/src/.deps/H5Pfmpl.Plo delete mode 100644 build/src/.deps/H5Pgcpl.Plo delete mode 100644 build/src/.deps/H5Pint.Plo delete mode 100644 build/src/.deps/H5Plapl.Plo delete mode 100644 build/src/.deps/H5Plcpl.Plo delete mode 100644 build/src/.deps/H5Pocpl.Plo delete mode 100644 build/src/.deps/H5Pocpypl.Plo delete mode 100644 build/src/.deps/H5Pstrcpl.Plo delete mode 100644 build/src/.deps/H5Ptest.Plo delete mode 100644 build/src/.deps/H5R.Plo delete mode 100644 build/src/.deps/H5RC.Plo delete mode 100644 build/src/.deps/H5RS.Plo delete mode 100644 build/src/.deps/H5Rdeprec.Plo delete mode 100644 build/src/.deps/H5S.Plo delete mode 100644 build/src/.deps/H5SL.Plo delete mode 100644 build/src/.deps/H5SM.Plo delete mode 100644 build/src/.deps/H5SMbtree2.Plo delete mode 100644 build/src/.deps/H5SMcache.Plo delete mode 100644 build/src/.deps/H5SMmessage.Plo delete mode 100644 build/src/.deps/H5SMtest.Plo delete mode 100644 build/src/.deps/H5ST.Plo delete mode 100644 build/src/.deps/H5Sall.Plo delete mode 100644 build/src/.deps/H5Sdbg.Plo delete mode 100644 build/src/.deps/H5Shyper.Plo delete mode 100644 build/src/.deps/H5Smpio.Plo delete mode 100644 build/src/.deps/H5Snone.Plo delete mode 100644 build/src/.deps/H5Spoint.Plo delete mode 100644 build/src/.deps/H5Sselect.Plo delete mode 100644 build/src/.deps/H5Stest.Plo delete mode 100644 build/src/.deps/H5T.Plo delete mode 100644 build/src/.deps/H5TS.Plo delete mode 100644 build/src/.deps/H5Tarray.Plo delete mode 100644 build/src/.deps/H5Tbit.Plo delete mode 100644 build/src/.deps/H5Tcommit.Plo delete mode 100644 build/src/.deps/H5Tcompound.Plo delete mode 100644 build/src/.deps/H5Tconv.Plo delete mode 100644 build/src/.deps/H5Tcset.Plo delete mode 100644 build/src/.deps/H5Tdbg.Plo delete mode 100644 build/src/.deps/H5Tdeprec.Plo delete mode 100644 build/src/.deps/H5Tenum.Plo delete mode 100644 build/src/.deps/H5Tfields.Plo delete mode 100644 build/src/.deps/H5Tfixed.Plo delete mode 100644 build/src/.deps/H5Tfloat.Plo delete mode 100644 build/src/.deps/H5Tinit.Plo delete mode 100644 build/src/.deps/H5Tnative.Plo delete mode 100644 build/src/.deps/H5Toffset.Plo delete mode 100644 build/src/.deps/H5Toh.Plo delete mode 100644 build/src/.deps/H5Topaque.Plo delete mode 100644 build/src/.deps/H5Torder.Plo delete mode 100644 build/src/.deps/H5Tpad.Plo delete mode 100644 build/src/.deps/H5Tprecis.Plo delete mode 100644 build/src/.deps/H5Tstrpad.Plo delete mode 100644 build/src/.deps/H5Tvisit.Plo delete mode 100644 build/src/.deps/H5Tvlen.Plo delete mode 100644 build/src/.deps/H5VM.Plo delete mode 100644 build/src/.deps/H5WB.Plo delete mode 100644 build/src/.deps/H5Z.Plo delete mode 100644 build/src/.deps/H5Zdeflate.Plo delete mode 100644 build/src/.deps/H5Zfletcher32.Plo delete mode 100644 build/src/.deps/H5Znbit.Plo delete mode 100644 build/src/.deps/H5Zscaleoffset.Plo delete mode 100644 build/src/.deps/H5Zshuffle.Plo delete mode 100644 build/src/.deps/H5Zszip.Plo delete mode 100644 build/src/.deps/H5Ztrans.Plo delete mode 100644 build/src/.deps/H5checksum.Plo delete mode 100644 build/src/.deps/H5dbg.Plo delete mode 100644 build/src/.deps/H5detect.Po delete mode 100644 build/src/.deps/H5lib_settings.Plo delete mode 100644 build/src/.deps/H5make_libsettings.Po delete mode 100644 build/src/.deps/H5system.Plo delete mode 100644 build/src/.deps/H5timer.Plo delete mode 100644 build/src/.deps/H5trace.Plo delete mode 100644 build/src/.libs/H5.o delete mode 100644 build/src/.libs/H5A.o delete mode 100644 build/src/.libs/H5AC.o delete mode 100644 build/src/.libs/H5Abtree2.o delete mode 100644 build/src/.libs/H5Adense.o delete mode 100644 build/src/.libs/H5Adeprec.o delete mode 100644 build/src/.libs/H5Aint.o delete mode 100644 build/src/.libs/H5Atest.o delete mode 100644 build/src/.libs/H5B.o delete mode 100644 build/src/.libs/H5B2.o delete mode 100644 build/src/.libs/H5B2cache.o delete mode 100644 build/src/.libs/H5B2dbg.o delete mode 100644 build/src/.libs/H5B2hdr.o delete mode 100644 build/src/.libs/H5B2int.o delete mode 100644 build/src/.libs/H5B2stat.o delete mode 100644 build/src/.libs/H5B2test.o delete mode 100644 build/src/.libs/H5Bcache.o delete mode 100644 build/src/.libs/H5Bdbg.o delete mode 100644 build/src/.libs/H5C.o delete mode 100644 build/src/.libs/H5CS.o delete mode 100644 build/src/.libs/H5D.o delete mode 100644 build/src/.libs/H5Dbtree.o delete mode 100644 build/src/.libs/H5Dchunk.o delete mode 100644 build/src/.libs/H5Dcompact.o delete mode 100644 build/src/.libs/H5Dcontig.o delete mode 100644 build/src/.libs/H5Ddbg.o delete mode 100644 build/src/.libs/H5Ddeprec.o delete mode 100644 build/src/.libs/H5Defl.o delete mode 100644 build/src/.libs/H5Dfill.o delete mode 100644 build/src/.libs/H5Dint.o delete mode 100644 build/src/.libs/H5Dio.o delete mode 100644 build/src/.libs/H5Dlayout.o delete mode 100644 build/src/.libs/H5Dmpio.o delete mode 100644 build/src/.libs/H5Doh.o delete mode 100644 build/src/.libs/H5Dscatgath.o delete mode 100644 build/src/.libs/H5Dselect.o delete mode 100644 build/src/.libs/H5Dtest.o delete mode 100644 build/src/.libs/H5E.o delete mode 100644 build/src/.libs/H5Edeprec.o delete mode 100644 build/src/.libs/H5Eint.o delete mode 100644 build/src/.libs/H5F.o delete mode 100644 build/src/.libs/H5FD.o delete mode 100644 build/src/.libs/H5FDcore.o delete mode 100644 build/src/.libs/H5FDdirect.o delete mode 100644 build/src/.libs/H5FDfamily.o delete mode 100644 build/src/.libs/H5FDint.o delete mode 100644 build/src/.libs/H5FDlog.o delete mode 100644 build/src/.libs/H5FDmpi.o delete mode 100644 build/src/.libs/H5FDmpio.o delete mode 100644 build/src/.libs/H5FDmulti.o delete mode 100644 build/src/.libs/H5FDsec2.o delete mode 100644 build/src/.libs/H5FDspace.o delete mode 100644 build/src/.libs/H5FDstdio.o delete mode 100644 build/src/.libs/H5FL.o delete mode 100644 build/src/.libs/H5FO.o delete mode 100644 build/src/.libs/H5FS.o delete mode 100644 build/src/.libs/H5FScache.o delete mode 100644 build/src/.libs/H5FSdbg.o delete mode 100644 build/src/.libs/H5FSsection.o delete mode 100644 build/src/.libs/H5FSstat.o delete mode 100644 build/src/.libs/H5FStest.o delete mode 100644 build/src/.libs/H5Faccum.o delete mode 100644 build/src/.libs/H5Fcwfs.o delete mode 100644 build/src/.libs/H5Fdbg.o delete mode 100644 build/src/.libs/H5Fefc.o delete mode 100644 build/src/.libs/H5Ffake.o delete mode 100644 build/src/.libs/H5Fint.o delete mode 100644 build/src/.libs/H5Fio.o delete mode 100644 build/src/.libs/H5Fmount.o delete mode 100644 build/src/.libs/H5Fmpi.o delete mode 100644 build/src/.libs/H5Fquery.o delete mode 100644 build/src/.libs/H5Fsfile.o delete mode 100644 build/src/.libs/H5Fsuper.o delete mode 100644 build/src/.libs/H5Fsuper_cache.o delete mode 100644 build/src/.libs/H5Ftest.o delete mode 100644 build/src/.libs/H5G.o delete mode 100644 build/src/.libs/H5Gbtree2.o delete mode 100644 build/src/.libs/H5Gcache.o delete mode 100644 build/src/.libs/H5Gcompact.o delete mode 100644 build/src/.libs/H5Gdense.o delete mode 100644 build/src/.libs/H5Gdeprec.o delete mode 100644 build/src/.libs/H5Gent.o delete mode 100644 build/src/.libs/H5Gint.o delete mode 100644 build/src/.libs/H5Glink.o delete mode 100644 build/src/.libs/H5Gloc.o delete mode 100644 build/src/.libs/H5Gname.o delete mode 100644 build/src/.libs/H5Gnode.o delete mode 100644 build/src/.libs/H5Gobj.o delete mode 100644 build/src/.libs/H5Goh.o delete mode 100644 build/src/.libs/H5Groot.o delete mode 100644 build/src/.libs/H5Gstab.o delete mode 100644 build/src/.libs/H5Gtest.o delete mode 100644 build/src/.libs/H5Gtraverse.o delete mode 100644 build/src/.libs/H5HF.o delete mode 100644 build/src/.libs/H5HFbtree2.o delete mode 100644 build/src/.libs/H5HFcache.o delete mode 100644 build/src/.libs/H5HFdbg.o delete mode 100644 build/src/.libs/H5HFdblock.o delete mode 100644 build/src/.libs/H5HFdtable.o delete mode 100644 build/src/.libs/H5HFhdr.o delete mode 100644 build/src/.libs/H5HFhuge.o delete mode 100644 build/src/.libs/H5HFiblock.o delete mode 100644 build/src/.libs/H5HFiter.o delete mode 100644 build/src/.libs/H5HFman.o delete mode 100644 build/src/.libs/H5HFsection.o delete mode 100644 build/src/.libs/H5HFspace.o delete mode 100644 build/src/.libs/H5HFstat.o delete mode 100644 build/src/.libs/H5HFtest.o delete mode 100644 build/src/.libs/H5HFtiny.o delete mode 100644 build/src/.libs/H5HG.o delete mode 100644 build/src/.libs/H5HGcache.o delete mode 100644 build/src/.libs/H5HGdbg.o delete mode 100644 build/src/.libs/H5HGquery.o delete mode 100644 build/src/.libs/H5HL.o delete mode 100644 build/src/.libs/H5HLcache.o delete mode 100644 build/src/.libs/H5HLdbg.o delete mode 100644 build/src/.libs/H5HLint.o delete mode 100644 build/src/.libs/H5HP.o delete mode 100644 build/src/.libs/H5I.o delete mode 100644 build/src/.libs/H5Itest.o delete mode 100644 build/src/.libs/H5L.o delete mode 100644 build/src/.libs/H5Lexternal.o delete mode 100644 build/src/.libs/H5MF.o delete mode 100644 build/src/.libs/H5MFaggr.o delete mode 100644 build/src/.libs/H5MFdbg.o delete mode 100644 build/src/.libs/H5MFsection.o delete mode 100644 build/src/.libs/H5MM.o delete mode 100644 build/src/.libs/H5MP.o delete mode 100644 build/src/.libs/H5MPtest.o delete mode 100644 build/src/.libs/H5O.o delete mode 100644 build/src/.libs/H5Oainfo.o delete mode 100644 build/src/.libs/H5Oalloc.o delete mode 100644 build/src/.libs/H5Oattr.o delete mode 100644 build/src/.libs/H5Oattribute.o delete mode 100644 build/src/.libs/H5Obogus.o delete mode 100644 build/src/.libs/H5Obtreek.o delete mode 100644 build/src/.libs/H5Ocache.o delete mode 100644 build/src/.libs/H5Ochunk.o delete mode 100644 build/src/.libs/H5Ocont.o delete mode 100644 build/src/.libs/H5Ocopy.o delete mode 100644 build/src/.libs/H5Odbg.o delete mode 100644 build/src/.libs/H5Odrvinfo.o delete mode 100644 build/src/.libs/H5Odtype.o delete mode 100644 build/src/.libs/H5Oefl.o delete mode 100644 build/src/.libs/H5Ofill.o delete mode 100644 build/src/.libs/H5Oginfo.o delete mode 100644 build/src/.libs/H5Olayout.o delete mode 100644 build/src/.libs/H5Olinfo.o delete mode 100644 build/src/.libs/H5Olink.o delete mode 100644 build/src/.libs/H5Omessage.o delete mode 100644 build/src/.libs/H5Omtime.o delete mode 100644 build/src/.libs/H5Oname.o delete mode 100644 build/src/.libs/H5Onull.o delete mode 100644 build/src/.libs/H5Opline.o delete mode 100644 build/src/.libs/H5Orefcount.o delete mode 100644 build/src/.libs/H5Osdspace.o delete mode 100644 build/src/.libs/H5Oshared.o delete mode 100644 build/src/.libs/H5Oshmesg.o delete mode 100644 build/src/.libs/H5Ostab.o delete mode 100644 build/src/.libs/H5Otest.o delete mode 100644 build/src/.libs/H5Ounknown.o delete mode 100644 build/src/.libs/H5P.o delete mode 100644 build/src/.libs/H5PL.o delete mode 100644 build/src/.libs/H5Pacpl.o delete mode 100644 build/src/.libs/H5Pdapl.o delete mode 100644 build/src/.libs/H5Pdcpl.o delete mode 100644 build/src/.libs/H5Pdeprec.o delete mode 100644 build/src/.libs/H5Pdxpl.o delete mode 100644 build/src/.libs/H5Pfapl.o delete mode 100644 build/src/.libs/H5Pfcpl.o delete mode 100644 build/src/.libs/H5Pfmpl.o delete mode 100644 build/src/.libs/H5Pgcpl.o delete mode 100644 build/src/.libs/H5Pint.o delete mode 100644 build/src/.libs/H5Plapl.o delete mode 100644 build/src/.libs/H5Plcpl.o delete mode 100644 build/src/.libs/H5Pocpl.o delete mode 100644 build/src/.libs/H5Pocpypl.o delete mode 100644 build/src/.libs/H5Pstrcpl.o delete mode 100644 build/src/.libs/H5Ptest.o delete mode 100644 build/src/.libs/H5R.o delete mode 100644 build/src/.libs/H5RC.o delete mode 100644 build/src/.libs/H5RS.o delete mode 100644 build/src/.libs/H5Rdeprec.o delete mode 100644 build/src/.libs/H5S.o delete mode 100644 build/src/.libs/H5SL.o delete mode 100644 build/src/.libs/H5SM.o delete mode 100644 build/src/.libs/H5SMbtree2.o delete mode 100644 build/src/.libs/H5SMcache.o delete mode 100644 build/src/.libs/H5SMmessage.o delete mode 100644 build/src/.libs/H5SMtest.o delete mode 100644 build/src/.libs/H5ST.o delete mode 100644 build/src/.libs/H5Sall.o delete mode 100644 build/src/.libs/H5Sdbg.o delete mode 100644 build/src/.libs/H5Shyper.o delete mode 100644 build/src/.libs/H5Smpio.o delete mode 100644 build/src/.libs/H5Snone.o delete mode 100644 build/src/.libs/H5Spoint.o delete mode 100644 build/src/.libs/H5Sselect.o delete mode 100644 build/src/.libs/H5Stest.o delete mode 100644 build/src/.libs/H5T.o delete mode 100644 build/src/.libs/H5TS.o delete mode 100644 build/src/.libs/H5Tarray.o delete mode 100644 build/src/.libs/H5Tbit.o delete mode 100644 build/src/.libs/H5Tcommit.o delete mode 100644 build/src/.libs/H5Tcompound.o delete mode 100644 build/src/.libs/H5Tconv.o delete mode 100644 build/src/.libs/H5Tcset.o delete mode 100644 build/src/.libs/H5Tdbg.o delete mode 100644 build/src/.libs/H5Tdeprec.o delete mode 100644 build/src/.libs/H5Tenum.o delete mode 100644 build/src/.libs/H5Tfields.o delete mode 100644 build/src/.libs/H5Tfixed.o delete mode 100644 build/src/.libs/H5Tfloat.o delete mode 100644 build/src/.libs/H5Tinit.o delete mode 100644 build/src/.libs/H5Tnative.o delete mode 100644 build/src/.libs/H5Toffset.o delete mode 100644 build/src/.libs/H5Toh.o delete mode 100644 build/src/.libs/H5Topaque.o delete mode 100644 build/src/.libs/H5Torder.o delete mode 100644 build/src/.libs/H5Tpad.o delete mode 100644 build/src/.libs/H5Tprecis.o delete mode 100644 build/src/.libs/H5Tstrpad.o delete mode 100644 build/src/.libs/H5Tvisit.o delete mode 100644 build/src/.libs/H5Tvlen.o delete mode 100644 build/src/.libs/H5VM.o delete mode 100644 build/src/.libs/H5WB.o delete mode 100644 build/src/.libs/H5Z.o delete mode 100644 build/src/.libs/H5Zdeflate.o delete mode 100644 build/src/.libs/H5Zfletcher32.o delete mode 100644 build/src/.libs/H5Znbit.o delete mode 100644 build/src/.libs/H5Zscaleoffset.o delete mode 100644 build/src/.libs/H5Zshuffle.o delete mode 100644 build/src/.libs/H5Zszip.o delete mode 100644 build/src/.libs/H5Ztrans.o delete mode 100644 build/src/.libs/H5checksum.o delete mode 100644 build/src/.libs/H5dbg.o delete mode 100644 build/src/.libs/H5lib_settings.o delete mode 100644 build/src/.libs/H5system.o delete mode 100644 build/src/.libs/H5timer.o delete mode 100644 build/src/.libs/H5trace.o delete mode 100644 build/src/.libs/libhdf5.a delete mode 120000 build/src/.libs/libhdf5.la delete mode 100644 build/src/.libs/libhdf5.lai delete mode 120000 build/src/.libs/libhdf5.so delete mode 120000 build/src/.libs/libhdf5.so.10 delete mode 100755 build/src/.libs/libhdf5.so.10.3.2 delete mode 100644 build/src/H5.lo delete mode 100644 build/src/H5.o delete mode 100644 build/src/H5A.lo delete mode 100644 build/src/H5A.o delete mode 100644 build/src/H5AC.lo delete mode 100644 build/src/H5AC.o delete mode 100644 build/src/H5Abtree2.lo delete mode 100644 build/src/H5Abtree2.o delete mode 100644 build/src/H5Adense.lo delete mode 100644 build/src/H5Adense.o delete mode 100644 build/src/H5Adeprec.lo delete mode 100644 build/src/H5Adeprec.o delete mode 100644 build/src/H5Aint.lo delete mode 100644 build/src/H5Aint.o delete mode 100644 build/src/H5Atest.lo delete mode 100644 build/src/H5Atest.o delete mode 100644 build/src/H5B.lo delete mode 100644 build/src/H5B.o delete mode 100644 build/src/H5B2.lo delete mode 100644 build/src/H5B2.o delete mode 100644 build/src/H5B2cache.lo delete mode 100644 build/src/H5B2cache.o delete mode 100644 build/src/H5B2dbg.lo delete mode 100644 build/src/H5B2dbg.o delete mode 100644 build/src/H5B2hdr.lo delete mode 100644 build/src/H5B2hdr.o delete mode 100644 build/src/H5B2int.lo delete mode 100644 build/src/H5B2int.o delete mode 100644 build/src/H5B2stat.lo delete mode 100644 build/src/H5B2stat.o delete mode 100644 build/src/H5B2test.lo delete mode 100644 build/src/H5B2test.o delete mode 100644 build/src/H5Bcache.lo delete mode 100644 build/src/H5Bcache.o delete mode 100644 build/src/H5Bdbg.lo delete mode 100644 build/src/H5Bdbg.o delete mode 100644 build/src/H5C.lo delete mode 100644 build/src/H5C.o delete mode 100644 build/src/H5CS.lo delete mode 100644 build/src/H5CS.o delete mode 100644 build/src/H5D.lo delete mode 100644 build/src/H5D.o delete mode 100644 build/src/H5Dbtree.lo delete mode 100644 build/src/H5Dbtree.o delete mode 100644 build/src/H5Dchunk.lo delete mode 100644 build/src/H5Dchunk.o delete mode 100644 build/src/H5Dcompact.lo delete mode 100644 build/src/H5Dcompact.o delete mode 100644 build/src/H5Dcontig.lo delete mode 100644 build/src/H5Dcontig.o delete mode 100644 build/src/H5Ddbg.lo delete mode 100644 build/src/H5Ddbg.o delete mode 100644 build/src/H5Ddeprec.lo delete mode 100644 build/src/H5Ddeprec.o delete mode 100644 build/src/H5Defl.lo delete mode 100644 build/src/H5Defl.o delete mode 100644 build/src/H5Dfill.lo delete mode 100644 build/src/H5Dfill.o delete mode 100644 build/src/H5Dint.lo delete mode 100644 build/src/H5Dint.o delete mode 100644 build/src/H5Dio.lo delete mode 100644 build/src/H5Dio.o delete mode 100644 build/src/H5Dlayout.lo delete mode 100644 build/src/H5Dlayout.o delete mode 100644 build/src/H5Dmpio.lo delete mode 100644 build/src/H5Dmpio.o delete mode 100644 build/src/H5Doh.lo delete mode 100644 build/src/H5Doh.o delete mode 100644 build/src/H5Dscatgath.lo delete mode 100644 build/src/H5Dscatgath.o delete mode 100644 build/src/H5Dselect.lo delete mode 100644 build/src/H5Dselect.o delete mode 100644 build/src/H5Dtest.lo delete mode 100644 build/src/H5Dtest.o delete mode 100644 build/src/H5E.lo delete mode 100644 build/src/H5E.o delete mode 100644 build/src/H5Edeprec.lo delete mode 100644 build/src/H5Edeprec.o delete mode 100644 build/src/H5Eint.lo delete mode 100644 build/src/H5Eint.o delete mode 100644 build/src/H5F.lo delete mode 100644 build/src/H5F.o delete mode 100644 build/src/H5FD.lo delete mode 100644 build/src/H5FD.o delete mode 100644 build/src/H5FDcore.lo delete mode 100644 build/src/H5FDcore.o delete mode 100644 build/src/H5FDdirect.lo delete mode 100644 build/src/H5FDdirect.o delete mode 100644 build/src/H5FDfamily.lo delete mode 100644 build/src/H5FDfamily.o delete mode 100644 build/src/H5FDint.lo delete mode 100644 build/src/H5FDint.o delete mode 100644 build/src/H5FDlog.lo delete mode 100644 build/src/H5FDlog.o delete mode 100644 build/src/H5FDmpi.lo delete mode 100644 build/src/H5FDmpi.o delete mode 100644 build/src/H5FDmpio.lo delete mode 100644 build/src/H5FDmpio.o delete mode 100644 build/src/H5FDmulti.lo delete mode 100644 build/src/H5FDmulti.o delete mode 100644 build/src/H5FDsec2.lo delete mode 100644 build/src/H5FDsec2.o delete mode 100644 build/src/H5FDspace.lo delete mode 100644 build/src/H5FDspace.o delete mode 100644 build/src/H5FDstdio.lo delete mode 100644 build/src/H5FDstdio.o delete mode 100644 build/src/H5FL.lo delete mode 100644 build/src/H5FL.o delete mode 100644 build/src/H5FO.lo delete mode 100644 build/src/H5FO.o delete mode 100644 build/src/H5FS.lo delete mode 100644 build/src/H5FS.o delete mode 100644 build/src/H5FScache.lo delete mode 100644 build/src/H5FScache.o delete mode 100644 build/src/H5FSdbg.lo delete mode 100644 build/src/H5FSdbg.o delete mode 100644 build/src/H5FSsection.lo delete mode 100644 build/src/H5FSsection.o delete mode 100644 build/src/H5FSstat.lo delete mode 100644 build/src/H5FSstat.o delete mode 100644 build/src/H5FStest.lo delete mode 100644 build/src/H5FStest.o delete mode 100644 build/src/H5Faccum.lo delete mode 100644 build/src/H5Faccum.o delete mode 100644 build/src/H5Fcwfs.lo delete mode 100644 build/src/H5Fcwfs.o delete mode 100644 build/src/H5Fdbg.lo delete mode 100644 build/src/H5Fdbg.o delete mode 100644 build/src/H5Fefc.lo delete mode 100644 build/src/H5Fefc.o delete mode 100644 build/src/H5Ffake.lo delete mode 100644 build/src/H5Ffake.o delete mode 100644 build/src/H5Fint.lo delete mode 100644 build/src/H5Fint.o delete mode 100644 build/src/H5Fio.lo delete mode 100644 build/src/H5Fio.o delete mode 100644 build/src/H5Fmount.lo delete mode 100644 build/src/H5Fmount.o delete mode 100644 build/src/H5Fmpi.lo delete mode 100644 build/src/H5Fmpi.o delete mode 100644 build/src/H5Fquery.lo delete mode 100644 build/src/H5Fquery.o delete mode 100644 build/src/H5Fsfile.lo delete mode 100644 build/src/H5Fsfile.o delete mode 100644 build/src/H5Fsuper.lo delete mode 100644 build/src/H5Fsuper.o delete mode 100644 build/src/H5Fsuper_cache.lo delete mode 100644 build/src/H5Fsuper_cache.o delete mode 100644 build/src/H5Ftest.lo delete mode 100644 build/src/H5Ftest.o delete mode 100644 build/src/H5G.lo delete mode 100644 build/src/H5G.o delete mode 100644 build/src/H5Gbtree2.lo delete mode 100644 build/src/H5Gbtree2.o delete mode 100644 build/src/H5Gcache.lo delete mode 100644 build/src/H5Gcache.o delete mode 100644 build/src/H5Gcompact.lo delete mode 100644 build/src/H5Gcompact.o delete mode 100644 build/src/H5Gdense.lo delete mode 100644 build/src/H5Gdense.o delete mode 100644 build/src/H5Gdeprec.lo delete mode 100644 build/src/H5Gdeprec.o delete mode 100644 build/src/H5Gent.lo delete mode 100644 build/src/H5Gent.o delete mode 100644 build/src/H5Gint.lo delete mode 100644 build/src/H5Gint.o delete mode 100644 build/src/H5Glink.lo delete mode 100644 build/src/H5Glink.o delete mode 100644 build/src/H5Gloc.lo delete mode 100644 build/src/H5Gloc.o delete mode 100644 build/src/H5Gname.lo delete mode 100644 build/src/H5Gname.o delete mode 100644 build/src/H5Gnode.lo delete mode 100644 build/src/H5Gnode.o delete mode 100644 build/src/H5Gobj.lo delete mode 100644 build/src/H5Gobj.o delete mode 100644 build/src/H5Goh.lo delete mode 100644 build/src/H5Goh.o delete mode 100644 build/src/H5Groot.lo delete mode 100644 build/src/H5Groot.o delete mode 100644 build/src/H5Gstab.lo delete mode 100644 build/src/H5Gstab.o delete mode 100644 build/src/H5Gtest.lo delete mode 100644 build/src/H5Gtest.o delete mode 100644 build/src/H5Gtraverse.lo delete mode 100644 build/src/H5Gtraverse.o delete mode 100644 build/src/H5HF.lo delete mode 100644 build/src/H5HF.o delete mode 100644 build/src/H5HFbtree2.lo delete mode 100644 build/src/H5HFbtree2.o delete mode 100644 build/src/H5HFcache.lo delete mode 100644 build/src/H5HFcache.o delete mode 100644 build/src/H5HFdbg.lo delete mode 100644 build/src/H5HFdbg.o delete mode 100644 build/src/H5HFdblock.lo delete mode 100644 build/src/H5HFdblock.o delete mode 100644 build/src/H5HFdtable.lo delete mode 100644 build/src/H5HFdtable.o delete mode 100644 build/src/H5HFhdr.lo delete mode 100644 build/src/H5HFhdr.o delete mode 100644 build/src/H5HFhuge.lo delete mode 100644 build/src/H5HFhuge.o delete mode 100644 build/src/H5HFiblock.lo delete mode 100644 build/src/H5HFiblock.o delete mode 100644 build/src/H5HFiter.lo delete mode 100644 build/src/H5HFiter.o delete mode 100644 build/src/H5HFman.lo delete mode 100644 build/src/H5HFman.o delete mode 100644 build/src/H5HFsection.lo delete mode 100644 build/src/H5HFsection.o delete mode 100644 build/src/H5HFspace.lo delete mode 100644 build/src/H5HFspace.o delete mode 100644 build/src/H5HFstat.lo delete mode 100644 build/src/H5HFstat.o delete mode 100644 build/src/H5HFtest.lo delete mode 100644 build/src/H5HFtest.o delete mode 100644 build/src/H5HFtiny.lo delete mode 100644 build/src/H5HFtiny.o delete mode 100644 build/src/H5HG.lo delete mode 100644 build/src/H5HG.o delete mode 100644 build/src/H5HGcache.lo delete mode 100644 build/src/H5HGcache.o delete mode 100644 build/src/H5HGdbg.lo delete mode 100644 build/src/H5HGdbg.o delete mode 100644 build/src/H5HGquery.lo delete mode 100644 build/src/H5HGquery.o delete mode 100644 build/src/H5HL.lo delete mode 100644 build/src/H5HL.o delete mode 100644 build/src/H5HLcache.lo delete mode 100644 build/src/H5HLcache.o delete mode 100644 build/src/H5HLdbg.lo delete mode 100644 build/src/H5HLdbg.o delete mode 100644 build/src/H5HLint.lo delete mode 100644 build/src/H5HLint.o delete mode 100644 build/src/H5HP.lo delete mode 100644 build/src/H5HP.o delete mode 100644 build/src/H5I.lo delete mode 100644 build/src/H5I.o delete mode 100644 build/src/H5Itest.lo delete mode 100644 build/src/H5Itest.o delete mode 100644 build/src/H5L.lo delete mode 100644 build/src/H5L.o delete mode 100644 build/src/H5Lexternal.lo delete mode 100644 build/src/H5Lexternal.o delete mode 100644 build/src/H5MF.lo delete mode 100644 build/src/H5MF.o delete mode 100644 build/src/H5MFaggr.lo delete mode 100644 build/src/H5MFaggr.o delete mode 100644 build/src/H5MFdbg.lo delete mode 100644 build/src/H5MFdbg.o delete mode 100644 build/src/H5MFsection.lo delete mode 100644 build/src/H5MFsection.o delete mode 100644 build/src/H5MM.lo delete mode 100644 build/src/H5MM.o delete mode 100644 build/src/H5MP.lo delete mode 100644 build/src/H5MP.o delete mode 100644 build/src/H5MPtest.lo delete mode 100644 build/src/H5MPtest.o delete mode 100644 build/src/H5O.lo delete mode 100644 build/src/H5O.o delete mode 100644 build/src/H5Oainfo.lo delete mode 100644 build/src/H5Oainfo.o delete mode 100644 build/src/H5Oalloc.lo delete mode 100644 build/src/H5Oalloc.o delete mode 100644 build/src/H5Oattr.lo delete mode 100644 build/src/H5Oattr.o delete mode 100644 build/src/H5Oattribute.lo delete mode 100644 build/src/H5Oattribute.o delete mode 100644 build/src/H5Obogus.lo delete mode 100644 build/src/H5Obogus.o delete mode 100644 build/src/H5Obtreek.lo delete mode 100644 build/src/H5Obtreek.o delete mode 100644 build/src/H5Ocache.lo delete mode 100644 build/src/H5Ocache.o delete mode 100644 build/src/H5Ochunk.lo delete mode 100644 build/src/H5Ochunk.o delete mode 100644 build/src/H5Ocont.lo delete mode 100644 build/src/H5Ocont.o delete mode 100644 build/src/H5Ocopy.lo delete mode 100644 build/src/H5Ocopy.o delete mode 100644 build/src/H5Odbg.lo delete mode 100644 build/src/H5Odbg.o delete mode 100644 build/src/H5Odrvinfo.lo delete mode 100644 build/src/H5Odrvinfo.o delete mode 100644 build/src/H5Odtype.lo delete mode 100644 build/src/H5Odtype.o delete mode 100644 build/src/H5Oefl.lo delete mode 100644 build/src/H5Oefl.o delete mode 100644 build/src/H5Ofill.lo delete mode 100644 build/src/H5Ofill.o delete mode 100644 build/src/H5Oginfo.lo delete mode 100644 build/src/H5Oginfo.o delete mode 100644 build/src/H5Olayout.lo delete mode 100644 build/src/H5Olayout.o delete mode 100644 build/src/H5Olinfo.lo delete mode 100644 build/src/H5Olinfo.o delete mode 100644 build/src/H5Olink.lo delete mode 100644 build/src/H5Olink.o delete mode 100644 build/src/H5Omessage.lo delete mode 100644 build/src/H5Omessage.o delete mode 100644 build/src/H5Omtime.lo delete mode 100644 build/src/H5Omtime.o delete mode 100644 build/src/H5Oname.lo delete mode 100644 build/src/H5Oname.o delete mode 100644 build/src/H5Onull.lo delete mode 100644 build/src/H5Onull.o delete mode 100644 build/src/H5Opline.lo delete mode 100644 build/src/H5Opline.o delete mode 100644 build/src/H5Orefcount.lo delete mode 100644 build/src/H5Orefcount.o delete mode 100644 build/src/H5Osdspace.lo delete mode 100644 build/src/H5Osdspace.o delete mode 100644 build/src/H5Oshared.lo delete mode 100644 build/src/H5Oshared.o delete mode 100644 build/src/H5Oshmesg.lo delete mode 100644 build/src/H5Oshmesg.o delete mode 100644 build/src/H5Ostab.lo delete mode 100644 build/src/H5Ostab.o delete mode 100644 build/src/H5Otest.lo delete mode 100644 build/src/H5Otest.o delete mode 100644 build/src/H5Ounknown.lo delete mode 100644 build/src/H5Ounknown.o delete mode 100644 build/src/H5P.lo delete mode 100644 build/src/H5P.o delete mode 100644 build/src/H5PL.lo delete mode 100644 build/src/H5PL.o delete mode 100644 build/src/H5Pacpl.lo delete mode 100644 build/src/H5Pacpl.o delete mode 100644 build/src/H5Pdapl.lo delete mode 100644 build/src/H5Pdapl.o delete mode 100644 build/src/H5Pdcpl.lo delete mode 100644 build/src/H5Pdcpl.o delete mode 100644 build/src/H5Pdeprec.lo delete mode 100644 build/src/H5Pdeprec.o delete mode 100644 build/src/H5Pdxpl.lo delete mode 100644 build/src/H5Pdxpl.o delete mode 100644 build/src/H5Pfapl.lo delete mode 100644 build/src/H5Pfapl.o delete mode 100644 build/src/H5Pfcpl.lo delete mode 100644 build/src/H5Pfcpl.o delete mode 100644 build/src/H5Pfmpl.lo delete mode 100644 build/src/H5Pfmpl.o delete mode 100644 build/src/H5Pgcpl.lo delete mode 100644 build/src/H5Pgcpl.o delete mode 100644 build/src/H5Pint.lo delete mode 100644 build/src/H5Pint.o delete mode 100644 build/src/H5Plapl.lo delete mode 100644 build/src/H5Plapl.o delete mode 100644 build/src/H5Plcpl.lo delete mode 100644 build/src/H5Plcpl.o delete mode 100644 build/src/H5Pocpl.lo delete mode 100644 build/src/H5Pocpl.o delete mode 100644 build/src/H5Pocpypl.lo delete mode 100644 build/src/H5Pocpypl.o delete mode 100644 build/src/H5Pstrcpl.lo delete mode 100644 build/src/H5Pstrcpl.o delete mode 100644 build/src/H5Ptest.lo delete mode 100644 build/src/H5Ptest.o delete mode 100644 build/src/H5R.lo delete mode 100644 build/src/H5R.o delete mode 100644 build/src/H5RC.lo delete mode 100644 build/src/H5RC.o delete mode 100644 build/src/H5RS.lo delete mode 100644 build/src/H5RS.o delete mode 100644 build/src/H5Rdeprec.lo delete mode 100644 build/src/H5Rdeprec.o delete mode 100644 build/src/H5S.lo delete mode 100644 build/src/H5S.o delete mode 100644 build/src/H5SL.lo delete mode 100644 build/src/H5SL.o delete mode 100644 build/src/H5SM.lo delete mode 100644 build/src/H5SM.o delete mode 100644 build/src/H5SMbtree2.lo delete mode 100644 build/src/H5SMbtree2.o delete mode 100644 build/src/H5SMcache.lo delete mode 100644 build/src/H5SMcache.o delete mode 100644 build/src/H5SMmessage.lo delete mode 100644 build/src/H5SMmessage.o delete mode 100644 build/src/H5SMtest.lo delete mode 100644 build/src/H5SMtest.o delete mode 100644 build/src/H5ST.lo delete mode 100644 build/src/H5ST.o delete mode 100644 build/src/H5Sall.lo delete mode 100644 build/src/H5Sall.o delete mode 100644 build/src/H5Sdbg.lo delete mode 100644 build/src/H5Sdbg.o delete mode 100644 build/src/H5Shyper.lo delete mode 100644 build/src/H5Shyper.o delete mode 100644 build/src/H5Smpio.lo delete mode 100644 build/src/H5Smpio.o delete mode 100644 build/src/H5Snone.lo delete mode 100644 build/src/H5Snone.o delete mode 100644 build/src/H5Spoint.lo delete mode 100644 build/src/H5Spoint.o delete mode 100644 build/src/H5Sselect.lo delete mode 100644 build/src/H5Sselect.o delete mode 100644 build/src/H5Stest.lo delete mode 100644 build/src/H5Stest.o delete mode 100644 build/src/H5T.lo delete mode 100644 build/src/H5T.o delete mode 100644 build/src/H5TS.lo delete mode 100644 build/src/H5TS.o delete mode 100644 build/src/H5Tarray.lo delete mode 100644 build/src/H5Tarray.o delete mode 100644 build/src/H5Tbit.lo delete mode 100644 build/src/H5Tbit.o delete mode 100644 build/src/H5Tcommit.lo delete mode 100644 build/src/H5Tcommit.o delete mode 100644 build/src/H5Tcompound.lo delete mode 100644 build/src/H5Tcompound.o delete mode 100644 build/src/H5Tconv.lo delete mode 100644 build/src/H5Tconv.o delete mode 100644 build/src/H5Tcset.lo delete mode 100644 build/src/H5Tcset.o delete mode 100644 build/src/H5Tdbg.lo delete mode 100644 build/src/H5Tdbg.o delete mode 100644 build/src/H5Tdeprec.lo delete mode 100644 build/src/H5Tdeprec.o delete mode 100644 build/src/H5Tenum.lo delete mode 100644 build/src/H5Tenum.o delete mode 100644 build/src/H5Tfields.lo delete mode 100644 build/src/H5Tfields.o delete mode 100644 build/src/H5Tfixed.lo delete mode 100644 build/src/H5Tfixed.o delete mode 100644 build/src/H5Tfloat.lo delete mode 100644 build/src/H5Tfloat.o delete mode 100644 build/src/H5Tinit.c delete mode 100644 build/src/H5Tinit.lo delete mode 100644 build/src/H5Tinit.o delete mode 100644 build/src/H5Tnative.lo delete mode 100644 build/src/H5Tnative.o delete mode 100644 build/src/H5Toffset.lo delete mode 100644 build/src/H5Toffset.o delete mode 100644 build/src/H5Toh.lo delete mode 100644 build/src/H5Toh.o delete mode 100644 build/src/H5Topaque.lo delete mode 100644 build/src/H5Topaque.o delete mode 100644 build/src/H5Torder.lo delete mode 100644 build/src/H5Torder.o delete mode 100644 build/src/H5Tpad.lo delete mode 100644 build/src/H5Tpad.o delete mode 100644 build/src/H5Tprecis.lo delete mode 100644 build/src/H5Tprecis.o delete mode 100644 build/src/H5Tstrpad.lo delete mode 100644 build/src/H5Tstrpad.o delete mode 100644 build/src/H5Tvisit.lo delete mode 100644 build/src/H5Tvisit.o delete mode 100644 build/src/H5Tvlen.lo delete mode 100644 build/src/H5Tvlen.o delete mode 100644 build/src/H5VM.lo delete mode 100644 build/src/H5VM.o delete mode 100644 build/src/H5WB.lo delete mode 100644 build/src/H5WB.o delete mode 100644 build/src/H5Z.lo delete mode 100644 build/src/H5Z.o delete mode 100644 build/src/H5Zdeflate.lo delete mode 100644 build/src/H5Zdeflate.o delete mode 100644 build/src/H5Zfletcher32.lo delete mode 100644 build/src/H5Zfletcher32.o delete mode 100644 build/src/H5Znbit.lo delete mode 100644 build/src/H5Znbit.o delete mode 100644 build/src/H5Zscaleoffset.lo delete mode 100644 build/src/H5Zscaleoffset.o delete mode 100644 build/src/H5Zshuffle.lo delete mode 100644 build/src/H5Zshuffle.o delete mode 100644 build/src/H5Zszip.lo delete mode 100644 build/src/H5Zszip.o delete mode 100644 build/src/H5Ztrans.lo delete mode 100644 build/src/H5Ztrans.o delete mode 100644 build/src/H5checksum.lo delete mode 100644 build/src/H5checksum.o delete mode 100644 build/src/H5config.h delete mode 100644 build/src/H5dbg.lo delete mode 100644 build/src/H5dbg.o delete mode 100755 build/src/H5detect delete mode 100644 build/src/H5detect.o delete mode 100644 build/src/H5lib_settings.c delete mode 100644 build/src/H5lib_settings.lo delete mode 100644 build/src/H5lib_settings.o delete mode 100755 build/src/H5make_libsettings delete mode 100644 build/src/H5make_libsettings.o delete mode 100644 build/src/H5pubconf.h delete mode 100644 build/src/H5system.lo delete mode 100644 build/src/H5system.o delete mode 100644 build/src/H5timer.lo delete mode 100644 build/src/H5timer.o delete mode 100644 build/src/H5trace.lo delete mode 100644 build/src/H5trace.o delete mode 100644 build/src/Makefile delete mode 100644 build/src/libhdf5.la delete mode 100644 build/src/libhdf5.settings delete mode 100644 build/src/stamp-h1 delete mode 100644 build/test/.deps/accum.Po delete mode 100644 build/test/.deps/app_ref.Po delete mode 100644 build/test/.deps/big.Po delete mode 100644 build/test/.deps/bittests.Po delete mode 100644 build/test/.deps/btree2.Po delete mode 100644 build/test/.deps/cache.Po delete mode 100644 build/test/.deps/cache_api.Po delete mode 100644 build/test/.deps/cache_common.Plo delete mode 100644 build/test/.deps/cmpd_dset.Po delete mode 100644 build/test/.deps/cross_read.Po delete mode 100644 build/test/.deps/dangle.Po delete mode 100644 build/test/.deps/dsets.Po delete mode 100644 build/test/.deps/dt_arith.Po delete mode 100644 build/test/.deps/dtransform.Po delete mode 100644 build/test/.deps/dtypes.Po delete mode 100644 build/test/.deps/dynlib1.Plo delete mode 100644 build/test/.deps/dynlib2.Plo delete mode 100644 build/test/.deps/dynlib3.Plo delete mode 100644 build/test/.deps/dynlib4.Plo delete mode 100644 build/test/.deps/efc.Po delete mode 100644 build/test/.deps/enum.Po delete mode 100644 build/test/.deps/err_compat.Po delete mode 100644 build/test/.deps/error_test.Po delete mode 100644 build/test/.deps/extend.Po delete mode 100644 build/test/.deps/external.Po delete mode 100644 build/test/.deps/fheap.Po delete mode 100644 build/test/.deps/file_image.Po delete mode 100644 build/test/.deps/fillval.Po delete mode 100644 build/test/.deps/filter_fail.Po delete mode 100644 build/test/.deps/flush1.Po delete mode 100644 build/test/.deps/flush2.Po delete mode 100644 build/test/.deps/freespace.Po delete mode 100644 build/test/.deps/gen_bad_offset.Po delete mode 100644 build/test/.deps/gen_bad_ohdr.Po delete mode 100644 build/test/.deps/gen_bogus.Po delete mode 100644 build/test/.deps/gen_cross.Po delete mode 100644 build/test/.deps/gen_deflate.Po delete mode 100644 build/test/.deps/gen_file_image.Po delete mode 100644 build/test/.deps/gen_filters.Po delete mode 100644 build/test/.deps/gen_idx.Po delete mode 100644 build/test/.deps/gen_new_array.Po delete mode 100644 build/test/.deps/gen_new_fill.Po delete mode 100644 build/test/.deps/gen_new_group.Po delete mode 100644 build/test/.deps/gen_new_mtime.Po delete mode 100644 build/test/.deps/gen_new_super.Po delete mode 100644 build/test/.deps/gen_noencoder.Po delete mode 100644 build/test/.deps/gen_nullspace.Po delete mode 100644 build/test/.deps/gen_sizes_lheap.Po delete mode 100644 build/test/.deps/gen_udlinks.Po delete mode 100644 build/test/.deps/getname.Po delete mode 100644 build/test/.deps/gheap.Po delete mode 100644 build/test/.deps/h5test.Plo delete mode 100644 build/test/.deps/hyperslab.Po delete mode 100644 build/test/.deps/istore.Po delete mode 100644 build/test/.deps/lheap.Po delete mode 100644 build/test/.deps/links.Po delete mode 100644 build/test/.deps/links_env.Po delete mode 100644 build/test/.deps/mf.Po delete mode 100644 build/test/.deps/mount.Po delete mode 100644 build/test/.deps/mtime.Po delete mode 100644 build/test/.deps/ntypes.Po delete mode 100644 build/test/.deps/objcopy.Po delete mode 100644 build/test/.deps/ohdr.Po delete mode 100644 build/test/.deps/plugin.Po delete mode 100644 build/test/.deps/pool.Po delete mode 100644 build/test/.deps/reserved.Po delete mode 100644 build/test/.deps/set_extent.Po delete mode 100644 build/test/.deps/space_overflow.Po delete mode 100644 build/test/.deps/stab.Po delete mode 100644 build/test/.deps/tarray.Po delete mode 100644 build/test/.deps/tattr.Po delete mode 100644 build/test/.deps/tcheck_version.Po delete mode 100644 build/test/.deps/tchecksum.Po delete mode 100644 build/test/.deps/tconfig.Po delete mode 100644 build/test/.deps/tcoords.Po delete mode 100644 build/test/.deps/testframe.Plo delete mode 100644 build/test/.deps/testhdf5.Po delete mode 100644 build/test/.deps/testmeta.Po delete mode 100644 build/test/.deps/tfile.Po delete mode 100644 build/test/.deps/tgenprop.Po delete mode 100644 build/test/.deps/th5o.Po delete mode 100644 build/test/.deps/th5s.Po delete mode 100644 build/test/.deps/theap.Po delete mode 100644 build/test/.deps/tid.Po delete mode 100644 build/test/.deps/titerate.Po delete mode 100644 build/test/.deps/tmeta.Po delete mode 100644 build/test/.deps/tmisc.Po delete mode 100644 build/test/.deps/trefer.Po delete mode 100644 build/test/.deps/trefstr.Po delete mode 100644 build/test/.deps/tselect.Po delete mode 100644 build/test/.deps/tskiplist.Po delete mode 100644 build/test/.deps/tsohm.Po delete mode 100644 build/test/.deps/ttime.Po delete mode 100644 build/test/.deps/ttsafe.Po delete mode 100644 build/test/.deps/ttsafe_acreate.Po delete mode 100644 build/test/.deps/ttsafe_cancel.Po delete mode 100644 build/test/.deps/ttsafe_dcreate.Po delete mode 100644 build/test/.deps/ttsafe_error.Po delete mode 100644 build/test/.deps/ttst.Po delete mode 100644 build/test/.deps/tunicode.Po delete mode 100644 build/test/.deps/tverbounds18.Po delete mode 100644 build/test/.deps/tvlstr.Po delete mode 100644 build/test/.deps/tvltypes.Po delete mode 100644 build/test/.deps/unlink.Po delete mode 100644 build/test/.deps/unregister.Po delete mode 100644 build/test/.deps/vfd.Po delete mode 100755 build/test/.libs/accum delete mode 100755 build/test/.libs/app_ref delete mode 100755 build/test/.libs/big delete mode 100755 build/test/.libs/bittests delete mode 100755 build/test/.libs/btree2 delete mode 100755 build/test/.libs/cache delete mode 100755 build/test/.libs/cache_api delete mode 100644 build/test/.libs/cache_common.o delete mode 100755 build/test/.libs/cmpd_dset delete mode 100755 build/test/.libs/cross_read delete mode 100755 build/test/.libs/dangle delete mode 100755 build/test/.libs/dsets delete mode 100755 build/test/.libs/dt_arith delete mode 100755 build/test/.libs/dtransform delete mode 100755 build/test/.libs/dtypes delete mode 100644 build/test/.libs/dynlib1.o delete mode 100644 build/test/.libs/dynlib2.o delete mode 100644 build/test/.libs/dynlib3.o delete mode 100644 build/test/.libs/dynlib4.o delete mode 100755 build/test/.libs/efc delete mode 100755 build/test/.libs/enum delete mode 100755 build/test/.libs/err_compat delete mode 100755 build/test/.libs/error_test delete mode 100755 build/test/.libs/extend delete mode 100755 build/test/.libs/external delete mode 100755 build/test/.libs/fheap delete mode 100755 build/test/.libs/file_image delete mode 100755 build/test/.libs/fillval delete mode 100755 build/test/.libs/filter_fail delete mode 100755 build/test/.libs/flush1 delete mode 100755 build/test/.libs/flush2 delete mode 100755 build/test/.libs/freespace delete mode 100755 build/test/.libs/getname delete mode 100755 build/test/.libs/gheap delete mode 100644 build/test/.libs/h5test.o delete mode 100755 build/test/.libs/hyperslab delete mode 100755 build/test/.libs/istore delete mode 100755 build/test/.libs/lheap delete mode 120000 build/test/.libs/libdynlib1.la delete mode 100644 build/test/.libs/libdynlib1.lai delete mode 100755 build/test/.libs/libdynlib1.so delete mode 120000 build/test/.libs/libdynlib2.la delete mode 100644 build/test/.libs/libdynlib2.lai delete mode 100755 build/test/.libs/libdynlib2.so delete mode 120000 build/test/.libs/libdynlib3.la delete mode 100644 build/test/.libs/libdynlib3.lai delete mode 100755 build/test/.libs/libdynlib3.so delete mode 120000 build/test/.libs/libdynlib4.la delete mode 100644 build/test/.libs/libdynlib4.lai delete mode 100755 build/test/.libs/libdynlib4.so delete mode 100644 build/test/.libs/libh5test.a delete mode 120000 build/test/.libs/libh5test.la delete mode 100755 build/test/.libs/links delete mode 100755 build/test/.libs/links_env delete mode 100755 build/test/.libs/lt-accum delete mode 100755 build/test/.libs/lt-app_ref delete mode 100755 build/test/.libs/lt-big delete mode 100755 build/test/.libs/lt-bittests delete mode 100755 build/test/.libs/lt-btree2 delete mode 100755 build/test/.libs/lt-cache delete mode 100755 build/test/.libs/lt-cache_api delete mode 100755 build/test/.libs/lt-cmpd_dset delete mode 100755 build/test/.libs/lt-cross_read delete mode 100755 build/test/.libs/lt-dangle delete mode 100755 build/test/.libs/lt-dsets delete mode 100755 build/test/.libs/lt-dt_arith delete mode 100755 build/test/.libs/lt-dtransform delete mode 100755 build/test/.libs/lt-dtypes delete mode 100755 build/test/.libs/lt-efc delete mode 100755 build/test/.libs/lt-enum delete mode 100755 build/test/.libs/lt-err_compat delete mode 100755 build/test/.libs/lt-error_test delete mode 100755 build/test/.libs/lt-extend delete mode 100755 build/test/.libs/lt-external delete mode 100755 build/test/.libs/lt-fheap delete mode 100755 build/test/.libs/lt-file_image delete mode 100755 build/test/.libs/lt-fillval delete mode 100755 build/test/.libs/lt-filter_fail delete mode 100755 build/test/.libs/lt-flush1 delete mode 100755 build/test/.libs/lt-flush2 delete mode 100755 build/test/.libs/lt-freespace delete mode 100755 build/test/.libs/lt-getname delete mode 100755 build/test/.libs/lt-gheap delete mode 100755 build/test/.libs/lt-hyperslab delete mode 100755 build/test/.libs/lt-istore delete mode 100755 build/test/.libs/lt-lheap delete mode 100755 build/test/.libs/lt-links delete mode 100755 build/test/.libs/lt-links_env delete mode 100755 build/test/.libs/lt-mf delete mode 100755 build/test/.libs/lt-mount delete mode 100755 build/test/.libs/lt-mtime delete mode 100755 build/test/.libs/lt-ntypes delete mode 100755 build/test/.libs/lt-objcopy delete mode 100755 build/test/.libs/lt-ohdr delete mode 100755 build/test/.libs/lt-plugin delete mode 100755 build/test/.libs/lt-pool delete mode 100755 build/test/.libs/lt-reserved delete mode 100755 build/test/.libs/lt-set_extent delete mode 100755 build/test/.libs/lt-stab delete mode 100755 build/test/.libs/lt-tcheck_version delete mode 100755 build/test/.libs/lt-testhdf5 delete mode 100755 build/test/.libs/lt-ttsafe delete mode 100755 build/test/.libs/lt-unlink delete mode 100755 build/test/.libs/lt-unregister delete mode 100755 build/test/.libs/lt-vfd delete mode 100755 build/test/.libs/mf delete mode 100755 build/test/.libs/mount delete mode 100755 build/test/.libs/mtime delete mode 100755 build/test/.libs/ntypes delete mode 100755 build/test/.libs/objcopy delete mode 100755 build/test/.libs/ohdr delete mode 100755 build/test/.libs/plugin delete mode 100755 build/test/.libs/pool delete mode 100755 build/test/.libs/reserved delete mode 100755 build/test/.libs/set_extent delete mode 100755 build/test/.libs/stab delete mode 100755 build/test/.libs/tcheck_version delete mode 100644 build/test/.libs/testframe.o delete mode 100755 build/test/.libs/testhdf5 delete mode 100755 build/test/.libs/testmeta delete mode 100755 build/test/.libs/ttsafe delete mode 100755 build/test/.libs/unlink delete mode 100755 build/test/.libs/unregister delete mode 100755 build/test/.libs/vfd delete mode 100644 build/test/H5srcdir_str.h delete mode 100644 build/test/Makefile delete mode 100755 build/test/accum delete mode 100644 build/test/accum.chkexe delete mode 100644 build/test/accum.chklog delete mode 100644 build/test/accum.o delete mode 100755 build/test/app_ref delete mode 100644 build/test/app_ref.chkexe delete mode 100644 build/test/app_ref.chklog delete mode 100644 build/test/app_ref.o delete mode 100755 build/test/big delete mode 100644 build/test/big.chkexe delete mode 100644 build/test/big.chklog delete mode 100644 build/test/big.o delete mode 100755 build/test/bittests delete mode 100644 build/test/bittests.chkexe delete mode 100644 build/test/bittests.chklog delete mode 100644 build/test/bittests.o delete mode 100755 build/test/btree2 delete mode 100644 build/test/btree2.chkexe delete mode 100644 build/test/btree2.chklog delete mode 100644 build/test/btree2.o delete mode 100755 build/test/cache delete mode 100644 build/test/cache.chkexe delete mode 100644 build/test/cache.chklog delete mode 100644 build/test/cache.o delete mode 100755 build/test/cache_api delete mode 100644 build/test/cache_api.chkexe delete mode 100644 build/test/cache_api.chklog delete mode 100644 build/test/cache_api.o delete mode 100644 build/test/cache_common.lo delete mode 100644 build/test/cache_common.o delete mode 100755 build/test/cmpd_dset delete mode 100644 build/test/cmpd_dset.chkexe delete mode 100644 build/test/cmpd_dset.chklog delete mode 100644 build/test/cmpd_dset.o delete mode 100644 build/test/core_file.h5 delete mode 100755 build/test/cross_read delete mode 100644 build/test/cross_read.chkexe delete mode 100644 build/test/cross_read.chklog delete mode 100644 build/test/cross_read.o delete mode 100755 build/test/dangle delete mode 100644 build/test/dangle.chkexe delete mode 100644 build/test/dangle.chklog delete mode 100644 build/test/dangle.o delete mode 100755 build/test/dsets delete mode 100644 build/test/dsets.chkexe delete mode 100644 build/test/dsets.chklog delete mode 100644 build/test/dsets.o delete mode 100755 build/test/dt_arith delete mode 100644 build/test/dt_arith.chkexe delete mode 100644 build/test/dt_arith.chklog delete mode 100644 build/test/dt_arith.o delete mode 100644 build/test/dt_arith1.h5 delete mode 100644 build/test/dt_arith2.h5 delete mode 100755 build/test/dtransform delete mode 100644 build/test/dtransform.chkexe delete mode 100644 build/test/dtransform.chklog delete mode 100644 build/test/dtransform.h5 delete mode 100644 build/test/dtransform.o delete mode 100755 build/test/dtypes delete mode 100644 build/test/dtypes.chkexe delete mode 100644 build/test/dtypes.chklog delete mode 100644 build/test/dtypes.o delete mode 100644 build/test/dtypes10.h5 delete mode 100644 build/test/dtypes3.h5 delete mode 100644 build/test/dtypes4.h5 delete mode 100644 build/test/dynlib1.lo delete mode 100644 build/test/dynlib1.o delete mode 100644 build/test/dynlib2.lo delete mode 100644 build/test/dynlib2.o delete mode 100644 build/test/dynlib3.lo delete mode 100644 build/test/dynlib3.o delete mode 100644 build/test/dynlib4.lo delete mode 100644 build/test/dynlib4.o delete mode 100755 build/test/efc delete mode 100644 build/test/efc.chkexe delete mode 100644 build/test/efc.chklog delete mode 100644 build/test/efc.o delete mode 100755 build/test/enum delete mode 100644 build/test/enum.chkexe delete mode 100644 build/test/enum.chklog delete mode 100644 build/test/enum.o delete mode 100755 build/test/err_compat delete mode 100644 build/test/err_compat.o delete mode 100755 build/test/error_test delete mode 100644 build/test/error_test.o delete mode 100755 build/test/extend delete mode 100644 build/test/extend.chkexe delete mode 100644 build/test/extend.chklog delete mode 100644 build/test/extend.o delete mode 100755 build/test/external delete mode 100644 build/test/external.chkexe delete mode 100644 build/test/external.chklog delete mode 100644 build/test/external.o delete mode 100644 build/test/extlinks16A00000.h5 delete mode 100644 build/test/extlinks16A00001.h5 delete mode 100644 build/test/extlinks16A00002.h5 delete mode 100644 build/test/extlinks16B-b.h5 delete mode 100644 build/test/extlinks16B-g.h5 delete mode 100644 build/test/extlinks16B-l.h5 delete mode 100644 build/test/extlinks16B-r.h5 delete mode 100644 build/test/extlinks16B-s.h5 delete mode 100644 build/test/extlinks19B00000.h5 delete mode 100644 build/test/extlinks19B00001.h5 delete mode 100644 build/test/extlinks19B00002.h5 delete mode 100644 build/test/extlinks19B00003.h5 delete mode 100644 build/test/extlinks19B00004.h5 delete mode 100644 build/test/extlinks19B00005.h5 delete mode 100644 build/test/extlinks19B00006.h5 delete mode 100644 build/test/extlinks19B00007.h5 delete mode 100644 build/test/extlinks19B00008.h5 delete mode 100644 build/test/extlinks19B00009.h5 delete mode 100644 build/test/extlinks19B00010.h5 delete mode 100644 build/test/extlinks19B00011.h5 delete mode 100644 build/test/extlinks19B00012.h5 delete mode 100644 build/test/extlinks19B00013.h5 delete mode 100644 build/test/extlinks19B00014.h5 delete mode 100644 build/test/extlinks19B00015.h5 delete mode 100644 build/test/extlinks19B00016.h5 delete mode 100644 build/test/extlinks19B00017.h5 delete mode 100644 build/test/extlinks19B00018.h5 delete mode 100644 build/test/extlinks19B00019.h5 delete mode 100644 build/test/extlinks19B00020.h5 delete mode 100644 build/test/extlinks19B00021.h5 delete mode 100644 build/test/extlinks19B00022.h5 delete mode 100644 build/test/extlinks19B00023.h5 delete mode 100644 build/test/extlinks19B00024.h5 delete mode 100644 build/test/extlinks19B00025.h5 delete mode 100644 build/test/extlinks19B00026.h5 delete mode 100644 build/test/extlinks19B00027.h5 delete mode 100644 build/test/extlinks19B00028.h5 delete mode 100755 build/test/fheap delete mode 100644 build/test/fheap.chkexe delete mode 100644 build/test/fheap.chklog delete mode 100644 build/test/fheap.o delete mode 100755 build/test/file_image delete mode 100644 build/test/file_image.chkexe delete mode 100644 build/test/file_image.chklog delete mode 100644 build/test/file_image.o delete mode 100755 build/test/fillval delete mode 100644 build/test/fillval.chkexe delete mode 100644 build/test/fillval.chklog delete mode 100644 build/test/fillval.o delete mode 100755 build/test/filter_fail delete mode 100644 build/test/filter_fail.chkexe delete mode 100644 build/test/filter_fail.chklog delete mode 100644 build/test/filter_fail.o delete mode 100755 build/test/flush1 delete mode 100644 build/test/flush1.chkexe delete mode 100644 build/test/flush1.chklog delete mode 100644 build/test/flush1.o delete mode 100755 build/test/flush2 delete mode 100644 build/test/flush2.chkexe delete mode 100644 build/test/flush2.chklog delete mode 100644 build/test/flush2.o delete mode 100755 build/test/freespace delete mode 100644 build/test/freespace.chkexe delete mode 100644 build/test/freespace.chklog delete mode 100644 build/test/freespace.o delete mode 100755 build/test/getname delete mode 100644 build/test/getname.chkexe delete mode 100644 build/test/getname.chklog delete mode 100644 build/test/getname.o delete mode 100755 build/test/gheap delete mode 100644 build/test/gheap.chkexe delete mode 100644 build/test/gheap.chklog delete mode 100644 build/test/gheap.o delete mode 100644 build/test/h5test.lo delete mode 100644 build/test/h5test.o delete mode 100755 build/test/hyperslab delete mode 100644 build/test/hyperslab.chkexe delete mode 100644 build/test/hyperslab.chklog delete mode 100644 build/test/hyperslab.o delete mode 100755 build/test/istore delete mode 100644 build/test/istore.chkexe delete mode 100644 build/test/istore.chklog delete mode 100644 build/test/istore.o delete mode 100755 build/test/lheap delete mode 100644 build/test/lheap.chkexe delete mode 100644 build/test/lheap.chklog delete mode 100644 build/test/lheap.o delete mode 100644 build/test/libdynlib1.la delete mode 100644 build/test/libdynlib2.la delete mode 100644 build/test/libdynlib3.la delete mode 100644 build/test/libdynlib4.la delete mode 100644 build/test/libh5test.la delete mode 100755 build/test/links delete mode 100644 build/test/links.chkexe delete mode 100644 build/test/links.chklog delete mode 100644 build/test/links.o delete mode 100755 build/test/links_env delete mode 100644 build/test/links_env.o delete mode 100644 build/test/log_vfd_out.log delete mode 100755 build/test/mf delete mode 100644 build/test/mf.chkexe delete mode 100644 build/test/mf.chklog delete mode 100644 build/test/mf.o delete mode 100755 build/test/mount delete mode 100644 build/test/mount.chkexe delete mode 100644 build/test/mount.chklog delete mode 100644 build/test/mount.o delete mode 100755 build/test/mtime delete mode 100644 build/test/mtime.chkexe delete mode 100644 build/test/mtime.chklog delete mode 100644 build/test/mtime.o delete mode 100755 build/test/ntypes delete mode 100644 build/test/ntypes.chkexe delete mode 100644 build/test/ntypes.chklog delete mode 100644 build/test/ntypes.o delete mode 100755 build/test/objcopy delete mode 100644 build/test/objcopy.chkexe delete mode 100644 build/test/objcopy.chklog delete mode 100644 build/test/objcopy.o delete mode 100644 build/test/objcopy_ext.dat delete mode 100755 build/test/ohdr delete mode 100644 build/test/ohdr.chkexe delete mode 100644 build/test/ohdr.chklog delete mode 100644 build/test/ohdr.o delete mode 100755 build/test/plugin delete mode 100644 build/test/plugin.o delete mode 100755 build/test/pool delete mode 100644 build/test/pool.chkexe delete mode 100644 build/test/pool.chklog delete mode 100644 build/test/pool.o delete mode 100755 build/test/reserved delete mode 100644 build/test/reserved.chkexe delete mode 100644 build/test/reserved.chklog delete mode 100644 build/test/reserved.o delete mode 100755 build/test/set_extent delete mode 100644 build/test/set_extent.chkexe delete mode 100644 build/test/set_extent.chklog delete mode 100644 build/test/set_extent.o delete mode 100755 build/test/stab delete mode 100644 build/test/stab.chkexe delete mode 100644 build/test/stab.chklog delete mode 100644 build/test/stab.o delete mode 100644 build/test/tarray.o delete mode 100644 build/test/tattr.o delete mode 100644 build/test/tbogus.h5.copy delete mode 100755 build/test/tcheck_version delete mode 100644 build/test/tcheck_version.o delete mode 100644 build/test/tchecksum.o delete mode 100644 build/test/tconfig.o delete mode 100644 build/test/tcoords.o delete mode 100644 build/test/test_plugin.sh delete mode 100644 build/test/test_plugin.sh.chkexe delete mode 100644 build/test/test_plugin.sh.chklog delete mode 100644 build/test/testcheck_version.sh delete mode 100644 build/test/testcheck_version.sh.chkexe delete mode 100644 build/test/testcheck_version.sh.chklog delete mode 100644 build/test/testerror.sh delete mode 100644 build/test/testerror.sh.chkexe delete mode 100644 build/test/testerror.sh.chklog delete mode 100644 build/test/testframe.lo delete mode 100644 build/test/testframe.o delete mode 100755 build/test/testhdf5 delete mode 100644 build/test/testhdf5.chkexe delete mode 100644 build/test/testhdf5.chklog delete mode 100644 build/test/testhdf5.o delete mode 100644 build/test/testlibinfo.sh delete mode 100644 build/test/testlibinfo.sh.chkexe delete mode 100644 build/test/testlibinfo.sh.chklog delete mode 100644 build/test/testlinks_env.sh delete mode 100644 build/test/testlinks_env.sh.chkexe delete mode 100644 build/test/testlinks_env.sh.chklog delete mode 100755 build/test/testmeta delete mode 100644 build/test/testmeta.o delete mode 100644 build/test/tfile.o delete mode 100644 build/test/tfile5.h5 delete mode 100644 build/test/tfile6.h5 delete mode 100644 build/test/tgenprop.o delete mode 100644 build/test/th5o.o delete mode 100644 build/test/th5s.o delete mode 100644 build/test/theap.o delete mode 100644 build/test/tid.o delete mode 100644 build/test/titerate.o delete mode 100644 build/test/tmeta.o delete mode 100644 build/test/tmisc.o delete mode 100644 build/test/trefer.o delete mode 100644 build/test/trefstr.o delete mode 100644 build/test/tselect.o delete mode 100644 build/test/tskiplist.o delete mode 100644 build/test/tsohm.o delete mode 100644 build/test/tstint1.h5 delete mode 100644 build/test/tstint2.h5 delete mode 100644 build/test/ttime.o delete mode 100755 build/test/ttsafe delete mode 100644 build/test/ttsafe.chkexe delete mode 100644 build/test/ttsafe.chklog delete mode 100644 build/test/ttsafe.o delete mode 100644 build/test/ttsafe_acreate.o delete mode 100644 build/test/ttsafe_cancel.o delete mode 100644 build/test/ttsafe_dcreate.o delete mode 100644 build/test/ttsafe_error.o delete mode 100644 build/test/ttst.o delete mode 100644 build/test/tunicode.o delete mode 100644 build/test/tverbounds18.o delete mode 100644 build/test/tvlstr.o delete mode 100644 build/test/tvltypes.o delete mode 100755 build/test/unlink delete mode 100644 build/test/unlink.chkexe delete mode 100644 build/test/unlink.chklog delete mode 100644 build/test/unlink.o delete mode 100755 build/test/unregister delete mode 100644 build/test/unregister.chkexe delete mode 100644 build/test/unregister.chklog delete mode 100644 build/test/unregister.o delete mode 100755 build/test/vfd delete mode 100644 build/test/vfd.chkexe delete mode 100644 build/test/vfd.chklog delete mode 100644 build/test/vfd.o delete mode 100644 build/testpar/.deps/t_cache.Po delete mode 100644 build/testpar/.deps/t_chunk_alloc.Po delete mode 100644 build/testpar/.deps/t_coll_chunk.Po delete mode 100644 build/testpar/.deps/t_dset.Po delete mode 100644 build/testpar/.deps/t_file.Po delete mode 100644 build/testpar/.deps/t_file_image.Po delete mode 100644 build/testpar/.deps/t_filter_read.Po delete mode 100644 build/testpar/.deps/t_init_term.Po delete mode 100644 build/testpar/.deps/t_mdset.Po delete mode 100644 build/testpar/.deps/t_mpi.Po delete mode 100644 build/testpar/.deps/t_pflush1.Po delete mode 100644 build/testpar/.deps/t_pflush2.Po delete mode 100644 build/testpar/.deps/t_ph5basic.Po delete mode 100644 build/testpar/.deps/t_prestart.Po delete mode 100644 build/testpar/.deps/t_pshutdown.Po delete mode 100644 build/testpar/.deps/t_shapesame.Po delete mode 100644 build/testpar/.deps/t_span_tree.Po delete mode 100644 build/testpar/.deps/testphdf5.Po delete mode 100644 build/testpar/Makefile delete mode 100644 build/tools/Makefile delete mode 100644 build/tools/h5copy/.deps/h5copy.Po delete mode 100644 build/tools/h5copy/.deps/h5copygentest.Po delete mode 100755 build/tools/h5copy/.libs/h5copy delete mode 100755 build/tools/h5copy/.libs/h5copygentest delete mode 100755 build/tools/h5copy/.libs/lt-h5copy delete mode 100755 build/tools/h5copy/.libs/lt-h5copygentest delete mode 100644 build/tools/h5copy/Makefile delete mode 100755 build/tools/h5copy/h5copy delete mode 100644 build/tools/h5copy/h5copy.o delete mode 100644 build/tools/h5copy/h5copy_extlinks_src.h5 delete mode 100644 build/tools/h5copy/h5copy_extlinks_trg.h5 delete mode 100644 build/tools/h5copy/h5copy_ref.h5 delete mode 100755 build/tools/h5copy/h5copygentest delete mode 100644 build/tools/h5copy/h5copygentest.chkexe delete mode 100644 build/tools/h5copy/h5copygentest.chklog delete mode 100644 build/tools/h5copy/h5copygentest.o delete mode 100644 build/tools/h5copy/h5copytst.h5 delete mode 100644 build/tools/h5copy/testh5copy.sh delete mode 100644 build/tools/h5copy/testh5copy.sh.chkexe delete mode 100644 build/tools/h5copy/testh5copy.sh.chklog delete mode 100644 build/tools/h5diff/.deps/dynlib_diff.Plo delete mode 100644 build/tools/h5diff/.deps/h5diff_common.Po delete mode 100644 build/tools/h5diff/.deps/h5diff_main.Po delete mode 100644 build/tools/h5diff/.deps/h5diffgentest.Po delete mode 100644 build/tools/h5diff/.deps/ph5diff_main.Po delete mode 100644 build/tools/h5diff/.libs/dynlib_diff.o delete mode 100755 build/tools/h5diff/.libs/h5diff delete mode 100755 build/tools/h5diff/.libs/h5diffgentest delete mode 120000 build/tools/h5diff/.libs/libdynlibdiff.la delete mode 100644 build/tools/h5diff/.libs/libdynlibdiff.lai delete mode 100755 build/tools/h5diff/.libs/libdynlibdiff.so delete mode 100755 build/tools/h5diff/.libs/lt-h5diff delete mode 100755 build/tools/h5diff/.libs/lt-h5diffgentest delete mode 100644 build/tools/h5diff/Makefile delete mode 100644 build/tools/h5diff/compounds_array_vlen1.h5 delete mode 100644 build/tools/h5diff/compounds_array_vlen2.h5 delete mode 100644 build/tools/h5diff/diff_strings1.h5 delete mode 100644 build/tools/h5diff/diff_strings2.h5 delete mode 100644 build/tools/h5diff/dynlib_diff.lo delete mode 100644 build/tools/h5diff/dynlib_diff.o delete mode 100755 build/tools/h5diff/h5diff delete mode 100644 build/tools/h5diff/h5diff_attr1.h5 delete mode 100644 build/tools/h5diff/h5diff_attr2.h5 delete mode 100644 build/tools/h5diff/h5diff_attr3.h5 delete mode 100644 build/tools/h5diff/h5diff_attr_v_level1.h5 delete mode 100644 build/tools/h5diff/h5diff_attr_v_level2.h5 delete mode 100644 build/tools/h5diff/h5diff_basic1.h5 delete mode 100644 build/tools/h5diff/h5diff_basic2.h5 delete mode 100644 build/tools/h5diff/h5diff_common.o delete mode 100644 build/tools/h5diff/h5diff_comp_vl_strs.h5 delete mode 100644 build/tools/h5diff/h5diff_danglelinks1.h5 delete mode 100644 build/tools/h5diff/h5diff_danglelinks2.h5 delete mode 100644 build/tools/h5diff/h5diff_dset1.h5 delete mode 100644 build/tools/h5diff/h5diff_dset2.h5 delete mode 100644 build/tools/h5diff/h5diff_dset3.h5 delete mode 100644 build/tools/h5diff/h5diff_dset_zero_dim_size1.h5 delete mode 100644 build/tools/h5diff/h5diff_dset_zero_dim_size2.h5 delete mode 100644 build/tools/h5diff/h5diff_dtypes.h5 delete mode 100644 build/tools/h5diff/h5diff_empty.h5 delete mode 100644 build/tools/h5diff/h5diff_enum_invalid_values.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude1-1.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude1-2.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude2-1.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude2-2.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude3-1.h5 delete mode 100644 build/tools/h5diff/h5diff_exclude3-2.h5 delete mode 100644 build/tools/h5diff/h5diff_ext2softlink_src.h5 delete mode 100644 build/tools/h5diff/h5diff_ext2softlink_trg.h5 delete mode 100644 build/tools/h5diff/h5diff_extlink_src.h5 delete mode 100644 build/tools/h5diff/h5diff_extlink_trg.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse1.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse2.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext1.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-1.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-2.h5 delete mode 100644 build/tools/h5diff/h5diff_grp_recurse_ext2-3.h5 delete mode 100644 build/tools/h5diff/h5diff_hyper1.h5 delete mode 100644 build/tools/h5diff/h5diff_hyper2.h5 delete mode 100644 build/tools/h5diff/h5diff_linked_softlink.h5 delete mode 100644 build/tools/h5diff/h5diff_links.h5 delete mode 100644 build/tools/h5diff/h5diff_main.o delete mode 100644 build/tools/h5diff/h5diff_plugin.sh delete mode 100644 build/tools/h5diff/h5diff_plugin.sh.chkexe delete mode 100644 build/tools/h5diff/h5diff_plugin.sh.chklog delete mode 100644 build/tools/h5diff/h5diff_softlinks.h5 delete mode 100644 build/tools/h5diff/h5diff_types.h5 delete mode 100755 build/tools/h5diff/h5diffgentest delete mode 100644 build/tools/h5diff/h5diffgentest.chkexe delete mode 100644 build/tools/h5diff/h5diffgentest.chklog delete mode 100644 build/tools/h5diff/h5diffgentest.o delete mode 100644 build/tools/h5diff/libdynlibdiff.la delete mode 100644 build/tools/h5diff/non_comparables1.h5 delete mode 100644 build/tools/h5diff/non_comparables2.h5 delete mode 100644 build/tools/h5diff/testh5diff.sh delete mode 100644 build/tools/h5diff/testh5diff.sh.chkexe delete mode 100644 build/tools/h5diff/testh5diff.sh.chklog delete mode 100644 build/tools/h5diff/testph5diff.sh delete mode 100644 build/tools/h5dump/.deps/binread.Po delete mode 100644 build/tools/h5dump/.deps/dynlib_dump.Plo delete mode 100644 build/tools/h5dump/.deps/h5dump.Po delete mode 100644 build/tools/h5dump/.deps/h5dump_ddl.Po delete mode 100644 build/tools/h5dump/.deps/h5dump_xml.Po delete mode 100644 build/tools/h5dump/.deps/h5dumpgentest.Po delete mode 100755 build/tools/h5dump/.libs/binread delete mode 100644 build/tools/h5dump/.libs/dynlib_dump.o delete mode 100755 build/tools/h5dump/.libs/h5dump delete mode 100755 build/tools/h5dump/.libs/h5dumpgentest delete mode 120000 build/tools/h5dump/.libs/libdynlibdump.la delete mode 100644 build/tools/h5dump/.libs/libdynlibdump.lai delete mode 100755 build/tools/h5dump/.libs/libdynlibdump.so delete mode 100755 build/tools/h5dump/.libs/lt-h5dump delete mode 100755 build/tools/h5dump/.libs/lt-h5dumpgentest delete mode 100644 build/tools/h5dump/Makefile delete mode 100755 build/tools/h5dump/binread delete mode 100644 build/tools/h5dump/binread.o delete mode 100644 build/tools/h5dump/charsets.h5 delete mode 100644 build/tools/h5dump/dynlib_dump.lo delete mode 100644 build/tools/h5dump/dynlib_dump.o delete mode 100755 build/tools/h5dump/h5dump delete mode 100644 build/tools/h5dump/h5dump.o delete mode 100644 build/tools/h5dump/h5dump_ddl.o delete mode 100644 build/tools/h5dump/h5dump_plugin.sh delete mode 100644 build/tools/h5dump/h5dump_plugin.sh.chkexe delete mode 100644 build/tools/h5dump/h5dump_plugin.sh.chklog delete mode 100644 build/tools/h5dump/h5dump_xml.o delete mode 100755 build/tools/h5dump/h5dumpgentest delete mode 100644 build/tools/h5dump/h5dumpgentest.chkexe delete mode 100644 build/tools/h5dump/h5dumpgentest.chklog delete mode 100644 build/tools/h5dump/h5dumpgentest.o delete mode 100644 build/tools/h5dump/libdynlibdump.la delete mode 100644 build/tools/h5dump/packedbits.h5 delete mode 100644 build/tools/h5dump/taindices.h5 delete mode 100644 build/tools/h5dump/tall.h5 delete mode 100644 build/tools/h5dump/tarray1.h5 delete mode 100644 build/tools/h5dump/tarray1_big.h5 delete mode 100644 build/tools/h5dump/tarray2.h5 delete mode 100644 build/tools/h5dump/tarray3.h5 delete mode 100644 build/tools/h5dump/tarray4.h5 delete mode 100644 build/tools/h5dump/tarray5.h5 delete mode 100644 build/tools/h5dump/tarray6.h5 delete mode 100644 build/tools/h5dump/tarray7.h5 delete mode 100644 build/tools/h5dump/tarray8.h5 delete mode 100644 build/tools/h5dump/tattr.h5 delete mode 100644 build/tools/h5dump/tattr2.h5 delete mode 100644 build/tools/h5dump/tattrintsize.h5 delete mode 100644 build/tools/h5dump/tbigdims.h5 delete mode 100644 build/tools/h5dump/tbinary.h5 delete mode 100644 build/tools/h5dump/tbitfields.h5 delete mode 100644 build/tools/h5dump/tbitnopaque.h5 delete mode 100644 build/tools/h5dump/tchar.h5 delete mode 100644 build/tools/h5dump/tcmpdattrintsize.h5 delete mode 100644 build/tools/h5dump/tcmpdintarray.h5 delete mode 100644 build/tools/h5dump/tcmpdints.h5 delete mode 100644 build/tools/h5dump/tcmpdintsize.h5 delete mode 100644 build/tools/h5dump/tcompound.h5 delete mode 100644 build/tools/h5dump/tcompound2.h5 delete mode 100644 build/tools/h5dump/tcompound_complex.h5 delete mode 100644 build/tools/h5dump/tcompound_complex2.h5 delete mode 100644 build/tools/h5dump/tdatareg.h5 delete mode 100644 build/tools/h5dump/tdset.h5 delete mode 100644 build/tools/h5dump/tdset2.h5 delete mode 100644 build/tools/h5dump/tempty.h5 delete mode 100644 build/tools/h5dump/tenum.h5 delete mode 100644 build/tools/h5dump/testh5dump.sh delete mode 100644 build/tools/h5dump/testh5dump.sh.chkexe delete mode 100644 build/tools/h5dump/testh5dump.sh.chklog delete mode 100644 build/tools/h5dump/testh5dumppbits.sh delete mode 100644 build/tools/h5dump/testh5dumppbits.sh.chkexe delete mode 100644 build/tools/h5dump/testh5dumppbits.sh.chklog delete mode 100644 build/tools/h5dump/testh5dumpxml.sh delete mode 100644 build/tools/h5dump/testh5dumpxml.sh.chkexe delete mode 100644 build/tools/h5dump/testh5dumpxml.sh.chklog delete mode 100644 build/tools/h5dump/textlink.h5 delete mode 100644 build/tools/h5dump/textlinkfar.h5 delete mode 100644 build/tools/h5dump/textlinksrc.h5 delete mode 100644 build/tools/h5dump/textlinktar.h5 delete mode 100644 build/tools/h5dump/tfamily00000.h5 delete mode 100644 build/tools/h5dump/tfamily00001.h5 delete mode 100644 build/tools/h5dump/tfamily00002.h5 delete mode 100644 build/tools/h5dump/tfamily00003.h5 delete mode 100644 build/tools/h5dump/tfamily00004.h5 delete mode 100644 build/tools/h5dump/tfamily00005.h5 delete mode 100644 build/tools/h5dump/tfamily00006.h5 delete mode 100644 build/tools/h5dump/tfamily00007.h5 delete mode 100644 build/tools/h5dump/tfamily00008.h5 delete mode 100644 build/tools/h5dump/tfamily00009.h5 delete mode 100644 build/tools/h5dump/tfamily00010.h5 delete mode 100644 build/tools/h5dump/tfamily00011.h5 delete mode 100644 build/tools/h5dump/tfamily00012.h5 delete mode 100644 build/tools/h5dump/tfamily00013.h5 delete mode 100644 build/tools/h5dump/tfamily00014.h5 delete mode 100644 build/tools/h5dump/tfamily00015.h5 delete mode 100644 build/tools/h5dump/tfamily00016.h5 delete mode 100644 build/tools/h5dump/tfcontents1.h5 delete mode 100644 build/tools/h5dump/tfcontents2.h5 delete mode 100644 build/tools/h5dump/tfilters.h5 delete mode 100644 build/tools/h5dump/tfpformat.h5 delete mode 100644 build/tools/h5dump/tfvalues.h5 delete mode 100644 build/tools/h5dump/tgroup.h5 delete mode 100644 build/tools/h5dump/tgrp_comments.h5 delete mode 100644 build/tools/h5dump/tgrpnullspace.h5 delete mode 100644 build/tools/h5dump/thlink.h5 delete mode 100644 build/tools/h5dump/thyperslab.h5 delete mode 100644 build/tools/h5dump/tints4dims.h5 delete mode 100644 build/tools/h5dump/tintsattrs.h5 delete mode 100644 build/tools/h5dump/tlarge_objname.h5 delete mode 100644 build/tools/h5dump/tldouble.h5 delete mode 100644 build/tools/h5dump/tlonglinks.h5 delete mode 100644 build/tools/h5dump/tloop.h5 delete mode 100644 build/tools/h5dump/tloop2.h5 delete mode 100644 build/tools/h5dump/tmany.h5 delete mode 100644 build/tools/h5dump/tmulti-b.h5 delete mode 100644 build/tools/h5dump/tmulti-g.h5 delete mode 100644 build/tools/h5dump/tmulti-l.h5 delete mode 100644 build/tools/h5dump/tmulti-o.h5 delete mode 100644 build/tools/h5dump/tmulti-r.h5 delete mode 100644 build/tools/h5dump/tmulti-s.h5 delete mode 100644 build/tools/h5dump/tnamed_dtype_attr.h5 delete mode 100644 build/tools/h5dump/tnestedcmpddt.h5 delete mode 100644 build/tools/h5dump/tnestedcomp.h5 delete mode 100644 build/tools/h5dump/tnullspace.h5 delete mode 100644 build/tools/h5dump/tobjref.h5 delete mode 100644 build/tools/h5dump/topaque.h5 delete mode 100644 build/tools/h5dump/torderattr.h5 delete mode 100644 build/tools/h5dump/tordergr.h5 delete mode 100644 build/tools/h5dump/tscalarattrintsize.h5 delete mode 100644 build/tools/h5dump/tscalarintattrsize.h5 delete mode 100644 build/tools/h5dump/tscalarintsize.h5 delete mode 100644 build/tools/h5dump/tscalarstring.h5 delete mode 100644 build/tools/h5dump/tslink.h5 delete mode 100644 build/tools/h5dump/tsoftlinks.h5 delete mode 100644 build/tools/h5dump/tsplit_file-m.h5 delete mode 100644 build/tools/h5dump/tsplit_file-r.h5 delete mode 100644 build/tools/h5dump/tstr.h5 delete mode 100644 build/tools/h5dump/tstr2.h5 delete mode 100644 build/tools/h5dump/tstr3.h5 delete mode 100644 build/tools/h5dump/tudfilter.h5 delete mode 100644 build/tools/h5dump/tudlink.h5 delete mode 100644 build/tools/h5dump/tvldtypes1.h5 delete mode 100644 build/tools/h5dump/tvldtypes2.h5 delete mode 100644 build/tools/h5dump/tvldtypes3.h5 delete mode 100644 build/tools/h5dump/tvldtypes4.h5 delete mode 100644 build/tools/h5dump/tvldtypes5.h5 delete mode 100644 build/tools/h5dump/tvlenstr_array.h5 delete mode 100644 build/tools/h5dump/tvlstr.h5 delete mode 100644 build/tools/h5dump/zerodim.h5 delete mode 100644 build/tools/h5import/.deps/h5import.Po delete mode 100644 build/tools/h5import/.deps/h5importtest.Po delete mode 100755 build/tools/h5import/.libs/h5import delete mode 100755 build/tools/h5import/.libs/h5importtest delete mode 100755 build/tools/h5import/.libs/lt-h5import delete mode 100755 build/tools/h5import/.libs/lt-h5importtest delete mode 100644 build/tools/h5import/Makefile delete mode 100755 build/tools/h5import/h5import delete mode 100644 build/tools/h5import/h5import.o delete mode 100755 build/tools/h5import/h5importtest delete mode 100644 build/tools/h5import/h5importtest.chkexe delete mode 100644 build/tools/h5import/h5importtest.chklog delete mode 100644 build/tools/h5import/h5importtest.o delete mode 100644 build/tools/h5import/h5importtestutil.sh delete mode 100644 build/tools/h5import/h5importtestutil.sh.chkexe delete mode 100644 build/tools/h5import/h5importtestutil.sh.chklog delete mode 100644 build/tools/h5jam/.deps/getub.Po delete mode 100644 build/tools/h5jam/.deps/h5jam.Po delete mode 100644 build/tools/h5jam/.deps/h5jamgentest.Po delete mode 100644 build/tools/h5jam/.deps/h5unjam.Po delete mode 100644 build/tools/h5jam/.deps/tellub.Po delete mode 100755 build/tools/h5jam/.libs/getub delete mode 100755 build/tools/h5jam/.libs/h5jam delete mode 100755 build/tools/h5jam/.libs/h5jamgentest delete mode 100755 build/tools/h5jam/.libs/h5unjam delete mode 100755 build/tools/h5jam/.libs/lt-getub delete mode 100755 build/tools/h5jam/.libs/lt-h5jam delete mode 100755 build/tools/h5jam/.libs/lt-h5unjam delete mode 100755 build/tools/h5jam/.libs/lt-tellub delete mode 100755 build/tools/h5jam/.libs/tellub delete mode 100644 build/tools/h5jam/Makefile delete mode 100755 build/tools/h5jam/getub delete mode 100644 build/tools/h5jam/getub.o delete mode 100755 build/tools/h5jam/h5jam delete mode 100644 build/tools/h5jam/h5jam.o delete mode 100755 build/tools/h5jam/h5jamgentest delete mode 100644 build/tools/h5jam/h5jamgentest.o delete mode 100755 build/tools/h5jam/h5unjam delete mode 100644 build/tools/h5jam/h5unjam.o delete mode 100755 build/tools/h5jam/tellub delete mode 100644 build/tools/h5jam/tellub.o delete mode 100644 build/tools/h5jam/testh5jam.sh delete mode 100644 build/tools/h5jam/testh5jam.sh.chkexe delete mode 100644 build/tools/h5jam/testh5jam.sh.chklog delete mode 100644 build/tools/h5ls/.deps/dynlib_ls.Plo delete mode 100644 build/tools/h5ls/.deps/h5ls.Po delete mode 100644 build/tools/h5ls/.libs/dynlib_ls.o delete mode 100755 build/tools/h5ls/.libs/h5ls delete mode 120000 build/tools/h5ls/.libs/libdynlibls.la delete mode 100644 build/tools/h5ls/.libs/libdynlibls.lai delete mode 100755 build/tools/h5ls/.libs/libdynlibls.so delete mode 100755 build/tools/h5ls/.libs/lt-h5ls delete mode 100644 build/tools/h5ls/Makefile delete mode 100644 build/tools/h5ls/dynlib_ls.lo delete mode 100644 build/tools/h5ls/dynlib_ls.o delete mode 100755 build/tools/h5ls/h5ls delete mode 100644 build/tools/h5ls/h5ls.o delete mode 100644 build/tools/h5ls/h5ls_plugin.sh delete mode 100644 build/tools/h5ls/h5ls_plugin.sh.chkexe delete mode 100644 build/tools/h5ls/h5ls_plugin.sh.chklog delete mode 100644 build/tools/h5ls/libdynlibls.la delete mode 100644 build/tools/h5ls/testh5ls.sh delete mode 100644 build/tools/h5ls/testh5ls.sh.chkexe delete mode 100644 build/tools/h5ls/testh5ls.sh.chklog delete mode 100644 build/tools/h5repack/.deps/dynlib_rpk.Plo delete mode 100644 build/tools/h5repack/.deps/dynlib_vrpk.Plo delete mode 100644 build/tools/h5repack/.deps/h5repack.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_copy.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_filters.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_main.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_opttable.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_parse.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_refs.Po delete mode 100644 build/tools/h5repack/.deps/h5repack_verify.Po delete mode 100644 build/tools/h5repack/.deps/h5repacktst.Po delete mode 100644 build/tools/h5repack/.deps/testh5repack_detect_szip.Po delete mode 100644 build/tools/h5repack/.libs/dynlib_rpk.o delete mode 100644 build/tools/h5repack/.libs/dynlib_vrpk.o delete mode 100755 build/tools/h5repack/.libs/h5repack delete mode 100755 build/tools/h5repack/.libs/h5repacktst delete mode 120000 build/tools/h5repack/.libs/libdynlibadd.la delete mode 100644 build/tools/h5repack/.libs/libdynlibadd.lai delete mode 100755 build/tools/h5repack/.libs/libdynlibadd.so delete mode 120000 build/tools/h5repack/.libs/libdynlibvers.la delete mode 100644 build/tools/h5repack/.libs/libdynlibvers.lai delete mode 100755 build/tools/h5repack/.libs/libdynlibvers.so delete mode 100755 build/tools/h5repack/.libs/lt-h5repack delete mode 100755 build/tools/h5repack/.libs/lt-h5repacktst delete mode 100755 build/tools/h5repack/.libs/testh5repack_detect_szip delete mode 100644 build/tools/h5repack/Makefile delete mode 100644 build/tools/h5repack/dynlib_rpk.lo delete mode 100644 build/tools/h5repack/dynlib_rpk.o delete mode 100644 build/tools/h5repack/dynlib_vrpk.lo delete mode 100644 build/tools/h5repack/dynlib_vrpk.o delete mode 100755 build/tools/h5repack/h5repack delete mode 100644 build/tools/h5repack/h5repack.o delete mode 100644 build/tools/h5repack/h5repack.sh delete mode 100644 build/tools/h5repack/h5repack.sh.chkexe delete mode 100644 build/tools/h5repack/h5repack.sh.chklog delete mode 100644 build/tools/h5repack/h5repack_attr.h5 delete mode 100644 build/tools/h5repack/h5repack_attr_out.h5 delete mode 100644 build/tools/h5repack/h5repack_attr_refs.h5 delete mode 100644 build/tools/h5repack/h5repack_big.h5 delete mode 100644 build/tools/h5repack/h5repack_copy.o delete mode 100644 build/tools/h5repack/h5repack_deflate.h5 delete mode 100644 build/tools/h5repack/h5repack_deflate_out.h5 delete mode 100644 build/tools/h5repack/h5repack_early.h5 delete mode 100644 build/tools/h5repack/h5repack_early2.h5 delete mode 100644 build/tools/h5repack/h5repack_early_out.h5 delete mode 100644 build/tools/h5repack/h5repack_ext.bin delete mode 100644 build/tools/h5repack/h5repack_ext.h5 delete mode 100644 build/tools/h5repack/h5repack_ext_out.h5 delete mode 100644 build/tools/h5repack/h5repack_fill.h5 delete mode 100644 build/tools/h5repack/h5repack_fill_out.h5 delete mode 100644 build/tools/h5repack/h5repack_filters.h5 delete mode 100644 build/tools/h5repack/h5repack_filters.o delete mode 100644 build/tools/h5repack/h5repack_filters_out.h5 delete mode 100644 build/tools/h5repack/h5repack_fletcher.h5 delete mode 100644 build/tools/h5repack/h5repack_fletcher_out.h5 delete mode 100644 build/tools/h5repack/h5repack_hlink.h5 delete mode 100644 build/tools/h5repack/h5repack_hlink_out.h5 delete mode 100644 build/tools/h5repack/h5repack_layout.h5 delete mode 100644 build/tools/h5repack/h5repack_layout2.h5 delete mode 100644 build/tools/h5repack/h5repack_layout3.h5 delete mode 100644 build/tools/h5repack/h5repack_layout_out.h5 delete mode 100644 build/tools/h5repack/h5repack_main.o delete mode 100644 build/tools/h5repack/h5repack_named_dtypes.h5 delete mode 100644 build/tools/h5repack/h5repack_named_dtypes_out.h5 delete mode 100644 build/tools/h5repack/h5repack_nbit.h5 delete mode 100644 build/tools/h5repack/h5repack_nbit_out.h5 delete mode 100644 build/tools/h5repack/h5repack_objs.h5 delete mode 100644 build/tools/h5repack/h5repack_objs_out.h5 delete mode 100644 build/tools/h5repack/h5repack_opttable.o delete mode 100644 build/tools/h5repack/h5repack_parse.o delete mode 100644 build/tools/h5repack/h5repack_plugin.sh delete mode 100644 build/tools/h5repack/h5repack_plugin.sh.chkexe delete mode 100644 build/tools/h5repack/h5repack_plugin.sh.chklog delete mode 100644 build/tools/h5repack/h5repack_refs.h5 delete mode 100644 build/tools/h5repack/h5repack_refs.o delete mode 100644 build/tools/h5repack/h5repack_shuffle.h5 delete mode 100644 build/tools/h5repack/h5repack_shuffle_out.h5 delete mode 100644 build/tools/h5repack/h5repack_soffset.h5 delete mode 100644 build/tools/h5repack/h5repack_soffset_out.h5 delete mode 100644 build/tools/h5repack/h5repack_ub.h5 delete mode 100644 build/tools/h5repack/h5repack_ub_out.h5 delete mode 100644 build/tools/h5repack/h5repack_verify.o delete mode 100755 build/tools/h5repack/h5repacktst delete mode 100644 build/tools/h5repack/h5repacktst.chkexe delete mode 100644 build/tools/h5repack/h5repacktst.chklog delete mode 100644 build/tools/h5repack/h5repacktst.o delete mode 100644 build/tools/h5repack/libdynlibadd.la delete mode 100644 build/tools/h5repack/libdynlibvers.la delete mode 100755 build/tools/h5repack/testh5repack_detect_szip delete mode 100644 build/tools/h5repack/testh5repack_detect_szip.o delete mode 100644 build/tools/h5repack/ublock.bin delete mode 100644 build/tools/h5stat/.deps/h5stat.Po delete mode 100644 build/tools/h5stat/.deps/h5stat_gentest.Po delete mode 100755 build/tools/h5stat/.libs/h5stat delete mode 100755 build/tools/h5stat/.libs/h5stat_gentest delete mode 100755 build/tools/h5stat/.libs/lt-h5stat delete mode 100755 build/tools/h5stat/.libs/lt-h5stat_gentest delete mode 100644 build/tools/h5stat/Makefile delete mode 100755 build/tools/h5stat/h5stat delete mode 100644 build/tools/h5stat/h5stat.o delete mode 100755 build/tools/h5stat/h5stat_gentest delete mode 100644 build/tools/h5stat/h5stat_gentest.chkexe delete mode 100644 build/tools/h5stat/h5stat_gentest.chklog delete mode 100644 build/tools/h5stat/h5stat_gentest.o delete mode 100644 build/tools/h5stat/h5stat_newgrat.h5 delete mode 100644 build/tools/h5stat/h5stat_threshold.h5 delete mode 100644 build/tools/h5stat/testh5stat.sh delete mode 100644 build/tools/h5stat/testh5stat.sh.chkexe delete mode 100644 build/tools/h5stat/testh5stat.sh.chklog delete mode 100644 build/tools/lib/.deps/h5diff.Plo delete mode 100644 build/tools/lib/.deps/h5diff_array.Plo delete mode 100644 build/tools/lib/.deps/h5diff_attr.Plo delete mode 100644 build/tools/lib/.deps/h5diff_dset.Plo delete mode 100644 build/tools/lib/.deps/h5diff_util.Plo delete mode 100644 build/tools/lib/.deps/h5tools.Plo delete mode 100644 build/tools/lib/.deps/h5tools_dump.Plo delete mode 100644 build/tools/lib/.deps/h5tools_filters.Plo delete mode 100644 build/tools/lib/.deps/h5tools_ref.Plo delete mode 100644 build/tools/lib/.deps/h5tools_str.Plo delete mode 100644 build/tools/lib/.deps/h5tools_type.Plo delete mode 100644 build/tools/lib/.deps/h5tools_utils.Plo delete mode 100644 build/tools/lib/.deps/h5trav.Plo delete mode 100644 build/tools/lib/.deps/io_timer.Plo delete mode 100644 build/tools/lib/.libs/h5diff.o delete mode 100644 build/tools/lib/.libs/h5diff_array.o delete mode 100644 build/tools/lib/.libs/h5diff_attr.o delete mode 100644 build/tools/lib/.libs/h5diff_dset.o delete mode 100644 build/tools/lib/.libs/h5diff_util.o delete mode 100644 build/tools/lib/.libs/h5tools.o delete mode 100644 build/tools/lib/.libs/h5tools_dump.o delete mode 100644 build/tools/lib/.libs/h5tools_filters.o delete mode 100644 build/tools/lib/.libs/h5tools_ref.o delete mode 100644 build/tools/lib/.libs/h5tools_str.o delete mode 100644 build/tools/lib/.libs/h5tools_type.o delete mode 100644 build/tools/lib/.libs/h5tools_utils.o delete mode 100644 build/tools/lib/.libs/h5trav.o delete mode 100644 build/tools/lib/.libs/io_timer.o delete mode 100644 build/tools/lib/.libs/libh5tools.a delete mode 120000 build/tools/lib/.libs/libh5tools.la delete mode 100644 build/tools/lib/Makefile delete mode 100644 build/tools/lib/h5diff.lo delete mode 100644 build/tools/lib/h5diff.o delete mode 100644 build/tools/lib/h5diff_array.lo delete mode 100644 build/tools/lib/h5diff_array.o delete mode 100644 build/tools/lib/h5diff_attr.lo delete mode 100644 build/tools/lib/h5diff_attr.o delete mode 100644 build/tools/lib/h5diff_dset.lo delete mode 100644 build/tools/lib/h5diff_dset.o delete mode 100644 build/tools/lib/h5diff_util.lo delete mode 100644 build/tools/lib/h5diff_util.o delete mode 100644 build/tools/lib/h5tools.lo delete mode 100644 build/tools/lib/h5tools.o delete mode 100644 build/tools/lib/h5tools_dump.lo delete mode 100644 build/tools/lib/h5tools_dump.o delete mode 100644 build/tools/lib/h5tools_filters.lo delete mode 100644 build/tools/lib/h5tools_filters.o delete mode 100644 build/tools/lib/h5tools_ref.lo delete mode 100644 build/tools/lib/h5tools_ref.o delete mode 100644 build/tools/lib/h5tools_str.lo delete mode 100644 build/tools/lib/h5tools_str.o delete mode 100644 build/tools/lib/h5tools_type.lo delete mode 100644 build/tools/lib/h5tools_type.o delete mode 100644 build/tools/lib/h5tools_utils.lo delete mode 100644 build/tools/lib/h5tools_utils.o delete mode 100644 build/tools/lib/h5trav.lo delete mode 100644 build/tools/lib/h5trav.o delete mode 100644 build/tools/lib/io_timer.lo delete mode 100644 build/tools/lib/io_timer.o delete mode 100644 build/tools/lib/libh5tools.la delete mode 100644 build/tools/misc/.deps/h5debug.Po delete mode 100644 build/tools/misc/.deps/h5mkgrp.Po delete mode 100644 build/tools/misc/.deps/h5repart.Po delete mode 100644 build/tools/misc/.deps/h5repart_gentest.Po delete mode 100644 build/tools/misc/.deps/repart_test.Po delete mode 100644 build/tools/misc/.deps/talign.Po delete mode 100755 build/tools/misc/.libs/h5debug delete mode 100755 build/tools/misc/.libs/h5mkgrp delete mode 100755 build/tools/misc/.libs/h5repart delete mode 100755 build/tools/misc/.libs/h5repart_gentest delete mode 100755 build/tools/misc/.libs/lt-h5mkgrp delete mode 100755 build/tools/misc/.libs/lt-h5repart delete mode 100755 build/tools/misc/.libs/lt-h5repart_gentest delete mode 100755 build/tools/misc/.libs/lt-repart_test delete mode 100755 build/tools/misc/.libs/lt-talign delete mode 100755 build/tools/misc/.libs/repart_test delete mode 100755 build/tools/misc/.libs/talign delete mode 100644 build/tools/misc/Makefile delete mode 100644 build/tools/misc/family_file00000.h5 delete mode 100644 build/tools/misc/family_file00001.h5 delete mode 100644 build/tools/misc/family_file00002.h5 delete mode 100644 build/tools/misc/family_file00003.h5 delete mode 100644 build/tools/misc/family_file00004.h5 delete mode 100644 build/tools/misc/family_file00005.h5 delete mode 100644 build/tools/misc/family_file00006.h5 delete mode 100644 build/tools/misc/family_file00007.h5 delete mode 100644 build/tools/misc/family_file00008.h5 delete mode 100644 build/tools/misc/family_file00009.h5 delete mode 100644 build/tools/misc/family_file00010.h5 delete mode 100644 build/tools/misc/family_file00011.h5 delete mode 100644 build/tools/misc/family_file00012.h5 delete mode 100644 build/tools/misc/family_file00013.h5 delete mode 100644 build/tools/misc/family_file00014.h5 delete mode 100644 build/tools/misc/family_file00015.h5 delete mode 100644 build/tools/misc/family_file00016.h5 delete mode 100644 build/tools/misc/family_file00017.h5 delete mode 100644 build/tools/misc/family_file00018.h5 delete mode 100755 build/tools/misc/h5cc delete mode 100755 build/tools/misc/h5debug delete mode 100644 build/tools/misc/h5debug.o delete mode 100755 build/tools/misc/h5mkgrp delete mode 100644 build/tools/misc/h5mkgrp.o delete mode 100644 build/tools/misc/h5redeploy delete mode 100755 build/tools/misc/h5repart delete mode 100644 build/tools/misc/h5repart.o delete mode 100755 build/tools/misc/h5repart_gentest delete mode 100644 build/tools/misc/h5repart_gentest.chkexe delete mode 100644 build/tools/misc/h5repart_gentest.chklog delete mode 100644 build/tools/misc/h5repart_gentest.o delete mode 100755 build/tools/misc/repart_test delete mode 100644 build/tools/misc/repart_test.o delete mode 100755 build/tools/misc/talign delete mode 100644 build/tools/misc/talign.chkexe delete mode 100644 build/tools/misc/talign.chklog delete mode 100644 build/tools/misc/talign.o delete mode 100644 build/tools/misc/testh5mkgrp.sh delete mode 100644 build/tools/misc/testh5mkgrp.sh.chkexe delete mode 100644 build/tools/misc/testh5mkgrp.sh.chklog delete mode 100644 build/tools/misc/testh5repart.sh delete mode 100644 build/tools/misc/testh5repart.sh.chkexe delete mode 100644 build/tools/misc/testh5repart.sh.chklog delete mode 100644 build/tools/perform/.deps/chunk.Po delete mode 100644 build/tools/perform/.deps/iopipe.Po delete mode 100644 build/tools/perform/.deps/overhead.Po delete mode 100644 build/tools/perform/.deps/perf.Po delete mode 100644 build/tools/perform/.deps/perf_meta.Po delete mode 100644 build/tools/perform/.deps/pio_engine.Po delete mode 100644 build/tools/perform/.deps/pio_perf.Po delete mode 100644 build/tools/perform/.deps/sio_engine.Po delete mode 100644 build/tools/perform/.deps/sio_perf.Po delete mode 100644 build/tools/perform/.deps/zip_perf.Po delete mode 100755 build/tools/perform/.libs/chunk delete mode 100755 build/tools/perform/.libs/h5perf_serial delete mode 100755 build/tools/perform/.libs/iopipe delete mode 100755 build/tools/perform/.libs/lt-chunk delete mode 100755 build/tools/perform/.libs/lt-h5perf_serial delete mode 100755 build/tools/perform/.libs/lt-iopipe delete mode 100755 build/tools/perform/.libs/lt-overhead delete mode 100755 build/tools/perform/.libs/lt-perf_meta delete mode 100755 build/tools/perform/.libs/lt-zip_perf delete mode 100755 build/tools/perform/.libs/overhead delete mode 100755 build/tools/perform/.libs/perf delete mode 100755 build/tools/perform/.libs/perf_meta delete mode 100755 build/tools/perform/.libs/zip_perf delete mode 100644 build/tools/perform/Makefile delete mode 100755 build/tools/perform/chunk delete mode 100644 build/tools/perform/chunk.chkexe delete mode 100644 build/tools/perform/chunk.chklog delete mode 100644 build/tools/perform/chunk.h5 delete mode 100644 build/tools/perform/chunk.o delete mode 100755 build/tools/perform/h5perf_serial delete mode 100644 build/tools/perform/h5perf_serial.chkexe delete mode 100644 build/tools/perform/h5perf_serial.chklog delete mode 100755 build/tools/perform/iopipe delete mode 100644 build/tools/perform/iopipe.chkexe delete mode 100644 build/tools/perform/iopipe.chklog delete mode 100644 build/tools/perform/iopipe.h5 delete mode 100644 build/tools/perform/iopipe.o delete mode 100644 build/tools/perform/iopipe.raw delete mode 100755 build/tools/perform/overhead delete mode 100644 build/tools/perform/overhead.chkexe delete mode 100644 build/tools/perform/overhead.chklog delete mode 100644 build/tools/perform/overhead.o delete mode 100755 build/tools/perform/perf delete mode 100644 build/tools/perform/perf.o delete mode 100755 build/tools/perform/perf_meta delete mode 100644 build/tools/perform/perf_meta.chkexe delete mode 100644 build/tools/perform/perf_meta.chklog delete mode 100644 build/tools/perform/perf_meta.o delete mode 100644 build/tools/perform/sio_engine.o delete mode 100644 build/tools/perform/sio_perf.o delete mode 100644 build/tools/perform/x-diag-rd.dat delete mode 100644 build/tools/perform/x-diag-wr.dat delete mode 100644 build/tools/perform/x-gnuplot delete mode 100644 build/tools/perform/x-rowmaj-rd.dat delete mode 100644 build/tools/perform/x-rowmaj-wr.dat delete mode 100755 build/tools/perform/zip_perf delete mode 100644 build/tools/perform/zip_perf.chkexe delete mode 100644 build/tools/perform/zip_perf.chklog delete mode 100644 build/tools/perform/zip_perf.o diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index f856449..0000000 --- a/build/Makefile +++ /dev/null @@ -1,1126 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# This makefile mostly just reinvokes make in the various subdirectories -# but does so in the correct order. You can alternatively invoke make from -# each subdirectory manually. -# -# Top-level HDF5 Makefile(.in) - -# pmake has issues if variables are undefined. Solve this problem in -# top-level Makefile by defining .MAKEFLAGS target to -V before pmake can -# encounter any undefined variables. -# Automake resists putting anything but variable definitions first in -# a Makefile.in, so we'll put a placebo comment here and use sed in -# bin/reconfigure to turn it into the .MAKEFLAGS target. Sigh. -JL 2005 -# Configure should set AM_MAKEFLAGS to -V to solve this problem in -# subdirectories. -# NOTE: This means that invoking pmake in a subdirectory will not work. -.MAKEFLAGS: - $(MAKE) all - -VPATH = .. -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -subdir = . -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ - $(am__configure_deps) $(am__DIST_COMMON) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir dist dist-all distcheck -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -CSCOPE = cscope -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/compile \ - $(top_srcdir)/bin/config.guess $(top_srcdir)/bin/config.sub \ - $(top_srcdir)/bin/install-sh $(top_srcdir)/bin/ltmain.sh \ - $(top_srcdir)/bin/missing $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/config/commence.am COPYING bin/COPYING \ - bin/compile bin/config.guess bin/config.sub bin/depcomp \ - bin/install-sh bin/ltmain.sh bin/missing bin/mkinstalldirs -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - if test -d "$(distdir)"; then \ - find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -rf "$(distdir)" \ - || { sleep 5 && rm -rf "$(distdir)"; }; \ - else :; fi -am__post_remove_distdir = $(am__remove_distdir) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -DIST_ARCHIVES = $(distdir).tar.gz -GZIP_ENV = --best -DIST_TARGETS = dist-gzip -distuninstallcheck_listfiles = find . -type f -print -am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ - | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' -distcleancheck_listfiles = find . -type f -print -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = .. -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = -top_builddir = . -top_srcdir = .. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. - -# Some files/directories generated during check that should be cleaned -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *-tmp -TESTPARALLEL_DIR = - -# Define subdirectories to build. -# Add this directory to SUBDIRS so that examples get built after tools -# but before examples in extra interfaces (c++ and fortran). -# Since we're explicitly listing DIST_SUBDIRS, we also need to list -# directories that are only conditionally built (so that their Makefiles -# are cleaned as well). -# Note that `make clean' will not affect the examples or doc directories. - -# Conditionals. These conditionals are defined during configure -# Define each variable to empty if it is not used to placate pmake -#TESTPARALLEL_DIR = testpar -CXX_DIR = -#CXX_DIR = c++ -FORTRAN_DIR = -#FORTRAN_DIR = fortran -#HDF5_HL_DIR = -HDF5_HL_DIR = hl -SUBDIRS = src test $(TESTPARALLEL_DIR) tools . $(CXX_DIR) $(FORTRAN_DIR) \ - $(HDF5_HL_DIR) - -DIST_SUBDIRS = src test testpar tools . c++ fortran hl examples - -# Some files generated during configure that should be cleaned -DISTCLEANFILES = config/stamp1 config/stamp2 -all: all-recursive - -.SUFFIXES: -am--refresh: Makefile - @: -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(am__empty): - -$(top_srcdir)/configure: # $(am__configure_deps) - $(am__cd) $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool config.lt - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscope: cscope.files - test ! -s cscope.files \ - || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) -clean-cscope: - -rm -f cscope.files -cscope.files: clean-cscope cscopelist -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -rm -f cscope.out cscope.in.out cscope.po.out cscope.files - -distdir: $(DISTFILES) - $(am__remove_distdir) - test -d "$(distdir)" || mkdir "$(distdir)" - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done - -test -n "$(am__skip_mode_fix)" \ - || find "$(distdir)" -type d ! -perm -755 \ - -exec chmod u+rwx,go+rx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r "$(distdir)" -dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__post_remove_distdir) - -dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 - $(am__post_remove_distdir) - -dist-lzip: distdir - tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz - $(am__post_remove_distdir) - -dist-xz: distdir - tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz - $(am__post_remove_distdir) - -dist-tarZ: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 - @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z - $(am__post_remove_distdir) - -dist-shar: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 - @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz - $(am__post_remove_distdir) - -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__post_remove_distdir) - -dist dist-all: - $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' - $(am__post_remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ - *.tar.bz2*) \ - bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.lz*) \ - lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ - *.tar.xz*) \ - xz -dc $(distdir).tar.xz | $(am__untar) ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ - *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - esac - chmod -R a-w $(distdir) - chmod u+w $(distdir) - mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst - chmod a-w $(distdir) - test -d $(distdir)/_build || exit 0; \ - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && am__cwd=`pwd` \ - && $(am__cd) $(distdir)/_build/sub \ - && ../../configure \ - $(AM_DISTCHECK_CONFIGURE_FLAGS) \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - --srcdir=../.. --prefix="$$dc_install_base" \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ - && cd "$$am__cwd" \ - || exit 1 - $(am__post_remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' -distuninstallcheck: - @test -n '$(distuninstallcheck_dir)' || { \ - echo 'ERROR: trying to run $@ with an empty' \ - '$$(distuninstallcheck_dir)' >&2; \ - exit 1; \ - }; \ - $(am__cd) '$(distuninstallcheck_dir)' || { \ - echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ - exit 1; \ - }; \ - test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left after uninstall:" ; \ - if test -n "$(DESTDIR)"; then \ - echo " (check DESTDIR support)"; \ - fi ; \ - $(distuninstallcheck_listfiles) ; \ - exit 1; } >&2 -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install-exec: install-exec-recursive -install-data: install-data-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-libtool \ - distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ - am--refresh check check-am clean clean-cscope clean-generic \ - clean-libtool cscope cscopelist-am ctags ctags-am dist \ - dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ - dist-xz dist-zip distcheck distclean distclean-generic \ - distclean-libtool distclean-tags distcleancheck distdir \ - distuninstallcheck dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installcheck-local \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \ - tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Define rules for lib, progs, check, and tests. -# These simply involve recursing into subdirectories. -test _test: check - -lib progs check-p check-s: - for d in $(SUBDIRS); do \ - if test $$d != .; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Make all, tests, and (un)install -tests: - for d in $(SUBDIRS); do \ - if test $$d != .; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Check-clean also recurses into examples directory -check-clean: - for d in $(SUBDIRS) examples; do \ - if test $$d != .; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - $(RM) -rf prefix-tmp destdir-tmp - -# Some C++ compilers/linkers will create a directory named ii_files in -# the root directory, which should be cleaned. -mostlyclean-local: - if test -d ii_files; then \ - $(RM) -rf ii_files; \ - fi - -# 'make install' will now install examples, the same as 'make install-all'. -# 'make-install-all' will be redundant but will still work. -install: install-recursive install-examples -uninstall: uninstall-recursive uninstall-examples - -# 'make install-all' also installs examples -install-all: - @$(MAKE) $(AM_MAKEFLAGS) install -uninstall-all: - @$(MAKE) $(AM_MAKEFLAGS) uninstall - -# Install examples in this directory and recursively -install-examples uninstall-examples: - for d in examples $(HDF5_INTERFACES) $(HL); do \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - done - -# Placeholder to remind users that docs are now in a separate repository. -install-doc: - @echo "docs no longer live in this tree. Use install-examples to install examples." - -uninstall-doc: - @echo "docs no longer live in this tree. Use install-examples to install examples." - -# `make check-install' or `make installcheck' checks that examples can -# be successfully built -installcheck-local: - if test -n "${DESTDIR}"; then \ - (cd ${DESTDIR}$(bindir) && pwd && ./h5redeploy -force); \ - fi - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# check-install is just a synonym for installcheck -check-install: installcheck - -# check-all-install tests all installation methods. -# Install via different mechanism and then compare against the default. -# Fine if only libXXX.a files are different since they may have been ranlib'ed. -check-all-install: - @echo Installing to default location - $(MAKE) install - @echo Installing to different prefix location - $(MAKE) prefix=${ROOT}/prefix-tmp install - @echo Compare against the default installation. - @echo Fine if only libXXX.a files are different. - -diff -r prefix-tmp ${prefix} - @echo Installing to different $$\DESTDIR location - env DESTDIR=${ROOT}/destdir-tmp $(MAKE) install - @echo Compare against the default installation. - @echo Fine if only libXXX.a files are different. - -diff -r destdir-tmp${prefix} ${prefix} - -# Only source files in the src directory include tracing information, -# so 'make trace' only needs to recurse into that directory. -trace: - @(cd src && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Run tests with different Virtual File Drivers. -# Currently, only invoke check-vfd in the test directory. -check-vfd: - for d in src test; do \ - if test $$d != .; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Automake wants to make config.status depend on configure. This -# makes sense, but config.status can't always be regenerated -# properly, which can cause builds to fail. -# This is a problem for our Daily Tests, which need to be able to -# 'make distclean' reliably before running configure. -# The simple solution is to override the dependency Automake supplies -# for config.status so that it will never be regenerated. -$(top_builddir)/config.status: - -# Don't include conclude.am in root Makefile; tests target needs to -# recurse into reguar subdirs. - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/c++/Makefile b/build/c++/Makefile deleted file mode 100644 index 7b44ff4..0000000 --- a/build/c++/Makefile +++ /dev/null @@ -1,1413 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# c++/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# Top-level HDF5-C++ Makefile(.in) -# -VPATH = ../../c++ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = c++ -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++ -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++ -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../c++ -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = ../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 -#SUBDIRS = src test -DIST_SUBDIRS = src test examples - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign c++/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Install examples -install-examples uninstall-examples: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -installcheck-local: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Clean examples when check-clean is invoked -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS) examples; do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/c++/examples/Makefile b/build/c++/examples/Makefile deleted file mode 100644 index 446d520..0000000 --- a/build/c++/examples/Makefile +++ /dev/null @@ -1,1366 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# c++/examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Library Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../../c++/examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = $(TEST_SCRIPT) -subdir = c++/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-c++-ex.sh testh5c++.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-c++-ex.sh.in \ - $(srcdir)/testh5c++.sh.in $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../c++/examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 -INSTALL_SCRIPT_FILES = run-c++-ex.sh - -# These are the programs that 'make all' or 'make prog' will build and -# which 'make check' will run. List them in the order they should be run. -EXAMPLE_PROG = create readdata writedata compound extend_ds chunks h5group \ - h5tutr_cmprss h5tutr_crtatt h5tutr_crtdat h5tutr_crtgrpar \ - h5tutr_crtgrp h5tutr_crtgrpd h5tutr_extend h5tutr_rdwt \ - h5tutr_subset - -TEST_SCRIPT = testh5c++.sh -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# These are the example files to be installed -INSTALL_FILES = create.cpp readdata.cpp writedata.cpp compound.cpp \ - extend_ds.cpp chunks.cpp h5group.cpp \ - h5tutr_cmprss.cpp h5tutr_crtatt.cpp h5tutr_crtdat.cpp \ - h5tutr_crtgrpar.cpp h5tutr_crtgrp.cpp h5tutr_crtgrpd.cpp \ - h5tutr_extend.cpp h5tutr_rdwt.cpp h5tutr_subset.cpp - - -# Tell conclude.am that these are C++ tests. -CXX_API = yes - -# Where to install examples -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/c++ -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign c++/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-c++-ex.sh: $(top_builddir)/config.status $(srcdir)/run-c++-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -testh5c++.sh: $(top_builddir)/config.status $(srcdir)/testh5c++.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Some of the examples depend on files created by running other examples -readdata.chkexe_: create.chkexe_ -chunks.chkexe_: extend_ds.chkexe_ -h5tutr_rdwt.chkexe_: h5tutr_crtdat.chkexe -h5tutrcrtatt.chkexe_: h5tutr_crtdat.chkexe -h5tutr_crtgrpd.chkexe_: h5tutr_crtgrpar.chkexe - -# How to build programs using h5c++ -$(EXTRA_PROG): $(H5CPP) - $(H5CPP) $(H5CCFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp - -# List dependencies for each program. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C++ compiler, not h5c++. This is -# an inelegant way of solving the problem, unfortunately. -create: $(srcdir)/create.cpp -readdata: $(srcdir)/readdata.cpp -writedata: $(srcdir)/writedata.cpp -compound: $(srcdir)/compound.cpp -extend_ds: $(srcdir)/extend_ds.cpp -chunks: $(srcdir)/chunks.cpp -h5group: $(srcdir)/h5group.cpp - -h5tutr_cmprss: $(srcdir)/h5tutr_cmprss.cpp -h5tutr_crtatt: $(srcdir)/h5tutr_crtatt.cpp -h5tutr_crtdat: $(srcdir)/h5tutr_crtdat.cpp -h5tutr_crtgrpar: $(srcdir)/h5tutr_crtgrpar.cpp -h5tutr_crtgrp: $(srcdir)/h5tutr_crtgrp.cpp -h5tutr_crtgrpd: $(srcdir)/h5tutr_crtgrpd.cpp -h5tutr_extend: $(srcdir)/h5tutr_extend.cpp -h5tutr_rdwt: $(srcdir)/h5tutr_rdwt.cpp -h5tutr_subset: $(srcdir)/h5tutr_subset.cpp - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/c++/examples/run-c++-ex.sh b/build/c++/examples/run-c++-ex.sh deleted file mode 100644 index a8ca8de..0000000 --- a/build/c++/examples/run-c++-ex.sh +++ /dev/null @@ -1,122 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-c++-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the c++ examples from source files # -# installed in .../share/hdf5_examples/c++ using h5c++. The # -# order for running programs with RunTest in the MAIN section below is taken # -# from the Makefile. The order is important since some of the test programs # -# use data files created by earlier test programs. Any future additions should # -# be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../}" -AR="ar" -RANLIB="ranlib" -H5TOOL="h5c++" # The tool name -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".cpp" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - - - -################## MAIN ################## - -# Run tests -if [ $? -eq 0 ] -then - echo "*************************************************" - echo "** Run C++ API Examples **" - echo "** **" - echo "*************************************************" - if (RunTest create &&\ - rm create &&\ - RunTest readdata &&\ - rm readdata &&\ - RunTest writedata &&\ - rm writedata &&\ - RunTest compound &&\ - rm compound &&\ - RunTest extend_ds &&\ - rm extend_ds &&\ - RunTest chunks &&\ - rm chunks &&\ - RunTest h5group &&\ - rm h5group); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi - echo - echo "***************************************************" - echo "** Run Tutorial Examples **" - echo "** **" - echo "***************************************************" - if (RunTest h5tutr_crtdat &&\ - rm h5tutr_crtdat &&\ - RunTest h5tutr_rdwt &&\ - rm h5tutr_rdwt &&\ - RunTest h5tutr_crtatt &&\ - rm h5tutr_crtatt &&\ - RunTest h5tutr_crtgrp &&\ - rm h5tutr_crtgrp &&\ - RunTest h5tutr_crtgrpar &&\ - rm h5tutr_crtgrpar &&\ - RunTest h5tutr_crtgrpd &&\ - rm h5tutr_crtgrpd &&\ - RunTest h5tutr_extend &&\ - rm h5tutr_extend &&\ - RunTest h5tutr_subset &&\ - rm h5tutr_subset &&\ - RunTest h5tutr_cmprss &&\ - rm h5tutr_cmprss ); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -# Cleanup -rm *.o -rm *.h5 -echo - -exit $EXIT_VALUE - diff --git a/build/c++/examples/testh5c++.sh b/build/c++/examples/testh5c++.sh deleted file mode 100644 index a2c3586..0000000 --- a/build/c++/examples/testh5c++.sh +++ /dev/null @@ -1,279 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# Tests for the h5c++ compiler tool -# Created: Albert Cheng, 2007/3/14 -# -# Modification: -# - -srcdir=../../../c++/examples - -# Initializations -TESTNAME=h5c++ -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# Note: no '/' after DESTDIR. Explanation in commence.am -prefix="${prefix:-${DESTDIR}/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" -AR="ar" -RANLIB="ranlib" -H5TOOL="h5c++" # The tool name -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -CMP='cmp -s' -DIFF='diff -c' - -nerrors=$EXIT_SUCCESS -verbose=yes - -# setup my machine information. -myos=`uname -s` -myhostnama=`uname -n` - -# Generate some source files and library for tests. -suffix=cpp # source file suffix -hdf5main=${H5TOOL}_hdf5main.$suffix -hdf5main_o=${H5TOOL}_hdf5main.o -appmain=${H5TOOL}_appmain.$suffix -appmain_o=${H5TOOL}_appmain.o -prog1=${H5TOOL}_prog1.$suffix -prog1_o=${H5TOOL}_prog1.o -prog2=${H5TOOL}_prog2.$suffix -prog2_o=${H5TOOL}_prog2.o -applib=libapp${H5TOOL}.a - -# short hands -# Caution: if some *.h5 files must be cleaned here, list them by names. -# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated -# by otehr test programs. This will cause a racing condition error when -# parallel make (e.g., gmake -j 4) is used. -temp_SRC="$hdf5main $appmain $prog1 $prog2" -temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` -temp_FILES="a.out $applib" - -# Generate appmain: -# An application Main that calls hdf5 and application's own functions. -cat > $appmain < - -#ifdef OLD_HEADER_FILENAME -#include -#else -#include -#endif - -#include "H5Cpp.h" - -#ifndef H5_NO_NAMESPACE -using namespace H5; -#endif - -const H5std_string FILE_NAME( "tmpapp.h5" ); -int sub1(void); -int sub2(void); - -int main (void) -{ - sub1(); - sub2(); - H5File file( FILE_NAME, H5F_ACC_TRUNC ); - return 0; -} - -EOF - -# generate prog1 -cat > $prog1 < -#else - #include -#endif -#include - -#ifndef H5_NO_NAMESPACE -#ifndef H5_NO_STD - using std::cout; - using std::endl; -#endif // H5_NO_STD -#endif -int sub1(void) -{ - cout << "in sub1" << endl; - return 0; -} -EOF - -# generate prog2 -cat > $prog2 < -#else - #include -#endif -#include - -#ifndef H5_NO_NAMESPACE -#ifndef H5_NO_STD - using std::cout; - using std::endl; -#endif // H5_NO_STD -#endif -int sub2(void) -{ - cout << "in sub2" << endl; - return 0; -} -EOF - -# Generate HDF5 Main Program: -# An HDF5 sample program that calls hdf5 functions. -cat > $hdf5main < - -#ifdef OLD_HEADER_FILENAME -#include -#else -#include -#endif - -#include "H5Cpp.h" - -#ifndef H5_NO_NAMESPACE -using namespace H5; -#endif - -const H5std_string FILE_NAME( "tmphdf5.h5" ); - -int main (void) -{ - H5File file( FILE_NAME, H5F_ACC_TRUNC ); - return 0; -} -EOF - - -# Parse option -# None - -# Print a line-line message left justified in a field of 70 characters -# beginning with the word "Testing". -# -TESTING() { - SPACES=" " - echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' -} - - -# Debug printing -# Change : to echo to print the debug statement -DPRINT() { - : $* -} - -# Run a test and print PASS or *FAIL*. If a test fails then increment -# the `nerrors' global variable and (if $verbose is set) display the -# failed output. The actual output is not removed if $HDF5_NOCLEANUP is -# defined. -# -TOOLTEST() { - out=test_$H5TOOL_$$.out - err=test_$H5TOOL_$$.err - - # Run test. - TESTING $H5TOOL $@ - $H5TOOL_BIN $@ > $out 2>&1 - result=$? - if [ $result = 0 ]; then - echo " PASSED" - else - echo "*FAILED*" - nerrors="`expr $nerrors + 1`" - test yes = "$verbose" && \ - ( echo "========== results ==========="; cat $out; - echo "===============================================") |sed 's/^/ /' - fi - - # Clean up output file - if test -z "$HDF5_NOCLEANUP"; then - rm -f $out - fi -} - -# Print a "SKIP" message -SKIP() { - TESTING $H5TOOL $@ - echo " -SKIP-" -} - - -############################################################################## -### T H E T E S T S ### -############################################################################## -# -# HDF5 program that calls HDF5 APIs. -echo "***"Simple Compile and Link in one step. -TOOLTEST $hdf5main -# Application program that calls HDF5 and its own functions. -TOOLTEST $appmain $prog1 $prog2 - -# Compile, then link. -echo "***"Compile and Link in two steps. -TOOLTEST -c $hdf5main -TOOLTEST $hdf5main_o -TOOLTEST -c $appmain $prog1 $prog2 -TOOLTEST $appmain_o $prog1_o $prog2_o - -# Build external library, then link with it. -echo "***"Build external library and link with it. -TOOLTEST -c $prog1 $prog2 -rm -f $applib -$AR cru $applib $prog1_o $prog2_o -$RANLIB $applib -TOOLTEST $appmain $applib -TOOLTEST $appmain_o $applib -# This is peculiar but should work. (See bug ID 729) -TOOLTEST -c $hdf5main -rm -f $applib -$AR cru $applib $hdf5main_o -$RANLIB $applib -# SunOS does not support this. Skip it. -if [ $myos = SunOS ]; then - SKIP -o a.out $applib -else - TOOLTEST -o a.out $applib -fi - -# Just preprocess, no compile, no link. -echo "***"Just preprocess, no compile, no link. -TOOLTEST -E $hdf5main -TOOLTEST -E $appmain $prog1 $prog2 - -############################################################################## -# END -############################################################################## - -# Clean up file -if test -z "$HDF5_NOCLEANUP"; then - rm -f $temp_SRC $temp_OBJ $temp_FILES -fi - -if test $nerrors -eq 0 ; then - echo "All $TESTNAME tests passed." - exit $EXIT_SUCCESS -else - echo "$TESTNAME tests failed with $nerrors errors." - exit $EXIT_FAILURE -fi diff --git a/build/c++/src/.deps/H5AbstractDs.Plo b/build/c++/src/.deps/H5AbstractDs.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5AbstractDs.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5AcreatProp.Plo b/build/c++/src/.deps/H5AcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5AcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5ArrayType.Plo b/build/c++/src/.deps/H5ArrayType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5ArrayType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5AtomType.Plo b/build/c++/src/.deps/H5AtomType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5AtomType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Attribute.Plo b/build/c++/src/.deps/H5Attribute.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Attribute.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5CommonFG.Plo b/build/c++/src/.deps/H5CommonFG.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5CommonFG.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5CompType.Plo b/build/c++/src/.deps/H5CompType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5CompType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5DataSet.Plo b/build/c++/src/.deps/H5DataSet.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5DataSet.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5DataSpace.Plo b/build/c++/src/.deps/H5DataSpace.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5DataSpace.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5DataType.Plo b/build/c++/src/.deps/H5DataType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5DataType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5DcreatProp.Plo b/build/c++/src/.deps/H5DcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5DcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5DxferProp.Plo b/build/c++/src/.deps/H5DxferProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5DxferProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5EnumType.Plo b/build/c++/src/.deps/H5EnumType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5EnumType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Exception.Plo b/build/c++/src/.deps/H5Exception.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Exception.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5FaccProp.Plo b/build/c++/src/.deps/H5FaccProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5FaccProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5FcreatProp.Plo b/build/c++/src/.deps/H5FcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5FcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5File.Plo b/build/c++/src/.deps/H5File.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5File.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5FloatType.Plo b/build/c++/src/.deps/H5FloatType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5FloatType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Group.Plo b/build/c++/src/.deps/H5Group.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Group.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5IdComponent.Plo b/build/c++/src/.deps/H5IdComponent.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5IdComponent.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5IntType.Plo b/build/c++/src/.deps/H5IntType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5IntType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5LaccProp.Plo b/build/c++/src/.deps/H5LaccProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5LaccProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5LcreatProp.Plo b/build/c++/src/.deps/H5LcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5LcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Library.Plo b/build/c++/src/.deps/H5Library.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Library.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Location.Plo b/build/c++/src/.deps/H5Location.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Location.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5Object.Plo b/build/c++/src/.deps/H5Object.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5Object.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5OcreatProp.Plo b/build/c++/src/.deps/H5OcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5OcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5PredType.Plo b/build/c++/src/.deps/H5PredType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5PredType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5PropList.Plo b/build/c++/src/.deps/H5PropList.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5PropList.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5StrType.Plo b/build/c++/src/.deps/H5StrType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5StrType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5StrcreatProp.Plo b/build/c++/src/.deps/H5StrcreatProp.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5StrcreatProp.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/.deps/H5VarLenType.Plo b/build/c++/src/.deps/H5VarLenType.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/src/.deps/H5VarLenType.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/src/Makefile b/build/c++/src/Makefile deleted file mode 100644 index c4c23aa..0000000 --- a/build/c++/src/Makefile +++ /dev/null @@ -1,1580 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# c++/src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-C++ Makefile(.in) -# - - - -VPATH = ../../../c++/src -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = c++/src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ - $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = h5c++ -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ - "$(DESTDIR)$(includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libhdf5_cpp_la_DEPENDENCIES = $(LIBHDF5) -am_libhdf5_cpp_la_OBJECTS = H5Exception.lo H5IdComponent.lo \ - H5DataSpace.lo H5PropList.lo H5Library.lo H5FaccProp.lo \ - H5FcreatProp.lo H5LaccProp.lo H5StrcreatProp.lo \ - H5LcreatProp.lo H5AcreatProp.lo H5DxferProp.lo H5DcreatProp.lo \ - H5Location.lo H5AbstractDs.lo H5Attribute.lo H5Object.lo \ - H5OcreatProp.lo H5DataType.lo H5AtomType.lo H5PredType.lo \ - H5EnumType.lo H5IntType.lo H5FloatType.lo H5StrType.lo \ - H5ArrayType.lo H5VarLenType.lo H5CompType.lo H5DataSet.lo \ - H5CommonFG.lo H5Group.lo H5File.lo -libhdf5_cpp_la_OBJECTS = $(am_libhdf5_cpp_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libhdf5_cpp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(AM_CXXFLAGS) $(CXXFLAGS) $(libhdf5_cpp_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -SCRIPTS = $(bin_SCRIPTS) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_$(V)) -am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_$(V)) -am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -SOURCES = $(libhdf5_cpp_la_SOURCES) -DIST_SOURCES = $(libhdf5_cpp_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -HEADERS = $(include_HEADERS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5c++.in \ - $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/lt_vers.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include src directory -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/src -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/src -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../c++/src -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# Add libtool shared library version numbers to the HDF5 library -# See libtool versioning documentation online. -# After making changes, run bin/reconfigure to update other configure related -# files like Makefile.in. -LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 2 -LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 16 -LT_CXX_VERS_REVISION = 0 -LT_CXX_VERS_AGE = 0 -LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 6 -LT_F_VERS_AGE = 0 -LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 2 -LT_HL_VERS_AGE = 2 -LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 2 -LT_HL_CXX_VERS_AGE = 1 -LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 5 -LT_HL_F_VERS_AGE = 0 -LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 7 -LT_TOOLS_VERS_AGE = 0 - -# This is our main target -lib_LTLIBRARIES = libhdf5_cpp.la - -# Add libtool numbers to the HDF5 C++ library (from config/lt_vers.am) -libhdf5_cpp_la_LDFLAGS = -version-info $(LT_CXX_VERS_INTERFACE):$(LT_CXX_VERS_REVISION):$(LT_CXX_VERS_AGE) $(AM_LDFLAGS) -bin_SCRIPTS = h5c++ - -# Source files for the library -libhdf5_cpp_la_SOURCES = H5Exception.cpp H5IdComponent.cpp \ - H5DataSpace.cpp H5PropList.cpp H5Library.cpp \ - H5FaccProp.cpp H5FcreatProp.cpp H5LaccProp.cpp \ - H5StrcreatProp.cpp H5LcreatProp.cpp H5AcreatProp.cpp \ - H5DxferProp.cpp H5DcreatProp.cpp H5Location.cpp \ - H5AbstractDs.cpp H5Attribute.cpp H5Object.cpp \ - H5OcreatProp.cpp H5DataType.cpp H5AtomType.cpp \ - H5PredType.cpp H5EnumType.cpp H5IntType.cpp \ - H5FloatType.cpp H5StrType.cpp H5ArrayType.cpp \ - H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ - H5CommonFG.cpp H5Group.cpp H5File.cpp - - -# HDF5 C++ library depends on HDF5 Library. -libhdf5_cpp_la_LIBADD = $(LIBHDF5) - -# Public headers -include_HEADERS = H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \ - H5CommonFG.h H5CompType.h H5DataSet.h H5DataSpace.h H5DataType.h \ - H5OcreatProp.h H5DcreatProp.h H5DxferProp.h H5EnumType.h \ - H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \ - H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5LaccProp.h \ - H5StrcreatProp.h H5LcreatProp.h H5AcreatProp.h \ - H5Library.h H5Location.h H5Object.h H5PredType.h H5PropList.h \ - H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h - - -# h5c++ and libhdf5.settings are generated during configure. Remove only when -# distclean. -DISTCLEANFILES = h5c++ libhdf5.settings - -# Mark this directory as part of the C++ API -CXX_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign c++/src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -h5c++: $(top_builddir)/config.status $(srcdir)/h5c++.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libhdf5_cpp.la: $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_DEPENDENCIES) $(EXTRA_libhdf5_cpp_la_DEPENDENCIES) - $(AM_V_CXXLD)$(libhdf5_cpp_la_LINK) -rpath $(libdir) $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_LIBADD) $(LIBS) -install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n' \ - -e 'h;s|.*|.|' \ - -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) { files[d] = files[d] " " $$1; \ - if (++n[d] == $(am__install_max)) { \ - print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ - else { print "f", d "/" $$4, $$1 } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binSCRIPTS: - @$(NORMAL_UNINSTALL) - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 's,.*/,,;$(transform)'`; \ - dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/H5AbstractDs.Plo -include ./$(DEPDIR)/H5AcreatProp.Plo -include ./$(DEPDIR)/H5ArrayType.Plo -include ./$(DEPDIR)/H5AtomType.Plo -include ./$(DEPDIR)/H5Attribute.Plo -include ./$(DEPDIR)/H5CommonFG.Plo -include ./$(DEPDIR)/H5CompType.Plo -include ./$(DEPDIR)/H5DataSet.Plo -include ./$(DEPDIR)/H5DataSpace.Plo -include ./$(DEPDIR)/H5DataType.Plo -include ./$(DEPDIR)/H5DcreatProp.Plo -include ./$(DEPDIR)/H5DxferProp.Plo -include ./$(DEPDIR)/H5EnumType.Plo -include ./$(DEPDIR)/H5Exception.Plo -include ./$(DEPDIR)/H5FaccProp.Plo -include ./$(DEPDIR)/H5FcreatProp.Plo -include ./$(DEPDIR)/H5File.Plo -include ./$(DEPDIR)/H5FloatType.Plo -include ./$(DEPDIR)/H5Group.Plo -include ./$(DEPDIR)/H5IdComponent.Plo -include ./$(DEPDIR)/H5IntType.Plo -include ./$(DEPDIR)/H5LaccProp.Plo -include ./$(DEPDIR)/H5LcreatProp.Plo -include ./$(DEPDIR)/H5Library.Plo -include ./$(DEPDIR)/H5Location.Plo -include ./$(DEPDIR)/H5Object.Plo -include ./$(DEPDIR)/H5OcreatProp.Plo -include ./$(DEPDIR)/H5PredType.Plo -include ./$(DEPDIR)/H5PropList.Plo -include ./$(DEPDIR)/H5StrType.Plo -include ./$(DEPDIR)/H5StrcreatProp.Plo -include ./$(DEPDIR)/H5VarLenType.Plo - -.cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-includeHEADERS: $(include_HEADERS) - @$(NORMAL_INSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ - fi; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ - done - -uninstall-includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(HEADERS) all-local -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-includeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binSCRIPTS install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binSCRIPTS uninstall-includeHEADERS \ - uninstall-libLTLIBRARIES - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binSCRIPTS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am \ - install-includeHEADERS install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ - uninstall-binSCRIPTS uninstall-includeHEADERS \ - uninstall-libLTLIBRARIES - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that -# holds *.ii files, which are template entity instantiations. -# This entire directory should be cleaned. -mostlyclean-local: - @if test -d ii_files; then \ - $(RM) -rf ii_files; \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/c++/src/h5c++ b/build/c++/src/h5c++ deleted file mode 100644 index e4570fc..0000000 --- a/build/c++/src/h5c++ +++ /dev/null @@ -1,393 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# - -############################################################################ -## ## -## Things You May Have to Modify: ## -## ## -## If the following paths don't point to the place were HDF5 is installed ## -## on your system (i.e., you received a binary distribution or moved the ## -## files from the originally installed directory to another directory) ## -## then modify them accordingly to represent the new paths. ## -## ## -############################################################################ -prefix="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" -exec_prefix="${prefix}" -libdir="${exec_prefix}/lib" -includedir="${prefix}/include" -HL="hl" - -############################################################################ -## ## -## Things You Can Modify to Override HDF5 Library Build Components: ## -## ## -## (Advanced usage - know what you're doing - you're on your own here.) ## -## The four variables below can be used to insert paths and flags in ## -## CPPFLAGS, CXXFLAGS, LDFLAGS, or LIBS in the h5cc compile line: ## -## $CLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS ## -## $LDFLAGS $LIBS $clibpath $link_objs $link_args $shared_link ## -## ## -## These settings can be overriden by setting HDF5_CXXFLAGS, ## -## HDF5_CPPFLAGS, HDF5_LDFLAGS, or HDF5_LIBS in the environment. ## -## ## -############################################################################ -CXXFLAGSBASE="" -CPPFLAGSBASE="" -LDFLAGSBASE="" -LIBSBASE="" - -############################################################################ -## ## -## You shouldn't have to modify anything below this line. ## -## ## -############################################################################ - -# Constants definitions -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -host_os="linux-gnu" - -prog_name="`basename $0`" - -allargs="" -compile_args="" -libraries="" -link_args="" -link_objs="" -clibpath="" - -do_link="yes" -do_compile="no" -dash_o="no" -dash_c="no" -get_output_file="no" - -SHOW="eval" -CXXBASE="no" -CXXLINKERBASE="no" - -# CXXFLAGS, CPPFLAGS and LDFLAGS are reserved for use by the script user. -# FLAGS brought from the hdf5 build are put in H5BLD_*FLAGS. - -# User's CPPFLAGS and CXXFLAGS come after their H5BLD counterparts. User's -# LDFLAGS come just before clibpath, user's LIBS come after $link_objs and -# before the hdf5 libraries in $link_args, followed by any external library -# paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in -# from the hdf5 build. The order of the flags is intended to give precedence -# to the user's flags. -H5BLD_CXXFLAGS=" " -H5BLD_CPPFLAGS=" " -H5BLD_LDFLAGS=" " -H5BLD_LIBS="-lz -ldl -lm " - -CXX="${HDF5_CXX:-$CXXBASE}" -CXXLINKER="${HDF5_CLINKER:-$CXXLINKERBASE}" -CXXFLAGS="${HDF5_CXXFLAGS:-$CXXFLAGSBASE}" -CPPFLAGS="${HDF5_CPPFLAGS:-$CPPFLAGSBASE}" -LDFLAGS="${HDF5_LDFLAGS:-$LDFLAGSBASE}" -LIBS="${HDF5_LIBS:-$LIBSBASE}" - -# If a static library is available, the default will be to use it. If the only -# available library is shared, it will be used by default. The user can -# override either default, although choosing an unavailable library will result -# in link errors. -STATIC_AVAILABLE="yes" -if test "${STATIC_AVAILABLE}" = "yes"; then - USE_SHARED_LIB="${HDF5_USE_SHLIB:-no}" -else - USE_SHARED_LIB="${HDF5_USE_SHLIB:-yes}" -fi - -usage() { - # A wonderfully informative "usage" message. - echo "usage: $prog_name [OPTIONS] " - echo " OPTIONS:" - echo " -help This help message." - echo " -echo Show all the shell commands executed" - echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" - echo " subdirectories [default: $prefix]" - echo " -show Show the commands without executing them" - echo " -showconfig Show the HDF5 library configuration summary" - echo " -shlib Compile with shared HDF5 libraries [default for hdf5 built" - echo " without static libraries]" - echo " -noshlib Compile with static HDF5 libraries [default for hdf5 built" - echo " with static libraries]" - echo " " - echo " - the normal compile line options for your compiler." - echo " $prog_name uses the same compiler you used to compile" - echo " HDF5. Check with your compiler's man pages for more" - echo " information on which options are needed." - echo " " - echo " You can override the compiler, linker, and whether or not to use static" - echo " or shared libraries to compile your program by setting the following" - echo " environment variables accordingly:" - echo " " - echo " HDF5_CXX - use a different C++ compiler" - echo " HDF5_CXXLINKER - use a different linker" - echo " HDF5_USE_SHLIB=[yes|no] - use shared or static version of the HDF5 library" - echo " [default: no except when built with only" - echo " shared libraries]" - echo " You can also add or change paths and flags to the compile line using" - echo " the following environment varibles or by assigning them to their counterparts" - echo " in the 'Things You Can Modify to Override...'" section of $prog_name - echo " " - echo " Variable Current value to be replaced" - echo " HDF5_CPPFLAGS \"$CPPFLAGSBASE\"" - echo " HDF5_CXXFLAGS \"$CXXFLAGSBASE\"" - echo " HDF5_LDFLAGS \"$LDFLAGSBASE\"" - echo " HDF5_LIBS \"$LIBSBASE\"" - echo " " - echo " Note that adding library paths to HDF5_LDFLAGS where another hdf5 version" - echo " is located may link your program with that other hdf5 library version." - echo " " - exit $EXIT_FAILURE -} - -# Show the configuration summary of the library recorded in the -# libhdf5.settings file reside in the lib directory. -showconfigure() -{ - cat ${libdir}/libhdf5.settings - status=$? -} - -# Main -status=$EXIT_SUCCESS - -if test "$#" = "0"; then - # No parameters specified, issue usage statement and exit. - usage -fi - -case "$CXX" in - gcc) - kind="gcc" - ;; - mpicc|mpcc|mpicc_r) - # Is this gcc masquarading as an MPI compiler? - if test "`${CXX} -v 2>&1 | sed -n 2p | cut -c1-3`" = "gcc"; then - kind="gcc" - else - # Nope - kind="$host_os" - fi - ;; - *) - kind="$host_os" - ;; -esac - -for arg in $@ ; do - if test "x$get_output_file" = "xyes"; then - link_args="$link_args $arg" - output_file="$arg" - get_output_file="no" - continue - fi - - case "$arg" in - -c) - allargs="$allargs $arg" - compile_args="$compile_args $arg" - - if test "x$do_link" = "xyes" -a -n "$output_file"; then - compile_args="$compile_args -o $output_file" - fi - - do_link="no" - dash_c="yes" - ;; - -o) - allargs="$allargs $arg" - dash_o="yes" - - if test "x$dash_c" = "xyes"; then - compile_args="$compile_args $arg" - else - link_args="$link_args $arg" - do_link="yes" - get_output_file="yes" - fi - ;; - -E|-M|-MT) - allargs="$allargs $arg" - compile_args="$compile_args $arg" - dash_c="yes" - do_link="no" - ;; - -l*) - libraries=" $libraries $arg " - allargs="$allargs $arg" - ;; - -prefix=*) - prefix="`expr "$arg" : '-prefix=\(.*\)'`" - ;; - -echo) - set -x - ;; - -show) - SHOW="echo" - ;; - -showconfig) - showconfigure - exit $status - ;; - -shlib) - USE_SHARED_LIB="yes" - ;; - -noshlib) - USE_SHARED_LIB="no" - ;; - -help) - usage - ;; - *\"*) - qarg="'"$arg"'" - allargs="$allargs $qarg" - ;; - *\'*) - qarg='\"'"$arg"'\"' - allargs="$allargs $qarg" - ;; - - *) - allargs="$allargs $qarg" - - if [ -s "$arg" ] ; then - ext=`expr "$arg" : '.*\(\..*\)'` - if [ "$ext" = ".C" -o "$ext" = ".cxx" -o "$ext" = ".cpp" -o \ - "$ext" = ".cc" -o "$ext" = ".c" -o "$ext" = ".CC" ] ; then - - do_compile="yes" - compile_args="$compile_args $arg" - fname=`basename $arg $ext` - link_objs="$link_objs $fname.o" - elif [ "$ext" = ".o" ] ; then - if test "x$dash_c" = "xyes" ; then - compile_args="$compile_args $arg" - else - do_link="yes" - link_objs="$link_objs $arg" - fi - elif test "x$ext" = "x.a"; then - # This is an archive that we're linking in - libraries=" $libraries $arg " - else - compile_args="$compile_args $arg" - link_args="$link_args $arg" - fi - else - compile_args="$compile_args $arg" - link_args="$link_args $arg" - fi - ;; - esac -done - -if test "x$do_compile" = "xyes"; then - if test "x$dash_c" != "xyes"; then - compile_args="-c $compile_args" - fi - - $SHOW $CXX -I$includedir $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS $compile_args - status=$? - - if test "$status" != "0"; then - exit $status - fi -fi - -if test "x$do_link" = "xyes"; then - shared_link="" - # conditionnaly link with the hl library - if test "X$HL" = "Xhl"; then - libraries=" $libraries -lhdf5_hl_cpp -lhdf5_cpp -lhdf5_hl -lhdf5 " - else - libraries=" $libraries -lhdf5_cpp -lhdf5 " - fi - link_args="$link_args -L${libdir}" - - case "$kind" in - gcc|linux*) - # MacOS X doesn't support the "-Wl,-rpath -Wl," style of linker flags. - # It appears to want none of them specified. - case "$host_os" in - darwin*) flag="" ;; - *) flag="-Wl,-rpath -Wl," ;; - esac - ;; - hpux*) flag="-Wl,+b -Wl," ;; - freebsd*|solaris*) flag="-R" ;; - rs6000*|aix*) flag="-L" ;; - sgi) flag="-rpath " ;; - *) flag="" ;; - esac - - if test -n "$flag"; then - shared_link="${flag}${libdir}" - fi - - if test "x$USE_SHARED_LIB" != "xyes"; then - # The "-lhdf5" & "-lhdf5_hl" flags are in here already...This is a static - # compile though, so change it to the static version (.a) of the library. - new_libraries="" - for lib in $libraries; do - case "$lib" in - -lhdf5) - new_libraries="$new_libraries ${libdir}/libhdf5.a" - ;; - -lhdf5_hl) - new_libraries="$new_libraries ${libdir}/libhdf5_hl.a" - ;; - -lhdf5_cpp) - new_libraries="$new_libraries ${libdir}/libhdf5_cpp.a" - ;; - -lhdf5_hl_cpp) - new_libraries="$new_libraries ${libdir}/libhdf5_hl_cpp.a" - ;; - *) - new_libraries="$new_libraries $lib" - ;; - esac - done - libraries="$new_libraries" - fi - - for lib in $libraries; do - if echo $link_args | grep " $lib " > /dev/null || - echo $link_args | grep " $lib$" > /dev/null; then - : - else - link_args="$link_args $lib " - fi - done - - # The LIBS are just a bunch of -l* libraries necessary for the HDF5 - # module. It's okay if they're included twice in the compile line. - link_args="$link_args $H5BLD_LDFLAGS $H5BLD_LIBS" - - # User's CPPFLAGS and CXXFLAGS come after their H5BLD counterparts. User's - # LDFLAGS come just before clibpath, user's LIBS come after $link_objs and - # before the hdf5 libraries in $link_args, followed by any external library - # paths and libraries from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in - # from the hdf5 build. The order of the flags is intended to give precedence - # to the user's flags. - - $SHOW $CXXLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CXXFLAGS $CXXFLAGS $LDFLAGS $clibpath $link_objs $LIBS $link_args $shared_link - - status=$? -fi - -exit $status diff --git a/build/c++/test/.deps/dsets.Po b/build/c++/test/.deps/dsets.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/dsets.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/h5cpputil.Po b/build/c++/test/.deps/h5cpputil.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/h5cpputil.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tarray.Po b/build/c++/test/.deps/tarray.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tarray.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tattr.Po b/build/c++/test/.deps/tattr.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tattr.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tcompound.Po b/build/c++/test/.deps/tcompound.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tcompound.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tdspl.Po b/build/c++/test/.deps/tdspl.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tdspl.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/testhdf5.Po b/build/c++/test/.deps/testhdf5.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/testhdf5.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tfile.Po b/build/c++/test/.deps/tfile.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tfile.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tfilter.Po b/build/c++/test/.deps/tfilter.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tfilter.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/th5s.Po b/build/c++/test/.deps/th5s.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/th5s.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tlinks.Po b/build/c++/test/.deps/tlinks.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tlinks.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tobject.Po b/build/c++/test/.deps/tobject.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tobject.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/trefer.Po b/build/c++/test/.deps/trefer.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/trefer.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/ttypes.Po b/build/c++/test/.deps/ttypes.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/ttypes.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/.deps/tvlstr.Po b/build/c++/test/.deps/tvlstr.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/c++/test/.deps/tvlstr.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/c++/test/H5srcdir_str.h b/build/c++/test/H5srcdir_str.h deleted file mode 100644 index 71d730e..0000000 --- a/build/c++/test/H5srcdir_str.h +++ /dev/null @@ -1,20 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by The HDF Group. * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the COPYING file, which can be found at the root of the source code * - * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * - * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -/* If you are reading this file and it has a '.h' suffix, it was automatically - * generated from the '.in' version. Make changes there. - */ - -/* Set the 'srcdir' path from configure time */ -static const char *config_srcdir = "../../../c++/test"; - diff --git a/build/c++/test/Makefile b/build/c++/test/Makefile deleted file mode 100644 index 1f8c365..0000000 --- a/build/c++/test/Makefile +++ /dev/null @@ -1,1420 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# c++/test/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-C++ Makefile(.in) -# -VPATH = ../../../c++/test -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -check_PROGRAMS = $(am__EXEEXT_1) -TESTS = $(am__EXEEXT_1) -subdir = c++/test -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = H5srcdir_str.h -CONFIG_CLEAN_VPATH_FILES = -am__EXEEXT_1 = testhdf5$(EXEEXT) -am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) dsets.$(OBJEXT) \ - tattr.$(OBJEXT) tarray.$(OBJEXT) tcompound.$(OBJEXT) \ - tdspl.$(OBJEXT) tfile.$(OBJEXT) tfilter.$(OBJEXT) \ - th5s.$(OBJEXT) tlinks.$(OBJEXT) tobject.$(OBJEXT) \ - trefer.$(OBJEXT) ttypes.$(OBJEXT) tvlstr.$(OBJEXT) \ - h5cpputil.$(OBJEXT) -testhdf5_OBJECTS = $(am_testhdf5_OBJECTS) -testhdf5_LDADD = $(LDADD) -testhdf5_DEPENDENCIES = $(LIBH5TEST) $(LIBH5CPP) $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_$(V)) -am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_$(V)) -am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -SOURCES = $(testhdf5_SOURCES) -DIST_SOURCES = $(testhdf5_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/H5srcdir_str.h.in $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include src, test, and c++/src directories -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_srcdir)/test -I$(top_srcdir)/c++/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/c++/test -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../c++/test -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../c++/test -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -# Temporary files -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 tattr_multi.h5 \ - tfattrs.h5 tattr_scalar.h5 tattr_compound.h5 tattr_dtype.h5 \ - tattr_basic.h5 - -# These are our main targets. They should be listed in the order to be -# executed, generally most specific tests to least specific tests. -TEST_PROG = testhdf5 - -# The tests depend on the hdf5 library, test library, and the c++ library -LDADD = $(LIBH5TEST) $(LIBH5CPP) $(LIBHDF5) -testhdf5_SOURCES = testhdf5.cpp dsets.cpp tattr.cpp tarray.cpp \ - tcompound.cpp tdspl.cpp tfile.cpp tfilter.cpp th5s.cpp \ - tlinks.cpp tobject.cpp trefer.cpp ttypes.cpp tvlstr.cpp \ - h5cpputil.cpp - - -# Tell conclude.am that these are C++ tests. -CXX_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign c++/test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign c++/test/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -H5srcdir_str.h: $(top_builddir)/config.status $(srcdir)/H5srcdir_str.h.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -testhdf5$(EXEEXT): $(testhdf5_OBJECTS) $(testhdf5_DEPENDENCIES) $(EXTRA_testhdf5_DEPENDENCIES) - @rm -f testhdf5$(EXEEXT) - $(AM_V_CXXLD)$(CXXLINK) $(testhdf5_OBJECTS) $(testhdf5_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/dsets.Po -include ./$(DEPDIR)/h5cpputil.Po -include ./$(DEPDIR)/tarray.Po -include ./$(DEPDIR)/tattr.Po -include ./$(DEPDIR)/tcompound.Po -include ./$(DEPDIR)/tdspl.Po -include ./$(DEPDIR)/testhdf5.Po -include ./$(DEPDIR)/tfile.Po -include ./$(DEPDIR)/tfilter.Po -include ./$(DEPDIR)/th5s.Po -include ./$(DEPDIR)/tlinks.Po -include ./$(DEPDIR)/tobject.Po -include ./$(DEPDIR)/trefer.Po -include ./$(DEPDIR)/ttypes.Po -include ./$(DEPDIR)/tvlstr.Po - -.cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -testhdf5.log: testhdf5$(EXEEXT) - @p='testhdf5$(EXEEXT)'; \ - b='testhdf5'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that -# holds *.ii files, which are template entity instantiations. -# This entire directory should be cleaned. -mostlyclean-local: - @if test -d ii_files; then \ - $(RM) -rf ii_files; \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/config.log b/build/config.log deleted file mode 100644 index 7a82158..0000000 --- a/build/config.log +++ /dev/null @@ -1,33663 +0,0 @@ -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by HDF5 configure 1.8.21-pre1, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ ../configure - -## --------- ## -## Platform. ## -## --------- ## - -hostname = jelly -uname -m = x86_64 -uname -r = 3.10.0-327.18.2.el7.x86_64 -uname -s = Linux -uname -v = #1 SMP Thu May 12 11:03:55 UTC 2016 - -/usr/bin/uname -p = x86_64 -/bin/uname -X = unknown - -/bin/arch = x86_64 -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -/usr/bin/hostinfo = unknown -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: /mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin -PATH: /usr/hdf/bin/AUTOTOOLS -PATH: ./ -PATH: /usr/hdf/bin -PATH: /usr/local/bin -PATH: /usr/bin -PATH: /usr/local/sbin -PATH: /usr/sbin -PATH: /usr/kerberos/bin -PATH: /bin -PATH: /mnt/wrk/lrknox/ec2/bin -PATH: /home/lrknox/bin -PATH: /home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:3086: checking for a BSD-compatible install -configure:3154: result: /usr/bin/install -c -configure:3165: checking whether build environment is sane -configure:3220: result: yes -configure:3371: checking for a thread-safe mkdir -p -configure:3410: result: /usr/bin/mkdir -p -configure:3417: checking for gawk -configure:3433: found /usr/bin/gawk -configure:3444: result: gawk -configure:3455: checking whether gmake -j 8 sets $(MAKE) -configure:3477: result: yes -configure:3506: checking whether gmake -j 8 supports nested variables -configure:3523: result: yes -configure:3660: checking whether gmake -j 8 supports nested variables -configure:3677: result: yes -configure:3700: checking whether to enable maintainer-specific portions of Makefiles -configure:3709: result: no -configure:3758: checking build system type -configure:3772: result: x86_64-unknown-linux-gnu -configure:3792: checking host system type -configure:3805: result: x86_64-unknown-linux-gnu -configure:3873: checking shell variables initial values -ACLOCAL='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15' -AMTAR='$${TAR-tar}' -AM_BACKSLASH='\' -AM_CFLAGS= -AM_CPPFLAGS= -AM_CXXFLAGS= -AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -AM_DEFAULT_VERBOSITY=0 -AM_FCFLAGS= -AM_LDFLAGS= -AM_V='$(V)' -AUTOCONF='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf' -AUTOHEADER='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader' -AUTOMAKE='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15' -AWK=gawk -AWS_ACCESS_KEY=AKIAJGD5VJBPOQPTQJCQ -AWS_ACCOUNT_NUMBER=405397768108 -AWS_SECRET_KEY=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 -BASH=/bin/sh -BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath -BASH_ALIASES=() -BASH_ARGC=() -BASH_ARGV=() -BASH_CMDS=() -BASH_LINENO=([0]="0") -BASH_SOURCE=([0]="../configure") -BASH_VERSINFO=([0]="4" [1]="2" [2]="46" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu") -BASH_VERSION='4.2.46(1)-release' -CFLAGS= -CPPFLAGS= -CVS_RSH=ssh -CXXFLAGS= -CYGPATH_W=echo -DIRSTACK=() -DUALCASE=1 -EC2_HOME=/mnt/wrk/lrknox/ec2 -EC2_PRIVATE_KEY=/home/lrknox/key-hdftest-control-host.pem -EC2_URL=https://ec2.us-west-2.amazonaws.com -ECHO_C= -ECHO_N=-n -ECHO_T= -EUID=10013 -FC= -FCFLAGS= -GROUPS=() -HISTCONTROL=ignoredups -HISTSIZE=1000 -HOME=/home/lrknox -HOSTNAME=jelly -HOSTTYPE=x86_64 -IFS=' -' -INSTALL='/usr/bin/install -c' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' -JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.91-0.b14.el7_2.x86_64/jre -LANG=en_US.UTF-8 -LANGUAGE=C -LC_ALL=C -LDFLAGS= -LESSOPEN='||/usr/bin/lesspipe.sh %s' -LIBOBJS= -LINENO=3873 -LMOD_CMD=/usr/share/lmod/lmod/libexec/lmod -LMOD_COLORIZE=yes -LMOD_DIR=/usr/share/lmod/lmod/libexec -LMOD_FULL_SETTARG_SUPPORT=no -LMOD_PKG=/usr/share/lmod/lmod -LMOD_PREPEND_BLOCK=normal -LMOD_SETTARG_CMD=: -LMOD_VERSION=6.3.4 -LMOD_arch=x86_64 -LMOD_sys=Linux -LOGNAME=lrknox -LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:' -MACHTYPE=x86_64-redhat-linux-gnu -MAINT='#' -MAINTAINER_MODE_FALSE= -MAINTAINER_MODE_TRUE='#' -MAKE='gmake -j 8' -MAKEFLAGS= -MAKEINFO='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo' -MANPATH=/usr/share/lmod/lmod/share/man::/usr/local/man:/usr/share/man:/usr/kerberos/man -MFLAGS= -MISSING='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing' -MKDIR_P='/usr/bin/mkdir -p' -MODULEPATH=/etc/modulefiles:/usr/share/modulefiles:/usr/share/Modules/modulefiles:/opt/pkgs/modules/all:/usr/share/modulefiles/Linux:/usr/share/modulefiles/Core:/usr/share/lmod/lmod/modulefiles/Core -MODULEPATH_ROOT=/usr/share/modulefiles -MODULESHOME=/usr/share/lmod/lmod -OPTERR=1 -OPTIND=1 -OSTYPE=linux-gnu -PACKAGE=hdf5 -PACKAGE_BUGREPORT=help@hdfgroup.org -PACKAGE_NAME=HDF5 -PACKAGE_STRING='HDF5 1.8.21-pre1' -PACKAGE_TARNAME=hdf5 -PACKAGE_URL= -PACKAGE_VERSION=1.8.21-pre1 -PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin -PATH_SEPARATOR=: -PIPESTATUS=([0]="0") -POSIXLY_CORRECT=y -PPID=173560 -PS1='$ ' -PS2='> ' -PS4='+ ' -PWD=/mnt/wrk/lrknox/hdf5_hdf5/build -SELINUX_LEVEL_REQUESTED= -SELINUX_ROLE_REQUESTED= -SELINUX_USE_CURRENT_RANGE= -SET_MAKE= -SHELL=/bin/sh -SHELLOPTS=braceexpand:hashall:interactive-comments:posix -SHLVL=2 -SSH_CLIENT='10.10.10.86 53159 22' -SSH_CONNECTION='10.10.10.86 53159 10.10.10.120 22' -SSH_TTY=/dev/pts/4 -TERM=xterm -UID=10013 -USER=lrknox -USE_MAINTAINER_MODE=no -VERSION=1.8.21-pre1 -XDG_RUNTIME_DIR=/run/user/10013 -XDG_SESSION_ID=422959 -_='checking shell variables initial values... ' -_am_tools='gnutar pax cpio none' -ac_abs_confdir=/mnt/wrk/lrknox/hdf5_hdf5 -ac_aux_dir=../bin -ac_build_alias=x86_64-unknown-linux-gnu -ac_cache_corrupted=false -ac_clean_files= -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_compiler_gnu= -ac_confdir=.. -ac_config_commands=' pubconf' -ac_config_guess='/bin/sh ../bin/config.guess' -ac_config_headers=' src/H5config.h' -ac_config_libobj_dir=. -ac_config_sub='/bin/sh ../bin/config.sub' -ac_configure='/bin/sh ../bin/configure' -ac_configure_args= -ac_cpp='$CPP $CPPFLAGS' -ac_cv_build=x86_64-unknown-linux-gnu -ac_cv_env_CCC_set= -ac_cv_env_CCC_value= -ac_cv_env_CC_set= -ac_cv_env_CC_value= -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_CXXCPP_set= -ac_cv_env_CXXCPP_value= -ac_cv_env_CXXFLAGS_set= -ac_cv_env_CXXFLAGS_value= -ac_cv_env_CXX_set= -ac_cv_env_CXX_value= -ac_cv_env_FCFLAGS_set= -ac_cv_env_FCFLAGS_value= -ac_cv_env_FC_set= -ac_cv_env_FC_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_LT_SYS_LIBRARY_PATH_set= -ac_cv_env_LT_SYS_LIBRARY_PATH_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_host=x86_64-unknown-linux-gnu -ac_cv_path_install='/usr/bin/install -c' -ac_cv_path_mkdir=/usr/bin/mkdir -ac_cv_prog_AWK=gawk -ac_cv_prog_make_gmake_set=yes -ac_dashdash= -ac_default_prefix=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -ac_dir=../bin -ac_env_CCC_set= -ac_env_CCC_value= -ac_env_CC_set= -ac_env_CC_value= -ac_env_CFLAGS_set= -ac_env_CFLAGS_value= -ac_env_CPPFLAGS_set= -ac_env_CPPFLAGS_value= -ac_env_CPP_set= -ac_env_CPP_value= -ac_env_CXXCPP_set= -ac_env_CXXCPP_value= -ac_env_CXXFLAGS_set= -ac_env_CXXFLAGS_value= -ac_env_CXX_set= -ac_env_CXX_value= -ac_env_FCFLAGS_set= -ac_env_FCFLAGS_value= -ac_env_FC_set= -ac_env_FC_value= -ac_env_LDFLAGS_set= -ac_env_LDFLAGS_value= -ac_env_LIBS_set= -ac_env_LIBS_value= -ac_env_LT_SYS_LIBRARY_PATH_set= -ac_env_LT_SYS_LIBRARY_PATH_value= -ac_env_build_alias_set= -ac_env_build_alias_value= -ac_env_host_alias_set= -ac_env_host_alias_value= -ac_env_target_alias_set= -ac_env_target_alias_value= -ac_exec_ext= -ac_ext=c -ac_hostname=jelly -ac_includes_default='#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif' -ac_init_help= -ac_init_version=false -ac_install_sh='../bin/install-sh -c' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_ls_di='47252934656 .' -ac_make=gmake -ac_msg='sources are in .., but `cd ..'\'' does not work' -ac_must_keep_next=false -ac_new_set= -ac_new_val= -ac_old_set= -ac_old_val= -ac_pass=2 -ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -FC -FCFLAGS -CXX -CXXFLAGS -CCC -CXXCPP -LT_SYS_LIBRARY_PATH -CPP' -ac_prev= -ac_prog=gawk -ac_pwd=/mnt/wrk/lrknox/hdf5_hdf5/build -ac_pwd_ls_di='47252934656 .' -ac_save_IFS=' -' -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -ac_signal=0 -ac_site_file=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/etc/config.site -ac_site_file1=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/share/config.site -ac_site_file2=/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/etc/config.site -ac_srcdir_defaulted=yes -ac_subst_files= -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -LIBOBJS -HAVE_SHARED_CONDITIONAL_FALSE -HAVE_SHARED_CONDITIONAL_TRUE -fortran_linux_linker_option -SEARCH -BUILD_HDF5_HL_CONDITIONAL_FALSE -BUILD_HDF5_HL_CONDITIONAL_TRUE -BUILD_FORTRAN_CONDITIONAL_FALSE -BUILD_FORTRAN_CONDITIONAL_TRUE -BUILD_PARALLEL_CONDITIONAL_FALSE -BUILD_PARALLEL_CONDITIONAL_TRUE -BUILD_CXX_CONDITIONAL_FALSE -BUILD_CXX_CONDITIONAL_TRUE -STRICT_FORMAT_CHECKS -DEFAULT_API_VERSION -DEPRECATED_SYMBOLS -BUILD_ALL_CONDITIONAL_FALSE -BUILD_ALL_CONDITIONAL_TRUE -ROOT -CXX_VERSION -FC_VERSION -CC_VERSION -WORDS_BIGENDIAN -BYTESEX -CONFIG_MODE -CONFIG_USER -CONFIG_DATE -H5_VERSION -DIRECT_VFD_CONDITIONAL_FALSE -DIRECT_VFD_CONDITIONAL_TRUE -ADD_PARALLEL_FILES -USINGMEMCHECKER -CLEARFILEBUF -INSTRUMENT_LIBRARY -TRACE_API -DEBUG_PKG -HAVE_PTHREAD -BUILD_SHARED_SZIP_CONDITIONAL_FALSE -BUILD_SHARED_SZIP_CONDITIONAL_TRUE -LL_PATH -USE_FILTER_SZIP -USE_FILTER_DEFLATE -NOT_UNAME_CYGWIN_FALSE -NOT_UNAME_CYGWIN_TRUE -UNAME_CYGWIN -AM_MAKEFLAGS -LT_STATIC_EXEC -USE_PLUGINS_CONDITIONAL_FALSE -USE_PLUGINS_CONDITIONAL_TRUE -CPP -LT_SYS_LIBRARY_PATH -OTOOL64 -OTOOL -LIPO -NMEDIT -DSYMUTIL -MANIFEST_TOOL -RANLIB -ac_ct_AR -DLLTOOL -OBJDUMP -LN_S -NM -ac_ct_DUMPBIN -DUMPBIN -LD -FGREP -EGREP -GREP -SED -LIBTOOL -FORTRAN_SHARED_CONDITIONAL_FALSE -FORTRAN_SHARED_CONDITIONAL_TRUE -H5_FORTRAN_SHARED -TESTPARALLEL -RUNPARALLEL -RUNSERIAL -PARALLEL -TIME -TR -AR -PERL -HL_FOR -HL -CXXCPP -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -ac_ct_CXX -CXXFLAGS -FORTRAN_DEFAULT_REALisDBLE_F_FALSE -FORTRAN_DEFAULT_REALisDBLE_F_TRUE -FORTRAN_2003_CONDITIONAL_F_FALSE -FORTRAN_2003_CONDITIONAL_F_TRUE -FORTRAN_HAVE_STORAGE_SIZE_FALSE -FORTRAN_HAVE_STORAGE_SIZE_TRUE -FORTRAN_HAVE_C_SIZEOF_FALSE -FORTRAN_HAVE_C_SIZEOF_TRUE -FORTRAN_HAVE_SIZEOF_FALSE -FORTRAN_HAVE_SIZEOF_TRUE -FCLIBS -F9XMODEXT -F9XMODFLAG -FSEARCH_DIRS -F9XSUFFIXFLAG -FCFLAGS_f90 -ac_ct_FC -FCFLAGS -OBJECT_NAMELEN_DEFAULT_F -SIZE_T -HID_T -HSSIZE_T -HSIZE_T -HADDR_T -R_INTEGER -R_LARGE -HAVE_FORTRAN_2003 -HDF5_INTERFACES -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -am__nodep -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CC -LDFLAGS -CFLAGS -CC -UNAME_INFO -enable_static -enable_shared -STATIC_SHARED -THREADSAFE -DIRECT_VFD -HAVE_DMALLOC -CODESTACK -INSTRUMENT -HDF5_HL -CXX -HDF_CXX -FC2003 -FC -HDF_FORTRAN2003 -HDF_FORTRAN -STATIC_EXEC -MPE -EXTERNAL_FILTERS -AM_LDFLAGS -AM_CPPFLAGS -AM_CXXFLAGS -AM_FCFLAGS -AM_CFLAGS -H5_LDFLAGS -H5_CXXFLAGS -H5_FCFLAGS -H5_CPPFLAGS -H5_CFLAGS -CPPFLAGS -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -MAINT -MAINTAINER_MODE_FALSE -MAINTAINER_MODE_TRUE -AM_BACKSLASH -AM_DEFAULT_VERBOSITY -AM_DEFAULT_V -AM_V -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_tool_prefix= -ac_unique_file=src/H5.c -ac_unrecognized_opts= -ac_unrecognized_sep= -ac_user_opts=' -enable_option_checking -enable_silent_rules -enable_maintainer_mode -enable_dependency_tracking -enable_unsupported -enable_fortran -enable_fortran2003 -enable_cxx -enable_hl -enable_shared -enable_static -with_pic -enable_fast_install -with_aix_soname -with_gnu_ld -with_sysroot -enable_libtool_lock -enable_static_exec -enable_sharedlib_rpath -enable_production -with_fnord -with_dmalloc -with_zlib -with_szlib -enable_threadsafe -with_pthread -enable_debug -enable_codestack -enable_metadata_trace_file -enable_trace -enable_instrument -enable_clear_file_buffers -enable_using_memchecker -enable_parallel -with_mpe -enable_direct_vfd -with_default_plugindir -enable_dconv_exception -enable_dconv_accuracy -enable_build_all -enable_deprecated_symbols -with_default_api_version -enable_strict_format_checks -enable_embedded_libinfo -' -ac_val='${datarootdir}/man' -ac_var=CPP -ac_word=gawk -am__api_version=1.15 -am__isrc=' -I$(srcdir)' -am__leading_dot=. -am__tar='$${TAR-tar} chof - "$$tardir"' -am__untar='$${TAR-tar} xf -' -am_aux_dir=/mnt/wrk/lrknox/hdf5_hdf5/bin -am_cv_make_support_nested_variables=yes -am_lf=' -' -am_make='gmake -j 8' -am_missing_run='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing ' -am_sleep_pid=173841 -as_basename=basename -as_bourne_compatible='if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '\''${1+"$@"}'\''='\''"$@"'\'' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -' -as_cr_LETTERS=ABCDEFGHIJKLMNOPQRSTUVWXYZ -as_cr_Letters=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -as_cr_alnum=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 -as_cr_digits=0123456789 -as_cr_letters=abcdefghijklmnopqrstuvwxyz -as_dir=/usr/bin -as_dirname=dirname -as_echo='printf %s\n' -as_echo_n='printf %s' -as_executable_p=as_fn_executable_p -as_expr=expr -as_have_required=yes -as_lineno_1=477 -as_lineno_1a=477 -as_lineno_2=478 -as_lineno_2a=478 -as_ln_s='ln -s' -as_me=configure -as_mkdir_p='mkdir -p "$as_dir"' -as_myself=../configure -as_nl=' -' -as_required='as_fn_return () { (exit $1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = "$1" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x$exitcode = x0 || exit 1 -test -x / || exit 1' -as_save_IFS=' -' -as_suggested=' as_lineno_1=198 as_lineno_1a=$LINENO - as_lineno_2=199 as_lineno_2a=$LINENO - eval '\''test "x$as_lineno_1'\''$as_run'\''" != "x$as_lineno_2'\''$as_run'\''" && - test "x`expr $as_lineno_1'\''$as_run'\'' + 1`" = "x$as_lineno_2'\''$as_run'\''"'\'' || exit 1 - - test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( - ECHO='\''\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\'' - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - PATH=/empty FPATH=/empty; export PATH FPATH - test "X`printf %s $ECHO`" = "X$ECHO" \ - || test "X`print -r -- $ECHO`" = "X$ECHO" ) || exit 1 -test $(( 1 + 1 )) = 2 || exit 1' -as_test_x='test -x' -as_tr_cpp='eval sed '\''y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[^_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]%_%g'\''' -as_tr_sh='eval sed '\''y%*+%pp%;s%[^_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]%_%g'\''' -as_unset=as_fn_unset -as_var=MAILPATH -bindir='${exec_prefix}/bin' -build=x86_64-unknown-linux-gnu -build_cpu=x86_64 -build_os=linux-gnu -build_vendor=unknown -cache_file=/dev/null -cross_compiling=no -datadir='${datarootdir}' -datarootdir='${prefix}/share' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -dvidir='${docdir}' -exec_prefix=NONE -host=x86_64-unknown-linux-gnu -host_cpu=x86_64 -host_os=linux-gnu -host_vendor=unknown -htmldir='${docdir}' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -install_sh='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -mkdir_p='$(MKDIR_P)' -myhost=jelly -no_create= -no_recursion= -oldincludedir=/usr/include -pdfdir='${docdir}' -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -psdir='${docdir}' -saved_user_CFLAGS= -saved_user_CPPFLAGS= -saved_user_CXXFLAGS= -saved_user_FCFLAGS= -saved_user_LDFLAGS= -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -silent= -site= -srcdir=.. -subdirs= -sysconfdir='${prefix}/etc' -target= -verbose= -x_includes=NONE -x_libraries=NONE -configure:3876: result: done -configure:3925: checking if basename works -configure:3931: result: yes -configure:3936: checking if xargs works -configure:3942: result: yes -configure:3950: checking for cached host -configure:3957: result: none -configure:4011: checking for config x86_64-unknown-linux-gnu -configure:4019: result: no -configure:4011: checking for config x86_64-unknown-linux-gnu -configure:4019: result: no -configure:4011: checking for config unknown-linux-gnu -configure:4019: result: no -configure:4011: checking for config unknown-linux-gnu -configure:4019: result: no -configure:4011: checking for config x86_64-linux-gnu -configure:4019: result: no -configure:4011: checking for config x86_64-linux-gnu -configure:4019: result: no -configure:4011: checking for config x86_64-unknown -configure:4019: result: no -configure:4011: checking for config linux-gnu -configure:4015: result: found -configure:4031: checking for config ../config/site-specific/host-jelly -configure:4039: result: no -configure:4116: checking for gcc -configure:4143: result: gcc -configure:4372: checking for C compiler version -configure:4381: gcc --version >&5 -gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) -Copyright (C) 2015 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -configure:4392: $? = 0 -configure:4381: gcc -v >&5 -Using built-in specs. -COLLECT_GCC=gcc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) -configure:4392: $? = 0 -configure:4381: gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:4392: $? = 4 -configure:4381: gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion' -gcc: fatal error: no input files -compilation terminated. -configure:4392: $? = 4 -configure:4412: checking whether the C compiler works -configure:4434: gcc conftest.c >&5 -configure:4438: $? = 0 -configure:4486: result: yes -configure:4489: checking for C compiler default output file name -configure:4491: result: a.out -configure:4497: checking for suffix of executables -configure:4504: gcc -o conftest conftest.c >&5 -configure:4508: $? = 0 -configure:4530: result: -configure:4552: checking whether we are cross compiling -configure:4560: gcc -o conftest conftest.c >&5 -configure:4564: $? = 0 -configure:4571: ./conftest -configure:4575: $? = 0 -configure:4590: result: no -configure:4595: checking for suffix of object files -configure:4617: gcc -c conftest.c >&5 -configure:4621: $? = 0 -configure:4642: result: o -configure:4646: checking whether we are using the GNU C compiler -configure:4665: gcc -c conftest.c >&5 -configure:4665: $? = 0 -configure:4674: result: yes -configure:4683: checking whether gcc accepts -g -configure:4703: gcc -c -g conftest.c >&5 -configure:4703: $? = 0 -configure:4744: result: yes -configure:4761: checking for gcc option to accept ISO C89 -configure:4824: gcc -c conftest.c >&5 -configure:4824: $? = 0 -configure:4837: result: none needed -configure:4862: checking whether gcc understands -c and -o together -configure:4884: gcc -c conftest.c -o conftest2.o -configure:4887: $? = 0 -configure:4884: gcc -c conftest.c -o conftest2.o -configure:4887: $? = 0 -configure:4899: result: yes -configure:4927: checking for style of include used by gmake -j 8 -configure:4955: result: GNU -configure:4981: checking dependency style of gcc -configure:5092: result: gcc3 -configure:5114: checking if unsupported combinations of configure options are allowed -configure:5124: result: no -configure:5139: checking if Fortran interface enabled -configure:5157: checking if Fortran 2003 interface enabled -configure:6804: checking for C++ compiler version -configure:6813: g++ --version >&5 -g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4) -Copyright (C) 2015 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -configure:6824: $? = 0 -configure:6813: g++ -v >&5 -Using built-in specs. -COLLECT_GCC=g++ -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) -configure:6824: $? = 0 -configure:6813: g++ -V >&5 -g++: error: unrecognized command line option '-V' -g++: fatal error: no input files -compilation terminated. -configure:6824: $? = 4 -configure:6813: g++ -qversion >&5 -g++: error: unrecognized command line option '-qversion' -g++: fatal error: no input files -compilation terminated. -configure:6824: $? = 4 -configure:6828: checking whether we are using the GNU C++ compiler -configure:6855: g++ -c conftest.cpp >&5 -configure:6855: $? = 0 -configure:6864: result: yes -configure:6873: checking whether g++ accepts -g -configure:6901: g++ -c -g conftest.cpp >&5 -configure:6901: $? = 0 -configure:6958: result: yes -configure:6983: checking dependency style of g++ -configure:7094: result: gcc3 -configure:7114: checking how to run the C++ preprocessor -configure:7141: g++ -E conftest.cpp -configure:7141: $? = 0 -configure:7155: g++ -E conftest.cpp -conftest.cpp:11:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:7155: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| /* end confdefs.h. */ -| #include -configure:7180: result: g++ -E -configure:7200: g++ -E conftest.cpp -configure:7200: $? = 0 -configure:7214: g++ -E conftest.cpp -conftest.cpp:11:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:7214: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| /* end confdefs.h. */ -| #include -configure:7243: checking if c++ interface enabled -configure:7402: result: no -configure:7423: checking if high level library is enabled -configure:7460: checking for perl -configure:7476: found /usr/bin/perl -configure:7487: result: perl -configure:7510: checking for ar -configure:7526: found /usr/bin/ar -configure:7537: result: ar -configure:7556: checking whether gmake -j 8 sets $(MAKE) -configure:7578: result: yes -configure:7595: checking for tr -configure:7613: found /usr/bin/tr -configure:7625: result: /usr/bin/tr -configure:7644: checking if srcdir= and time commands work together -configure:7652: result: yes -configure:7808: checking how to print strings -configure:7835: result: printf -configure:7856: checking for a sed that does not truncate output -configure:7920: result: /usr/bin/sed -configure:7938: checking for grep that handles long lines and -e -configure:7996: result: /usr/bin/grep -configure:8001: checking for egrep -configure:8063: result: /usr/bin/grep -E -configure:8068: checking for fgrep -configure:8130: result: /usr/bin/grep -F -configure:8165: checking for ld used by gcc -configure:8232: result: /usr/bin/ld -configure:8239: checking if the linker (/usr/bin/ld) is GNU ld -configure:8254: result: yes -configure:8266: checking for BSD- or MS-compatible name lister (nm) -configure:8320: result: /usr/bin/nm -B -configure:8450: checking the name lister (/usr/bin/nm -B) interface -configure:8457: gcc -c conftest.c >&5 -configure:8460: /usr/bin/nm -B "conftest.o" -configure:8463: output -0000000000000000 B some_variable -configure:8470: result: BSD nm -configure:8473: checking whether ln -s works -configure:8477: result: yes -configure:8485: checking the maximum length of command line arguments -configure:8616: result: 1572864 -configure:8664: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format -configure:8704: result: func_convert_file_noop -configure:8711: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format -configure:8731: result: func_convert_file_noop -configure:8738: checking for /usr/bin/ld option to reload object files -configure:8745: result: -r -configure:8819: checking for objdump -configure:8835: found /usr/bin/objdump -configure:8846: result: objdump -configure:8878: checking how to recognize dependent libraries -configure:9078: result: pass_all -configure:9163: checking for dlltool -configure:9193: result: no -configure:9223: checking how to associate runtime and link libraries -configure:9250: result: printf %s\n -configure:9374: checking for archiver @FILE support -configure:9399: gcc -c conftest.c >&5 -configure:9399: $? = 0 -configure:9402: ar cru libconftest.a @conftest.lst >&5 -configure:9405: $? = 0 -configure:9410: ar cru libconftest.a @conftest.lst >&5 -ar: conftest.o: No such file or directory -configure:9413: $? = 1 -configure:9425: result: @ -configure:9483: checking for strip -configure:9499: found /usr/bin/strip -configure:9510: result: strip -configure:9582: checking for ranlib -configure:9598: found /usr/bin/ranlib -configure:9609: result: ranlib -configure:9711: checking command to parse /usr/bin/nm -B output from gcc object -configure:9864: gcc -c conftest.c >&5 -configure:9867: $? = 0 -configure:9871: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm -configure:9874: $? = 0 -configure:9940: gcc -o conftest conftest.c conftstm.o >&5 -configure:9943: $? = 0 -configure:9981: result: ok -configure:10028: checking for sysroot -configure:10058: result: no -configure:10065: checking for a working dd -configure:10103: result: /usr/bin/dd -configure:10107: checking how to truncate binary pipes -configure:10122: result: /usr/bin/dd bs=4096 count=1 -configure:10258: gcc -c conftest.c >&5 -configure:10261: $? = 0 -configure:10459: checking for mt -configure:10489: result: no -configure:10509: checking if : is a manifest tool -configure:10515: : '-?' -configure:10523: result: no -configure:11208: checking how to run the C preprocessor -configure:11239: gcc -E conftest.c -configure:11239: $? = 0 -configure:11253: gcc -E conftest.c -conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:11253: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| /* end confdefs.h. */ -| #include -configure:11278: result: gcc -E -configure:11298: gcc -E conftest.c -configure:11298: $? = 0 -configure:11312: gcc -E conftest.c -conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:11312: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| /* end confdefs.h. */ -| #include -configure:11341: checking for ANSI C header files -configure:11369: gcc -c conftest.c >&5 -configure:11369: $? = 0 -configure:11442: gcc -o conftest conftest.c >&5 -configure:11442: $? = 0 -configure:11442: ./conftest -configure:11442: $? = 0 -configure:11453: result: yes -configure:11466: checking for sys/types.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for sys/stat.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for stdlib.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for string.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for memory.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for strings.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for inttypes.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for stdint.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11466: checking for unistd.h -configure:11466: gcc -c conftest.c >&5 -configure:11466: $? = 0 -configure:11466: result: yes -configure:11480: checking for dlfcn.h -configure:11480: gcc -c conftest.c >&5 -configure:11480: $? = 0 -configure:11480: result: yes -configure:11745: checking for objdir -configure:11760: result: .libs -configure:12020: checking if gcc supports -fno-rtti -fno-exceptions -configure:12038: gcc -c -fno-rtti -fno-exceptions conftest.c >&5 -cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] -configure:12042: $? = 0 -configure:12055: result: no -configure:12413: checking for gcc option to produce PIC -configure:12420: result: -fPIC -DPIC -configure:12428: checking if gcc PIC flag -fPIC -DPIC works -configure:12446: gcc -c -fPIC -DPIC -DPIC conftest.c >&5 -configure:12450: $? = 0 -configure:12463: result: yes -configure:12492: checking if gcc static flag -static works -configure:12520: result: yes -configure:12535: checking if gcc supports -c -o file.o -configure:12556: gcc -c -o out/conftest2.o conftest.c >&5 -configure:12560: $? = 0 -configure:12582: result: yes -configure:12590: checking if gcc supports -c -o file.o -configure:12637: result: yes -configure:12670: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:13945: result: yes -configure:13982: checking whether -lc should be explicitly linked in -configure:13990: gcc -c conftest.c >&5 -configure:13993: $? = 0 -configure:14008: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 -configure:14011: $? = 0 -configure:14025: result: no -configure:14185: checking dynamic linker characteristics -configure:14774: gcc -o conftest -Wl,-rpath -Wl,/foo conftest.c >&5 -configure:14774: $? = 0 -configure:15011: result: GNU/Linux ld.so -configure:15133: checking how to hardcode library paths into programs -configure:15158: result: immediate -configure:15268: checking for shl_load -configure:15268: gcc -o conftest conftest.c >&5 -/tmp/ccQfkVTv.o: In function `main': -conftest.c:(.text+0xa): undefined reference to `shl_load' -collect2: error: ld returned 1 exit status -configure:15268: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| /* end confdefs.h. */ -| /* Define shl_load to an innocuous variant, in case declares shl_load. -| For example, HP-UX 11i declares gettimeofday. */ -| #define shl_load innocuous_shl_load -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char shl_load (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef shl_load -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char shl_load (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_shl_load || defined __stub___shl_load -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return shl_load (); -| ; -| return 0; -| } -configure:15268: result: no -configure:15272: checking for shl_load in -ldld -configure:15305: gcc -o conftest conftest.c -ldld >&5 -/usr/bin/ld: cannot find -ldld -collect2: error: ld returned 1 exit status -configure:15305: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| /* end confdefs.h. */ -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char shl_load (); -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return shl_load (); -| ; -| return 0; -| } -configure:15314: result: no -configure:15319: checking for dlopen -configure:15319: gcc -o conftest conftest.c >&5 -/tmp/ccFLlDpE.o: In function `main': -conftest.c:(.text+0xa): undefined reference to `dlopen' -collect2: error: ld returned 1 exit status -configure:15319: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| /* end confdefs.h. */ -| /* Define dlopen to an innocuous variant, in case declares dlopen. -| For example, HP-UX 11i declares gettimeofday. */ -| #define dlopen innocuous_dlopen -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char dlopen (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef dlopen -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char dlopen (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_dlopen || defined __stub___dlopen -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return dlopen (); -| ; -| return 0; -| } -configure:15319: result: no -configure:15323: checking for dlopen in -ldl -configure:15356: gcc -o conftest conftest.c -ldl >&5 -configure:15356: $? = 0 -configure:15365: result: yes -configure:15500: checking whether a program can dlopen itself -configure:15580: gcc -o conftest -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 -configure:15583: $? = 0 -configure:15601: result: yes -configure:15606: checking whether a statically linked program can dlopen itself -configure:15686: gcc -o conftest -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 -/tmp/ccEVJXdQ.o: In function `main': -conftest.c:(.text+0x1e): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/usr/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie -collect2: error: ld returned 1 exit status -configure:15689: $? = 1 -configure:15707: result: no -configure:15746: checking whether stripping libraries is possible -configure:15751: result: yes -configure:15786: checking if libtool supports shared libraries -configure:15788: result: yes -configure:15791: checking whether to build shared libraries -configure:15816: result: yes -configure:15819: checking whether to build static libraries -configure:15823: result: yes -configure:22283: checking if we should install only statically linked executables -configure:22328: checking if -Wl,-rpath should be used to link shared libs in nondefault directories -configure:22346: result: yes -configure:22365: checking whether make will build with undefined variables -configure:22374: result: yes -configure:22389: checking for production mode -configure:22410: result: development -configure:22439: checking for ceil in -lm -configure:22472: gcc -o conftest conftest.c -lm >&5 -conftest.c:31:6: warning: conflicting types for built-in function 'ceil' [enabled by default] - char ceil (); - ^ -configure:22472: $? = 0 -configure:22481: result: yes -configure:22492: checking for dlopen in -ldl -configure:22534: result: yes -configure:22549: checking for ANSI C header files -configure:22661: result: yes -configure:22669: checking whether time.h and sys/time.h may both be included -configure:22697: gcc -c conftest.c >&5 -configure:22697: $? = 0 -configure:22704: result: yes -configure:22717: checking sys/resource.h usability -configure:22717: gcc -c conftest.c >&5 -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking sys/resource.h presence -configure:22717: gcc -E conftest.c -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking for sys/resource.h -configure:22717: result: yes -configure:22717: checking sys/time.h usability -configure:22717: gcc -c conftest.c >&5 -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking sys/time.h presence -configure:22717: gcc -E conftest.c -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking for sys/time.h -configure:22717: result: yes -configure:22717: checking for unistd.h -configure:22717: result: yes -configure:22717: checking sys/ioctl.h usability -configure:22717: gcc -c conftest.c >&5 -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking sys/ioctl.h presence -configure:22717: gcc -E conftest.c -configure:22717: $? = 0 -configure:22717: result: yes -configure:22717: checking for sys/ioctl.h -configure:22717: result: yes -configure:22717: checking for sys/stat.h -configure:22717: result: yes -configure:22730: checking sys/socket.h usability -configure:22730: gcc -c conftest.c >&5 -configure:22730: $? = 0 -configure:22730: result: yes -configure:22730: checking sys/socket.h presence -configure:22730: gcc -E conftest.c -configure:22730: $? = 0 -configure:22730: result: yes -configure:22730: checking for sys/socket.h -configure:22730: result: yes -configure:22730: checking for sys/types.h -configure:22730: result: yes -configure:22743: checking stddef.h usability -configure:22743: gcc -c conftest.c >&5 -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking stddef.h presence -configure:22743: gcc -E conftest.c -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking for stddef.h -configure:22743: result: yes -configure:22743: checking setjmp.h usability -configure:22743: gcc -c conftest.c >&5 -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking setjmp.h presence -configure:22743: gcc -E conftest.c -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking for setjmp.h -configure:22743: result: yes -configure:22743: checking features.h usability -configure:22743: gcc -c conftest.c >&5 -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking features.h presence -configure:22743: gcc -E conftest.c -configure:22743: $? = 0 -configure:22743: result: yes -configure:22743: checking for features.h -configure:22743: result: yes -configure:22755: checking dirent.h usability -configure:22755: gcc -c conftest.c >&5 -configure:22755: $? = 0 -configure:22755: result: yes -configure:22755: checking dirent.h presence -configure:22755: gcc -E conftest.c -configure:22755: $? = 0 -configure:22755: result: yes -configure:22755: checking for dirent.h -configure:22755: result: yes -configure:22767: checking for stdint.h -configure:22767: result: yes -configure:22781: checking mach/mach_time.h usability -configure:22781: gcc -c conftest.c >&5 -conftest.c:73:28: fatal error: mach/mach_time.h: No such file or directory - #include - ^ -compilation terminated. -configure:22781: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:22781: result: no -configure:22781: checking mach/mach_time.h presence -configure:22781: gcc -E conftest.c -conftest.c:40:28: fatal error: mach/mach_time.h: No such file or directory - #include - ^ -compilation terminated. -configure:22781: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -configure:22781: result: no -configure:22781: checking for mach/mach_time.h -configure:22781: result: no -configure:22890: checking io.h usability -configure:22890: gcc -c conftest.c >&5 -conftest.c:73:16: fatal error: io.h: No such file or directory - #include - ^ -compilation terminated. -configure:22890: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:22890: result: no -configure:22890: checking io.h presence -configure:22890: gcc -E conftest.c -conftest.c:40:16: fatal error: io.h: No such file or directory - #include - ^ -compilation terminated. -configure:22890: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -configure:22890: result: no -configure:22890: checking for io.h -configure:22890: result: no -configure:22890: checking winsock2.h usability -configure:22890: gcc -c conftest.c >&5 -conftest.c:73:22: fatal error: winsock2.h: No such file or directory - #include - ^ -compilation terminated. -configure:22890: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:22890: result: no -configure:22890: checking winsock2.h presence -configure:22890: gcc -E conftest.c -conftest.c:40:22: fatal error: winsock2.h: No such file or directory - #include - ^ -compilation terminated. -configure:22890: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| /* end confdefs.h. */ -| #include -configure:22890: result: no -configure:22890: checking for winsock2.h -configure:22890: result: no -configure:22890: checking sys/timeb.h usability -configure:22890: gcc -c conftest.c >&5 -configure:22890: $? = 0 -configure:22890: result: yes -configure:22890: checking sys/timeb.h presence -configure:22890: gcc -E conftest.c -configure:22890: $? = 0 -configure:22890: result: yes -configure:22890: checking for sys/timeb.h -configure:22890: result: yes -configure:22918: checking if libtool needs -no-undefined flag to build shared libraries -configure:22929: result: no -configure:22944: checking for _FILE_OFFSET_BITS value needed for large files -configure:22977: gcc -c conftest.c >&5 -configure:22977: $? = 0 -configure:23017: result: no -configure:23161: checking for off_t -configure:23161: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23161: $? = 0 -configure:23161: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:85:20: error: expected expression before ')' token - if (sizeof ((off_t))) - ^ -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23161: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| if (sizeof ((off_t))) -| return 0; -| ; -| return 0; -| } -configure:23161: result: yes -configure:23172: checking for size_t -configure:23172: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23172: $? = 0 -configure:23172: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:85:21: error: expected expression before ')' token - if (sizeof ((size_t))) - ^ -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23172: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| if (sizeof ((size_t))) -| return 0; -| ; -| return 0; -| } -configure:23172: result: yes -configure:23183: checking for ssize_t -configure:23183: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23183: $? = 0 -configure:23183: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:85:22: error: expected expression before ')' token - if (sizeof ((ssize_t))) - ^ -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23183: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| if (sizeof ((ssize_t))) -| return 0; -| ; -| return 0; -| } -configure:23183: result: yes -configure:23194: checking for ptrdiff_t -configure:23194: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23194: $? = 0 -configure:23194: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:83:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:85:24: error: expected expression before ')' token - if (sizeof ((ptrdiff_t))) - ^ -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23194: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| if (sizeof ((ptrdiff_t))) -| return 0; -| ; -| return 0; -| } -configure:23194: result: yes -configure:23205: checking whether byte ordering is bigendian -configure:23220: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:42:9: warning: identifier "not" is a special operator name in C++ [-Wc++-compat] - not a universal capable compiler - ^ -conftest.c:42:9: error: unknown type name 'not' -conftest.c:42:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' - not a universal capable compiler - ^ -conftest.c:42:15: error: unknown type name 'universal' -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23220: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #ifndef __APPLE_CC__ -| not a universal capable compiler -| #endif -| typedef int dummy; -| -configure:23273: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:53:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:53:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23273: $? = 0 -configure:23299: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:53:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:53:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:56:4: warning: identifier "not" is a special operator name in C++ [-Wc++-compat] - not big endian - ^ -conftest.c:56:4: error: unknown type name 'not' -conftest.c:56:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' - not big endian - ^ -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23299: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| /* end confdefs.h. */ -| #include -| #include -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| #if BYTE_ORDER != BIG_ENDIAN -| not big endian -| #endif -| -| ; -| return 0; -| } -configure:23459: result: no -configure:23481: checking size of char -configure:23486: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:74:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (char)); } - ^ -conftest.c: In function 'longval': -conftest.c:74:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:75:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (char)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:75:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:87:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:87:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23486: $? = 0 -configure:23486: ./conftest -configure:23486: $? = 0 -configure:23500: result: 1 -configure:23514: checking size of short -configure:23519: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:75:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (short)); } - ^ -conftest.c: In function 'longval': -conftest.c:75:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:76:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (short)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:76:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:88:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23519: $? = 0 -configure:23519: ./conftest -configure:23519: $? = 0 -configure:23533: result: 2 -configure:23547: checking size of int -configure:23552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:76:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int)); } - ^ -conftest.c: In function 'longval': -conftest.c:76:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:77:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:77:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:89:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:89:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23552: $? = 0 -configure:23552: ./conftest -configure:23552: $? = 0 -configure:23566: result: 4 -configure:23580: checking size of unsigned -configure:23585: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:77:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (unsigned)); } - ^ -conftest.c: In function 'longval': -conftest.c:77:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:78:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (unsigned)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:78:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:90:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:90:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23585: $? = 0 -configure:23585: ./conftest -configure:23585: $? = 0 -configure:23599: result: 4 -configure:23613: checking size of long -configure:23618: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:78:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (long)); } - ^ -conftest.c: In function 'longval': -conftest.c:78:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:79:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (long)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:79:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:91:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:91:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23618: $? = 0 -configure:23618: ./conftest -configure:23618: $? = 0 -configure:23632: result: 8 -configure:23646: checking size of long long -configure:23651: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:79:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (long long)); } - ^ -conftest.c: In function 'longval': -conftest.c:79:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:80:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (long long)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:80:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:92:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:92:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23651: $? = 0 -configure:23651: ./conftest -configure:23651: $? = 0 -configure:23665: result: 8 -configure:23679: checking size of __int64 -configure:23684: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:80:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c: In function 'longval': -conftest.c:80:17: warning: old-style function definition [-Wold-style-definition] -conftest.c:80:57: error: '__int64' undeclared (first use in this function) - static long int longval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c:80:57: note: each undeclared identifier is reported only once for each function it appears in -conftest.c: At top level: -conftest.c:81:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:81:26: warning: old-style function definition [-Wold-style-definition] -conftest.c:81:67: error: '__int64' undeclared (first use in this function) - static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c: At top level: -conftest.c:93:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:93:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:99:28: error: '__int64' undeclared (first use in this function) - if (((long int) (sizeof (__int64))) < 0) - ^ -conftest.c: In function 'longval': -conftest.c:80:1: warning: control reaches end of non-void function [-Wreturn-type] - static long int longval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:81:1: warning: control reaches end of non-void function [-Wreturn-type] - static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } - ^ -conftest.c: At top level: -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23684: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| static long int longval () { return (long int) (sizeof (__int64)); } -| static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } -| #include -| #include -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| -| FILE *f = fopen ("conftest.val", "w"); -| if (! f) -| return 1; -| if (((long int) (sizeof (__int64))) < 0) -| { -| long int i = longval (); -| if (i != ((long int) (sizeof (__int64)))) -| return 1; -| fprintf (f, "%ld", i); -| } -| else -| { -| unsigned long int i = ulongval (); -| if (i != ((long int) (sizeof (__int64)))) -| return 1; -| fprintf (f, "%lu", i); -| } -| /* Do not output a trailing newline, as this causes \r\n confusion -| on some platforms. */ -| return ferror (f) || fclose (f) != 0; -| -| ; -| return 0; -| } -configure:23698: result: 0 -configure:23712: checking size of float -configure:23717: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:81:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (float)); } - ^ -conftest.c: In function 'longval': -conftest.c:81:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:82:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (float)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:82:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:94:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:94:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23717: $? = 0 -configure:23717: ./conftest -configure:23717: $? = 0 -configure:23731: result: 4 -configure:23745: checking size of double -configure:23750: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:82:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (double)); } - ^ -conftest.c: In function 'longval': -conftest.c:82:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:83:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (double)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:83:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:95:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:95:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23750: $? = 0 -configure:23750: ./conftest -configure:23750: $? = 0 -configure:23764: result: 8 -configure:23778: checking size of long double -configure:23783: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:83:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (long double)); } - ^ -conftest.c: In function 'longval': -conftest.c:83:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:84:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (long double)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:84:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:96:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:96:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23783: $? = 0 -configure:23783: ./conftest -configure:23783: $? = 0 -configure:23797: result: 16 -configure:23910: checking size of int8_t -configure:23915: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:86:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:86:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:87:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:87:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23915: $? = 0 -configure:23915: ./conftest -configure:23915: $? = 0 -configure:23929: result: 1 -configure:23943: checking size of uint8_t -configure:23948: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:87:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:87:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:88:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:100:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:100:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23948: $? = 0 -configure:23948: ./conftest -configure:23948: $? = 0 -configure:23962: result: 1 -configure:23976: checking size of int_least8_t -configure:23981: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:88:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_least8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:88:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:89:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_least8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:89:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:23981: $? = 0 -configure:23981: ./conftest -configure:23981: $? = 0 -configure:23995: result: 1 -configure:24009: checking size of uint_least8_t -configure:24014: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:89:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_least8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:89:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:90:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_least8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:90:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:102:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:102:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24014: $? = 0 -configure:24014: ./conftest -configure:24014: $? = 0 -configure:24028: result: 1 -configure:24042: checking size of int_fast8_t -configure:24047: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:90:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_fast8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:90:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:91:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_fast8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:91:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:103:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:103:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24047: $? = 0 -configure:24047: ./conftest -configure:24047: $? = 0 -configure:24061: result: 1 -configure:24075: checking size of uint_fast8_t -configure:24080: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_fast8_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:91:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:92:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_fast8_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:92:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:104:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:104:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24080: $? = 0 -configure:24080: ./conftest -configure:24080: $? = 0 -configure:24094: result: 1 -configure:24109: checking size of int16_t -configure:24114: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:92:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:92:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:93:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:93:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:105:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:105:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24114: $? = 0 -configure:24114: ./conftest -configure:24114: $? = 0 -configure:24128: result: 2 -configure:24142: checking size of uint16_t -configure:24147: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:93:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:93:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:94:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:94:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:106:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:106:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24147: $? = 0 -configure:24147: ./conftest -configure:24147: $? = 0 -configure:24161: result: 2 -configure:24175: checking size of int_least16_t -configure:24180: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:94:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_least16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:94:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:95:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_least16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:95:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:107:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:107:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24180: $? = 0 -configure:24180: ./conftest -configure:24180: $? = 0 -configure:24194: result: 2 -configure:24208: checking size of uint_least16_t -configure:24213: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:95:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_least16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:95:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:96:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_least16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:96:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:108:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:108:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24213: $? = 0 -configure:24213: ./conftest -configure:24213: $? = 0 -configure:24227: result: 2 -configure:24241: checking size of int_fast16_t -configure:24246: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:96:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_fast16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:96:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:97:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_fast16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:97:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:109:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:109:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24246: $? = 0 -configure:24246: ./conftest -configure:24246: $? = 0 -configure:24260: result: 8 -configure:24274: checking size of uint_fast16_t -configure:24279: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:97:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_fast16_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:97:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:98:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_fast16_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:98:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:110:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:110:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24279: $? = 0 -configure:24279: ./conftest -configure:24279: $? = 0 -configure:24293: result: 8 -configure:24308: checking size of int32_t -configure:24313: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:98:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:98:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:99:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:99:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:111:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:111:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24313: $? = 0 -configure:24313: ./conftest -configure:24313: $? = 0 -configure:24327: result: 4 -configure:24341: checking size of uint32_t -configure:24346: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:99:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:99:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:100:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:100:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:112:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24346: $? = 0 -configure:24346: ./conftest -configure:24346: $? = 0 -configure:24360: result: 4 -configure:24374: checking size of int_least32_t -configure:24379: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:100:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_least32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:100:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:101:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_least32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:101:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:113:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24379: $? = 0 -configure:24379: ./conftest -configure:24379: $? = 0 -configure:24393: result: 4 -configure:24407: checking size of uint_least32_t -configure:24412: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:101:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_least32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:101:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:102:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_least32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:102:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:114:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:114:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24412: $? = 0 -configure:24412: ./conftest -configure:24412: $? = 0 -configure:24426: result: 4 -configure:24440: checking size of int_fast32_t -configure:24445: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:102:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_fast32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:102:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:103:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_fast32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:103:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:115:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:115:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24445: $? = 0 -configure:24445: ./conftest -configure:24445: $? = 0 -configure:24459: result: 8 -configure:24473: checking size of uint_fast32_t -configure:24478: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:103:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_fast32_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:103:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:104:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_fast32_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:104:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:116:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24478: $? = 0 -configure:24478: ./conftest -configure:24478: $? = 0 -configure:24492: result: 8 -configure:24507: checking size of int64_t -configure:24512: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:104:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:104:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:105:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:105:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:117:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:117:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24512: $? = 0 -configure:24512: ./conftest -configure:24512: $? = 0 -configure:24526: result: 8 -configure:24540: checking size of uint64_t -configure:24545: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:105:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:105:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:106:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:106:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:118:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:118:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24545: $? = 0 -configure:24545: ./conftest -configure:24545: $? = 0 -configure:24559: result: 8 -configure:24573: checking size of int_least64_t -configure:24578: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:106:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_least64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:106:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:107:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_least64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:107:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:119:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:119:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24578: $? = 0 -configure:24578: ./conftest -configure:24578: $? = 0 -configure:24592: result: 8 -configure:24606: checking size of uint_least64_t -configure:24611: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:107:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_least64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:107:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:108:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_least64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:108:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:120:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:120:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -configure:24611: $? = 0 -configure:24611: ./conftest -configure:24611: $? = 0 -configure:24625: result: 8 -configure:24639: checking size of int_fast64_t -configure:24644: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:108:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (int_fast64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:108:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:109:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (int_fast64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:109:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:121:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:121:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24644: $? = 0 -configure:24644: ./conftest -configure:24644: $? = 0 -configure:24658: result: 8 -configure:24672: checking size of uint_fast64_t -configure:24677: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:109:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (uint_fast64_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:109:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:110:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (uint_fast64_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:110:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:122:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:122:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24677: $? = 0 -configure:24677: ./conftest -configure:24677: $? = 0 -configure:24691: result: 8 -configure:24706: checking size of size_t -configure:24711: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:110:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (size_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:110:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:111:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (size_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:111:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:123:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:123:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24711: $? = 0 -configure:24711: ./conftest -configure:24711: $? = 0 -configure:24725: result: 8 -configure:24739: checking size of ssize_t -configure:24744: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:111:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (ssize_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:111:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:112:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (ssize_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:112:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:124:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:124:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24744: $? = 0 -configure:24744: ./conftest -configure:24744: $? = 0 -configure:24758: result: 8 -configure:24772: checking size of ptrdiff_t -configure:24777: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:112:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (ptrdiff_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:112:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:113:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (ptrdiff_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:113:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:125:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24777: $? = 0 -configure:24777: ./conftest -configure:24777: $? = 0 -configure:24791: result: 8 -configure:24809: checking size of off_t -configure:24814: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:114:17: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static long int longval () { return (long int) (sizeof (off_t)); } - ^ -conftest.c: In function 'longval': -conftest.c:114:17: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:115:26: warning: function declaration isn't a prototype [-Wstrict-prototypes] - static unsigned long int ulongval () { return (long int) (sizeof (off_t)); } - ^ -conftest.c: In function 'ulongval': -conftest.c:115:26: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:127:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:127:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24814: $? = 0 -configure:24814: ./conftest -configure:24814: $? = 0 -configure:24828: result: 8 -configure:24929: checking if dev_t is scalar -configure:24954: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:96:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:96:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:98:17: warning: 'd1' is used uninitialized in this function [-Wuninitialized] - dev_t d1, d2; if(d1==d2) return 0; - ^ -conftest.c:98:17: warning: 'd2' is used uninitialized in this function [-Wuninitialized] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:24954: $? = 0 -configure:24958: result: yes -configure:25074: checking for dmalloc library -configure:25076: result: suppressed -configure:25209: checking zlib.h usability -configure:25209: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:25209: $? = 0 -configure:25209: result: yes -configure:25209: checking zlib.h presence -configure:25209: gcc -E -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -configure:25209: $? = 0 -configure:25209: result: yes -configure:25209: checking for zlib.h -configure:25209: result: yes -configure:25222: checking for compress2 in -lz -configure:25255: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char compress2 (); - ^ -conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:25255: $? = 0 -configure:25264: result: yes -configure:25283: checking for compress2 -configure:25283: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:87:0: warning: macro "compress2" is not used [-Wunused-macros] - #define compress2 innocuous_compress2 - ^ -conftest.c:108:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char compress2 (); - ^ -conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:125:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:25283: $? = 0 -configure:25283: result: yes -configure:25524: checking for szlib -configure:25526: result: suppressed -configure:25819: checking for thread safe support -configure:25857: result: no -configure:26155: checking whether CLOCK_MONOTONIC is declared -configure:26155: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:97:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:97:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26155: $? = 0 -configure:26155: result: yes -configure:26170: checking for tm_gmtoff in struct tm -configure:26193: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:98:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:98:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:100:11: warning: variable 'tm' set but not used [-Wunused-but-set-variable] - struct tm tm; tm.tm_gmtoff=0; - ^ -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26193: $? = 0 -configure:26197: result: yes -configure:26206: checking for global timezone variable -configure:26236: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26236: $? = 0 -configure:26240: result: yes -configure:26255: checking for st_blocks in struct stat -configure:26277: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:99:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:99:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:101:13: warning: variable 'sb' set but not used [-Wunused-but-set-variable] - struct stat sb; sb.st_blocks=0; - ^ -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26277: $? = 0 -configure:26281: result: yes -configure:26295: checking for _getvideoconfig -configure:26295: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:0: warning: macro "_getvideoconfig" is not used [-Wunused-macros] - #define _getvideoconfig innocuous__getvideoconfig - ^ -conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char _getvideoconfig (); - ^ -conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/ccTaI9v1.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `_getvideoconfig' -collect2: error: ld returned 1 exit status -configure:26295: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| /* end confdefs.h. */ -| /* Define _getvideoconfig to an innocuous variant, in case declares _getvideoconfig. -| For example, HP-UX 11i declares gettimeofday. */ -| #define _getvideoconfig innocuous__getvideoconfig -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char _getvideoconfig (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef _getvideoconfig -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char _getvideoconfig (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub__getvideoconfig || defined __stub____getvideoconfig -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return _getvideoconfig (); -| ; -| return 0; -| } -configure:26295: result: no -configure:26295: checking for gettextinfo -configure:26295: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:0: warning: macro "gettextinfo" is not used [-Wunused-macros] - #define gettextinfo innocuous_gettextinfo - ^ -conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char gettextinfo (); - ^ -conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/ccWYOQI2.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `gettextinfo' -collect2: error: ld returned 1 exit status -configure:26295: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| /* end confdefs.h. */ -| /* Define gettextinfo to an innocuous variant, in case declares gettextinfo. -| For example, HP-UX 11i declares gettimeofday. */ -| #define gettextinfo innocuous_gettextinfo -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char gettextinfo (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef gettextinfo -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char gettextinfo (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_gettextinfo || defined __stub___gettextinfo -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return gettextinfo (); -| ; -| return 0; -| } -configure:26295: result: no -configure:26311: checking for GetConsoleScreenBufferInfo -configure:26311: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:0: warning: macro "GetConsoleScreenBufferInfo" is not used [-Wunused-macros] - #define GetConsoleScreenBufferInfo innocuous_GetConsoleScreenBufferInfo - ^ -conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char GetConsoleScreenBufferInfo (); - ^ -conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/ccWUfMK8.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:131: undefined reference to `GetConsoleScreenBufferInfo' -collect2: error: ld returned 1 exit status -configure:26311: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| /* end confdefs.h. */ -| /* Define GetConsoleScreenBufferInfo to an innocuous variant, in case declares GetConsoleScreenBufferInfo. -| For example, HP-UX 11i declares gettimeofday. */ -| #define GetConsoleScreenBufferInfo innocuous_GetConsoleScreenBufferInfo -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char GetConsoleScreenBufferInfo (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef GetConsoleScreenBufferInfo -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char GetConsoleScreenBufferInfo (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_GetConsoleScreenBufferInfo || defined __stub___GetConsoleScreenBufferInfo -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return GetConsoleScreenBufferInfo (); -| ; -| return 0; -| } -configure:26311: result: no -configure:26311: checking for getpwuid -configure:26311: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:91:0: warning: macro "getpwuid" is not used [-Wunused-macros] - #define getpwuid innocuous_getpwuid - ^ -conftest.c:112:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char getpwuid (); - ^ -conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:129:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26311: $? = 0 -configure:26311: result: yes -configure:26325: checking for _scrsize -configure:26325: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:92:0: warning: macro "_scrsize" is not used [-Wunused-macros] - #define _scrsize innocuous__scrsize - ^ -conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char _scrsize (); - ^ -conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:130:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/ccAOesfg.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:132: undefined reference to `_scrsize' -collect2: error: ld returned 1 exit status -configure:26325: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| /* end confdefs.h. */ -| /* Define _scrsize to an innocuous variant, in case declares _scrsize. -| For example, HP-UX 11i declares gettimeofday. */ -| #define _scrsize innocuous__scrsize -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char _scrsize (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef _scrsize -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char _scrsize (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub__scrsize || defined __stub____scrsize -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return _scrsize (); -| ; -| return 0; -| } -configure:26325: result: no -configure:26325: checking for ioctl -configure:26325: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:92:0: warning: macro "ioctl" is not used [-Wunused-macros] - #define ioctl innocuous_ioctl - ^ -conftest.c:113:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char ioctl (); - ^ -conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:130:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26325: $? = 0 -configure:26325: result: yes -configure:26335: checking for struct videoconfig -configure:26356: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:103:20: error: storage size of 'w' isn't known - struct videoconfig w; w.numtextcols=0; - ^ -conftest.c:103:20: warning: unused variable 'w' [-Wunused-variable] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26356: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| /* end confdefs.h. */ -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| struct videoconfig w; w.numtextcols=0; -| ; -| return 0; -| } -configure:26363: result: no -configure:26368: checking for struct text_info -configure:26389: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:103:18: error: storage size of 'w' isn't known - struct text_info w; w.screenwidth=0; - ^ -conftest.c:103:18: warning: unused variable 'w' [-Wunused-variable] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26389: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| /* end confdefs.h. */ -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| struct text_info w; w.screenwidth=0; -| ; -| return 0; -| } -configure:26396: result: no -configure:26401: checking for TIOCGWINSZ -configure:26422: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:101:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:101:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:103:5: warning: unused variable 'w' [-Wunused-variable] - int w=TIOCGWINSZ; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26422: $? = 0 -configure:26426: result: yes -configure:26434: checking for TIOCGETD -configure:26455: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:102:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:102:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:104:5: warning: unused variable 'w' [-Wunused-variable] - int w=TIOCGETD; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26455: $? = 0 -configure:26459: result: yes -configure:26473: checking for library containing clock_gettime -configure:26512: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:100:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char clock_gettime (); - ^ -conftest.c:110:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:110:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26512: $? = 0 -configure:26529: result: none required -configure:26540: checking for alarm -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:95:0: warning: macro "alarm" is not used [-Wunused-macros] - #define alarm innocuous_alarm - ^ -conftest.c:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char alarm (); - ^ -conftest.c:133:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:133:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26540: checking for clock_gettime -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:96:0: warning: macro "clock_gettime" is not used [-Wunused-macros] - #define clock_gettime innocuous_clock_gettime - ^ -conftest.c:117:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char clock_gettime (); - ^ -conftest.c:134:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:134:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26540: checking for difftime -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:97:0: warning: macro "difftime" is not used [-Wunused-macros] - #define difftime innocuous_difftime - ^ -conftest.c:118:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char difftime (); - ^ -conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:135:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26540: checking for fork -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:98:0: warning: macro "fork" is not used [-Wunused-macros] - #define fork innocuous_fork - ^ -conftest.c:119:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char fork (); - ^ -conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:136:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26540: checking for frexpf -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:99:0: warning: macro "frexpf" is not used [-Wunused-macros] - #define frexpf innocuous_frexpf - ^ -conftest.c:120:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char frexpf (); - ^ -conftest.c:120:6: warning: conflicting types for built-in function 'frexpf' [enabled by default] - char frexpf (); - ^ -conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:137:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26540: checking for frexpl -configure:26540: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:100:0: warning: macro "frexpl" is not used [-Wunused-macros] - #define frexpl innocuous_frexpl - ^ -conftest.c:121:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char frexpl (); - ^ -conftest.c:121:6: warning: conflicting types for built-in function 'frexpl' [enabled by default] - char frexpl (); - ^ -conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:138:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26540: $? = 0 -configure:26540: result: yes -configure:26552: checking for gethostname -configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:101:0: warning: macro "gethostname" is not used [-Wunused-macros] - #define gethostname innocuous_gethostname - ^ -conftest.c:122:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char gethostname (); - ^ -conftest.c:139:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:139:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26552: $? = 0 -configure:26552: result: yes -configure:26552: checking for getrusage -configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:102:0: warning: macro "getrusage" is not used [-Wunused-macros] - #define getrusage innocuous_getrusage - ^ -conftest.c:123:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char getrusage (); - ^ -conftest.c:140:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:140:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26552: $? = 0 -configure:26552: result: yes -configure:26552: checking for gettimeofday -configure:26552: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:103:0: warning: macro "gettimeofday" is not used [-Wunused-macros] - #define gettimeofday innocuous_gettimeofday - ^ -conftest.c:124:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char gettimeofday (); - ^ -conftest.c:141:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:141:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26552: $? = 0 -configure:26552: result: yes -configure:26564: checking for lstat -configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:104:0: warning: macro "lstat" is not used [-Wunused-macros] - #define lstat innocuous_lstat - ^ -conftest.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char lstat (); - ^ -conftest.c:142:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:142:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26564: $? = 0 -configure:26564: result: yes -configure:26564: checking for rand_r -configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:105:0: warning: macro "rand_r" is not used [-Wunused-macros] - #define rand_r innocuous_rand_r - ^ -conftest.c:126:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char rand_r (); - ^ -conftest.c:143:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:143:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26564: $? = 0 -configure:26564: result: yes -configure:26564: checking for random -configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:106:0: warning: macro "random" is not used [-Wunused-macros] - #define random innocuous_random - ^ -conftest.c:127:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char random (); - ^ -conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:144:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26564: $? = 0 -configure:26564: result: yes -configure:26564: checking for setsysinfo -configure:26564: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:107:0: warning: macro "setsysinfo" is not used [-Wunused-macros] - #define setsysinfo innocuous_setsysinfo - ^ -conftest.c:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char setsysinfo (); - ^ -conftest.c:145:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:145:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/ccX3t6tu.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:147: undefined reference to `setsysinfo' -collect2: error: ld returned 1 exit status -configure:26564: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| #define HAVE_TIOCGWINSZ 1 -| #define HAVE_TIOCGETD 1 -| #define HAVE_ALARM 1 -| #define HAVE_CLOCK_GETTIME 1 -| #define HAVE_DIFFTIME 1 -| #define HAVE_FORK 1 -| #define HAVE_FREXPF 1 -| #define HAVE_FREXPL 1 -| #define HAVE_GETHOSTNAME 1 -| #define HAVE_GETRUSAGE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_LSTAT 1 -| #define HAVE_RAND_R 1 -| #define HAVE_RANDOM 1 -| /* end confdefs.h. */ -| /* Define setsysinfo to an innocuous variant, in case declares setsysinfo. -| For example, HP-UX 11i declares gettimeofday. */ -| #define setsysinfo innocuous_setsysinfo -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char setsysinfo (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef setsysinfo -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char setsysinfo (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_setsysinfo || defined __stub___setsysinfo -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return setsysinfo (); -| ; -| return 0; -| } -configure:26564: result: no -configure:26576: checking for signal -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:107:0: warning: macro "signal" is not used [-Wunused-macros] - #define signal innocuous_signal - ^ -conftest.c:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char signal (); - ^ -conftest.c:145:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:145:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26576: $? = 0 -configure:26576: result: yes -configure:26576: checking for longjmp -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:108:0: warning: macro "longjmp" is not used [-Wunused-macros] - #define longjmp innocuous_longjmp - ^ -conftest.c:129:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char longjmp (); - ^ -conftest.c:146:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:146:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26576: $? = 0 -configure:26576: result: yes -configure:26576: checking for setjmp -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:109:0: warning: macro "setjmp" is not used [-Wunused-macros] - #define setjmp innocuous_setjmp - ^ -conftest.c:130:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char setjmp (); - ^ -conftest.c:147:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:147:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26576: $? = 0 -configure:26576: result: yes -configure:26576: checking for siglongjmp -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:110:0: warning: macro "siglongjmp" is not used [-Wunused-macros] - #define siglongjmp innocuous_siglongjmp - ^ -conftest.c:131:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char siglongjmp (); - ^ -conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26576: $? = 0 -configure:26576: result: yes -configure:26576: checking for sigsetjmp -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:111:0: warning: macro "sigsetjmp" is not used [-Wunused-macros] - #define sigsetjmp innocuous_sigsetjmp - ^ -conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char sigsetjmp (); - ^ -conftest.c:149:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:149:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -/tmp/cc5pIkvX.o: In function `main': -/mnt/wrk/lrknox/hdf5_hdf5/build/conftest.c:151: undefined reference to `sigsetjmp' -collect2: error: ld returned 1 exit status -configure:26576: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| #define HAVE_TIOCGWINSZ 1 -| #define HAVE_TIOCGETD 1 -| #define HAVE_ALARM 1 -| #define HAVE_CLOCK_GETTIME 1 -| #define HAVE_DIFFTIME 1 -| #define HAVE_FORK 1 -| #define HAVE_FREXPF 1 -| #define HAVE_FREXPL 1 -| #define HAVE_GETHOSTNAME 1 -| #define HAVE_GETRUSAGE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_LSTAT 1 -| #define HAVE_RAND_R 1 -| #define HAVE_RANDOM 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_LONGJMP 1 -| #define HAVE_SETJMP 1 -| #define HAVE_SIGLONGJMP 1 -| /* end confdefs.h. */ -| /* Define sigsetjmp to an innocuous variant, in case declares sigsetjmp. -| For example, HP-UX 11i declares gettimeofday. */ -| #define sigsetjmp innocuous_sigsetjmp -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char sigsetjmp (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef sigsetjmp -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char sigsetjmp (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_sigsetjmp || defined __stub___sigsetjmp -| choke me -| #endif -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| return sigsetjmp (); -| ; -| return 0; -| } -configure:26576: result: no -configure:26576: checking for sigprocmask -configure:26576: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:111:0: warning: macro "sigprocmask" is not used [-Wunused-macros] - #define sigprocmask innocuous_sigprocmask - ^ -conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char sigprocmask (); - ^ -conftest.c:149:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:149:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26576: $? = 0 -configure:26576: result: yes -configure:26588: checking for snprintf -configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:112:0: warning: macro "snprintf" is not used [-Wunused-macros] - #define snprintf innocuous_snprintf - ^ -conftest.c:133:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char snprintf (); - ^ -conftest.c:133:6: warning: conflicting types for built-in function 'snprintf' [enabled by default] - char snprintf (); - ^ -conftest.c:150:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:150:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26588: $? = 0 -configure:26588: result: yes -configure:26588: checking for srandom -configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:113:0: warning: macro "srandom" is not used [-Wunused-macros] - #define srandom innocuous_srandom - ^ -conftest.c:134:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char srandom (); - ^ -conftest.c:151:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:151:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26588: $? = 0 -configure:26588: result: yes -configure:26588: checking for strdup -configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:114:0: warning: macro "strdup" is not used [-Wunused-macros] - #define strdup innocuous_strdup - ^ -conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char strdup (); - ^ -conftest.c:152:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:152:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26588: $? = 0 -configure:26588: result: yes -configure:26588: checking for symlink -configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:115:0: warning: macro "symlink" is not used [-Wunused-macros] - #define symlink innocuous_symlink - ^ -conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char symlink (); - ^ -conftest.c:153:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:153:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26588: $? = 0 -configure:26588: result: yes -configure:26588: checking for system -configure:26588: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:116:0: warning: macro "system" is not used [-Wunused-macros] - #define system innocuous_system - ^ -conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char system (); - ^ -conftest.c:154:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:154:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26588: $? = 0 -configure:26588: result: yes -configure:26600: checking for strtoll -configure:26600: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:117:0: warning: macro "strtoll" is not used [-Wunused-macros] - #define strtoll innocuous_strtoll - ^ -conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char strtoll (); - ^ -conftest.c:155:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:155:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26600: $? = 0 -configure:26600: result: yes -configure:26600: checking for strtoull -configure:26600: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:118:0: warning: macro "strtoull" is not used [-Wunused-macros] - #define strtoull innocuous_strtoull - ^ -conftest.c:139:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char strtoull (); - ^ -conftest.c:156:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:156:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26600: $? = 0 -configure:26600: result: yes -configure:26612: checking for tmpfile -configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:119:0: warning: macro "tmpfile" is not used [-Wunused-macros] - #define tmpfile innocuous_tmpfile - ^ -conftest.c:140:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char tmpfile (); - ^ -conftest.c:157:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:157:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26612: $? = 0 -configure:26612: result: yes -configure:26612: checking for asprintf -configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:120:0: warning: macro "asprintf" is not used [-Wunused-macros] - #define asprintf innocuous_asprintf - ^ -conftest.c:141:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char asprintf (); - ^ -conftest.c:158:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:158:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26612: $? = 0 -configure:26612: result: yes -configure:26612: checking for vasprintf -configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:121:0: warning: macro "vasprintf" is not used [-Wunused-macros] - #define vasprintf innocuous_vasprintf - ^ -conftest.c:142:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char vasprintf (); - ^ -conftest.c:159:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:159:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26612: $? = 0 -configure:26612: result: yes -configure:26612: checking for vsnprintf -configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:122:0: warning: macro "vsnprintf" is not used [-Wunused-macros] - #define vsnprintf innocuous_vsnprintf - ^ -conftest.c:143:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char vsnprintf (); - ^ -conftest.c:143:6: warning: conflicting types for built-in function 'vsnprintf' [enabled by default] - char vsnprintf (); - ^ -conftest.c:160:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:160:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26612: $? = 0 -configure:26612: result: yes -configure:26612: checking for waitpid -configure:26612: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:123:0: warning: macro "waitpid" is not used [-Wunused-macros] - #define waitpid innocuous_waitpid - ^ -conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char waitpid (); - ^ -conftest.c:161:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:161:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26612: $? = 0 -configure:26612: result: yes -configure:26625: checking for an ANSI C-conforming const -configure:26699: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:132:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:132:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:153:9: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] - ppc = (char**) pcpcc; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26699: $? = 0 -configure:26706: result: yes -configure:26715: checking if the compiler understands __inline__ -configure:26721: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:122:40: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] - static __inline__ void f(void){return;}; - ^ -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26721: $? = 0 -configure:26724: result: yes -configure:26733: checking if the compiler understands __inline -configure:26739: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:123:38: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] - static __inline void f(void){return;}; - ^ -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26739: $? = 0 -configure:26742: result: yes -configure:26751: checking if the compiler understands inline -configure:26757: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:124:36: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] - static inline void f(void){return;}; - ^ -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26757: $? = 0 -configure:26760: result: yes -configure:26769: checking for __attribute__ extension -configure:26790: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:135:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:135:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26790: $? = 0 -configure:26794: result: yes -configure:26802: checking for __func__ extension -configure:26823: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:136:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:136:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:138:14: warning: unused variable 'fname' [-Wunused-variable] - const char *fname = __func__; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26823: $? = 0 -configure:26827: result: yes -configure:26834: checking for __FUNCTION__ extension -configure:26855: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:137:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:137:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:139:14: warning: unused variable 'fname' [-Wunused-variable] - const char *fname = __FUNCTION__; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26855: $? = 0 -configure:26859: result: yes -configure:26866: checking for C99 designated initialization support -configure:26895: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:138:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:138:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:148:29: warning: unused variable 'x' [-Wunused-variable] - di_struct_t x = {0, { .d = 0.0}}; - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26895: $? = 0 -configure:26899: result: yes -configure:26912: checking how to print long long -configure:26939: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c: In function 'main': -conftest.c:136:12: warning: request for implicit conversion from 'void *' to 'char *' not permitted in C++ [-Wc++-compat] - char *s = malloc(128); - ^ -conftest.c:138:2: warning: format '%ld' expects argument of type 'long int', but argument 3 has type 'long long int' [-Wformat=] - sprintf(s,"%ld",x); - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26939: $? = 0 -configure:26939: ./conftest -configure:26939: $? = 0 -configure:26950: result: %ld and %lu -configure:26962: checking Threads support system scope -configure:26992: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:26992: $? = 0 -configure:26992: ./conftest -configure:26992: $? = 0 -configure:27008: result: yes -configure:27019: checking for debug flags -configure:27042: result: default (d,e,f,g,hg,i,mm,o,p,s,t,v,z) -configure:27072: checking whether function stack tracking is enabled -configure:27091: result: no -configure:27099: checking whether metadata trace file code is enabled -configure:27118: result: no -configure:27128: checking for API tracing -configure:27147: result: yes -configure:27165: checking for instrumented library -configure:27184: result: yes -configure:27203: checking whether to clear file buffers -configure:27219: result: yes -configure:27234: checking whether a memory checking tool will be used -configure:27253: result: no -configure:27372: checking for parallel support files -configure:27377: result: skipped -configure:27871: checking whether O_DIRECT is declared -configure:27871: gcc -c -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:144:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:144:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:27871: $? = 0 -configure:27871: result: yes -configure:27884: checking for posix_memalign -configure:27884: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:135:0: warning: macro "posix_memalign" is not used [-Wunused-macros] - #define posix_memalign innocuous_posix_memalign - ^ -conftest.c:156:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - char posix_memalign (); - ^ -conftest.c:173:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:173:1: warning: old-style function definition [-Wold-style-definition] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:27884: $? = 0 -configure:27884: result: yes -configure:27894: checking if the direct I/O virtual file driver (VFD) is enabled -configure:27922: result: no -configure:27938: checking for custom plugin default path definition -configure:27954: result: /usr/local/hdf5/lib/plugin -configure:27971: checking whether exception handling functions is checked during data conversions -configure:27982: result: yes -configure:27998: checking whether data accuracy is guaranteed during data conversions -configure:28009: result: yes -configure:28025: checking if the machine has window style path name -configure:28037: result: no -configure:28051: checking if using special algorithm to convert long double to (unsigned) long values -configure:28137: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:198:17: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - exit(ret); - ^ -conftest.c:198:17: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] - #define WANT_DCONV_EXCEPTION 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] - #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] - #define WANT_DATA_ACCURACY 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:28137: $? = 0 -configure:28137: ./conftest -configure:28137: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| #define HAVE_TIOCGWINSZ 1 -| #define HAVE_TIOCGETD 1 -| #define HAVE_ALARM 1 -| #define HAVE_CLOCK_GETTIME 1 -| #define HAVE_DIFFTIME 1 -| #define HAVE_FORK 1 -| #define HAVE_FREXPF 1 -| #define HAVE_FREXPL 1 -| #define HAVE_GETHOSTNAME 1 -| #define HAVE_GETRUSAGE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_LSTAT 1 -| #define HAVE_RAND_R 1 -| #define HAVE_RANDOM 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_LONGJMP 1 -| #define HAVE_SETJMP 1 -| #define HAVE_SIGLONGJMP 1 -| #define HAVE_SIGPROCMASK 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_SRANDOM 1 -| #define HAVE_STRDUP 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_SYSTEM 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOULL 1 -| #define HAVE_TMPFILE 1 -| #define HAVE_ASPRINTF 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_WAITPID 1 -| #define HAVE___INLINE__ 1 -| #define HAVE___INLINE 1 -| #define HAVE_INLINE 1 -| #define HAVE_ATTRIBUTE 1 -| #define HAVE_C99_FUNC 1 -| #define HAVE_FUNCTION 1 -| #define HAVE_C99_DESIGNATED_INITIALIZER 1 -| #define PRINTF_LL_WIDTH "l" -| #define SYSTEM_SCOPE_THREADS 1 -| #define HAVE_INSTRUMENTED_LIBRARY 1 -| #define CLEAR_MEMORY 1 -| #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" -| #define WANT_DCONV_EXCEPTION 1 -| #define WANT_DATA_ACCURACY 1 -| /* end confdefs.h. */ -| -| #include -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| -| long double ld = 20041683600089727.779961L; -| long ll; -| unsigned long ull; -| unsigned char s[16]; -| unsigned char s2[8]; -| int ret = 1; -| -| if(sizeof(long double) == 16 && sizeof(long) == 8) { -| /*make sure the long double type has 16 bytes in size and -| * 11 bits of exponent. If it is, -| *the bit sequence should be like below. It's not -| *a decent way to check but this info isn't available. */ -| memcpy(s, &ld, 16); -| if(s[0]==0x43 && s[1]==0x51 && s[2]==0xcc && s[3]==0xf3 && -| s[4]==0x85 && s[5]==0xeb && s[6]==0xc8 && s[7]==0xa0 && -| s[8]==0xbf && s[9]==0xcc && s[10]==0x2a && s[11]==0x3c) { -| -| /* Assign the hexadecimal value of long double type. */ -| s[0]=0x43; s[1]=0x51; s[2]=0xcc; s[3]=0xf3; -| s[4]=0x85; s[5]=0xeb; s[6]=0xc8; s[7]=0xa0; -| s[8]=0xbf; s[9]=0xcc; s[10]=0x2a; s[11]=0x3c; -| s[12]=0x3d; s[13]=0x85; s[14]=0x56; s[15]=0x20; -| -| memcpy(&ld, s, 16); -| -| ll = (long)ld; -| memcpy(s2, &ll, 8); -| -| /* The library's algorithm converts it to 0x 00 47 33 ce 17 af 22 82 -| * and gets wrong value 20041683600089730 on the IBM Power6 Linux. -| * But the IBM Power6 Linux converts it to 0x00 47 33 ce 17 af 22 7f -| * and gets the correct value 20041683600089727. It uses some special -| * algorithm. We're going to define the macro and skip the test until -| * we can figure out how they do it. */ -| if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && -| s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) -| ret = 0; -| -| ull = (unsigned long)ld; -| memcpy(s2, &ull, 8); -| -| /* The unsigned long is the same as signed long. */ -| if(s2[0]==0x00 && s2[1]==0x47 && s2[2]==0x33 && s2[3]==0xce && -| s2[4]==0x17 && s2[5]==0xaf && s2[6]==0x22 && s2[7]==0x7f) -| ret = 0; -| } -| } -| exit(ret); -| -| ; -| return 0; -| } -| -configure:28157: result: no -configure:28169: checking if using special algorithm to convert (unsigned) long to long double values -configure:28258: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:148:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:148:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:201:17: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - exit(ret); - ^ -conftest.c:201:17: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] - #define WANT_DCONV_EXCEPTION 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] - #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] - #define WANT_DATA_ACCURACY 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:28258: $? = 0 -configure:28258: ./conftest -configure:28258: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "HDF5" -| #define PACKAGE_TARNAME "hdf5" -| #define PACKAGE_VERSION "1.8.21-pre1" -| #define PACKAGE_STRING "HDF5 1.8.21-pre1" -| #define PACKAGE_BUGREPORT "help@hdfgroup.org" -| #define PACKAGE_URL "" -| #define PACKAGE "hdf5" -| #define VERSION "1.8.21-pre1" -| #define INCLUDE_HL 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define HAVE_LIBM 1 -| #define HAVE_LIBDL 1 -| #define STDC_HEADERS 1 -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_SYS_RESOURCE_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_FEATURES_H 1 -| #define HAVE_DIRENT_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define SIZEOF_CHAR 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_UNSIGNED 4 -| #define SIZEOF_LONG 8 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF___INT64 0 -| #define SIZEOF_FLOAT 4 -| #define SIZEOF_DOUBLE 8 -| #define SIZEOF_LONG_DOUBLE 16 -| #include -| #include -| #define SIZEOF_INT8_T 1 -| #define SIZEOF_UINT8_T 1 -| #define SIZEOF_INT_LEAST8_T 1 -| #define SIZEOF_UINT_LEAST8_T 1 -| #define SIZEOF_INT_FAST8_T 1 -| #define SIZEOF_UINT_FAST8_T 1 -| #define SIZEOF_INT16_T 2 -| #define SIZEOF_UINT16_T 2 -| #define SIZEOF_INT_LEAST16_T 2 -| #define SIZEOF_UINT_LEAST16_T 2 -| #define SIZEOF_INT_FAST16_T 8 -| #define SIZEOF_UINT_FAST16_T 8 -| #define SIZEOF_INT32_T 4 -| #define SIZEOF_UINT32_T 4 -| #define SIZEOF_INT_LEAST32_T 4 -| #define SIZEOF_UINT_LEAST32_T 4 -| #define SIZEOF_INT_FAST32_T 8 -| #define SIZEOF_UINT_FAST32_T 8 -| #define SIZEOF_INT64_T 8 -| #define SIZEOF_UINT64_T 8 -| #define SIZEOF_INT_LEAST64_T 8 -| #define SIZEOF_UINT_LEAST64_T 8 -| #define SIZEOF_INT_FAST64_T 8 -| #define SIZEOF_UINT_FAST64_T 8 -| #define SIZEOF_SIZE_T 8 -| #define SIZEOF_SSIZE_T 8 -| #define SIZEOF_PTRDIFF_T 8 -| #include /*for off_t definition*/ -| #define SIZEOF_OFF_T 8 -| #define DEV_T_IS_SCALAR 1 -| #define HAVE_ZLIB_H 1 -| #define HAVE_LIBZ 1 -| #define HAVE_FILTER_DEFLATE 1 -| #define HAVE_TM_GMTOFF 1 -| #define HAVE_TIMEZONE 1 -| #define HAVE_STAT_ST_BLOCKS 1 -| #define HAVE_GETPWUID 1 -| #define HAVE_IOCTL 1 -| #define HAVE_TIOCGWINSZ 1 -| #define HAVE_TIOCGETD 1 -| #define HAVE_ALARM 1 -| #define HAVE_CLOCK_GETTIME 1 -| #define HAVE_DIFFTIME 1 -| #define HAVE_FORK 1 -| #define HAVE_FREXPF 1 -| #define HAVE_FREXPL 1 -| #define HAVE_GETHOSTNAME 1 -| #define HAVE_GETRUSAGE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_LSTAT 1 -| #define HAVE_RAND_R 1 -| #define HAVE_RANDOM 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_LONGJMP 1 -| #define HAVE_SETJMP 1 -| #define HAVE_SIGLONGJMP 1 -| #define HAVE_SIGPROCMASK 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_SRANDOM 1 -| #define HAVE_STRDUP 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_SYSTEM 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOULL 1 -| #define HAVE_TMPFILE 1 -| #define HAVE_ASPRINTF 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_WAITPID 1 -| #define HAVE___INLINE__ 1 -| #define HAVE___INLINE 1 -| #define HAVE_INLINE 1 -| #define HAVE_ATTRIBUTE 1 -| #define HAVE_C99_FUNC 1 -| #define HAVE_FUNCTION 1 -| #define HAVE_C99_DESIGNATED_INITIALIZER 1 -| #define PRINTF_LL_WIDTH "l" -| #define SYSTEM_SCOPE_THREADS 1 -| #define HAVE_INSTRUMENTED_LIBRARY 1 -| #define CLEAR_MEMORY 1 -| #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" -| #define WANT_DCONV_EXCEPTION 1 -| #define WANT_DATA_ACCURACY 1 -| /* end confdefs.h. */ -| -| #include -| -| #ifdef FC_DUMMY_MAIN -| #ifndef FC_DUMMY_MAIN_EQ_F77 -| # ifdef __cplusplus -| extern "C" -| # endif -| int FC_DUMMY_MAIN() { return 1; } -| #endif -| #endif -| int -| main () -| { -| -| long double ld; -| long ll; -| unsigned long ull; -| unsigned char s[16]; -| int flag=0, ret=1; -| -| /*Determine if long double has 16 byte in size, 11 bit exponent, and -| *the bias is 0x3ff */ -| if(sizeof(long double) == 16) { -| ld = 1.0L; -| memcpy(s, &ld, 16); -| if(s[0]==0x3f && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && -| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00) -| flag = 1; -| } -| -| if(flag==1 && sizeof(long)==8) { -| ll = 0x003fffffffffffffL; -| ld = (long double)ll; -| memcpy(s, &ld, 16); -| /* The library converts the value to 0x434fffffffffffff8000000000000000. -| * In decimal it is 18014398509481982.000000, one value short of the original. -| * The IBM Power6 Linux converts it to 0x4350000000000000bff0000000000000. -| * The value is correct in decimal. It uses some special -| * algorithm. We're going to define the macro and skip the test until -| * we can figure out how they do it. */ -| if(s[0]==0x43 && s[1]==0x50 && s[2]==0x00 && s[3]==0x00 && -| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && -| s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && -| s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) -| ret = 0; -| } -| if(flag==1 && sizeof(unsigned long)==8) { -| ull = 0xffffffffffffffffUL; -| ld = (long double)ull; -| memcpy(s, &ld, 16); -| /* Use a different value from signed long to test. The problem is the same -| * for both long and unsigned long. The value is 18446744073709551615. -| * The library converts the value to 0x43effffffffffffffe000000000000000. -| * In decimal it's 18446744073709548544.000000, very different from the original. -| * The IBM Power6 Linux converts it to 0x43f0000000000000bff0000000000000. -| * The value is correct in decimal. It uses some special -| * algorithm. We're going to define the macro and skip the test until -| * we can figure out how they do it. */ -| if(s[0]==0x43 && s[1]==0xf0 && s[2]==0x00 && s[3]==0x00 && -| s[4]==0x00 && s[5]==0x00 && s[6]==0x00 && s[7]==0x00 && -| s[8]==0xbf && s[9]==0xf0 && s[10]==0x00 && s[11]==0x00 && -| s[12]==0x00 && s[13]==0x00 && s[14]==0x00 && s[15]==0x00) -| ret = 0; -| } -| exit(ret); -| -| ; -| return 0; -| } -| -configure:28278: result: no -configure:28295: checking if correctly converting long double to (unsigned) long long values -configure:28351: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c: In function 'main': -conftest.c:150:17: warning: implicit declaration of function 'memcpy' [-Wimplicit-function-declaration] - memcpy(s, &ld, 16); - ^ -conftest.c:150:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] -conftest.c:171:13: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - exit(ret); - ^ -conftest.c:171:13: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] -conftest.c:170:5: warning: label 'done' defined but not used [-Wunused-label] - done: - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] - #define WANT_DCONV_EXCEPTION 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] - #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] - #define WANT_DATA_ACCURACY 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:28351: $? = 0 -configure:28351: ./conftest -configure:28351: $? = 0 -configure:28368: result: yes -configure:28386: checking if correctly converting (unsigned) long long to long double values -configure:28446: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c: In function 'main': -conftest.c:150:17: warning: implicit declaration of function 'memcpy' [-Wimplicit-function-declaration] - memcpy(s, &ld, 16); - ^ -conftest.c:150:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] -conftest.c:159:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] - memcpy(s, &ld, 16); - ^ -conftest.c:169:17: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] - memcpy(s, &ld, 16); - ^ -conftest.c:176:13: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - exit(ret); - ^ -conftest.c:176:13: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] -conftest.c:175:5: warning: label 'done' defined but not used [-Wunused-label] - done: - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] - #define WANT_DCONV_EXCEPTION 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:135:0: warning: macro "LDOUBLE_TO_LLONG_ACCURATE" is not used [-Wunused-macros] - #define LDOUBLE_TO_LLONG_ACCURATE 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] - #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] - #define WANT_DATA_ACCURACY 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:28446: $? = 0 -configure:28446: ./conftest -configure:28446: $? = 0 -configure:28463: result: yes -configure:28587: checking additional programs should be built -configure:28615: checking if deprecated public symbols are available -configure:28627: result: yes -configure:28646: checking which version of public symbols to use by default -configure:28665: result: v18 -configure:28686: checking whether to perform strict file format checks -configure:28705: result: yes -configure:28723: checking whether to have library information embedded in the executables -configure:28734: result: yes -configure:28748: checking if alignment restrictions are strictly enforced -configure:28809: gcc -o conftest -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L conftest.c -lz -ldl -lm >&5 -conftest.c:11:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:20:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:13:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:12:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:19:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:159:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] - main () - ^ -conftest.c: In function 'main': -conftest.c:159:1: warning: old-style function definition [-Wold-style-definition] -conftest.c:162:21: warning: initialization discards 'const' qualifier from pointer target type [enabled by default] - char *chp = "beefs"; - ^ -conftest.c:163:23: warning: request for implicit conversion from 'void *' to 'char **' not permitted in C++ [-Wc++-compat] - char **chpp = malloc (2 * sizeof (char *)); - ^ -conftest.c:177:13: warning: request for implicit conversion from 'void *' to 'struct hvl_t *' not permitted in C++ [-Wc++-compat] - vlp = malloc (2 * sizeof (hvl_t)); - ^ -conftest.c: At top level: -conftest.c:88:0: warning: macro "HAVE_GETPWUID" is not used [-Wunused-macros] - #define HAVE_GETPWUID 1 - ^ -conftest.c:15:0: warning: macro "HAVE_STRING_H" is not used [-Wunused-macros] - #define HAVE_STRING_H 1 - ^ -conftest.c:49:0: warning: macro "SIZEOF_LONG_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_LONG_DOUBLE 16 - ^ -conftest.c:45:0: warning: macro "SIZEOF_LONG_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG_LONG 8 - ^ -conftest.c:54:0: warning: macro "SIZEOF_INT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST8_T 1 - ^ -conftest.c:113:0: warning: macro "HAVE_SYSTEM" is not used [-Wunused-macros] - #define HAVE_SYSTEM 1 - ^ -conftest.c:117:0: warning: macro "HAVE_ASPRINTF" is not used [-Wunused-macros] - #define HAVE_ASPRINTF 1 - ^ -conftest.c:65:0: warning: macro "SIZEOF_UINT32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT32_T 4 - ^ -conftest.c:124:0: warning: macro "HAVE_ATTRIBUTE" is not used [-Wunused-macros] - #define HAVE_ATTRIBUTE 1 - ^ -conftest.c:69:0: warning: macro "SIZEOF_UINT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST32_T 8 - ^ -conftest.c:127:0: warning: macro "HAVE_C99_DESIGNATED_INITIALIZER" is not used [-Wunused-macros] - #define HAVE_C99_DESIGNATED_INITIALIZER 1 - ^ -conftest.c:96:0: warning: macro "HAVE_FREXPF" is not used [-Wunused-macros] - #define HAVE_FREXPF 1 - ^ -conftest.c:92:0: warning: macro "HAVE_ALARM" is not used [-Wunused-macros] - #define HAVE_ALARM 1 - ^ -conftest.c:74:0: warning: macro "SIZEOF_INT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST64_T 8 - ^ -conftest.c:5:0: warning: macro "PACKAGE_STRING" is not used [-Wunused-macros] - #define PACKAGE_STRING "HDF5 1.8.21-pre1" - ^ -conftest.c:16:0: warning: macro "HAVE_MEMORY_H" is not used [-Wunused-macros] - #define HAVE_MEMORY_H 1 - ^ -conftest.c:108:0: warning: macro "HAVE_SIGPROCMASK" is not used [-Wunused-macros] - #define HAVE_SIGPROCMASK 1 - ^ -conftest.c:53:0: warning: macro "SIZEOF_UINT8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT8_T 1 - ^ -conftest.c:38:0: warning: macro "HAVE_STDINT_H" is not used [-Wunused-macros] - #define HAVE_STDINT_H 1 - ^ -conftest.c:37:0: warning: macro "HAVE_DIRENT_H" is not used [-Wunused-macros] - #define HAVE_DIRENT_H 1 - ^ -conftest.c:18:0: warning: macro "HAVE_INTTYPES_H" is not used [-Wunused-macros] - #define HAVE_INTTYPES_H 1 - ^ -conftest.c:110:0: warning: macro "HAVE_SRANDOM" is not used [-Wunused-macros] - #define HAVE_SRANDOM 1 - ^ -conftest.c:84:0: warning: macro "HAVE_FILTER_DEFLATE" is not used [-Wunused-macros] - #define HAVE_FILTER_DEFLATE 1 - ^ -conftest.c:81:0: warning: macro "DEV_T_IS_SCALAR" is not used [-Wunused-macros] - #define DEV_T_IS_SCALAR 1 - ^ -conftest.c:3:0: warning: macro "PACKAGE_TARNAME" is not used [-Wunused-macros] - #define PACKAGE_TARNAME "hdf5" - ^ -conftest.c:85:0: warning: macro "HAVE_TM_GMTOFF" is not used [-Wunused-macros] - #define HAVE_TM_GMTOFF 1 - ^ -conftest.c:98:0: warning: macro "HAVE_GETHOSTNAME" is not used [-Wunused-macros] - #define HAVE_GETHOSTNAME 1 - ^ -conftest.c:133:0: warning: macro "WANT_DCONV_EXCEPTION" is not used [-Wunused-macros] - #define WANT_DCONV_EXCEPTION 1 - ^ -conftest.c:100:0: warning: macro "HAVE_GETTIMEOFDAY" is not used [-Wunused-macros] - #define HAVE_GETTIMEOFDAY 1 - ^ -conftest.c:77:0: warning: macro "SIZEOF_SSIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SSIZE_T 8 - ^ -conftest.c:14:0: warning: macro "HAVE_STDLIB_H" is not used [-Wunused-macros] - #define HAVE_STDLIB_H 1 - ^ -conftest.c:33:0: warning: macro "HAVE_SYS_TYPES_H" is not used [-Wunused-macros] - #define HAVE_SYS_TYPES_H 1 - ^ -conftest.c:95:0: warning: macro "HAVE_FORK" is not used [-Wunused-macros] - #define HAVE_FORK 1 - ^ -conftest.c:32:0: warning: macro "HAVE_SYS_SOCKET_H" is not used [-Wunused-macros] - #define HAVE_SYS_SOCKET_H 1 - ^ -conftest.c:39:0: warning: macro "HAVE_SYS_TIMEB_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIMEB_H 1 - ^ -conftest.c:131:0: warning: macro "CLEAR_MEMORY" is not used [-Wunused-macros] - #define CLEAR_MEMORY 1 - ^ -conftest.c:115:0: warning: macro "HAVE_STRTOULL" is not used [-Wunused-macros] - #define HAVE_STRTOULL 1 - ^ -conftest.c:90:0: warning: macro "HAVE_TIOCGWINSZ" is not used [-Wunused-macros] - #define HAVE_TIOCGWINSZ 1 - ^ -conftest.c:48:0: warning: macro "SIZEOF_DOUBLE" is not used [-Wunused-macros] - #define SIZEOF_DOUBLE 8 - ^ -conftest.c:30:0: warning: macro "HAVE_SYS_IOCTL_H" is not used [-Wunused-macros] - #define HAVE_SYS_IOCTL_H 1 - ^ -conftest.c:59:0: warning: macro "SIZEOF_UINT16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT16_T 2 - ^ -conftest.c:58:0: warning: macro "SIZEOF_INT16_T" is not used [-Wunused-macros] - #define SIZEOF_INT16_T 2 - ^ -conftest.c:66:0: warning: macro "SIZEOF_INT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST32_T 4 - ^ -conftest.c:6:0: warning: macro "PACKAGE_BUGREPORT" is not used [-Wunused-macros] - #define PACKAGE_BUGREPORT "help@hdfgroup.org" - ^ -conftest.c:106:0: warning: macro "HAVE_SETJMP" is not used [-Wunused-macros] - #define HAVE_SETJMP 1 - ^ -conftest.c:135:0: warning: macro "LDOUBLE_TO_LLONG_ACCURATE" is not used [-Wunused-macros] - #define LDOUBLE_TO_LLONG_ACCURATE 1 - ^ -conftest.c:42:0: warning: macro "SIZEOF_INT" is not used [-Wunused-macros] - #define SIZEOF_INT 4 - ^ -conftest.c:67:0: warning: macro "SIZEOF_UINT_LEAST32_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST32_T 4 - ^ -conftest.c:43:0: warning: macro "SIZEOF_UNSIGNED" is not used [-Wunused-macros] - #define SIZEOF_UNSIGNED 4 - ^ -conftest.c:41:0: warning: macro "SIZEOF_SHORT" is not used [-Wunused-macros] - #define SIZEOF_SHORT 2 - ^ -conftest.c:118:0: warning: macro "HAVE_VASPRINTF" is not used [-Wunused-macros] - #define HAVE_VASPRINTF 1 - ^ -conftest.c:68:0: warning: macro "SIZEOF_INT_FAST32_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST32_T 8 - ^ -conftest.c:136:0: warning: macro "LLONG_TO_LDOUBLE_CORRECT" is not used [-Wunused-macros] - #define LLONG_TO_LDOUBLE_CORRECT 1 - ^ -conftest.c:29:0: warning: macro "HAVE_UNISTD_H" is not used [-Wunused-macros] - #define HAVE_UNISTD_H 1 - ^ -conftest.c:104:0: warning: macro "HAVE_SIGNAL" is not used [-Wunused-macros] - #define HAVE_SIGNAL 1 - ^ -conftest.c:101:0: warning: macro "HAVE_LSTAT" is not used [-Wunused-macros] - #define HAVE_LSTAT 1 - ^ -conftest.c:82:0: warning: macro "HAVE_ZLIB_H" is not used [-Wunused-macros] - #define HAVE_ZLIB_H 1 - ^ -conftest.c:63:0: warning: macro "SIZEOF_UINT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST16_T 8 - ^ -conftest.c:40:0: warning: macro "SIZEOF_CHAR" is not used [-Wunused-macros] - #define SIZEOF_CHAR 1 - ^ -conftest.c:27:0: warning: macro "HAVE_SYS_RESOURCE_H" is not used [-Wunused-macros] - #define HAVE_SYS_RESOURCE_H 1 - ^ -conftest.c:91:0: warning: macro "HAVE_TIOCGETD" is not used [-Wunused-macros] - #define HAVE_TIOCGETD 1 - ^ -conftest.c:60:0: warning: macro "SIZEOF_INT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST16_T 2 - ^ -conftest.c:137:0: warning: macro "STRICT_FORMAT_CHECKS" is not used [-Wunused-macros] - #define STRICT_FORMAT_CHECKS 1 - ^ -conftest.c:17:0: warning: macro "HAVE_STRINGS_H" is not used [-Wunused-macros] - #define HAVE_STRINGS_H 1 - ^ -conftest.c:34:0: warning: macro "HAVE_STDDEF_H" is not used [-Wunused-macros] - #define HAVE_STDDEF_H 1 - ^ -conftest.c:121:0: warning: macro "HAVE___INLINE__" is not used [-Wunused-macros] - #define HAVE___INLINE__ 1 - ^ -conftest.c:109:0: warning: macro "HAVE_SNPRINTF" is not used [-Wunused-macros] - #define HAVE_SNPRINTF 1 - ^ -conftest.c:10:0: warning: macro "INCLUDE_HL" is not used [-Wunused-macros] - #define INCLUDE_HL 1 - ^ -conftest.c:126:0: warning: macro "HAVE_FUNCTION" is not used [-Wunused-macros] - #define HAVE_FUNCTION 1 - ^ -conftest.c:80:0: warning: macro "SIZEOF_OFF_T" is not used [-Wunused-macros] - #define SIZEOF_OFF_T 8 - ^ -conftest.c:71:0: warning: macro "SIZEOF_UINT64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT64_T 8 - ^ -conftest.c:31:0: warning: macro "HAVE_SYS_STAT_H" is not used [-Wunused-macros] - #define HAVE_SYS_STAT_H 1 - ^ -conftest.c:70:0: warning: macro "SIZEOF_INT64_T" is not used [-Wunused-macros] - #define SIZEOF_INT64_T 8 - ^ -conftest.c:25:0: warning: macro "STDC_HEADERS" is not used [-Wunused-macros] - #define STDC_HEADERS 1 - ^ -conftest.c:120:0: warning: macro "HAVE_WAITPID" is not used [-Wunused-macros] - #define HAVE_WAITPID 1 - ^ -conftest.c:123:0: warning: macro "HAVE_INLINE" is not used [-Wunused-macros] - #define HAVE_INLINE 1 - ^ -conftest.c:4:0: warning: macro "PACKAGE_VERSION" is not used [-Wunused-macros] - #define PACKAGE_VERSION "1.8.21-pre1" - ^ -conftest.c:128:0: warning: macro "PRINTF_LL_WIDTH" is not used [-Wunused-macros] - #define PRINTF_LL_WIDTH "l" - ^ -conftest.c:2:0: warning: macro "PACKAGE_NAME" is not used [-Wunused-macros] - #define PACKAGE_NAME "HDF5" - ^ -conftest.c:97:0: warning: macro "HAVE_FREXPL" is not used [-Wunused-macros] - #define HAVE_FREXPL 1 - ^ -conftest.c:99:0: warning: macro "HAVE_GETRUSAGE" is not used [-Wunused-macros] - #define HAVE_GETRUSAGE 1 - ^ -conftest.c:125:0: warning: macro "HAVE_C99_FUNC" is not used [-Wunused-macros] - #define HAVE_C99_FUNC 1 - ^ -conftest.c:116:0: warning: macro "HAVE_TMPFILE" is not used [-Wunused-macros] - #define HAVE_TMPFILE 1 - ^ -conftest.c:28:0: warning: macro "HAVE_SYS_TIME_H" is not used [-Wunused-macros] - #define HAVE_SYS_TIME_H 1 - ^ -conftest.c:86:0: warning: macro "HAVE_TIMEZONE" is not used [-Wunused-macros] - #define HAVE_TIMEZONE 1 - ^ -conftest.c:8:0: warning: macro "PACKAGE" is not used [-Wunused-macros] - #define PACKAGE "hdf5" - ^ -conftest.c:44:0: warning: macro "SIZEOF_LONG" is not used [-Wunused-macros] - #define SIZEOF_LONG 8 - ^ -conftest.c:89:0: warning: macro "HAVE_IOCTL" is not used [-Wunused-macros] - #define HAVE_IOCTL 1 - ^ -conftest.c:119:0: warning: macro "HAVE_VSNPRINTF" is not used [-Wunused-macros] - #define HAVE_VSNPRINTF 1 - ^ -conftest.c:22:0: warning: macro "LT_OBJDIR" is not used [-Wunused-macros] - #define LT_OBJDIR ".libs/" - ^ -conftest.c:112:0: warning: macro "HAVE_SYMLINK" is not used [-Wunused-macros] - #define HAVE_SYMLINK 1 - ^ -conftest.c:132:0: warning: macro "DEFAULT_PLUGINDIR" is not used [-Wunused-macros] - #define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" - ^ -conftest.c:105:0: warning: macro "HAVE_LONGJMP" is not used [-Wunused-macros] - #define HAVE_LONGJMP 1 - ^ -conftest.c:93:0: warning: macro "HAVE_CLOCK_GETTIME" is not used [-Wunused-macros] - #define HAVE_CLOCK_GETTIME 1 - ^ -conftest.c:47:0: warning: macro "SIZEOF_FLOAT" is not used [-Wunused-macros] - #define SIZEOF_FLOAT 4 - ^ -conftest.c:75:0: warning: macro "SIZEOF_UINT_FAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST64_T 8 - ^ -conftest.c:55:0: warning: macro "SIZEOF_UINT_LEAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST8_T 1 - ^ -conftest.c:130:0: warning: macro "HAVE_INSTRUMENTED_LIBRARY" is not used [-Wunused-macros] - #define HAVE_INSTRUMENTED_LIBRARY 1 - ^ -conftest.c:122:0: warning: macro "HAVE___INLINE" is not used [-Wunused-macros] - #define HAVE___INLINE 1 - ^ -conftest.c:23:0: warning: macro "HAVE_LIBM" is not used [-Wunused-macros] - #define HAVE_LIBM 1 - ^ -conftest.c:83:0: warning: macro "HAVE_LIBZ" is not used [-Wunused-macros] - #define HAVE_LIBZ 1 - ^ -conftest.c:87:0: warning: macro "HAVE_STAT_ST_BLOCKS" is not used [-Wunused-macros] - #define HAVE_STAT_ST_BLOCKS 1 - ^ -conftest.c:134:0: warning: macro "WANT_DATA_ACCURACY" is not used [-Wunused-macros] - #define WANT_DATA_ACCURACY 1 - ^ -conftest.c:94:0: warning: macro "HAVE_DIFFTIME" is not used [-Wunused-macros] - #define HAVE_DIFFTIME 1 - ^ -conftest.c:72:0: warning: macro "SIZEOF_INT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_INT_LEAST64_T 8 - ^ -conftest.c:103:0: warning: macro "HAVE_RANDOM" is not used [-Wunused-macros] - #define HAVE_RANDOM 1 - ^ -conftest.c:61:0: warning: macro "SIZEOF_UINT_LEAST16_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST16_T 2 - ^ -conftest.c:129:0: warning: macro "SYSTEM_SCOPE_THREADS" is not used [-Wunused-macros] - #define SYSTEM_SCOPE_THREADS 1 - ^ -conftest.c:62:0: warning: macro "SIZEOF_INT_FAST16_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST16_T 8 - ^ -conftest.c:21:0: warning: macro "HAVE_DLFCN_H" is not used [-Wunused-macros] - #define HAVE_DLFCN_H 1 - ^ -conftest.c:78:0: warning: macro "SIZEOF_PTRDIFF_T" is not used [-Wunused-macros] - #define SIZEOF_PTRDIFF_T 8 - ^ -conftest.c:102:0: warning: macro "HAVE_RAND_R" is not used [-Wunused-macros] - #define HAVE_RAND_R 1 - ^ -conftest.c:138:0: warning: macro "HAVE_EMBEDDED_LIBINFO" is not used [-Wunused-macros] - #define HAVE_EMBEDDED_LIBINFO 1 - ^ -conftest.c:52:0: warning: macro "SIZEOF_INT8_T" is not used [-Wunused-macros] - #define SIZEOF_INT8_T 1 - ^ -conftest.c:36:0: warning: macro "HAVE_FEATURES_H" is not used [-Wunused-macros] - #define HAVE_FEATURES_H 1 - ^ -conftest.c:114:0: warning: macro "HAVE_STRTOLL" is not used [-Wunused-macros] - #define HAVE_STRTOLL 1 - ^ -conftest.c:35:0: warning: macro "HAVE_SETJMP_H" is not used [-Wunused-macros] - #define HAVE_SETJMP_H 1 - ^ -conftest.c:76:0: warning: macro "SIZEOF_SIZE_T" is not used [-Wunused-macros] - #define SIZEOF_SIZE_T 8 - ^ -conftest.c:56:0: warning: macro "SIZEOF_INT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_INT_FAST8_T 1 - ^ -conftest.c:111:0: warning: macro "HAVE_STRDUP" is not used [-Wunused-macros] - #define HAVE_STRDUP 1 - ^ -conftest.c:107:0: warning: macro "HAVE_SIGLONGJMP" is not used [-Wunused-macros] - #define HAVE_SIGLONGJMP 1 - ^ -conftest.c:26:0: warning: macro "TIME_WITH_SYS_TIME" is not used [-Wunused-macros] - #define TIME_WITH_SYS_TIME 1 - ^ -conftest.c:64:0: warning: macro "SIZEOF_INT32_T" is not used [-Wunused-macros] - #define SIZEOF_INT32_T 4 - ^ -conftest.c:24:0: warning: macro "HAVE_LIBDL" is not used [-Wunused-macros] - #define HAVE_LIBDL 1 - ^ -conftest.c:46:0: warning: macro "SIZEOF___INT64" is not used [-Wunused-macros] - #define SIZEOF___INT64 0 - ^ -conftest.c:9:0: warning: macro "VERSION" is not used [-Wunused-macros] - #define VERSION "1.8.21-pre1" - ^ -conftest.c:57:0: warning: macro "SIZEOF_UINT_FAST8_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_FAST8_T 1 - ^ -conftest.c:7:0: warning: macro "PACKAGE_URL" is not used [-Wunused-macros] - #define PACKAGE_URL "" - ^ -conftest.c:73:0: warning: macro "SIZEOF_UINT_LEAST64_T" is not used [-Wunused-macros] - #define SIZEOF_UINT_LEAST64_T 8 - ^ -configure:28809: $? = 0 -configure:28809: ./conftest -configure:28809: $? = 0 -configure:28814: result: no -configure:28911: creating ./config.lt - -## ------------------ ## -## Running config.lt. ## -## ------------------ ## -config.lt:733: creating libtool -configure:30882: checking that generated files are newer than configure -configure:30888: result: done -configure:30984: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by HDF5 config.status 1.8.21-pre1, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on jelly - -config.status:1517: creating src/libhdf5.settings -config.status:1517: creating Makefile -config.status:1517: creating src/Makefile -config.status:1517: creating test/Makefile -config.status:1517: creating test/testcheck_version.sh -config.status:1517: creating test/testerror.sh -config.status:1517: creating test/H5srcdir_str.h -config.status:1517: creating test/testlibinfo.sh -config.status:1517: creating test/testlinks_env.sh -config.status:1517: creating test/test_plugin.sh -config.status:1517: creating testpar/Makefile -config.status:1517: creating tools/Makefile -config.status:1517: creating tools/h5dump/Makefile -config.status:1517: creating tools/h5dump/h5dump_plugin.sh -config.status:1517: creating tools/h5dump/testh5dump.sh -config.status:1517: creating tools/h5dump/testh5dumppbits.sh -config.status:1517: creating tools/h5dump/testh5dumpxml.sh -config.status:1517: creating tools/h5ls/Makefile -config.status:1517: creating tools/h5ls/h5ls_plugin.sh -config.status:1517: creating tools/h5ls/testh5ls.sh -config.status:1517: creating tools/h5import/Makefile -config.status:1517: creating tools/h5import/h5importtestutil.sh -config.status:1517: creating tools/h5diff/Makefile -config.status:1517: creating tools/h5diff/h5diff_plugin.sh -config.status:1517: creating tools/h5diff/testh5diff.sh -config.status:1517: creating tools/h5diff/testph5diff.sh -config.status:1517: creating tools/h5jam/Makefile -config.status:1517: creating tools/h5jam/testh5jam.sh -config.status:1517: creating tools/h5repack/Makefile -config.status:1517: creating tools/h5repack/h5repack.sh -config.status:1517: creating tools/h5repack/h5repack_plugin.sh -config.status:1517: creating tools/h5copy/Makefile -config.status:1517: creating tools/h5copy/testh5copy.sh -config.status:1517: creating tools/lib/Makefile -config.status:1517: creating tools/misc/Makefile -config.status:1517: creating tools/misc/h5cc -config.status:1517: creating tools/misc/testh5mkgrp.sh -config.status:1517: creating tools/misc/testh5repart.sh -config.status:1517: creating tools/h5stat/testh5stat.sh -config.status:1517: creating tools/h5stat/Makefile -config.status:1517: creating tools/perform/Makefile -config.status:1517: creating examples/Makefile -config.status:1517: creating examples/run-c-ex.sh -config.status:1517: creating examples/testh5cc.sh -config.status:1517: creating c++/Makefile -config.status:1517: creating c++/src/Makefile -config.status:1517: creating c++/src/h5c++ -config.status:1517: creating c++/test/Makefile -config.status:1517: creating c++/test/H5srcdir_str.h -config.status:1517: creating c++/examples/Makefile -config.status:1517: creating c++/examples/run-c++-ex.sh -config.status:1517: creating c++/examples/testh5c++.sh -config.status:1517: creating fortran/Makefile -config.status:1517: creating fortran/src/h5fc -config.status:1517: creating fortran/src/Makefile -config.status:1517: creating fortran/test/Makefile -config.status:1517: creating fortran/testpar/Makefile -config.status:1517: creating fortran/examples/Makefile -config.status:1517: creating fortran/examples/run-fortran-ex.sh -config.status:1517: creating fortran/examples/testh5fc.sh -config.status:1517: creating hl/Makefile -config.status:1517: creating hl/src/Makefile -config.status:1517: creating hl/test/Makefile -config.status:1517: creating hl/test/H5srcdir_str.h -config.status:1517: creating hl/tools/Makefile -config.status:1517: creating hl/tools/gif2h5/Makefile -config.status:1517: creating hl/tools/gif2h5/h52giftest.sh -config.status:1517: creating hl/examples/Makefile -config.status:1517: creating hl/examples/run-hlc-ex.sh -config.status:1517: creating hl/c++/Makefile -config.status:1517: creating hl/c++/src/Makefile -config.status:1517: creating hl/c++/test/Makefile -config.status:1517: creating hl/c++/examples/Makefile -config.status:1517: creating hl/c++/examples/run-hlc++-ex.sh -config.status:1517: creating hl/fortran/Makefile -config.status:1517: creating hl/fortran/src/Makefile -config.status:1517: creating hl/fortran/test/Makefile -config.status:1517: creating hl/fortran/examples/Makefile -config.status:1517: creating hl/fortran/examples/run-hlfortran-ex.sh -config.status:1517: creating src/H5config.h -config.status:1683: src/H5config.h is unchanged -config.status:1731: executing pubconf commands -config.status:1731: executing depfiles commands -config.status:1731: executing libtool commands - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_build=x86_64-unknown-linux-gnu -ac_cv_c_bigendian=no -ac_cv_c_compiler_gnu=yes -ac_cv_c_const=yes -ac_cv_cxx_compiler_gnu=yes -ac_cv_env_CCC_set= -ac_cv_env_CCC_value= -ac_cv_env_CC_set= -ac_cv_env_CC_value= -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_CXXCPP_set= -ac_cv_env_CXXCPP_value= -ac_cv_env_CXXFLAGS_set= -ac_cv_env_CXXFLAGS_value= -ac_cv_env_CXX_set= -ac_cv_env_CXX_value= -ac_cv_env_FCFLAGS_set= -ac_cv_env_FCFLAGS_value= -ac_cv_env_FC_set= -ac_cv_env_FC_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_LT_SYS_LIBRARY_PATH_set= -ac_cv_env_LT_SYS_LIBRARY_PATH_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_func_GetConsoleScreenBufferInfo=no -ac_cv_func__getvideoconfig=no -ac_cv_func__scrsize=no -ac_cv_func_alarm=yes -ac_cv_func_asprintf=yes -ac_cv_func_clock_gettime=yes -ac_cv_func_compress2=yes -ac_cv_func_difftime=yes -ac_cv_func_dlopen=no -ac_cv_func_fork=yes -ac_cv_func_frexpf=yes -ac_cv_func_frexpl=yes -ac_cv_func_gethostname=yes -ac_cv_func_getpwuid=yes -ac_cv_func_getrusage=yes -ac_cv_func_gettextinfo=no -ac_cv_func_gettimeofday=yes -ac_cv_func_ioctl=yes -ac_cv_func_longjmp=yes -ac_cv_func_lstat=yes -ac_cv_func_posix_memalign=yes -ac_cv_func_rand_r=yes -ac_cv_func_random=yes -ac_cv_func_setjmp=yes -ac_cv_func_setsysinfo=no -ac_cv_func_shl_load=no -ac_cv_func_siglongjmp=yes -ac_cv_func_signal=yes -ac_cv_func_sigprocmask=yes -ac_cv_func_sigsetjmp=no -ac_cv_func_snprintf=yes -ac_cv_func_srandom=yes -ac_cv_func_strdup=yes -ac_cv_func_strtoll=yes -ac_cv_func_strtoull=yes -ac_cv_func_symlink=yes -ac_cv_func_system=yes -ac_cv_func_tmpfile=yes -ac_cv_func_vasprintf=yes -ac_cv_func_vsnprintf=yes -ac_cv_func_waitpid=yes -ac_cv_have_decl_CLOCK_MONOTONIC=yes -ac_cv_have_decl_O_DIRECT=yes -ac_cv_header_dirent_h=yes -ac_cv_header_dlfcn_h=yes -ac_cv_header_features_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_io_h=no -ac_cv_header_mach_mach_time_h=no -ac_cv_header_memory_h=yes -ac_cv_header_setjmp_h=yes -ac_cv_header_stdc=yes -ac_cv_header_stddef_h=yes -ac_cv_header_stdint_h=yes -ac_cv_header_stdlib_h=yes -ac_cv_header_string_h=yes -ac_cv_header_strings_h=yes -ac_cv_header_sys_ioctl_h=yes -ac_cv_header_sys_resource_h=yes -ac_cv_header_sys_socket_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_time_h=yes -ac_cv_header_sys_timeb_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_time=yes -ac_cv_header_unistd_h=yes -ac_cv_header_winsock2_h=no -ac_cv_header_zlib_h=yes -ac_cv_host=x86_64-unknown-linux-gnu -ac_cv_lib_dl_dlopen=yes -ac_cv_lib_dld_shl_load=no -ac_cv_lib_m_ceil=yes -ac_cv_lib_z_compress2=yes -ac_cv_objext=o -ac_cv_path_EGREP='/usr/bin/grep -E' -ac_cv_path_FGREP='/usr/bin/grep -F' -ac_cv_path_GREP=/usr/bin/grep -ac_cv_path_SED=/usr/bin/sed -ac_cv_path_TR=/usr/bin/tr -ac_cv_path_install='/usr/bin/install -c' -ac_cv_path_lt_DD=/usr/bin/dd -ac_cv_path_mkdir=/usr/bin/mkdir -ac_cv_prog_AR=ar -ac_cv_prog_AWK=gawk -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_CXXCPP='g++ -E' -ac_cv_prog_PERL=perl -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_OBJDUMP=objdump -ac_cv_prog_ac_ct_RANLIB=ranlib -ac_cv_prog_ac_ct_STRIP=strip -ac_cv_prog_cc_c89= -ac_cv_prog_cc_g=yes -ac_cv_prog_cxx_g=yes -ac_cv_prog_make_gmake_set=yes -ac_cv_search_clock_gettime='none required' -ac_cv_sizeof___int64=0 -ac_cv_sizeof_char=1 -ac_cv_sizeof_double=8 -ac_cv_sizeof_float=4 -ac_cv_sizeof_int16_t=2 -ac_cv_sizeof_int32_t=4 -ac_cv_sizeof_int64_t=8 -ac_cv_sizeof_int8_t=1 -ac_cv_sizeof_int=4 -ac_cv_sizeof_int_fast16_t=8 -ac_cv_sizeof_int_fast32_t=8 -ac_cv_sizeof_int_fast64_t=8 -ac_cv_sizeof_int_fast8_t=1 -ac_cv_sizeof_int_least16_t=2 -ac_cv_sizeof_int_least32_t=4 -ac_cv_sizeof_int_least64_t=8 -ac_cv_sizeof_int_least8_t=1 -ac_cv_sizeof_long=8 -ac_cv_sizeof_long_double=16 -ac_cv_sizeof_long_long=8 -ac_cv_sizeof_off_t=8 -ac_cv_sizeof_ptrdiff_t=8 -ac_cv_sizeof_short=2 -ac_cv_sizeof_size_t=8 -ac_cv_sizeof_ssize_t=8 -ac_cv_sizeof_uint16_t=2 -ac_cv_sizeof_uint32_t=4 -ac_cv_sizeof_uint64_t=8 -ac_cv_sizeof_uint8_t=1 -ac_cv_sizeof_uint_fast16_t=8 -ac_cv_sizeof_uint_fast32_t=8 -ac_cv_sizeof_uint_fast64_t=8 -ac_cv_sizeof_uint_fast8_t=1 -ac_cv_sizeof_uint_least16_t=2 -ac_cv_sizeof_uint_least32_t=4 -ac_cv_sizeof_uint_least64_t=8 -ac_cv_sizeof_uint_least8_t=1 -ac_cv_sizeof_unsigned=4 -ac_cv_sys_file_offset_bits=no -ac_cv_type_off_t=yes -ac_cv_type_ptrdiff_t=yes -ac_cv_type_size_t=yes -ac_cv_type_ssize_t=yes -am_cv_CC_dependencies_compiler_type=gcc3 -am_cv_CXX_dependencies_compiler_type=gcc3 -am_cv_make_support_nested_variables=yes -am_cv_prog_cc_c_o=yes -hdf5_cv_direct_io=yes -hdf5_cv_host=x86_64-unknown-linux-gnu -hdf5_cv_ldouble_to_llong_accurate=yes -hdf5_cv_ldouble_to_long_special=no -hdf5_cv_llong_to_ldouble_correct=yes -hdf5_cv_long_to_ldouble_special=no -hdf5_cv_posix_memalign=yes -hdf5_cv_printf_ll=l -hdf5_cv_system_scope_threads=yes -lt_cv_ar_at_file=@ -lt_cv_archive_cmds_need_lc=no -lt_cv_deplibs_check_method=pass_all -lt_cv_dlopen=dlopen -lt_cv_dlopen_libs=-ldl -lt_cv_dlopen_self=yes -lt_cv_dlopen_self_static=no -lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_ld_reload_flag=-r -lt_cv_nm_interface='BSD nm' -lt_cv_objdir=.libs -lt_cv_path_LD=/usr/bin/ld -lt_cv_path_NM='/usr/bin/nm -B' -lt_cv_path_mainfest_tool=no -lt_cv_prog_compiler_c_o=yes -lt_cv_prog_compiler_pic='-fPIC -DPIC' -lt_cv_prog_compiler_pic_works=yes -lt_cv_prog_compiler_rtti_exceptions=no -lt_cv_prog_compiler_static_works=yes -lt_cv_prog_gnu_ld=yes -lt_cv_sharedlib_from_linklib_cmd='printf %s\n' -lt_cv_shlibpath_overrides_runpath=no -lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_import= -lt_cv_sys_max_cmd_len=1572864 -lt_cv_to_host_file_cmd=func_convert_file_noop -lt_cv_to_tool_file_cmd=func_convert_file_noop -lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -ACLOCAL='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15' -ADD_PARALLEL_FILES='no' -AMDEPBACKSLASH='\' -AMDEP_FALSE='#' -AMDEP_TRUE='' -AMTAR='$${TAR-tar}' -AM_BACKSLASH='\' -AM_CFLAGS='' -AM_CPPFLAGS='' -AM_CXXFLAGS='' -AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -AM_DEFAULT_VERBOSITY='0' -AM_FCFLAGS='' -AM_LDFLAGS='' -AM_MAKEFLAGS='' -AM_V='$(V)' -AR='ar' -AUTOCONF='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf' -AUTOHEADER='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader' -AUTOMAKE='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15' -AWK='gawk' -BUILD_ALL_CONDITIONAL_FALSE='' -BUILD_ALL_CONDITIONAL_TRUE='#' -BUILD_CXX_CONDITIONAL_FALSE='' -BUILD_CXX_CONDITIONAL_TRUE='#' -BUILD_FORTRAN_CONDITIONAL_FALSE='' -BUILD_FORTRAN_CONDITIONAL_TRUE='#' -BUILD_HDF5_HL_CONDITIONAL_FALSE='#' -BUILD_HDF5_HL_CONDITIONAL_TRUE='' -BUILD_PARALLEL_CONDITIONAL_FALSE='' -BUILD_PARALLEL_CONDITIONAL_TRUE='#' -BUILD_SHARED_SZIP_CONDITIONAL_FALSE='' -BUILD_SHARED_SZIP_CONDITIONAL_TRUE='#' -BYTESEX='little-endian' -CC='gcc' -CCDEPMODE='depmode=gcc3' -CC_VERSION='/usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 )' -CFLAGS='' -CLEARFILEBUF='yes' -CODESTACK='no' -CONFIG_DATE='Mon May 14 21:05:08 CDT 2018' -CONFIG_MODE='development' -CONFIG_USER='lrknox@jelly' -CPP='gcc -E' -CPPFLAGS='' -CXX='no' -CXXCPP='g++ -E' -CXXDEPMODE='depmode=gcc3' -CXXFLAGS='' -CXX_VERSION='no ( g++ (GCC) 4.8.5 20150623 )' -CYGPATH_W='echo' -DEBUG_PKG='d,e,f,g,hg,i,mm,o,p,s,t,v,z' -DEFAULT_API_VERSION='v18' -DEFS='-DHAVE_CONFIG_H' -DEPDIR='.deps' -DEPRECATED_SYMBOLS='yes' -DIRECT_VFD='no' -DIRECT_VFD_CONDITIONAL_FALSE='' -DIRECT_VFD_CONDITIONAL_TRUE='#' -DLLTOOL='false' -DSYMUTIL='' -DUMPBIN='' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='/usr/bin/grep -E' -EXEEXT='' -EXTERNAL_FILTERS='deflate(zlib)' -F9XMODEXT='' -F9XMODFLAG='' -F9XSUFFIXFLAG='' -FC2003='' -FC='no' -FCFLAGS='' -FCFLAGS_f90='' -FCLIBS='' -FC_VERSION='no ( GNU Fortran (GCC) 4.8.5 20150623 )' -FGREP='/usr/bin/grep -F' -FORTRAN_2003_CONDITIONAL_F_FALSE='' -FORTRAN_2003_CONDITIONAL_F_TRUE='#' -FORTRAN_DEFAULT_REALisDBLE_F_FALSE='' -FORTRAN_DEFAULT_REALisDBLE_F_TRUE='#' -FORTRAN_HAVE_C_SIZEOF_FALSE='' -FORTRAN_HAVE_C_SIZEOF_TRUE='#' -FORTRAN_HAVE_SIZEOF_FALSE='' -FORTRAN_HAVE_SIZEOF_TRUE='#' -FORTRAN_HAVE_STORAGE_SIZE_FALSE='' -FORTRAN_HAVE_STORAGE_SIZE_TRUE='#' -FORTRAN_SHARED_CONDITIONAL_FALSE='' -FORTRAN_SHARED_CONDITIONAL_TRUE='#' -FSEARCH_DIRS='' -GREP='/usr/bin/grep' -H5_CFLAGS='-std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g' -H5_CPPFLAGS='-D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API' -H5_CXXFLAGS=' ' -H5_FCFLAGS=' ' -H5_FORTRAN_SHARED='no' -H5_LDFLAGS='' -H5_VERSION='1.8.21-pre1' -HADDR_T='' -HAVE_DMALLOC='no' -HAVE_FORTRAN_2003='' -HAVE_PTHREAD='' -HAVE_SHARED_CONDITIONAL_FALSE='#' -HAVE_SHARED_CONDITIONAL_TRUE='' -HDF5_HL='yes' -HDF5_INTERFACES='' -HDF_CXX='no' -HDF_FORTRAN2003='no' -HDF_FORTRAN='no' -HID_T='' -HL='hl' -HL_FOR='' -HSIZE_T='' -HSSIZE_T='' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' -INSTRUMENT='yes' -INSTRUMENT_LIBRARY='yes' -LD='/usr/bin/ld -m elf_x86_64' -LDFLAGS='' -LIBOBJS='' -LIBS='-lz -ldl -lm ' -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -LIPO='' -LL_PATH='' -LN_S='ln -s' -LTLIBOBJS='' -LT_STATIC_EXEC='' -LT_SYS_LIBRARY_PATH='' -MAINT='#' -MAINTAINER_MODE_FALSE='' -MAINTAINER_MODE_TRUE='#' -MAKEINFO='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo' -MANIFEST_TOOL=':' -MKDIR_P='/usr/bin/mkdir -p' -MPE='no' -NM='/usr/bin/nm -B' -NMEDIT='' -NOT_UNAME_CYGWIN_FALSE='#' -NOT_UNAME_CYGWIN_TRUE='' -OBJDUMP='objdump' -OBJECT_NAMELEN_DEFAULT_F='' -OBJEXT='o' -OTOOL64='' -OTOOL='' -PACKAGE='hdf5' -PACKAGE_BUGREPORT='help@hdfgroup.org' -PACKAGE_NAME='HDF5' -PACKAGE_STRING='HDF5 1.8.21-pre1' -PACKAGE_TARNAME='hdf5' -PACKAGE_URL='' -PACKAGE_VERSION='1.8.21-pre1' -PARALLEL='no' -PATH_SEPARATOR=':' -PERL='perl' -RANLIB='ranlib' -ROOT='/mnt/wrk/lrknox/hdf5_hdf5/build' -RUNPARALLEL='' -RUNSERIAL='' -R_INTEGER='' -R_LARGE='' -SEARCH='$(srcdir) $(top_builddir)/src $(top_srcdir)/src' -SED='/usr/bin/sed' -SET_MAKE='' -SHELL='/bin/sh' -SIZE_T='' -STATIC_EXEC='no' -STATIC_SHARED='static, shared' -STRICT_FORMAT_CHECKS='yes' -STRIP='strip' -TESTPARALLEL='' -THREADSAFE='no' -TIME='time' -TR='/usr/bin/tr' -TRACE_API='yes' -UNAME_CYGWIN='no' -UNAME_INFO='Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux' -USE_FILTER_DEFLATE='yes' -USE_FILTER_SZIP='no' -USE_PLUGINS_CONDITIONAL_FALSE='#' -USE_PLUGINS_CONDITIONAL_TRUE='' -USINGMEMCHECKER='no' -VERSION='1.8.21-pre1' -WORDS_BIGENDIAN='no' -ac_ct_AR='' -ac_ct_CC='gcc' -ac_ct_CXX='' -ac_ct_DUMPBIN='' -ac_ct_FC='' -am__EXEEXT_FALSE='' -am__EXEEXT_TRUE='#' -am__fastdepCC_FALSE='#' -am__fastdepCC_TRUE='' -am__fastdepCXX_FALSE='#' -am__fastdepCXX_TRUE='' -am__include='include' -am__isrc=' -I$(srcdir)' -am__leading_dot='.' -am__nodep='_no' -am__quote='' -am__tar='$${TAR-tar} chof - "$$tardir"' -am__untar='$${TAR-tar} xf -' -bindir='${exec_prefix}/bin' -build='x86_64-unknown-linux-gnu' -build_alias='' -build_cpu='x86_64' -build_os='linux-gnu' -build_vendor='unknown' -datadir='${datarootdir}' -datarootdir='${prefix}/share' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -dvidir='${docdir}' -enable_shared='yes' -enable_static='yes' -exec_prefix='${prefix}' -fortran_linux_linker_option='' -host='x86_64-unknown-linux-gnu' -host_alias='' -host_cpu='x86_64' -host_os='linux-gnu' -host_vendor='unknown' -htmldir='${docdir}' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -install_sh='${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -mkdir_p='$(MKDIR_P)' -oldincludedir='/usr/include' -pdfdir='${docdir}' -prefix='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5' -program_transform_name='s,x,x,' -psdir='${docdir}' -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -sysconfdir='${prefix}/etc' -target_alias='' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -/* confdefs.h */ -#define PACKAGE_NAME "HDF5" -#define PACKAGE_TARNAME "hdf5" -#define PACKAGE_VERSION "1.8.21-pre1" -#define PACKAGE_STRING "HDF5 1.8.21-pre1" -#define PACKAGE_BUGREPORT "help@hdfgroup.org" -#define PACKAGE_URL "" -#define PACKAGE "hdf5" -#define VERSION "1.8.21-pre1" -#define INCLUDE_HL 1 -#define STDC_HEADERS 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRING_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_DLFCN_H 1 -#define LT_OBJDIR ".libs/" -#define HAVE_LIBM 1 -#define HAVE_LIBDL 1 -#define STDC_HEADERS 1 -#define TIME_WITH_SYS_TIME 1 -#define HAVE_SYS_RESOURCE_H 1 -#define HAVE_SYS_TIME_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_SYS_IOCTL_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_SOCKET_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_STDDEF_H 1 -#define HAVE_SETJMP_H 1 -#define HAVE_FEATURES_H 1 -#define HAVE_DIRENT_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_SYS_TIMEB_H 1 -#define SIZEOF_CHAR 1 -#define SIZEOF_SHORT 2 -#define SIZEOF_INT 4 -#define SIZEOF_UNSIGNED 4 -#define SIZEOF_LONG 8 -#define SIZEOF_LONG_LONG 8 -#define SIZEOF___INT64 0 -#define SIZEOF_FLOAT 4 -#define SIZEOF_DOUBLE 8 -#define SIZEOF_LONG_DOUBLE 16 -#include -#include -#define SIZEOF_INT8_T 1 -#define SIZEOF_UINT8_T 1 -#define SIZEOF_INT_LEAST8_T 1 -#define SIZEOF_UINT_LEAST8_T 1 -#define SIZEOF_INT_FAST8_T 1 -#define SIZEOF_UINT_FAST8_T 1 -#define SIZEOF_INT16_T 2 -#define SIZEOF_UINT16_T 2 -#define SIZEOF_INT_LEAST16_T 2 -#define SIZEOF_UINT_LEAST16_T 2 -#define SIZEOF_INT_FAST16_T 8 -#define SIZEOF_UINT_FAST16_T 8 -#define SIZEOF_INT32_T 4 -#define SIZEOF_UINT32_T 4 -#define SIZEOF_INT_LEAST32_T 4 -#define SIZEOF_UINT_LEAST32_T 4 -#define SIZEOF_INT_FAST32_T 8 -#define SIZEOF_UINT_FAST32_T 8 -#define SIZEOF_INT64_T 8 -#define SIZEOF_UINT64_T 8 -#define SIZEOF_INT_LEAST64_T 8 -#define SIZEOF_UINT_LEAST64_T 8 -#define SIZEOF_INT_FAST64_T 8 -#define SIZEOF_UINT_FAST64_T 8 -#define SIZEOF_SIZE_T 8 -#define SIZEOF_SSIZE_T 8 -#define SIZEOF_PTRDIFF_T 8 -#include /*for off_t definition*/ -#define SIZEOF_OFF_T 8 -#define DEV_T_IS_SCALAR 1 -#define HAVE_ZLIB_H 1 -#define HAVE_LIBZ 1 -#define HAVE_FILTER_DEFLATE 1 -#define HAVE_TM_GMTOFF 1 -#define HAVE_TIMEZONE 1 -#define HAVE_STAT_ST_BLOCKS 1 -#define HAVE_GETPWUID 1 -#define HAVE_IOCTL 1 -#define HAVE_TIOCGWINSZ 1 -#define HAVE_TIOCGETD 1 -#define HAVE_ALARM 1 -#define HAVE_CLOCK_GETTIME 1 -#define HAVE_DIFFTIME 1 -#define HAVE_FORK 1 -#define HAVE_FREXPF 1 -#define HAVE_FREXPL 1 -#define HAVE_GETHOSTNAME 1 -#define HAVE_GETRUSAGE 1 -#define HAVE_GETTIMEOFDAY 1 -#define HAVE_LSTAT 1 -#define HAVE_RAND_R 1 -#define HAVE_RANDOM 1 -#define HAVE_SIGNAL 1 -#define HAVE_LONGJMP 1 -#define HAVE_SETJMP 1 -#define HAVE_SIGLONGJMP 1 -#define HAVE_SIGPROCMASK 1 -#define HAVE_SNPRINTF 1 -#define HAVE_SRANDOM 1 -#define HAVE_STRDUP 1 -#define HAVE_SYMLINK 1 -#define HAVE_SYSTEM 1 -#define HAVE_STRTOLL 1 -#define HAVE_STRTOULL 1 -#define HAVE_TMPFILE 1 -#define HAVE_ASPRINTF 1 -#define HAVE_VASPRINTF 1 -#define HAVE_VSNPRINTF 1 -#define HAVE_WAITPID 1 -#define HAVE___INLINE__ 1 -#define HAVE___INLINE 1 -#define HAVE_INLINE 1 -#define HAVE_ATTRIBUTE 1 -#define HAVE_C99_FUNC 1 -#define HAVE_FUNCTION 1 -#define HAVE_C99_DESIGNATED_INITIALIZER 1 -#define PRINTF_LL_WIDTH "l" -#define SYSTEM_SCOPE_THREADS 1 -#define HAVE_INSTRUMENTED_LIBRARY 1 -#define CLEAR_MEMORY 1 -#define DEFAULT_PLUGINDIR "/usr/local/hdf5/lib/plugin" -#define WANT_DCONV_EXCEPTION 1 -#define WANT_DATA_ACCURACY 1 -#define LDOUBLE_TO_LLONG_ACCURATE 1 -#define LLONG_TO_LDOUBLE_CORRECT 1 -#define STRICT_FORMAT_CHECKS 1 -#define HAVE_EMBEDDED_LIBINFO 1 -#define NO_ALIGNMENT_RESTRICTIONS 1 - -configure: exit 0 diff --git a/build/config.lt b/build/config.lt deleted file mode 100755 index c3af3db..0000000 --- a/build/config.lt +++ /dev/null @@ -1,1598 +0,0 @@ -#! /bin/sh -# Generated by configure. -# Run this file to recreate a libtool stub with the current configuration. -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## --------------------------------- ## -## Main body of "$CONFIG_LT" script. ## -## --------------------------------- ## -lt_cl_silent=false -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 - -lt_cl_help="\ -'$as_me' creates a local libtool stub from the current configuration, -for use in further configure time tests before the real libtool is -generated. - -Usage: $0 [OPTIONS] - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - -Report bugs to ." - -lt_cl_version="\ -HDF5 config.lt 1.8.21-pre1 -configured by $0, generated by GNU Autoconf 2.69. - -Copyright (C) 2011 Free Software Foundation, Inc. -This config.lt script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." - -while test 0 != $# -do - case $1 in - --version | --v* | -V ) - echo "$lt_cl_version"; exit 0 ;; - --help | --h* | -h ) - echo "$lt_cl_help"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --quiet | --q* | --silent | --s* | -q ) - lt_cl_silent=: ;; - - -*) as_fn_error $? "unrecognized option: $1 -Try '$0 --help' for more information." "$LINENO" 5 ;; - - *) as_fn_error $? "unrecognized argument: $1 -Try '$0 --help' for more information." "$LINENO" 5 ;; - esac - shift -done - -if $lt_cl_silent; then - exec 6>/dev/null -fi - - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -double_quote_subst='s/\(["`\\]\)/\\\1/g' -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' -macro_version='2.4.6' -macro_revision='2.4.6' -enable_shared='yes' -enable_static='yes' -pic_mode='default' -enable_fast_install='yes' -shared_archive_member_spec='' -SHELL='/bin/sh' -ECHO='printf %s\n' -PATH_SEPARATOR=':' -host_alias='' -host='x86_64-unknown-linux-gnu' -host_os='linux-gnu' -build_alias='' -build='x86_64-unknown-linux-gnu' -build_os='linux-gnu' -SED='/usr/bin/sed' -Xsed='/usr/bin/sed -e 1s/^X//' -GREP='/usr/bin/grep' -EGREP='/usr/bin/grep -E' -FGREP='/usr/bin/grep -F' -LD='/usr/bin/ld -m elf_x86_64' -NM='/usr/bin/nm -B' -LN_S='ln -s' -max_cmd_len='1572864' -ac_objext='o' -exeext='' -lt_unset='unset' -lt_SP2NL='tr \040 \012' -lt_NL2SP='tr \015\012 \040\040' -lt_cv_to_host_file_cmd='func_convert_file_noop' -lt_cv_to_tool_file_cmd='func_convert_file_noop' -reload_flag=' -r' -reload_cmds='$LD$reload_flag -o $output$reload_objs' -OBJDUMP='objdump' -deplibs_check_method='pass_all' -file_magic_cmd='$MAGIC_CMD' -file_magic_glob='' -want_nocaseglob='no' -DLLTOOL='false' -sharedlib_from_linklib_cmd='printf %s\n' -AR='ar' -AR_FLAGS='cru' -archiver_list_spec='@' -STRIP='strip' -RANLIB='ranlib' -old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' -old_postuninstall_cmds='' -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -lock_old_archive_extraction='no' -CC='gcc' -CFLAGS='' -compiler='gcc' -GCC='yes' -lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_import='' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' -lt_cv_nm_interface='BSD nm' -nm_file_list_spec='@' -lt_sysroot='' -lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' -objdir='.libs' -MAGIC_CMD='file' -lt_prog_compiler_no_builtin_flag=' -fno-builtin' -lt_prog_compiler_pic=' -fPIC -DPIC' -lt_prog_compiler_wl='-Wl,' -lt_prog_compiler_static='-static' -lt_cv_prog_compiler_c_o='yes' -need_locks='no' -MANIFEST_TOOL=':' -DSYMUTIL='' -NMEDIT='' -LIPO='' -OTOOL='' -OTOOL64='' -libext='a' -shrext_cmds='.so' -extract_expsyms_cmds='' -archive_cmds_need_lc='no' -enable_shared_with_static_runtimes='no' -export_dynamic_flag_spec='$wl--export-dynamic' -whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' -compiler_needs_object='no' -old_archive_from_new_cmds='' -old_archive_from_expsyms_cmds='' -archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' -archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' -module_cmds='' -module_expsym_cmds='' -with_gnu_ld='yes' -allow_undefined_flag='' -no_undefined_flag='' -hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' -hardcode_libdir_separator='' -hardcode_direct='no' -hardcode_direct_absolute='no' -hardcode_minus_L='no' -hardcode_shlibpath_var='unsupported' -hardcode_automatic='no' -inherit_rpath='no' -link_all_deplibs='unknown' -always_export_symbols='no' -export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -include_expsyms='' -prelink_cmds='' -postlink_cmds='' -file_list_spec='' -variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' -need_lib_prefix='no' -need_version='no' -version_type='linux' -runpath_var='LD_RUN_PATH' -shlibpath_var='LD_LIBRARY_PATH' -shlibpath_overrides_runpath='no' -libname_spec='lib$name' -library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' -soname_spec='$libname$release$shared_ext$major' -install_override_mode='' -postinstall_cmds='' -postuninstall_cmds='' -finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -finish_eval='' -hardcode_into_libs='yes' -sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib ' -configure_time_dlsearch_path='/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql ' -configure_time_lt_sys_library_path='' -hardcode_action='immediate' -enable_dlopen='yes' -enable_dlopen_self='yes' -enable_dlopen_self_static='no' -old_striplib='strip --strip-debug' -striplib='strip --strip-unneeded' -compiler_lib_search_dirs='' -predep_objects='' -postdep_objects='' -predeps='' -postdeps='' -compiler_lib_search_path='' -LD_CXX='' -LD_FC='' -reload_flag_CXX=' -r' -reload_flag_FC=' -r' -reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' -reload_cmds_FC='$LD$reload_flag -o $output$reload_objs' -old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -old_archive_cmds_FC='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -compiler_CXX='' -compiler_FC='' -GCC_CXX='' -GCC_FC='' -lt_prog_compiler_no_builtin_flag_CXX='' -lt_prog_compiler_no_builtin_flag_FC='' -lt_prog_compiler_pic_CXX='' -lt_prog_compiler_pic_FC='' -lt_prog_compiler_wl_CXX='' -lt_prog_compiler_wl_FC='' -lt_prog_compiler_static_CXX='' -lt_prog_compiler_static_FC='' -lt_cv_prog_compiler_c_o_CXX='' -lt_cv_prog_compiler_c_o_FC='' -archive_cmds_need_lc_CXX='no' -archive_cmds_need_lc_FC='no' -enable_shared_with_static_runtimes_CXX='no' -enable_shared_with_static_runtimes_FC='no' -export_dynamic_flag_spec_CXX='' -export_dynamic_flag_spec_FC='' -whole_archive_flag_spec_CXX='' -whole_archive_flag_spec_FC='' -compiler_needs_object_CXX='no' -compiler_needs_object_FC='' -old_archive_from_new_cmds_CXX='' -old_archive_from_new_cmds_FC='' -old_archive_from_expsyms_cmds_CXX='' -old_archive_from_expsyms_cmds_FC='' -archive_cmds_CXX='' -archive_cmds_FC='' -archive_expsym_cmds_CXX='' -archive_expsym_cmds_FC='' -module_cmds_CXX='' -module_cmds_FC='' -module_expsym_cmds_CXX='' -module_expsym_cmds_FC='' -with_gnu_ld_CXX='' -with_gnu_ld_FC='' -allow_undefined_flag_CXX='' -allow_undefined_flag_FC='' -no_undefined_flag_CXX='' -no_undefined_flag_FC='' -hardcode_libdir_flag_spec_CXX='' -hardcode_libdir_flag_spec_FC='' -hardcode_libdir_separator_CXX='' -hardcode_libdir_separator_FC='' -hardcode_direct_CXX='no' -hardcode_direct_FC='no' -hardcode_direct_absolute_CXX='no' -hardcode_direct_absolute_FC='no' -hardcode_minus_L_CXX='no' -hardcode_minus_L_FC='no' -hardcode_shlibpath_var_CXX='unsupported' -hardcode_shlibpath_var_FC='' -hardcode_automatic_CXX='no' -hardcode_automatic_FC='no' -inherit_rpath_CXX='no' -inherit_rpath_FC='no' -link_all_deplibs_CXX='unknown' -link_all_deplibs_FC='unknown' -always_export_symbols_CXX='no' -always_export_symbols_FC='no' -export_symbols_cmds_CXX='' -export_symbols_cmds_FC='' -exclude_expsyms_CXX='' -exclude_expsyms_FC='' -include_expsyms_CXX='' -include_expsyms_FC='' -prelink_cmds_CXX='' -prelink_cmds_FC='' -postlink_cmds_CXX='' -postlink_cmds_FC='' -file_list_spec_CXX='' -file_list_spec_FC='' -hardcode_action_CXX='' -hardcode_action_FC='' -compiler_lib_search_dirs_CXX='' -compiler_lib_search_dirs_FC='' -predep_objects_CXX='' -predep_objects_FC='' -postdep_objects_CXX='' -postdep_objects_FC='' -predeps_CXX='' -predeps_FC='' -postdeps_CXX='' -postdeps_FC='' -compiler_lib_search_path_CXX='' -compiler_lib_search_path_FC='' - -LTCC='gcc' -LTCFLAGS=' ' -compiler='gcc' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX LD_FC reload_flag_CXX reload_flag_FC compiler_CXX compiler_FC lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_no_builtin_flag_FC lt_prog_compiler_pic_CXX lt_prog_compiler_pic_FC lt_prog_compiler_wl_CXX lt_prog_compiler_wl_FC lt_prog_compiler_static_CXX lt_prog_compiler_static_FC lt_cv_prog_compiler_c_o_CXX lt_cv_prog_compiler_c_o_FC export_dynamic_flag_spec_CXX export_dynamic_flag_spec_FC whole_archive_flag_spec_CXX whole_archive_flag_spec_FC compiler_needs_object_CXX compiler_needs_object_FC with_gnu_ld_CXX with_gnu_ld_FC allow_undefined_flag_CXX allow_undefined_flag_FC no_undefined_flag_CXX no_undefined_flag_FC hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_FC hardcode_libdir_separator_CXX hardcode_libdir_separator_FC exclude_expsyms_CXX exclude_expsyms_FC include_expsyms_CXX include_expsyms_FC file_list_spec_CXX file_list_spec_FC compiler_lib_search_dirs_CXX compiler_lib_search_dirs_FC predep_objects_CXX predep_objects_FC postdep_objects_CXX postdep_objects_FC predeps_CXX predeps_FC postdeps_CXX postdeps_FC compiler_lib_search_path_CXX compiler_lib_search_path_FC; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_$var=\\\"\$$var\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX reload_cmds_FC old_archive_cmds_CXX old_archive_cmds_FC old_archive_from_new_cmds_CXX old_archive_from_new_cmds_FC old_archive_from_expsyms_cmds_CXX old_archive_from_expsyms_cmds_FC archive_cmds_CXX archive_cmds_FC archive_expsym_cmds_CXX archive_expsym_cmds_FC module_cmds_CXX module_cmds_FC module_expsym_cmds_CXX module_expsym_cmds_FC export_symbols_cmds_CXX export_symbols_cmds_FC prelink_cmds_CXX prelink_cmds_FC postlink_cmds_CXX postlink_cmds_FC; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_$var=\\\"\$$var\\\"" - ;; - esac -done - -ac_aux_dir='../bin' - -# See if we are running on zsh, and set the options that allow our -# commands through without removal of \ escapes INIT. -if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='hdf5' - VERSION='1.8.21-pre1' - RM='rm -f' - ofile='libtool' - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 -$as_echo "$as_me: creating $ofile" >&6;} - - - # See if we are running on zsh, and set the options that allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST - fi - - cfgfile=${ofile}T - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL -# Generated automatically by $as_me ($PACKAGE) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -# Copyright (C) 2014 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. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - - -# The names of the tagged configurations supported by this script. -available_tags='CXX FC ' - -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# What type of objects to build. -pic_mode=$pic_mode - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# Shared archive member basename,for filename based shared library versioning on AIX. -shared_archive_member_spec=$shared_archive_member_spec - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that protects backslashes. -ECHO=$lt_ECHO - -# The PATH separator for the build system. -PATH_SEPARATOR=$lt_PATH_SEPARATOR - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="\$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP=$lt_GREP - -# An ERE matcher. -EGREP=$lt_EGREP - -# A literal string matcher. -FGREP=$lt_FGREP - -# A BSD- or MS-compatible name lister. -NM=$lt_NM - -# Whether we need soft or hard links. -LN_S=$lt_LN_S - -# What is the maximum length of a command? -max_cmd_len=$max_cmd_len - -# Object file suffix (normally "o"). -objext=$ac_objext - -# Executable file suffix (normally ""). -exeext=$exeext - -# whether the shell understands "unset". -lt_unset=$lt_unset - -# turn spaces into newlines. -SP2NL=$lt_lt_SP2NL - -# turn newlines into spaces. -NL2SP=$lt_lt_NL2SP - -# convert \$build file names to \$host format. -to_host_file_cmd=$lt_cv_to_host_file_cmd - -# convert \$build files to toolchain format. -to_tool_file_cmd=$lt_cv_to_tool_file_cmd - -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method = "file_magic". -file_magic_cmd=$lt_file_magic_cmd - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob=$lt_file_magic_glob - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob=$lt_want_nocaseglob - -# DLL creation program. -DLLTOOL=$lt_DLLTOOL - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd - -# The archiver. -AR=$lt_AR - -# Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS - -# How to feed a file listing to the archiver. -archiver_list_spec=$lt_archiver_list_spec - -# A symbol stripping program. -STRIP=$lt_STRIP - -# Commands used to install an old-style archive. -RANLIB=$lt_RANLIB -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Whether to use a lock for old archive extraction. -lock_old_archive_extraction=$lock_old_archive_extraction - -# A C compiler. -LTCC=$lt_CC - -# LTCC compiler flags. -LTCFLAGS=$lt_CFLAGS - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm into a list of symbols to manually relocate. -global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix - -# The name lister interface. -nm_interface=$lt_lt_cv_nm_interface - -# Specify filename containing input files for \$NM. -nm_file_list_spec=$lt_nm_file_list_spec - -# The root where to search for dependent libraries,and where our libraries should be installed. -lt_sysroot=$lt_sysroot - -# Command to truncate a binary pipe. -lt_truncate_bin=$lt_lt_cv_truncate_bin - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=$MAGIC_CMD - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Manifest tool. -MANIFEST_TOOL=$lt_MANIFEST_TOOL - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL=$lt_DSYMUTIL - -# Tool to change global to local symbols on Mac OS X. -NMEDIT=$lt_NMEDIT - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO=$lt_LIPO - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL=$lt_OTOOL - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64=$lt_OTOOL64 - -# Old archive suffix (normally "a"). -libext=$libext - -# Shared library suffix (normally ".so"). -shrext_cmds=$lt_shrext_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink=$lt_variables_saved_for_relink - -# Do we need the "lib" prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Library versioning type. -version_type=$version_type - -# Shared library runtime path variable. -runpath_var=$runpath_var - -# Shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Permission mode override for installation of shared libraries. -install_override_mode=$lt_install_override_mode - -# Command to use after installation of a shared archive. -postinstall_cmds=$lt_postinstall_cmds - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval=$lt_finish_eval - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Compile-time system search path for libraries. -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path - -# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. -configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - - -# The linker used to build libraries. -LD=$lt_LD - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds - -# A language specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU compiler? -with_gcc=$GCC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects -postdep_objects=$lt_postdep_objects -predeps=$lt_predeps -postdeps=$lt_postdeps - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# ### END LIBTOOL CONFIG - -_LT_EOF - - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - -ltmain=$ac_aux_dir/ltmain.sh - - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_CXX -reload_cmds=$lt_reload_cmds_CXX - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_CXX - -# A language specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU compiler? -with_gcc=$GCC_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_CXX - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_CXX - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_CXX - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_CXX - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_CXX - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_CXX - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_CXX - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_CXX - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_CXX -postdep_objects=$lt_postdep_objects_CXX -predeps=$lt_predeps_CXX -postdeps=$lt_postdeps_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# ### END LIBTOOL TAG CONFIG: CXX -_LT_EOF - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: FC - -# The linker used to build libraries. -LD=$lt_LD_FC - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_FC -reload_cmds=$lt_reload_cmds_FC - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_FC - -# A language specific compiler. -CC=$lt_compiler_FC - -# Is the compiler the GNU compiler? -with_gcc=$GCC_FC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_FC - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_FC - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_FC - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_FC - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_FC - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_FC -archive_expsym_cmds=$lt_archive_expsym_cmds_FC - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_FC -module_expsym_cmds=$lt_module_expsym_cmds_FC - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_FC - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_FC - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_FC - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_FC - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_FC - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_FC - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_FC - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_FC - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_FC - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_FC - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_FC - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_FC - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_FC - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_FC - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_FC - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_FC - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_FC - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_FC - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_FC -postdep_objects=$lt_postdep_objects_FC -predeps=$lt_predeps_FC -postdeps=$lt_postdeps_FC - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_FC - -# ### END LIBTOOL TAG CONFIG: FC -_LT_EOF - - -as_fn_exit 0 diff --git a/build/config.status b/build/config.status deleted file mode 100755 index b5c1eeb..0000000 --- a/build/config.status +++ /dev/null @@ -1,2716 +0,0 @@ -#! /bin/sh -# Generated by configure. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by HDF5 $as_me 1.8.21-pre1, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -# Files that config.status was made for. -config_files=" src/libhdf5.settings Makefile src/Makefile test/Makefile test/testcheck_version.sh test/testerror.sh test/H5srcdir_str.h test/testlibinfo.sh test/testlinks_env.sh test/test_plugin.sh testpar/Makefile tools/Makefile tools/h5dump/Makefile tools/h5dump/h5dump_plugin.sh tools/h5dump/testh5dump.sh tools/h5dump/testh5dumppbits.sh tools/h5dump/testh5dumpxml.sh tools/h5ls/Makefile tools/h5ls/h5ls_plugin.sh tools/h5ls/testh5ls.sh tools/h5import/Makefile tools/h5import/h5importtestutil.sh tools/h5diff/Makefile tools/h5diff/h5diff_plugin.sh tools/h5diff/testh5diff.sh tools/h5diff/testph5diff.sh tools/h5jam/Makefile tools/h5jam/testh5jam.sh tools/h5repack/Makefile tools/h5repack/h5repack.sh tools/h5repack/h5repack_plugin.sh tools/h5copy/Makefile tools/h5copy/testh5copy.sh tools/lib/Makefile tools/misc/Makefile tools/misc/h5cc tools/misc/testh5mkgrp.sh tools/misc/testh5repart.sh tools/h5stat/testh5stat.sh tools/h5stat/Makefile tools/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh" -config_headers=" src/H5config.h" -config_commands=" pubconf depfiles libtool" - -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -ac_cs_config="" -ac_cs_version="\ -HDF5 config.status 1.8.21-pre1 -configured by ../configure, generated by GNU Autoconf 2.69, - with options \"$ac_cs_config\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='/mnt/wrk/lrknox/hdf5_hdf5/build' -srcdir='..' -INSTALL='/usr/bin/install -c' -MKDIR_P='/usr/bin/mkdir -p' -AWK='gawk' -test -n "$AWK" || AWK=awk -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -if $ac_cs_recheck; then - set X /bin/sh '../configure' $ac_configure_extra_args --no-create --no-recursion - shift - $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 - CONFIG_SHELL='/bin/sh' - export CONFIG_SHELL - exec "$@" -fi - -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -# -# INIT-COMMANDS -# -AMDEP_TRUE="" ac_aux_dir="../bin" - - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -double_quote_subst='s/\(["`\\]\)/\\\1/g' -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' -macro_version='2.4.6' -macro_revision='2.4.6' -enable_shared='yes' -enable_static='yes' -pic_mode='default' -enable_fast_install='yes' -shared_archive_member_spec='' -SHELL='/bin/sh' -ECHO='printf %s\n' -PATH_SEPARATOR=':' -host_alias='' -host='x86_64-unknown-linux-gnu' -host_os='linux-gnu' -build_alias='' -build='x86_64-unknown-linux-gnu' -build_os='linux-gnu' -SED='/usr/bin/sed' -Xsed='/usr/bin/sed -e 1s/^X//' -GREP='/usr/bin/grep' -EGREP='/usr/bin/grep -E' -FGREP='/usr/bin/grep -F' -LD='/usr/bin/ld -m elf_x86_64' -NM='/usr/bin/nm -B' -LN_S='ln -s' -max_cmd_len='1572864' -ac_objext='o' -exeext='' -lt_unset='unset' -lt_SP2NL='tr \040 \012' -lt_NL2SP='tr \015\012 \040\040' -lt_cv_to_host_file_cmd='func_convert_file_noop' -lt_cv_to_tool_file_cmd='func_convert_file_noop' -reload_flag=' -r' -reload_cmds='$LD$reload_flag -o $output$reload_objs' -OBJDUMP='objdump' -deplibs_check_method='pass_all' -file_magic_cmd='$MAGIC_CMD' -file_magic_glob='' -want_nocaseglob='no' -DLLTOOL='false' -sharedlib_from_linklib_cmd='printf %s\n' -AR='ar' -AR_FLAGS='cru' -archiver_list_spec='@' -STRIP='strip' -RANLIB='ranlib' -old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' -old_postuninstall_cmds='' -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -lock_old_archive_extraction='no' -CC='gcc' -CFLAGS='' -compiler='gcc' -GCC='yes' -lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_import='' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' -lt_cv_nm_interface='BSD nm' -nm_file_list_spec='@' -lt_sysroot='' -lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' -objdir='.libs' -MAGIC_CMD='file' -lt_prog_compiler_no_builtin_flag=' -fno-builtin' -lt_prog_compiler_pic=' -fPIC -DPIC' -lt_prog_compiler_wl='-Wl,' -lt_prog_compiler_static='-static' -lt_cv_prog_compiler_c_o='yes' -need_locks='no' -MANIFEST_TOOL=':' -DSYMUTIL='' -NMEDIT='' -LIPO='' -OTOOL='' -OTOOL64='' -libext='a' -shrext_cmds='.so' -extract_expsyms_cmds='' -archive_cmds_need_lc='no' -enable_shared_with_static_runtimes='no' -export_dynamic_flag_spec='$wl--export-dynamic' -whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' -compiler_needs_object='no' -old_archive_from_new_cmds='' -old_archive_from_expsyms_cmds='' -archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' -archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' -module_cmds='' -module_expsym_cmds='' -with_gnu_ld='yes' -allow_undefined_flag='' -no_undefined_flag='' -hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' -hardcode_libdir_separator='' -hardcode_direct='no' -hardcode_direct_absolute='no' -hardcode_minus_L='no' -hardcode_shlibpath_var='unsupported' -hardcode_automatic='no' -inherit_rpath='no' -link_all_deplibs='unknown' -always_export_symbols='no' -export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -include_expsyms='' -prelink_cmds='' -postlink_cmds='' -file_list_spec='' -variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' -need_lib_prefix='no' -need_version='no' -version_type='linux' -runpath_var='LD_RUN_PATH' -shlibpath_var='LD_LIBRARY_PATH' -shlibpath_overrides_runpath='no' -libname_spec='lib$name' -library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' -soname_spec='$libname$release$shared_ext$major' -install_override_mode='' -postinstall_cmds='' -postuninstall_cmds='' -finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -finish_eval='' -hardcode_into_libs='yes' -sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib ' -configure_time_dlsearch_path='/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql ' -configure_time_lt_sys_library_path='' -hardcode_action='immediate' -enable_dlopen='yes' -enable_dlopen_self='yes' -enable_dlopen_self_static='no' -old_striplib='strip --strip-debug' -striplib='strip --strip-unneeded' -compiler_lib_search_dirs='' -predep_objects='' -postdep_objects='' -predeps='' -postdeps='' -compiler_lib_search_path='' -LD_CXX='' -LD_FC='' -reload_flag_CXX=' -r' -reload_flag_FC=' -r' -reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' -reload_cmds_FC='$LD$reload_flag -o $output$reload_objs' -old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -old_archive_cmds_FC='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -compiler_CXX='' -compiler_FC='' -GCC_CXX='' -GCC_FC='' -lt_prog_compiler_no_builtin_flag_CXX='' -lt_prog_compiler_no_builtin_flag_FC='' -lt_prog_compiler_pic_CXX='' -lt_prog_compiler_pic_FC='' -lt_prog_compiler_wl_CXX='' -lt_prog_compiler_wl_FC='' -lt_prog_compiler_static_CXX='' -lt_prog_compiler_static_FC='' -lt_cv_prog_compiler_c_o_CXX='' -lt_cv_prog_compiler_c_o_FC='' -archive_cmds_need_lc_CXX='no' -archive_cmds_need_lc_FC='no' -enable_shared_with_static_runtimes_CXX='no' -enable_shared_with_static_runtimes_FC='no' -export_dynamic_flag_spec_CXX='' -export_dynamic_flag_spec_FC='' -whole_archive_flag_spec_CXX='' -whole_archive_flag_spec_FC='' -compiler_needs_object_CXX='no' -compiler_needs_object_FC='' -old_archive_from_new_cmds_CXX='' -old_archive_from_new_cmds_FC='' -old_archive_from_expsyms_cmds_CXX='' -old_archive_from_expsyms_cmds_FC='' -archive_cmds_CXX='' -archive_cmds_FC='' -archive_expsym_cmds_CXX='' -archive_expsym_cmds_FC='' -module_cmds_CXX='' -module_cmds_FC='' -module_expsym_cmds_CXX='' -module_expsym_cmds_FC='' -with_gnu_ld_CXX='' -with_gnu_ld_FC='' -allow_undefined_flag_CXX='' -allow_undefined_flag_FC='' -no_undefined_flag_CXX='' -no_undefined_flag_FC='' -hardcode_libdir_flag_spec_CXX='' -hardcode_libdir_flag_spec_FC='' -hardcode_libdir_separator_CXX='' -hardcode_libdir_separator_FC='' -hardcode_direct_CXX='no' -hardcode_direct_FC='no' -hardcode_direct_absolute_CXX='no' -hardcode_direct_absolute_FC='no' -hardcode_minus_L_CXX='no' -hardcode_minus_L_FC='no' -hardcode_shlibpath_var_CXX='unsupported' -hardcode_shlibpath_var_FC='' -hardcode_automatic_CXX='no' -hardcode_automatic_FC='no' -inherit_rpath_CXX='no' -inherit_rpath_FC='no' -link_all_deplibs_CXX='unknown' -link_all_deplibs_FC='unknown' -always_export_symbols_CXX='no' -always_export_symbols_FC='no' -export_symbols_cmds_CXX='' -export_symbols_cmds_FC='' -exclude_expsyms_CXX='' -exclude_expsyms_FC='' -include_expsyms_CXX='' -include_expsyms_FC='' -prelink_cmds_CXX='' -prelink_cmds_FC='' -postlink_cmds_CXX='' -postlink_cmds_FC='' -file_list_spec_CXX='' -file_list_spec_FC='' -hardcode_action_CXX='' -hardcode_action_FC='' -compiler_lib_search_dirs_CXX='' -compiler_lib_search_dirs_FC='' -predep_objects_CXX='' -predep_objects_FC='' -postdep_objects_CXX='' -postdep_objects_FC='' -predeps_CXX='' -predeps_FC='' -postdeps_CXX='' -postdeps_FC='' -compiler_lib_search_path_CXX='' -compiler_lib_search_path_FC='' - -LTCC='gcc' -LTCFLAGS=' ' -compiler='gcc' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX LD_FC reload_flag_CXX reload_flag_FC compiler_CXX compiler_FC lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_no_builtin_flag_FC lt_prog_compiler_pic_CXX lt_prog_compiler_pic_FC lt_prog_compiler_wl_CXX lt_prog_compiler_wl_FC lt_prog_compiler_static_CXX lt_prog_compiler_static_FC lt_cv_prog_compiler_c_o_CXX lt_cv_prog_compiler_c_o_FC export_dynamic_flag_spec_CXX export_dynamic_flag_spec_FC whole_archive_flag_spec_CXX whole_archive_flag_spec_FC compiler_needs_object_CXX compiler_needs_object_FC with_gnu_ld_CXX with_gnu_ld_FC allow_undefined_flag_CXX allow_undefined_flag_FC no_undefined_flag_CXX no_undefined_flag_FC hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_FC hardcode_libdir_separator_CXX hardcode_libdir_separator_FC exclude_expsyms_CXX exclude_expsyms_FC include_expsyms_CXX include_expsyms_FC file_list_spec_CXX file_list_spec_FC compiler_lib_search_dirs_CXX compiler_lib_search_dirs_FC predep_objects_CXX predep_objects_FC postdep_objects_CXX postdep_objects_FC predeps_CXX predeps_FC postdeps_CXX postdeps_FC compiler_lib_search_path_CXX compiler_lib_search_path_FC; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_$var=\\\"\$$var\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX reload_cmds_FC old_archive_cmds_CXX old_archive_cmds_FC old_archive_from_new_cmds_CXX old_archive_from_new_cmds_FC old_archive_from_expsyms_cmds_CXX old_archive_from_expsyms_cmds_FC archive_cmds_CXX archive_cmds_FC archive_expsym_cmds_CXX archive_expsym_cmds_FC module_cmds_CXX module_cmds_FC module_expsym_cmds_CXX module_expsym_cmds_FC export_symbols_cmds_CXX export_symbols_cmds_FC prelink_cmds_CXX prelink_cmds_FC postlink_cmds_CXX postlink_cmds_FC; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_$var=\\\"\$$var\\\"" - ;; - esac -done - -ac_aux_dir='../bin' - -# See if we are running on zsh, and set the options that allow our -# commands through without removal of \ escapes INIT. -if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='hdf5' - VERSION='1.8.21-pre1' - RM='rm -f' - ofile='libtool' - - - - - -ac_aux_dir='../bin' - - - - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "src/H5config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/H5config.h" ;; - "pubconf") CONFIG_COMMANDS="$CONFIG_COMMANDS pubconf" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; - "src/libhdf5.settings") CONFIG_FILES="$CONFIG_FILES src/libhdf5.settings" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; - "test/testcheck_version.sh") CONFIG_FILES="$CONFIG_FILES test/testcheck_version.sh" ;; - "test/testerror.sh") CONFIG_FILES="$CONFIG_FILES test/testerror.sh" ;; - "test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES test/H5srcdir_str.h" ;; - "test/testlibinfo.sh") CONFIG_FILES="$CONFIG_FILES test/testlibinfo.sh" ;; - "test/testlinks_env.sh") CONFIG_FILES="$CONFIG_FILES test/testlinks_env.sh" ;; - "test/test_plugin.sh") CONFIG_FILES="$CONFIG_FILES test/test_plugin.sh" ;; - "testpar/Makefile") CONFIG_FILES="$CONFIG_FILES testpar/Makefile" ;; - "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - "tools/h5dump/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5dump/Makefile" ;; - "tools/h5dump/h5dump_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/h5dump_plugin.sh" ;; - "tools/h5dump/testh5dump.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dump.sh" ;; - "tools/h5dump/testh5dumppbits.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dumppbits.sh" ;; - "tools/h5dump/testh5dumpxml.sh") CONFIG_FILES="$CONFIG_FILES tools/h5dump/testh5dumpxml.sh" ;; - "tools/h5ls/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5ls/Makefile" ;; - "tools/h5ls/h5ls_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5ls/h5ls_plugin.sh" ;; - "tools/h5ls/testh5ls.sh") CONFIG_FILES="$CONFIG_FILES tools/h5ls/testh5ls.sh" ;; - "tools/h5import/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5import/Makefile" ;; - "tools/h5import/h5importtestutil.sh") CONFIG_FILES="$CONFIG_FILES tools/h5import/h5importtestutil.sh" ;; - "tools/h5diff/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5diff/Makefile" ;; - "tools/h5diff/h5diff_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/h5diff_plugin.sh" ;; - "tools/h5diff/testh5diff.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/testh5diff.sh" ;; - "tools/h5diff/testph5diff.sh") CONFIG_FILES="$CONFIG_FILES tools/h5diff/testph5diff.sh" ;; - "tools/h5jam/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5jam/Makefile" ;; - "tools/h5jam/testh5jam.sh") CONFIG_FILES="$CONFIG_FILES tools/h5jam/testh5jam.sh" ;; - "tools/h5repack/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5repack/Makefile" ;; - "tools/h5repack/h5repack.sh") CONFIG_FILES="$CONFIG_FILES tools/h5repack/h5repack.sh" ;; - "tools/h5repack/h5repack_plugin.sh") CONFIG_FILES="$CONFIG_FILES tools/h5repack/h5repack_plugin.sh" ;; - "tools/h5copy/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5copy/Makefile" ;; - "tools/h5copy/testh5copy.sh") CONFIG_FILES="$CONFIG_FILES tools/h5copy/testh5copy.sh" ;; - "tools/lib/Makefile") CONFIG_FILES="$CONFIG_FILES tools/lib/Makefile" ;; - "tools/misc/Makefile") CONFIG_FILES="$CONFIG_FILES tools/misc/Makefile" ;; - "tools/misc/h5cc") CONFIG_FILES="$CONFIG_FILES tools/misc/h5cc" ;; - "tools/misc/testh5mkgrp.sh") CONFIG_FILES="$CONFIG_FILES tools/misc/testh5mkgrp.sh" ;; - "tools/misc/testh5repart.sh") CONFIG_FILES="$CONFIG_FILES tools/misc/testh5repart.sh" ;; - "tools/h5stat/testh5stat.sh") CONFIG_FILES="$CONFIG_FILES tools/h5stat/testh5stat.sh" ;; - "tools/h5stat/Makefile") CONFIG_FILES="$CONFIG_FILES tools/h5stat/Makefile" ;; - "tools/perform/Makefile") CONFIG_FILES="$CONFIG_FILES tools/perform/Makefile" ;; - "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; - "examples/run-c-ex.sh") CONFIG_FILES="$CONFIG_FILES examples/run-c-ex.sh" ;; - "examples/testh5cc.sh") CONFIG_FILES="$CONFIG_FILES examples/testh5cc.sh" ;; - "c++/Makefile") CONFIG_FILES="$CONFIG_FILES c++/Makefile" ;; - "c++/src/Makefile") CONFIG_FILES="$CONFIG_FILES c++/src/Makefile" ;; - "c++/src/h5c++") CONFIG_FILES="$CONFIG_FILES c++/src/h5c++" ;; - "c++/test/Makefile") CONFIG_FILES="$CONFIG_FILES c++/test/Makefile" ;; - "c++/test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES c++/test/H5srcdir_str.h" ;; - "c++/examples/Makefile") CONFIG_FILES="$CONFIG_FILES c++/examples/Makefile" ;; - "c++/examples/run-c++-ex.sh") CONFIG_FILES="$CONFIG_FILES c++/examples/run-c++-ex.sh" ;; - "c++/examples/testh5c++.sh") CONFIG_FILES="$CONFIG_FILES c++/examples/testh5c++.sh" ;; - "fortran/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/Makefile" ;; - "fortran/src/h5fc") CONFIG_FILES="$CONFIG_FILES fortran/src/h5fc" ;; - "fortran/src/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/src/Makefile" ;; - "fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/test/Makefile" ;; - "fortran/testpar/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/testpar/Makefile" ;; - "fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES fortran/examples/Makefile" ;; - "fortran/examples/run-fortran-ex.sh") CONFIG_FILES="$CONFIG_FILES fortran/examples/run-fortran-ex.sh" ;; - "fortran/examples/testh5fc.sh") CONFIG_FILES="$CONFIG_FILES fortran/examples/testh5fc.sh" ;; - "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; - "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; - "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; - "hl/test/H5srcdir_str.h") CONFIG_FILES="$CONFIG_FILES hl/test/H5srcdir_str.h" ;; - "hl/tools/Makefile") CONFIG_FILES="$CONFIG_FILES hl/tools/Makefile" ;; - "hl/tools/gif2h5/Makefile") CONFIG_FILES="$CONFIG_FILES hl/tools/gif2h5/Makefile" ;; - "hl/tools/gif2h5/h52giftest.sh") CONFIG_FILES="$CONFIG_FILES hl/tools/gif2h5/h52giftest.sh" ;; - "hl/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/examples/Makefile" ;; - "hl/examples/run-hlc-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/examples/run-hlc-ex.sh" ;; - "hl/c++/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/Makefile" ;; - "hl/c++/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/src/Makefile" ;; - "hl/c++/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/test/Makefile" ;; - "hl/c++/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/c++/examples/Makefile" ;; - "hl/c++/examples/run-hlc++-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/c++/examples/run-hlc++-ex.sh" ;; - "hl/fortran/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/Makefile" ;; - "hl/fortran/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/src/Makefile" ;; - "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; - "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; - "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && -S["am__EXEEXT_FALSE"]="" -S["am__EXEEXT_TRUE"]="#" -S["LTLIBOBJS"]="" -S["LIBOBJS"]="" -S["HAVE_SHARED_CONDITIONAL_FALSE"]="#" -S["HAVE_SHARED_CONDITIONAL_TRUE"]="" -S["fortran_linux_linker_option"]="" -S["SEARCH"]="$(srcdir) $(top_builddir)/src $(top_srcdir)/src" -S["BUILD_HDF5_HL_CONDITIONAL_FALSE"]="#" -S["BUILD_HDF5_HL_CONDITIONAL_TRUE"]="" -S["BUILD_FORTRAN_CONDITIONAL_FALSE"]="" -S["BUILD_FORTRAN_CONDITIONAL_TRUE"]="#" -S["BUILD_PARALLEL_CONDITIONAL_FALSE"]="" -S["BUILD_PARALLEL_CONDITIONAL_TRUE"]="#" -S["BUILD_CXX_CONDITIONAL_FALSE"]="" -S["BUILD_CXX_CONDITIONAL_TRUE"]="#" -S["STRICT_FORMAT_CHECKS"]="yes" -S["DEFAULT_API_VERSION"]="v18" -S["DEPRECATED_SYMBOLS"]="yes" -S["BUILD_ALL_CONDITIONAL_FALSE"]="" -S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/mnt/wrk/lrknox/hdf5_hdf5/build" -S["CXX_VERSION"]="no ( g++ (GCC) 4.8.5 20150623 )" -S["FC_VERSION"]="no ( GNU Fortran (GCC) 4.8.5 20150623 )" -S["CC_VERSION"]="/usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 )" -S["WORDS_BIGENDIAN"]="no" -S["BYTESEX"]="little-endian" -S["CONFIG_MODE"]="development" -S["CONFIG_USER"]="lrknox@jelly" -S["CONFIG_DATE"]="Mon May 14 21:05:08 CDT 2018" -S["H5_VERSION"]="1.8.21-pre1" -S["DIRECT_VFD_CONDITIONAL_FALSE"]="" -S["DIRECT_VFD_CONDITIONAL_TRUE"]="#" -S["ADD_PARALLEL_FILES"]="no" -S["USINGMEMCHECKER"]="no" -S["CLEARFILEBUF"]="yes" -S["INSTRUMENT_LIBRARY"]="yes" -S["TRACE_API"]="yes" -S["DEBUG_PKG"]="d,e,f,g,hg,i,mm,o,p,s,t,v,z" -S["HAVE_PTHREAD"]="" -S["BUILD_SHARED_SZIP_CONDITIONAL_FALSE"]="" -S["BUILD_SHARED_SZIP_CONDITIONAL_TRUE"]="#" -S["LL_PATH"]="" -S["USE_FILTER_SZIP"]="no" -S["USE_FILTER_DEFLATE"]="yes" -S["NOT_UNAME_CYGWIN_FALSE"]="#" -S["NOT_UNAME_CYGWIN_TRUE"]="" -S["UNAME_CYGWIN"]="no" -S["AM_MAKEFLAGS"]="" -S["LT_STATIC_EXEC"]="" -S["USE_PLUGINS_CONDITIONAL_FALSE"]="#" -S["USE_PLUGINS_CONDITIONAL_TRUE"]="" -S["CPP"]="gcc -E" -S["LT_SYS_LIBRARY_PATH"]="" -S["OTOOL64"]="" -S["OTOOL"]="" -S["LIPO"]="" -S["NMEDIT"]="" -S["DSYMUTIL"]="" -S["MANIFEST_TOOL"]=":" -S["RANLIB"]="ranlib" -S["ac_ct_AR"]="" -S["DLLTOOL"]="false" -S["OBJDUMP"]="objdump" -S["LN_S"]="ln -s" -S["NM"]="/usr/bin/nm -B" -S["ac_ct_DUMPBIN"]="" -S["DUMPBIN"]="" -S["LD"]="/usr/bin/ld -m elf_x86_64" -S["FGREP"]="/usr/bin/grep -F" -S["EGREP"]="/usr/bin/grep -E" -S["GREP"]="/usr/bin/grep" -S["SED"]="/usr/bin/sed" -S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool" -S["FORTRAN_SHARED_CONDITIONAL_FALSE"]="" -S["FORTRAN_SHARED_CONDITIONAL_TRUE"]="#" -S["H5_FORTRAN_SHARED"]="no" -S["TESTPARALLEL"]="" -S["RUNPARALLEL"]="" -S["RUNSERIAL"]="" -S["PARALLEL"]="no" -S["TIME"]="time" -S["TR"]="/usr/bin/tr" -S["AR"]="ar" -S["PERL"]="perl" -S["HL_FOR"]="" -S["HL"]="hl" -S["CXXCPP"]="g++ -E" -S["am__fastdepCXX_FALSE"]="#" -S["am__fastdepCXX_TRUE"]="" -S["CXXDEPMODE"]="depmode=gcc3" -S["ac_ct_CXX"]="" -S["CXXFLAGS"]="" -S["FORTRAN_DEFAULT_REALisDBLE_F_FALSE"]="" -S["FORTRAN_DEFAULT_REALisDBLE_F_TRUE"]="#" -S["FORTRAN_2003_CONDITIONAL_F_FALSE"]="" -S["FORTRAN_2003_CONDITIONAL_F_TRUE"]="#" -S["FORTRAN_HAVE_STORAGE_SIZE_FALSE"]="" -S["FORTRAN_HAVE_STORAGE_SIZE_TRUE"]="#" -S["FORTRAN_HAVE_C_SIZEOF_FALSE"]="" -S["FORTRAN_HAVE_C_SIZEOF_TRUE"]="#" -S["FORTRAN_HAVE_SIZEOF_FALSE"]="" -S["FORTRAN_HAVE_SIZEOF_TRUE"]="#" -S["FCLIBS"]="" -S["F9XMODEXT"]="" -S["F9XMODFLAG"]="" -S["FSEARCH_DIRS"]="" -S["F9XSUFFIXFLAG"]="" -S["FCFLAGS_f90"]="" -S["ac_ct_FC"]="" -S["FCFLAGS"]="" -S["OBJECT_NAMELEN_DEFAULT_F"]="" -S["SIZE_T"]="" -S["HID_T"]="" -S["HSSIZE_T"]="" -S["HSIZE_T"]="" -S["HADDR_T"]="" -S["R_INTEGER"]="" -S["R_LARGE"]="" -S["HAVE_FORTRAN_2003"]="" -S["HDF5_INTERFACES"]="" -S["am__fastdepCC_FALSE"]="#" -S["am__fastdepCC_TRUE"]="" -S["CCDEPMODE"]="depmode=gcc3" -S["am__nodep"]="_no" -S["AMDEPBACKSLASH"]="\\" -S["AMDEP_FALSE"]="#" -S["AMDEP_TRUE"]="" -S["am__quote"]="" -S["am__include"]="include" -S["DEPDIR"]=".deps" -S["OBJEXT"]="o" -S["EXEEXT"]="" -S["ac_ct_CC"]="gcc" -S["LDFLAGS"]="" -S["CFLAGS"]="" -S["CC"]="gcc" -S["UNAME_INFO"]="Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux" -S["enable_static"]="yes" -S["enable_shared"]="yes" -S["STATIC_SHARED"]="static, shared" -S["THREADSAFE"]="no" -S["DIRECT_VFD"]="no" -S["HAVE_DMALLOC"]="no" -S["CODESTACK"]="no" -S["INSTRUMENT"]="yes" -S["HDF5_HL"]="yes" -S["CXX"]="no" -S["HDF_CXX"]="no" -S["FC2003"]="" -S["FC"]="no" -S["HDF_FORTRAN2003"]="no" -S["HDF_FORTRAN"]="no" -S["STATIC_EXEC"]="no" -S["MPE"]="no" -S["EXTERNAL_FILTERS"]="deflate(zlib)" -S["AM_LDFLAGS"]="" -S["AM_CPPFLAGS"]="" -S["AM_CXXFLAGS"]="" -S["AM_FCFLAGS"]="" -S["AM_CFLAGS"]="" -S["H5_LDFLAGS"]="" -S["H5_CXXFLAGS"]=" " -S["H5_FCFLAGS"]=" " -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG"\ -" -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API" -S["H5_CFLAGS"]="-std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggreg"\ -"ate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-forma"\ -"t-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-sty"\ -"le-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimi"\ -"zations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict"\ -"-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsugges"\ -"t-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g" -S["CPPFLAGS"]="" -S["host_os"]="linux-gnu" -S["host_vendor"]="unknown" -S["host_cpu"]="x86_64" -S["host"]="x86_64-unknown-linux-gnu" -S["build_os"]="linux-gnu" -S["build_vendor"]="unknown" -S["build_cpu"]="x86_64" -S["build"]="x86_64-unknown-linux-gnu" -S["MAINT"]="#" -S["MAINTAINER_MODE_FALSE"]="" -S["MAINTAINER_MODE_TRUE"]="#" -S["AM_BACKSLASH"]="\\" -S["AM_DEFAULT_VERBOSITY"]="0" -S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" -S["AM_V"]="$(V)" -S["am__untar"]="$${TAR-tar} xf -" -S["am__tar"]="$${TAR-tar} chof - \"$$tardir\"" -S["AMTAR"]="$${TAR-tar}" -S["am__leading_dot"]="." -S["SET_MAKE"]="" -S["AWK"]="gawk" -S["mkdir_p"]="$(MKDIR_P)" -S["MKDIR_P"]="/usr/bin/mkdir -p" -S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" -S["STRIP"]="strip" -S["install_sh"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh" -S["MAKEINFO"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15" -S["AUTOCONF"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15" -S["VERSION"]="1.8.21-pre1" -S["PACKAGE"]="hdf5" -S["CYGPATH_W"]="echo" -S["am__isrc"]=" -I$(srcdir)" -S["INSTALL_DATA"]="${INSTALL} -m 644" -S["INSTALL_SCRIPT"]="${INSTALL}" -S["INSTALL_PROGRAM"]="${INSTALL}" -S["target_alias"]="" -S["host_alias"]="" -S["build_alias"]="" -S["LIBS"]="-lz -ldl -lm " -S["ECHO_T"]="" -S["ECHO_N"]="-n" -S["ECHO_C"]="" -S["DEFS"]="-DHAVE_CONFIG_H" -S["mandir"]="${datarootdir}/man" -S["localedir"]="${datarootdir}/locale" -S["libdir"]="${exec_prefix}/lib" -S["psdir"]="${docdir}" -S["pdfdir"]="${docdir}" -S["dvidir"]="${docdir}" -S["htmldir"]="${docdir}" -S["infodir"]="${datarootdir}/info" -S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}" -S["oldincludedir"]="/usr/include" -S["includedir"]="${prefix}/include" -S["localstatedir"]="${prefix}/var" -S["sharedstatedir"]="${prefix}/com" -S["sysconfdir"]="${prefix}/etc" -S["datadir"]="${datarootdir}" -S["datarootdir"]="${prefix}/share" -S["libexecdir"]="${exec_prefix}/libexec" -S["sbindir"]="${exec_prefix}/sbin" -S["bindir"]="${exec_prefix}/bin" -S["program_transform_name"]="s,x,x," -S["prefix"]="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" -S["exec_prefix"]="${prefix}" -S["PACKAGE_URL"]="" -S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.8.21-pre1" -S["PACKAGE_VERSION"]="1.8.21-pre1" -S["PACKAGE_TARNAME"]="hdf5" -S["PACKAGE_NAME"]="HDF5" -S["PATH_SEPARATOR"]=":" -S["SHELL"]="/bin/sh" -_ACAWK -cat >>"$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -D["PACKAGE_NAME"]=" \"HDF5\"" -D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.8.21-pre1\"" -D["PACKAGE_STRING"]=" \"HDF5 1.8.21-pre1\"" -D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" -D["PACKAGE_URL"]=" \"\"" -D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.8.21-pre1\"" -D["INCLUDE_HL"]=" 1" -D["STDC_HEADERS"]=" 1" -D["HAVE_SYS_TYPES_H"]=" 1" -D["HAVE_SYS_STAT_H"]=" 1" -D["HAVE_STDLIB_H"]=" 1" -D["HAVE_STRING_H"]=" 1" -D["HAVE_MEMORY_H"]=" 1" -D["HAVE_STRINGS_H"]=" 1" -D["HAVE_INTTYPES_H"]=" 1" -D["HAVE_STDINT_H"]=" 1" -D["HAVE_UNISTD_H"]=" 1" -D["HAVE_DLFCN_H"]=" 1" -D["LT_OBJDIR"]=" \".libs/\"" -D["HAVE_LIBM"]=" 1" -D["HAVE_LIBDL"]=" 1" -D["STDC_HEADERS"]=" 1" -D["TIME_WITH_SYS_TIME"]=" 1" -D["HAVE_SYS_RESOURCE_H"]=" 1" -D["HAVE_SYS_TIME_H"]=" 1" -D["HAVE_UNISTD_H"]=" 1" -D["HAVE_SYS_IOCTL_H"]=" 1" -D["HAVE_SYS_STAT_H"]=" 1" -D["HAVE_SYS_SOCKET_H"]=" 1" -D["HAVE_SYS_TYPES_H"]=" 1" -D["HAVE_STDDEF_H"]=" 1" -D["HAVE_SETJMP_H"]=" 1" -D["HAVE_FEATURES_H"]=" 1" -D["HAVE_DIRENT_H"]=" 1" -D["HAVE_STDINT_H"]=" 1" -D["HAVE_SYS_TIMEB_H"]=" 1" -D["SIZEOF_CHAR"]=" 1" -D["SIZEOF_SHORT"]=" 2" -D["SIZEOF_INT"]=" 4" -D["SIZEOF_UNSIGNED"]=" 4" -D["SIZEOF_LONG"]=" 8" -D["SIZEOF_LONG_LONG"]=" 8" -D["SIZEOF___INT64"]=" 0" -D["SIZEOF_FLOAT"]=" 4" -D["SIZEOF_DOUBLE"]=" 8" -D["SIZEOF_LONG_DOUBLE"]=" 16" -D["SIZEOF_INT8_T"]=" 1" -D["SIZEOF_UINT8_T"]=" 1" -D["SIZEOF_INT_LEAST8_T"]=" 1" -D["SIZEOF_UINT_LEAST8_T"]=" 1" -D["SIZEOF_INT_FAST8_T"]=" 1" -D["SIZEOF_UINT_FAST8_T"]=" 1" -D["SIZEOF_INT16_T"]=" 2" -D["SIZEOF_UINT16_T"]=" 2" -D["SIZEOF_INT_LEAST16_T"]=" 2" -D["SIZEOF_UINT_LEAST16_T"]=" 2" -D["SIZEOF_INT_FAST16_T"]=" 8" -D["SIZEOF_UINT_FAST16_T"]=" 8" -D["SIZEOF_INT32_T"]=" 4" -D["SIZEOF_UINT32_T"]=" 4" -D["SIZEOF_INT_LEAST32_T"]=" 4" -D["SIZEOF_UINT_LEAST32_T"]=" 4" -D["SIZEOF_INT_FAST32_T"]=" 8" -D["SIZEOF_UINT_FAST32_T"]=" 8" -D["SIZEOF_INT64_T"]=" 8" -D["SIZEOF_UINT64_T"]=" 8" -D["SIZEOF_INT_LEAST64_T"]=" 8" -D["SIZEOF_UINT_LEAST64_T"]=" 8" -D["SIZEOF_INT_FAST64_T"]=" 8" -D["SIZEOF_UINT_FAST64_T"]=" 8" -D["SIZEOF_SIZE_T"]=" 8" -D["SIZEOF_SSIZE_T"]=" 8" -D["SIZEOF_PTRDIFF_T"]=" 8" -D["SIZEOF_OFF_T"]=" 8" -D["DEV_T_IS_SCALAR"]=" 1" -D["HAVE_ZLIB_H"]=" 1" -D["HAVE_LIBZ"]=" 1" -D["HAVE_FILTER_DEFLATE"]=" 1" -D["HAVE_TM_GMTOFF"]=" 1" -D["HAVE_TIMEZONE"]=" 1" -D["HAVE_STAT_ST_BLOCKS"]=" 1" -D["HAVE_GETPWUID"]=" 1" -D["HAVE_IOCTL"]=" 1" -D["HAVE_TIOCGWINSZ"]=" 1" -D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" -D["HAVE_CLOCK_GETTIME"]=" 1" -D["HAVE_DIFFTIME"]=" 1" -D["HAVE_FORK"]=" 1" -D["HAVE_FREXPF"]=" 1" -D["HAVE_FREXPL"]=" 1" -D["HAVE_GETHOSTNAME"]=" 1" -D["HAVE_GETRUSAGE"]=" 1" -D["HAVE_GETTIMEOFDAY"]=" 1" -D["HAVE_LSTAT"]=" 1" -D["HAVE_RAND_R"]=" 1" -D["HAVE_RANDOM"]=" 1" -D["HAVE_SIGNAL"]=" 1" -D["HAVE_LONGJMP"]=" 1" -D["HAVE_SETJMP"]=" 1" -D["HAVE_SIGLONGJMP"]=" 1" -D["HAVE_SIGPROCMASK"]=" 1" -D["HAVE_SNPRINTF"]=" 1" -D["HAVE_SRANDOM"]=" 1" -D["HAVE_STRDUP"]=" 1" -D["HAVE_SYMLINK"]=" 1" -D["HAVE_SYSTEM"]=" 1" -D["HAVE_STRTOLL"]=" 1" -D["HAVE_STRTOULL"]=" 1" -D["HAVE_TMPFILE"]=" 1" -D["HAVE_ASPRINTF"]=" 1" -D["HAVE_VASPRINTF"]=" 1" -D["HAVE_VSNPRINTF"]=" 1" -D["HAVE_WAITPID"]=" 1" -D["HAVE___INLINE__"]=" 1" -D["HAVE___INLINE"]=" 1" -D["HAVE_INLINE"]=" 1" -D["HAVE_ATTRIBUTE"]=" 1" -D["HAVE_C99_FUNC"]=" 1" -D["HAVE_FUNCTION"]=" 1" -D["HAVE_C99_DESIGNATED_INITIALIZER"]=" 1" -D["PRINTF_LL_WIDTH"]=" \"l\"" -D["SYSTEM_SCOPE_THREADS"]=" 1" -D["HAVE_INSTRUMENTED_LIBRARY"]=" 1" -D["CLEAR_MEMORY"]=" 1" -D["DEFAULT_PLUGINDIR"]=" \"/usr/local/hdf5/lib/plugin\"" -D["WANT_DCONV_EXCEPTION"]=" 1" -D["WANT_DATA_ACCURACY"]=" 1" -D["LDOUBLE_TO_LLONG_ACCURATE"]=" 1" -D["LLONG_TO_LDOUBLE_CORRECT"]=" 1" -D["STRICT_FORMAT_CHECKS"]=" 1" -D["HAVE_EMBEDDED_LIBINFO"]=" 1" -D["NO_ALIGNMENT_RESTRICTIONS"]=" 1" - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { - line = $ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} - ac_datarootdir_hack=' - s&@datadir@&${datarootdir}&g - s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g - s&@infodir@&${datarootdir}/info&g - s&@localedir@&${datarootdir}/locale&g - s&@mandir@&${datarootdir}/man&g - s&\${datarootdir}&${prefix}/share&g' ;; -esac -ac_sed_extra=" - -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "pubconf":C) - echo "creating src/H5pubconf.h" - sed 's/#define /#define H5_/' pubconf - if test ! -f src/H5pubconf.h; then - /bin/mv -f pubconf src/H5pubconf.h - elif (diff pubconf src/H5pubconf.h >/dev/null); then - rm -f pubconf - echo "src/H5pubconf.h is unchanged" - else - /bin/mv -f pubconf src/H5pubconf.h - fi - echo "Post process src/libhdf5.settings" - sed '/^#/d' < src/libhdf5.settings > libhdf5.settings.TMP - cp libhdf5.settings.TMP src/libhdf5.settings - rm -f libhdf5.settings.TMP - ;; - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # Older Autoconf quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} - ;; - "libtool":C) - - # See if we are running on zsh, and set the options that allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST - fi - - cfgfile=${ofile}T - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL -# Generated automatically by $as_me ($PACKAGE) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -# Copyright (C) 2014 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. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - - -# The names of the tagged configurations supported by this script. -available_tags='CXX FC ' - -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# What type of objects to build. -pic_mode=$pic_mode - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# Shared archive member basename,for filename based shared library versioning on AIX. -shared_archive_member_spec=$shared_archive_member_spec - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that protects backslashes. -ECHO=$lt_ECHO - -# The PATH separator for the build system. -PATH_SEPARATOR=$lt_PATH_SEPARATOR - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="\$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP=$lt_GREP - -# An ERE matcher. -EGREP=$lt_EGREP - -# A literal string matcher. -FGREP=$lt_FGREP - -# A BSD- or MS-compatible name lister. -NM=$lt_NM - -# Whether we need soft or hard links. -LN_S=$lt_LN_S - -# What is the maximum length of a command? -max_cmd_len=$max_cmd_len - -# Object file suffix (normally "o"). -objext=$ac_objext - -# Executable file suffix (normally ""). -exeext=$exeext - -# whether the shell understands "unset". -lt_unset=$lt_unset - -# turn spaces into newlines. -SP2NL=$lt_lt_SP2NL - -# turn newlines into spaces. -NL2SP=$lt_lt_NL2SP - -# convert \$build file names to \$host format. -to_host_file_cmd=$lt_cv_to_host_file_cmd - -# convert \$build files to toolchain format. -to_tool_file_cmd=$lt_cv_to_tool_file_cmd - -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method = "file_magic". -file_magic_cmd=$lt_file_magic_cmd - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob=$lt_file_magic_glob - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob=$lt_want_nocaseglob - -# DLL creation program. -DLLTOOL=$lt_DLLTOOL - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd - -# The archiver. -AR=$lt_AR - -# Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS - -# How to feed a file listing to the archiver. -archiver_list_spec=$lt_archiver_list_spec - -# A symbol stripping program. -STRIP=$lt_STRIP - -# Commands used to install an old-style archive. -RANLIB=$lt_RANLIB -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Whether to use a lock for old archive extraction. -lock_old_archive_extraction=$lock_old_archive_extraction - -# A C compiler. -LTCC=$lt_CC - -# LTCC compiler flags. -LTCFLAGS=$lt_CFLAGS - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm into a list of symbols to manually relocate. -global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix - -# The name lister interface. -nm_interface=$lt_lt_cv_nm_interface - -# Specify filename containing input files for \$NM. -nm_file_list_spec=$lt_nm_file_list_spec - -# The root where to search for dependent libraries,and where our libraries should be installed. -lt_sysroot=$lt_sysroot - -# Command to truncate a binary pipe. -lt_truncate_bin=$lt_lt_cv_truncate_bin - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=$MAGIC_CMD - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Manifest tool. -MANIFEST_TOOL=$lt_MANIFEST_TOOL - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL=$lt_DSYMUTIL - -# Tool to change global to local symbols on Mac OS X. -NMEDIT=$lt_NMEDIT - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO=$lt_LIPO - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL=$lt_OTOOL - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64=$lt_OTOOL64 - -# Old archive suffix (normally "a"). -libext=$libext - -# Shared library suffix (normally ".so"). -shrext_cmds=$lt_shrext_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink=$lt_variables_saved_for_relink - -# Do we need the "lib" prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Library versioning type. -version_type=$version_type - -# Shared library runtime path variable. -runpath_var=$runpath_var - -# Shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Permission mode override for installation of shared libraries. -install_override_mode=$lt_install_override_mode - -# Command to use after installation of a shared archive. -postinstall_cmds=$lt_postinstall_cmds - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval=$lt_finish_eval - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Compile-time system search path for libraries. -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path - -# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. -configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - - -# The linker used to build libraries. -LD=$lt_LD - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds - -# A language specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU compiler? -with_gcc=$GCC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects -postdep_objects=$lt_postdep_objects -predeps=$lt_predeps -postdeps=$lt_postdeps - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# ### END LIBTOOL CONFIG - -_LT_EOF - - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - -ltmain=$ac_aux_dir/ltmain.sh - - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_CXX -reload_cmds=$lt_reload_cmds_CXX - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_CXX - -# A language specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU compiler? -with_gcc=$GCC_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_CXX - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_CXX - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_CXX - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_CXX - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_CXX - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_CXX - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_CXX - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_CXX - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_CXX -postdep_objects=$lt_postdep_objects_CXX -predeps=$lt_predeps_CXX -postdeps=$lt_postdeps_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# ### END LIBTOOL TAG CONFIG: CXX -_LT_EOF - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: FC - -# The linker used to build libraries. -LD=$lt_LD_FC - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_FC -reload_cmds=$lt_reload_cmds_FC - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_FC - -# A language specific compiler. -CC=$lt_compiler_FC - -# Is the compiler the GNU compiler? -with_gcc=$GCC_FC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_FC - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_FC - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_FC - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_FC - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_FC - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_FC -archive_expsym_cmds=$lt_archive_expsym_cmds_FC - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_FC -module_expsym_cmds=$lt_module_expsym_cmds_FC - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_FC - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_FC - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_FC - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_FC - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_FC - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_FC - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_FC - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_FC - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_FC - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_FC - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_FC - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_FC - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_FC - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_FC - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_FC - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_FC - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_FC - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_FC - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_FC -postdep_objects=$lt_postdep_objects_FC -predeps=$lt_predeps_FC -postdeps=$lt_postdeps_FC - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_FC - -# ### END LIBTOOL TAG CONFIG: FC -_LT_EOF - - ;; - - esac -done # for ac_tag - - -as_fn_exit 0 diff --git a/build/config/stamp1 b/build/config/stamp1 deleted file mode 100644 index e69de29..0000000 diff --git a/build/config/stamp2 b/build/config/stamp2 deleted file mode 100644 index e69de29..0000000 diff --git a/build/examples/Makefile b/build/examples/Makefile deleted file mode 100644 index 5110efb..0000000 --- a/build/examples/Makefile +++ /dev/null @@ -1,1396 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Library Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = $(TEST_SCRIPT) -subdir = examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-c-ex.sh testh5cc.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-c-ex.sh.in \ - $(srcdir)/testh5cc.sh.in $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am README -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = ../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 $(EXTLINK_DIRS) \ - *.h5 -#EXAMPLE_PROG_PARA = ph5example -INSTALL_SCRIPT_FILES = run-c-ex.sh -INSTALL_TOP_SCRIPT_FILES = run-all-ex.sh -INSTALL_TOP_FILES = README - -# Example programs. -# Don't tell automake about them, because if it knew they were programs, -# it would try to compile them instead of using the h5cc script. -# Use the boilerplate in config/examples.am instead. -EXAMPLE_PROG = h5_write h5_read h5_extend_write h5_chunk_read h5_compound \ - h5_crtgrpd h5_subset h5_cmprss h5_rdwt h5_crtgrpar h5_extend \ - h5_crtatt h5_crtgrp h5_crtdat \ - h5_group h5_select h5_attribute h5_mount h5_reference h5_drivers \ - h5_ref2reg h5_extlink h5_elink_unix2win h5_shared_mesg - -TEST_SCRIPT = testh5cc.sh -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# Install files -# List all file that should be installed in examples directory -INSTALL_FILES = h5_write.c h5_read.c h5_extend_write.c h5_chunk_read.c \ - h5_crtgrpd.c h5_subset.c h5_cmprss.c h5_rdwt.c h5_crtgrpar.c \ - h5_extend.c h5_crtatt.c h5_crtgrp.c h5_crtdat.c \ - h5_compound.c h5_group.c h5_select.c h5_attribute.c h5_mount.c \ - h5_reference.c h5_drivers.c h5_extlink.c h5_elink_unix2win.c \ - h5_ref2reg.c h5_shared_mesg.c ph5example.c - - -# The external link examples demonstrate how to use paths; they need -# directories to be created to do this. -EXTLINK_DIRS = red blue u2w - -# Example directory -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/c -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples -#LD_LIBRARY_PATH = $(LL_PATH) - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-c-ex.sh: $(top_builddir)/config.status $(srcdir)/run-c-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -testh5cc.sh: $(top_builddir)/config.status $(srcdir)/testh5cc.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# How to build examples, using installed version of h5cc -#$(EXTRA_PROG): $(H5CC_PP) -# $(H5CC_PP) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; -$(EXTRA_PROG): $(H5CC) - $(H5CC) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; - -# Some examples depend on files created by other examples. -h5_read.chkexe_: h5_write.chkexe_ -h5_chunk_read.chkexe_: h5_extend_write.chkexe_ -h5_crtgrpd.chkexe_: h5_crtgrpar.chkexe_ -# h5_rdwt and h5_crtatt both modify the same file created by -# h5_crtdat. Serialize them. -h5_rdwt.chkexe_: h5_crtdat.chkexe_ -h5_crtatt.chkexe_: h5_rdwt.chkexe_ - -$(EXTLINK_DIRS): - echo $(mkdir_p) $@ - $(mkdir_p) $@ - -# List dependencies for each program. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C compiler, not h5cc. This is -# an inelegant way of solving the problem. -# All programs share the same build rule and a dependency on the main hdf5 -# library above. -h5_chunk_read: $(srcdir)/h5_chunk_read.c -h5_compound: $(srcdir)/h5_compound.c -h5_crtgrpd: $(srcdir)/h5_crtgrpd.c -h5_subset: $(srcdir)/h5_subset.c -h5_cmprss: $(srcdir)/h5_cmprss.c -h5_rdwt: $(srcdir)/h5_rdwt.c -h5_crtgrpar: $(srcdir)/h5_crtgrpar.c -h5_extend: $(srcdir)/h5_extend.c -h5_crtatt: $(srcdir)/h5_crtatt.c -h5_crtgrp: $(srcdir)/h5_crtgrp.c -h5_crtdat: $(srcdir)/h5_crtdat.c -h5_extend_write: $(srcdir)/h5_extend_write.c -h5_group: $(srcdir)/h5_group.c -h5_write: $(srcdir)/h5_write.c -h5_read: $(srcdir)/h5_read.c -h5_select: $(srcdir)/h5_select.c -h5_attribute: $(srcdir)/h5_attribute.c -h5_mount: $(srcdir)/h5_mount.c -h5_reference: $(srcdir)/h5_reference.c -h5_ref2reg: $(srcdir)/h5_ref2reg.c -h5_drivers: $(srcdir)/h5_drivers.c -ph5example: $(srcdir)/ph5example.c -h5_dtransform: $(srcdir)/h5_dtransform.c -h5_extlink: $(srcdir)/h5_extlink.c $(EXTLINK_DIRS) -h5_elink_unix2win: $(srcdir)/h5_elink_unix2win.c $(EXTLINK_DIRS) -h5_shared_mesg: $(srcdir)/h5_shared_mesg.c - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/examples/run-c-ex.sh b/build/examples/run-c-ex.sh deleted file mode 100644 index f2dfb58..0000000 --- a/build/examples/run-c-ex.sh +++ /dev/null @@ -1,140 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-c-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the c examples from source files installed # -# in .../share/hdf5_examples/c using h5cc or h5pc. The order for running # -# programs with RunTest in the MAIN section below is taken from the Makefile. # -# The order is important since some of the test programs use data files created # -# by earlier test programs. Any future additions should be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5cc" # The tool name -else - H5TOOL="h5pcc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".c" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - - - -################## MAIN ################## - -if ! test -d red; then - mkdir red -fi -if ! test -d blue; then - mkdir blue -fi -if ! test -d u2w; then - mkdir u2w -fi - -# Run tests -if [ $? -eq 0 ] -then - if (RunTest h5_crtdat &&\ - rm h5_crtdat &&\ - RunTest h5_extend &&\ - rm h5_extend &&\ - RunTest h5_rdwt &&\ - rm h5_rdwt &&\ - RunTest h5_crtatt &&\ - rm h5_crtatt &&\ - RunTest h5_crtgrp &&\ - rm h5_crtgrp &&\ - RunTest h5_crtgrpar &&\ - rm h5_crtgrpar &&\ - RunTest h5_crtgrpd &&\ - rm h5_crtgrpd &&\ - RunTest h5_subset &&\ - rm h5_subset &&\ - RunTest h5_cmprss &&\ - rm h5_cmprss &&\ - RunTest h5_write &&\ - rm h5_write &&\ - RunTest h5_read &&\ - rm h5_read &&\ - RunTest h5_extend_write &&\ - rm h5_extend_write &&\ - RunTest h5_chunk_read &&\ - rm h5_chunk_read &&\ - RunTest h5_compound &&\ - rm h5_compound &&\ - RunTest h5_group &&\ - rm h5_group &&\ - RunTest h5_select &&\ - rm h5_select &&\ - RunTest h5_attribute &&\ - rm h5_attribute &&\ - RunTest h5_mount &&\ - rm h5_mount &&\ - RunTest h5_reference &&\ - rm h5_reference &&\ - RunTest h5_drivers &&\ - rm h5_drivers &&\ - RunTest h5_ref2reg &&\ - rm h5_ref2reg &&\ - RunTest h5_extlink &&\ - rm h5_extlink &&\ - RunTest h5_elink_unix2win &&\ - rm h5_elink_unix2win &&\ - RunTest h5_shared_mesg &&\ - rm h5_shared_mesg); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -# Cleanup -rm *.o -rm *.h5 -rm -rf red blue u2w -echo - -exit $EXIT_VALUE - diff --git a/build/examples/testh5cc.sh b/build/examples/testh5cc.sh deleted file mode 100644 index fdcd94e..0000000 --- a/build/examples/testh5cc.sh +++ /dev/null @@ -1,351 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# Tests for the h5cc compiler tool -# Created: Albert Cheng, 2007/4/11 -# -# Modification: -# Albert Cheng, 2008/9/27 -# Added -shlib tests and verbose control. -# Albert Cheng, 2009/10/28 -# Added version compatibility tests. -# - -srcdir=../../examples - -# Initializations -TESTNAME=h5cc -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# Note: no '/' after DESTDIR. Explanation in commence.am -prefix="${prefix:-${DESTDIR}/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5cc" # The tool name -else - H5TOOL="h5pcc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -CMP='cmp -s' -DIFF='diff -c' - -nerrors=$EXIT_SUCCESS -verbose=${HDF5_VERBOSE:-1} # 0: none; 1: default; 2: chatty; 3: everything -test $verbose -gt 2 && set -x -H5_NO_DEPRECATED_SYMBOLS=`grep '#define H5_NO_DEPRECATED_SYMBOLS ' ../src/H5pubconf.h` -H5_USE_16_API_DEFAULT=`grep '#define H5_USE_16_API_DEFAULT ' ../src/H5pubconf.h` - -# setup my machine information. -myos=`uname -s` -myhostnama=`uname -n` - -# Generate some source files and library for tests. -suffix=c # source file suffix -hdf5main=${H5TOOL}_hdf5main.$suffix -hdf5main_o=${H5TOOL}_hdf5main.o -v16main=${H5TOOL}_v16main.$suffix -v16main_o=${H5TOOL}_v16main.o -v18main=${H5TOOL}_v18main.$suffix -v18main_o=${H5TOOL}_v18main.o -appmain=${H5TOOL}_appmain.$suffix -appmain_o=${H5TOOL}_appmain.o -prog1=${H5TOOL}_prog1.$suffix -prog1_o=${H5TOOL}_prog1.o -prog2=${H5TOOL}_prog2.$suffix -prog2_o=${H5TOOL}_prog2.o -applib=libapp${H5TOOL}.a - -# short hands -# Caution: if some *.h5 files must be cleaned here, list them by names. -# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated -# by otehr test programs. This will cause a racing condition error when -# parallel make (e.g., gmake -j 4) is used. -temp_SRC="$hdf5main $v16main $v18main $appmain $prog1 $prog2" -temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` -temp_FILES="a.out $applib" - -# Generate appmain: -# An application Main that calls hdf5 and application's own functions. -cat > $appmain < $prog1 < $prog2 < $hdf5main < $v16main < $v18main < $out 2>&1 - result=$? - if [ $result = 0 ]; then - echo " PASSED" - test $verbose -gt 1 && \ - ( echo "========== results ==========="; cat $out; - echo "===============================================") |sed 's/^/ /' - else - echo "*FAILED*" - nerrors="`expr $nerrors + 1`" - test $verbose -gt 0 && \ - ( echo "========== results ==========="; cat $out; - echo "===============================================") |sed 's/^/ /' - fi - - # Clean up output file - if test -z "$HDF5_NOCLEANUP"; then - rm -f $out - fi -} - -# Print a "SKIP" message -SKIP() { - TESTING $H5TOOL $@ - echo " -SKIP-" -} - - -############################################################################## -### T H E T E S T S ### -############################################################################## -# -# Group 1: HDF5 program that calls HDF5 APIs. -echo "***"Simple Compile and Link in one step. -TOOLTEST $hdf5main -# Application program that calls HDF5 and its own functions. -TOOLTEST $appmain $prog1 $prog2 -# Repeat with -shlib option -echo "***"Simple Compile and Link with -shlib in one step. -TOOLTEST -shlib $hdf5main -# Application program that calls HDF5 and its own functions. -TOOLTEST -shlib $appmain $prog1 $prog2 - -# Group 2: Compile, then link. -echo "***"Compile and Link in two steps. -TOOLTEST -c $hdf5main -TOOLTEST $hdf5main_o -TOOLTEST -c $appmain $prog1 $prog2 -TOOLTEST $appmain_o $prog1_o $prog2_o -# Repeat with -shlib option -echo "***"Compile and Link with -shlib in two steps. -TOOLTEST -c $hdf5main -TOOLTEST -shlib $hdf5main_o -TOOLTEST -c $appmain $prog1 $prog2 -TOOLTEST -shlib $appmain_o $prog1_o $prog2_o - -# Group3: Build external library, then link with it. -echo "***"Build external library and link with it. -TOOLTEST -c $prog1 $prog2 -$AR cru $applib $prog1_o $prog2_o -$RANLIB $applib -TOOLTEST $appmain $applib -TOOLTEST $appmain_o $applib -# Repeat with -shlib option -echo "***"Build external library and link with it using -shlib. -TOOLTEST -c $prog1 $prog2 -$AR cru $applib $prog1_o $prog2_o -$RANLIB $applib -TOOLTEST -shlib $appmain $applib -TOOLTEST -shlib $appmain_o $applib - -# Group 4: Just preprocess, no compile, no link. -echo "***"Just preprocess, no compile, no link. -TOOLTEST -E $hdf5main -TOOLTEST -E $appmain $prog1 $prog2 - -# Group5: Version compatibility tests. -echo "***"Version compatibility tests. -# Test these two cases now. More later. -# If H5_NO_DEPRECATED_SYMBOLS; -# then only v18main works. -# else if H5_USE_16_API_DEFAULT; -# then v16main works and -DH5_NO_DEPRECATED_SYMBOLS v18main also works. -# else v18main works and -DH5_USE_16_API_DEFAULT v16main also works. -# -if [ -n "$H5_USE_16_API_DEFAULT" ]; then - echo "H5_USE_16_API_DEFAULT is defined." -else - echo "H5_USE_16_API_DEFAULT is not defined." -fi -if [ -n "$H5_NO_DEPRECATED_SYMBOLS" ]; then - echo "H5_NO_DEPRECATED_SYMBOLS is defined." -else - echo "H5_NO_DEPRECATED_SYMBOLS is not defined." -fi -if [ -n "$H5_NO_DEPRECATED_SYMBOLS" ]; then - echo "Skipping $v16main test" - TOOLTEST $v18main -elif [ -n "$H5_USE_16_API_DEFAULT" ]; then - TOOLTEST $v16main - TOOLTEST -DH5_NO_DEPRECATED_SYMBOLS $v18main -else - TOOLTEST -DH5_USE_16_API_DEFAULT $v16main - TOOLTEST $v18main -fi - -############################################################################## -# END -############################################################################## - -# Clean up file -if test -z "$HDF5_NOCLEANUP"; then - rm -f $temp_SRC $temp_OBJ $temp_FILES -fi - -if test $nerrors -eq 0 ; then - echo "All $TESTNAME tests passed." - exit $EXIT_SUCCESS -else - echo "$TESTNAME tests failed with $nerrors errors." - exit $EXIT_FAILURE -fi diff --git a/build/fortran/Makefile b/build/fortran/Makefile deleted file mode 100644 index eda5163..0000000 --- a/build/fortran/Makefile +++ /dev/null @@ -1,1422 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# fortran/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# This makefile mostly just reinvokes make in the various subdirectories -# but does so in the correct order. You can alternatively invoke make from -# each subdirectory manually. -# -# Top-level HDF5-Fortran Makefile(.in) -# -VPATH = ../../fortran -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = fortran -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../fortran -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = ../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 -#TESTPARALLEL_DIR = testpar - -# Subdirectories in build order, not including examples directory -#SUBDIRS = src test $(TESTPARALLEL_DIR) - -# All directories that have Makefiles -DIST_SUBDIRS = src test testpar examples - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign fortran/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Install examples -install-examples uninstall-examples: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -installcheck-local: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Clean examples when check-clean is invoked -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS) examples; do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/fortran/examples/Makefile b/build/fortran/examples/Makefile deleted file mode 100644 index 456b8e6..0000000 --- a/build/fortran/examples/Makefile +++ /dev/null @@ -1,1387 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# fortran/examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-Fortran Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../../fortran/examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Add attention tests for Fortran 2003 features -#am__append_1 = rwdset_fortran2003 nested_derived_type \ -# compound_fortran2003 compound_complex_fortran2003 - -#am__append_2 = rwdset_fortran2003.f90 nested_derived_type.f90 \ -# compound_fortran2003.f90 compound_complex_fortran2003.f90 - -TESTS = $(TEST_SCRIPT) -subdir = fortran/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-fortran-ex.sh testh5fc.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-fortran-ex.sh.in \ - $(srcdir)/testh5fc.sh.in $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../fortran/examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 - -# Compile parallel fortran examples only if parallel is enabled -#EXAMPLE_PROG_PARA = ph5example -INSTALL_SCRIPT_FILES = run-fortran-ex.sh - -# These are the programs that 'make all' or 'make tests' will build and -# that 'make check' will run. List them in the order in which they should -# be run. -# We don't tell automake about these programs so that it doesn't try to -# compile them with the regular fortran compiler. -EXAMPLE_PROG = h5_crtdat h5_rdwt h5_crtatt h5_crtgrp h5_crtgrpar \ - h5_crtgrpd h5_extend h5_subset h5_cmprss hyperslab selectele \ - refobjexample refregexample mountexample compound \ - $(am__append_1) - -# List files to be installed here -INSTALL_FILES = h5_crtdat.f90 h5_rdwt.f90 h5_crtatt.f90 h5_crtgrp.f90 \ - h5_crtgrpar.f90 h5_crtgrpd.f90 h5_extend.f90 h5_subset.f90 \ - h5_cmprss.f90 hyperslab.f90 selectele.f90 refobjexample.f90 \ - refregexample.f90 mountexample.f90 compound.f90 ph5example.f90 \ - $(am__append_2) -TEST_SCRIPT = testh5fc.sh -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# Mark this directory as part of the Fortran API -FORTRAN_API = yes - -# Tell automake how to install examples -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/fortran -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign fortran/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-fortran-ex.sh: $(top_builddir)/config.status $(srcdir)/run-fortran-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -testh5fc.sh: $(top_builddir)/config.status $(srcdir)/testh5fc.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Some examples depend on files created by other examples. -h5_crtgrpd.chkexe_: h5_crtgrpar.chkexe_ -refregexample.chkexe_: refobjexample.chkexe_ -# h5_rdwt and h5_crtatt both modify the same file created by -# h5_crtdat. Serialize them. -h5_rdwt.chkexe_: h5_crtdat.chkexe_ -h5_crtatt.chkexe_: h5_rdwt.chkexe_ - -# Tell automake how to build examples using h5fc -# Additional dependencies for the examples are listed below -#$(EXTRA_PROG): $(H5FC_PP) -# $(H5FC_PP) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; -$(EXTRA_PROG): $(H5FC) - $(H5FC) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; - -# List dependencies for each example. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C compiler, not h5cc. This is -# an inelegant way of solving the problem. -# All programs share the same build rule and a dependency on the main hdf5 -# and fortran libraries above. -h5_crtdat: h5_crtdat.f90 -h5_extend: h5_extend.f90 -h5_subset: h5_subset.f90 -h5_rdwt: h5_rdwt.f90 -h5_crtatt: h5_crtatt.f90 -h5_crtgrp: h5_crtgrp.f90 -h5_crtgrpar: h5_crtgrpar.f90 -h5_crtgrpd: h5_crtgrpd.f90 -h5_cmprss: h5_cmprss.f90 -hyperslab: hyperslab.f90 -selectele: selectele.f90 -refobjexample: refobjexample.f90 -refregexample: refregexample.f90 -mountexample: mountexample.f90 -compound: compound.f90 -ph5example: ph5example.f90 -#rwdset_fortran2003: rwdset_fortran2003.f90 -#nested_derived_type: nested_derived_type.f90 -#compound_fortran2003: compound_fortran2003.f90 -#compound_complex_fortran2003: compound_complex_fortran2003.f90 - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/fortran/examples/run-fortran-ex.sh b/build/fortran/examples/run-fortran-ex.sh deleted file mode 100644 index adab171..0000000 --- a/build/fortran/examples/run-fortran-ex.sh +++ /dev/null @@ -1,131 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-hlfortran-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the fortran examples from source files # -# installed in .../share/hdf5_examples/fortran using h5fc or h5pfc. The # -# order for running programs with RunTest in the MAIN section below is taken # -# from the Makefile. The order is important since some of the test programs # -# use data files created by earlier test programs. Any future additions should # -# be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5fc" # The tool name -else - H5TOOL="h5pfc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".f90" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - -F2003_ENABLED= - -################## MAIN ################## - -# Run tests -if [ $? -eq 0 ] -then - if (RunTest h5_crtdat &&\ - rm h5_crtdat &&\ - RunTest h5_rdwt &&\ - rm h5_rdwt &&\ - RunTest h5_crtatt &&\ - rm h5_crtatt &&\ - RunTest h5_crtgrp &&\ - rm h5_crtgrp &&\ - RunTest h5_crtgrpar &&\ - rm h5_crtgrpar &&\ - RunTest h5_crtgrpd &&\ - rm h5_crtgrpd &&\ - RunTest h5_extend &&\ - rm h5_extend &&\ - RunTest h5_subset &&\ - rm h5_subset &&\ - RunTest h5_cmprss &&\ - rm h5_cmprss &&\ - RunTest hyperslab &&\ - rm hyperslab &&\ - RunTest selectele &&\ - rm selectele &&\ - RunTest refobjexample &&\ - rm refobjexample &&\ - RunTest refregexample &&\ - rm refregexample &&\ - RunTest mountexample &&\ - rm mountexample &&\ - RunTest compound &&\ - rm compound); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -if [ $EXIT_VALUE -eq ${EXIT_SUCCESS} -a "$F2003_ENABLED" = "yes" ] -then -# Add attention tests for Fortran 2003 features - if (RunTest rwdset_fortran2003 &&\ - rm rwdset_fortran2003 &&\ - RunTest nested_derived_type &&\ - rm nested_derived_type &&\ - RunTest compound_fortran2003 &&\ - rm compound_fortran2003 &&\ - RunTest compound_complex_fortran2003 &&\ - rm compound_complex_fortran2003); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - - -# Cleanup -rm *.o -rm *.h5 -echo - -exit $EXIT_VALUE - diff --git a/build/fortran/examples/testh5fc.sh b/build/fortran/examples/testh5fc.sh deleted file mode 100644 index 9bddac1..0000000 --- a/build/fortran/examples/testh5fc.sh +++ /dev/null @@ -1,224 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# Tests for the h5fc compiler tool -# Created: Albert Cheng, 2007/3/14 -# -# Modification: -# - -srcdir=../../../fortran/examples - -# Initializations -TESTNAME=h5fc -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -prefix="${prefix:-/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5fc" # The tool name -else - H5TOOL="h5pfc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -CMP='cmp -s' -DIFF='diff -c' - -nerrors=$EXIT_SUCCESS -verbose=yes - -# setup my machine information. -myos=`uname -s` -myhostnama=`uname -n` - -# Generate some source files and library for tests. -suffix=f90 # source file suffix -hdf5main=${H5TOOL}_hdf5main.$suffix -hdf5main_o=${H5TOOL}_hdf5main.o -appmain=${H5TOOL}_appmain.$suffix -appmain_o=${H5TOOL}_appmain.o -prog1=${H5TOOL}_prog1.$suffix -prog1_o=${H5TOOL}_prog1.o -prog2=${H5TOOL}_prog2.$suffix -prog2_o=${H5TOOL}_prog2.o -applib=libapp${H5TOOL}.a - -# short hands -# Caution: if some *.h5 files must be cleaned here, list them by names. -# Don't use the wildcard form of *.h5 as it will wipe out even *.h5 generated -# by otehr test programs. This will cause a racing condition error when -# parallel make (e.g., gmake -j 4) is used. -temp_SRC="$hdf5main $appmain $prog1 $prog2" -temp_OBJ=`echo $temp_SRC | sed -e "s/\.${suffix}/.o/g"` -temp_FILES="a.out $applib" - -# Generate appmain: -# An application Main that calls hdf5 and application's own functions. -cat > $appmain < $prog1 < $prog2 < $hdf5main < $out 2>&1 - result=$? - if [ $result = 0 ]; then - echo " PASSED" - else - echo "*FAILED*" - nerrors="`expr $nerrors + 1`" - test yes = "$verbose" && \ - ( echo "========== results ==========="; cat $out; - echo "===============================================") |sed 's/^/ /' - fi - - # Clean up output file - if test -z "$HDF5_NOCLEANUP"; then - rm -f $out - fi -} - -# Print a "SKIP" message -SKIPTEST() { - TESTING $H5TOOL $@ - echo " -SKIP-" -} - - -############################################################################## -### T H E T E S T S ### -############################################################################## -# -# HDF5 program that calls HDF5 APIs. -echo "***"Simple Compile and Link in one step. -TOOLTEST $hdf5main -# Application program that calls HDF5 and its own functions. -TOOLTEST $appmain $prog1 $prog2 - -# Compile, then link. -echo "***"Compile and Link in two steps. -TOOLTEST -c $hdf5main -TOOLTEST $hdf5main_o -TOOLTEST -c $appmain $prog1 $prog2 -TOOLTEST $appmain_o $prog1_o $prog2_o - -# Build external library, then link with it. -echo "***"Build external library and link with it. -TOOLTEST -c $prog1 $prog2 -$AR cru $applib $prog1_o $prog2_o -$RANLIB $applib -TOOLTEST $appmain $applib -TOOLTEST $appmain_o $applib - -# No preprocess test since -E is not a common option for Fortran compilers. - -############################################################################## -# END -############################################################################## - -# Clean up file -if test -z "$HDF5_NOCLEANUP"; then - rm -f $temp_SRC $temp_OBJ $temp_FILES -fi - -if test $nerrors -eq 0 ; then - echo "All $TESTNAME tests passed." - exit $EXIT_SUCCESS -else - echo "$TESTNAME tests failed with $nerrors errors." - exit $EXIT_FAILURE -fi diff --git a/build/fortran/src/.deps/H5Af.Plo b/build/fortran/src/.deps/H5Af.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Af.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Df.Plo b/build/fortran/src/.deps/H5Df.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Df.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Ef.Plo b/build/fortran/src/.deps/H5Ef.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Ef.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5FDmpiof.Plo b/build/fortran/src/.deps/H5FDmpiof.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5FDmpiof.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Ff.Plo b/build/fortran/src/.deps/H5Ff.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Ff.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Gf.Plo b/build/fortran/src/.deps/H5Gf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Gf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5If.Plo b/build/fortran/src/.deps/H5If.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5If.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Lf.Plo b/build/fortran/src/.deps/H5Lf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Lf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Of.Plo b/build/fortran/src/.deps/H5Of.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Of.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Pf.Plo b/build/fortran/src/.deps/H5Pf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Pf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Rf.Plo b/build/fortran/src/.deps/H5Rf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Rf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Sf.Plo b/build/fortran/src/.deps/H5Sf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Sf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Tf.Plo b/build/fortran/src/.deps/H5Tf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Tf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5Zf.Plo b/build/fortran/src/.deps/H5Zf.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5Zf.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5_f.Plo b/build/fortran/src/.deps/H5_f.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5_f.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5f90kit.Plo b/build/fortran/src/.deps/H5f90kit.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5f90kit.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/.deps/H5match_types.Po b/build/fortran/src/.deps/H5match_types.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/src/.deps/H5match_types.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/src/Makefile b/build/fortran/src/Makefile deleted file mode 100644 index 93ec523..0000000 --- a/build/fortran/src/Makefile +++ /dev/null @@ -1,1719 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# fortran/src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Fortran Library Makefile(.in) -# - - -VPATH = ../../../fortran/src -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Some Fortran compilers can't build shared libraries, so sometimes we -# want to build a shared C library and a static Fortran library. If so, -# pass the -static flag to the library linker. -am__append_1 = -static -noinst_PROGRAMS = H5match_types$(EXEEXT) H5fortran_detect$(EXEEXT) \ - H5test_kind$(EXEEXT) -TESTS = -subdir = fortran/src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = h5fc -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libhdf5_fortran_la_DEPENDENCIES = $(LIBHDF5) -am__libhdf5_fortran_la_SOURCES_DIST = H5f90global.f90 \ - H5fortran_types.f90 H5_ff$(F_STATUS).f90 H5_ff.f90 H5Aff.f90 \ - H5Dff.f90 H5Eff.f90 H5Fff.f90 H5Gff.f90 H5Iff.f90 H5Lff.f90 \ - H5Off.f90 H5Pff.f90 H5Rff.f90 H5Sff.f90 H5Tff.f90 H5Zff.f90 \ - H5_DBLE_Interface$(F_DBLE).f90 H5f90kit.c H5_f.c H5Af.c H5Df.c \ - H5Ef.c H5Ff.c H5Gf.c H5If.c H5Lf.c H5Of.c H5Pf.c H5Rf.c H5Sf.c \ - H5Tf.c H5Zf.c H5Aff$(F_STATUS).f90 H5Dff$(F_STATUS).f90 \ - H5Eff$(F_STATUS).f90 H5Fff$(F_STATUS).f90 H5Lff$(F_STATUS).f90 \ - H5Off$(F_STATUS).f90 H5Pff$(F_STATUS).f90 H5Rff$(F_STATUS).f90 \ - H5Tff$(F_STATUS).f90 HDF5.f90 H5FDmpiof.c HDF5mpio.f90 \ - H5FDmpioff.f90 -am__objects_1 = HDF5.lo -#am__objects_1 = H5FDmpiof.lo \ -# HDF5mpio.lo H5FDmpioff.lo -am_libhdf5_fortran_la_OBJECTS = H5f90global.lo H5fortran_types.lo \ - H5_ff$(F_STATUS).lo H5_ff.lo H5Aff.lo H5Dff.lo H5Eff.lo \ - H5Fff.lo H5Gff.lo H5Iff.lo H5Lff.lo H5Off.lo H5Pff.lo H5Rff.lo \ - H5Sff.lo H5Tff.lo H5Zff.lo H5_DBLE_Interface$(F_DBLE).lo \ - H5f90kit.lo H5_f.lo H5Af.lo H5Df.lo H5Ef.lo H5Ff.lo H5Gf.lo \ - H5If.lo H5Lf.lo H5Of.lo H5Pf.lo H5Rf.lo H5Sf.lo H5Tf.lo \ - H5Zf.lo H5Aff$(F_STATUS).lo H5Dff$(F_STATUS).lo \ - H5Eff$(F_STATUS).lo H5Fff$(F_STATUS).lo H5Lff$(F_STATUS).lo \ - H5Off$(F_STATUS).lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo \ - H5Tff$(F_STATUS).lo $(am__objects_1) -libhdf5_fortran_la_OBJECTS = $(am_libhdf5_fortran_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libhdf5_fortran_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ - $(AM_FCFLAGS) $(FCFLAGS) $(libhdf5_fortran_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -PROGRAMS = $(noinst_PROGRAMS) -am_H5fortran_detect_OBJECTS = H5fortran_detect.$(OBJEXT) -H5fortran_detect_OBJECTS = $(am_H5fortran_detect_OBJECTS) -H5fortran_detect_LDADD = $(LDADD) -H5match_types_SOURCES = H5match_types.c -H5match_types_OBJECTS = H5match_types.$(OBJEXT) -H5match_types_LDADD = $(LDADD) -am__H5test_kind_SOURCES_DIST = H5test_kind.f90 H5test_kind_SIZEOF.f90 \ - H5test_kind_STORAGE_SIZE.f90 -am_H5test_kind_OBJECTS = H5test_kind.$(OBJEXT) -#am_H5test_kind_OBJECTS = H5test_kind_SIZEOF.$(OBJEXT) -#am_H5test_kind_OBJECTS = H5test_kind_STORAGE_SIZE.$(OBJEXT) -H5test_kind_OBJECTS = $(am_H5test_kind_OBJECTS) -H5test_kind_LDADD = $(LDADD) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) -LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) -AM_V_FC = $(am__v_FC_$(V)) -am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) -am__v_FC_0 = @echo " FC " $@; -am__v_FC_1 = -FCLD = $(FC) -FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_FCLD = $(am__v_FCLD_$(V)) -am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_FCLD_0 = @echo " FCLD " $@; -am__v_FCLD_1 = -SOURCES = $(libhdf5_fortran_la_SOURCES) $(H5fortran_detect_SOURCES) \ - H5match_types.c $(H5test_kind_SOURCES) -DIST_SOURCES = $(am__libhdf5_fortran_la_SOURCES_DIST) \ - $(H5fortran_detect_SOURCES) H5match_types.c \ - $(am__H5test_kind_SOURCES_DIST) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h5fc.in \ - $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/lt_vers.am README -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include src directory in both Fortran and C flags (C compiler is used -# for linking). -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -I$(top_srcdir)/src \ - -I$(top_srcdir)/fortran/src -AM_LDFLAGS = $(am__append_1) -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/src -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/src -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../fortran/src -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# Add libtool shared library version numbers to the HDF5 library -# See libtool versioning documentation online. -# After making changes, run bin/reconfigure to update other configure related -# files like Makefile.in. -LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 2 -LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 16 -LT_CXX_VERS_REVISION = 0 -LT_CXX_VERS_AGE = 0 -LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 6 -LT_F_VERS_AGE = 0 -LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 2 -LT_HL_VERS_AGE = 2 -LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 2 -LT_HL_CXX_VERS_AGE = 1 -LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 5 -LT_HL_F_VERS_AGE = 0 -LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 7 -LT_TOOLS_VERS_AGE = 0 -AM_FCLIBS = $(LIBHDF5) - -# This is our main target, the fortran library -lib_LTLIBRARIES = libhdf5_fortran.la - -# Add libtool numbers to the HDF5 Fortran library (from config/lt_vers.am) -libhdf5_fortran_la_LDFLAGS = -version-info $(LT_F_VERS_INTERFACE):$(LT_F_VERS_REVISION):$(LT_F_VERS_AGE) $(AM_LDFLAGS) -PARALLEL_COND_SRC = HDF5.f90 - -# Include HDF5.f90 if parallel is disabled, HDF5mpiof* if parallel is enabled -#PARALLEL_COND_SRC = H5FDmpiof.c HDF5mpio.f90 H5FDmpioff.f90 -F_STATUS = _F90 - -# Check if the compiler supports the Fortran 2003 standard -# which should include the intrinsic module iso_c_binding -#F_STATUS = _F03 -F_DBLE = Include - -# Condition for including/excluding the DBLE interfaces for when the -# default REAL is of type DOUBLE PRECISION. -# We do not include the double precision interfaces if the defaut REAL is -# DOUBLE PRECISION since this would lead to a non-unique conflict with the -# generic interfaces declared as REAL. -#F_DBLE = Exclude - -# Source files for the library. -libhdf5_fortran_la_SOURCES = H5f90global.f90 \ - H5fortran_types.f90 H5_ff$(F_STATUS).f90 H5_ff.f90 H5Aff.f90 H5Dff.f90 H5Eff.f90 \ - H5Fff.f90 H5Gff.f90 H5Iff.f90 H5Lff.f90 H5Off.f90 H5Pff.f90 H5Rff.f90 H5Sff.f90 \ - H5Tff.f90 H5Zff.f90 \ - H5_DBLE_Interface$(F_DBLE).f90 \ - H5f90kit.c H5_f.c H5Af.c H5Df.c H5Ef.c H5Ff.c H5Gf.c \ - H5If.c H5Lf.c H5Of.c H5Pf.c H5Rf.c H5Sf.c H5Tf.c H5Zf.c \ - H5Aff$(F_STATUS).f90 H5Dff$(F_STATUS).f90 H5Eff$(F_STATUS).f90 H5Fff$(F_STATUS).f90 H5Lff$(F_STATUS).f90 \ - H5Off$(F_STATUS).f90 H5Pff$(F_STATUS).f90 H5Rff$(F_STATUS).f90 H5Tff$(F_STATUS).f90 $(PARALLEL_COND_SRC) - - -# HDF5 Fortran library depends on HDF5 Library. -libhdf5_fortran_la_LIBADD = $(LIBHDF5) - -# h5fc is generated during configure. -# Remove it only when distclean. -DISTCLEANFILES = h5fc - -# H5fortran_types.f90 and H5f90i.h are automatically generaed by -# H5match_types, and must be cleaned explicitly. H5fort_type_defines.h -# is generated by H5fortran_detect -MOSTLYCLEANFILES = H5fortran_types.f90 H5f90i_gen.h H5fort_type_defines.h \ - H5fortran_detect.f90 - -H5FC_NAME = h5fc - -# Custom rule for installing h5fc, since it will be named h5pfc if hdf5 -# is configured for parallel mode -#H5FC_NAME = h5pfc - -# Tell Automake to create H5f90i_gen.h before it builds the library -# sources. When it creates H5f90i_gen.h, it will create -# H5fortran_types.f90 as a side effect. -BUILT_SOURCES = H5f90i_gen.h - -# Automake knows how to build fortran programs if we tell it the source -# files. -H5fortran_detect_SOURCES = H5fortran_detect.f90 -H5test_kind_SOURCES = H5test_kind.f90 -#H5test_kind_SOURCES = H5test_kind_SIZEOF.f90 - -# H5test_kind.f90 is included in the distribution, and Automake knows -# how to compile a fortran program given its sources. -#H5test_kind_SOURCES = H5test_kind_STORAGE_SIZE.f90 - -# Mark this directory as part of the Fortran API -FORTRAN_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-am - -.SUFFIXES: -.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign fortran/src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -h5fc: $(top_builddir)/config.status $(srcdir)/h5fc.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libhdf5_fortran.la: $(libhdf5_fortran_la_OBJECTS) $(libhdf5_fortran_la_DEPENDENCIES) $(EXTRA_libhdf5_fortran_la_DEPENDENCIES) - $(AM_V_FCLD)$(libhdf5_fortran_la_LINK) -rpath $(libdir) $(libhdf5_fortran_la_OBJECTS) $(libhdf5_fortran_la_LIBADD) $(LIBS) - -clean-noinstPROGRAMS: - @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -H5fortran_detect$(EXEEXT): $(H5fortran_detect_OBJECTS) $(H5fortran_detect_DEPENDENCIES) $(EXTRA_H5fortran_detect_DEPENDENCIES) - @rm -f H5fortran_detect$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(H5fortran_detect_OBJECTS) $(H5fortran_detect_LDADD) $(LIBS) - -H5match_types$(EXEEXT): $(H5match_types_OBJECTS) $(H5match_types_DEPENDENCIES) $(EXTRA_H5match_types_DEPENDENCIES) - @rm -f H5match_types$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(H5match_types_OBJECTS) $(H5match_types_LDADD) $(LIBS) - -H5test_kind$(EXEEXT): $(H5test_kind_OBJECTS) $(H5test_kind_DEPENDENCIES) $(EXTRA_H5test_kind_DEPENDENCIES) - @rm -f H5test_kind$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(H5test_kind_OBJECTS) $(H5test_kind_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/H5Af.Plo -include ./$(DEPDIR)/H5Df.Plo -include ./$(DEPDIR)/H5Ef.Plo -include ./$(DEPDIR)/H5FDmpiof.Plo -include ./$(DEPDIR)/H5Ff.Plo -include ./$(DEPDIR)/H5Gf.Plo -include ./$(DEPDIR)/H5If.Plo -include ./$(DEPDIR)/H5Lf.Plo -include ./$(DEPDIR)/H5Of.Plo -include ./$(DEPDIR)/H5Pf.Plo -include ./$(DEPDIR)/H5Rf.Plo -include ./$(DEPDIR)/H5Sf.Plo -include ./$(DEPDIR)/H5Tf.Plo -include ./$(DEPDIR)/H5Zf.Plo -include ./$(DEPDIR)/H5_f.Plo -include ./$(DEPDIR)/H5f90kit.Plo -include ./$(DEPDIR)/H5match_types.Po - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -.f90.o: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -.f90.obj: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` - -.f90.lo: - $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-am -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-local -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ - clean-noinstPROGRAMS mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-local distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-exec-local install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic \ - maintainer-clean-local - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES uninstall-local - -.MAKE: all check check-am install install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-local distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-data-local install-dvi \ - install-dvi-am install-exec install-exec-am install-exec-local \ - install-html install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ - uninstall uninstall-am uninstall-libLTLIBRARIES \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Fortran module files can have different extensions and different names -# (e.g., different capitalizations) on different platforms. Write rules -# for them explicitly rather than trying to teach automake about them. -# They should be installed as headers and removed during clean. -maintainer-clean-local: clean-local -distclean-local: clean-local -clean-local: - @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ - $(RM) *.$(F9XMODEXT); \ - fi - -install-data-local: - @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ - $(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \ - fi - $(CP) $(top_builddir)/$(subdir)/H5f90i_gen.h $(DESTDIR)$(includedir)/. - $(CP) $(top_srcdir)/fortran/src/H5f90i.h $(DESTDIR)$(includedir)/. - -uninstall-local: - @if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \ - if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(includedir)/HDF5.$(F9XMODEXT)"; then \ - set -x; $(RM) $(DESTDIR)$(includedir)/*.$(F9XMODEXT); \ - fi; \ - fi; \ - $(RM) $(DESTDIR)$(bindir)/$(H5FC_NAME) - $(RM) $(DESTDIR)$(includedir)/H5f90i*.h - -# Also install and uninstall (uninstall-local above) h5fc script -install-exec-local: - @$(INSTALL) h5fc $(DESTDIR)$(bindir)/$(H5FC_NAME) - -#Specify what Automake needs to create: first the H5fort_type_defines.h -# header, then H5match_types which includes that header, then -# it needs to run H5match_types. -H5fortran_types.f90 H5f90i_gen.h: H5match_types$(EXEEXT) - $(RUNSERIAL) ./H5match_types$(EXEEXT) - -# H5fort_type_defines.h is created by running H5fortran_detect. -# Obviously, H5fortran_detect needs to be built first. -H5fort_type_defines.h: H5fortran_detect$(EXEEXT) - $(RUNSERIAL) ./H5fortran_detect$(EXEEXT) > H5fort_type_defines.h - -H5match_types.$(OBJEXT): H5fort_type_defines.h - -# H5test_kind.f90 generates H5Fortran_detect.f90 depending on if -# intrinsic function SIZEOF is available. - -H5fortran_detect.f90: H5test_kind$(EXEEXT) - $(RUNSERIAL) ./H5test_kind$(EXEEXT) > H5fortran_detect.f90 - -# Hardcode the dependencies of these files. There isn't a known way of -# determining this automagically (like we do with the C files). So, when -# doing a parallel make, some modules could be made way before the -# modules they depend upon are actually made. *sigh* -H5f90global.lo: $(srcdir)/H5f90global.f90 H5fortran_types.lo -H5fortran_types.lo: H5fortran_types.f90 -H5fortran_detect.lo: H5fortran_detect.f90 -H5test_kind.lo: $(srcdir)/H5test_kind.f90 -H5test_kind_SIZEOF.lo: $(srcdir)/H5test_kind_SIZEOF.f90 -H5_ff$(F_STATUS).lo: $(srcdir)/H5_ff$(F_STATUS).f90 H5f90global.lo -H5_ff.lo: $(srcdir)/H5_ff.f90 H5f90global.lo H5_ff$(F_STATUS).lo -H5Aff.lo: $(srcdir)/H5Aff.f90 H5f90global.lo -H5Dff.lo: $(srcdir)/H5Dff.f90 H5f90global.lo -H5Aff$(F_STATUS).lo: $(srcdir)/H5Aff$(F_STATUS).f90 H5f90global.lo -H5Dff$(F_STATUS).lo: $(srcdir)/H5Dff$(F_STATUS).f90 H5f90global.lo -H5Eff$(F_STATUS).lo: $(srcdir)/H5Eff$(F_STATUS).f90 H5f90global.lo -H5Fff$(F_STATUS).lo: $(srcdir)/H5Fff$(F_STATUS).f90 H5f90global.lo -H5Lff$(F_STATUS).lo: $(srcdir)/H5Lff$(F_STATUS).f90 H5f90global.lo -H5Off$(F_STATUS).lo: $(srcdir)/H5Off$(F_STATUS).f90 H5f90global.lo -H5Pff$(F_STATUS).lo: $(srcdir)/H5Pff$(F_STATUS).f90 H5f90global.lo -H5Rff$(F_STATUS).lo: $(srcdir)/H5Rff$(F_STATUS).f90 H5f90global.lo -H5Tff$(F_STATUS).lo: $(srcdir)/H5Tff$(F_STATUS).f90 H5f90global.lo -H5Eff.lo: $(srcdir)/H5Eff.f90 H5f90global.lo -H5Fff.lo: $(srcdir)/H5Fff.f90 H5f90global.lo -H5Gff.lo: $(srcdir)/H5Gff.f90 H5f90global.lo -H5Iff.lo: $(srcdir)/H5Iff.f90 H5f90global.lo -H5Lff.lo: $(srcdir)/H5Lff.f90 H5f90global.lo -H5Off.lo: $(srcdir)/H5Off.f90 H5f90global.lo -H5Pff.lo: $(srcdir)/H5Pff.f90 H5f90global.lo -H5Rff.lo: $(srcdir)/H5Rff.f90 H5f90global.lo -H5Sff.lo: $(srcdir)/H5Sff.f90 H5f90global.lo -H5Tff.lo: $(srcdir)/H5Tff.f90 H5f90global.lo -H5Zff.lo: $(srcdir)/H5Zff.f90 H5f90global.lo -H5_DBLE_Interface$(F_DBLE).lo: $(srcdir)/H5_DBLE_Interface$(F_DBLE).f90 H5Aff$(F_STATUS).lo H5Dff$(F_STATUS).lo H5Fff$(F_STATUS).lo H5Eff$(F_STATUS).lo H5Pff$(F_STATUS).lo -HDF5.lo: $(srcdir)/HDF5.f90 H5f90global.lo H5_ff$(F_STATUS).lo H5_ff.lo H5Aff.lo H5Aff$(F_STATUS).lo \ - H5Dff.lo H5Dff$(F_STATUS).lo \ - H5Eff.lo H5Eff$(F_STATUS).lo \ - H5Fff.lo H5Fff$(F_STATUS).lo H5Gff.lo H5Iff.lo H5Lff.lo H5Lff$(F_STATUS).lo \ - H5Off.lo H5Off$(F_STATUS).lo H5Pff.lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo H5Rff.lo \ - H5Sff.lo H5Tff.lo H5Tff$(F_STATUS).lo H5Zff.lo \ - H5_DBLE_Interface$(F_DBLE).lo -H5FDmpioff.lo: $(srcdir)/H5FDmpioff.f90 H5f90global.lo -HDF5mpio.lo: $(srcdir)/H5FDmpioff.f90 H5f90global.lo H5_ff$(F_STATUS).lo H5_ff.lo \ - H5Aff.lo H5Aff$(F_STATUS).lo \ - H5Dff.lo H5Dff$(F_STATUS).lo \ - H5Eff.lo H5Eff$(F_STATUS).lo \ - H5Fff.lo H5Fff$(F_STATUS).lo H5Gff.lo H5Iff.lo H5Lff.lo H5Lff$(F_STATUS).lo \ - H5Off.lo H5Off$(F_STATUS).lo H5Pff.lo H5Pff$(F_STATUS).lo H5Rff$(F_STATUS).lo H5Rff.lo \ - H5Sff.lo H5Tff.lo H5Tff$(F_STATUS).lo H5Zff.lo \ - H5_DBLE_Interface$(F_DBLE).lo H5FDmpioff.lo -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/fortran/src/h5fc b/build/fortran/src/h5fc deleted file mode 100644 index 7ac5604..0000000 --- a/build/fortran/src/h5fc +++ /dev/null @@ -1,370 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# - -############################################################################ -## ## -## Things You May Have to Modify: ## -## ## -## If the following paths don't point to the place were HDF5 is installed ## -## on your system (i.e., you received a binary distribution or moved the ## -## files from the originally installed directory to another directory) ## -## then modify them accordingly to represent the new paths. ## -## ## -############################################################################ -prefix="/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5" -exec_prefix="${prefix}" -libdir="${exec_prefix}/lib" -includedir="${prefix}/include" -HL="hl" - -############################################################################ -## ## -## Things You Can Modify to Override HDF5 Library Build Components: ## -## ## -## (Advanced usage - know what you're doing - you're on your own here.) ## -## The three variables below can be used to insert paths and flags in ## -## FCFLAGS, LDFLAGS, or LIBS in the h5fc compile line: ## -## $FLINKER $FCFLAGS $H5BLD_FCFLAGS $F9XSUFFIXFLAG $LDFLAGS $LIBS ## -## $fmodules $link_objs $link_args $shared_link ## -## ## -## These settings can be overriden by setting HDF5_FCFLAGS, ## -## HDF5_LDFLAGS, or HDF5_LIBS in the environment. ## -## ## -############################################################################ -FCFLAGSBASE="" -LDFLAGSBASE="" -LIBSBASE="" - -############################################################################ -## ## -## You shouldn't have to modify anything below this line. ## -## ## -############################################################################ - -# Constants definitions -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -host_os="linux-gnu" - -prog_name="`basename $0`" - -allargs="" -compile_args="" -link_args="" -link_objs="" - -do_link="yes" -do_compile="no" -dash_o="no" -dash_c="no" -get_output_file="no" - -SHOW="eval" -FCBASE="no" -FLINKERBASE="no" - -# FCFLAGS and LDFLAGS are reserved for use by the script user. -# FLAGS brought from the hdf5 build are put in H5BLD_*FLAGS. - -# User's FCFLAGS come after their H5BLD counterparts. User's LDFLAGS come just -# before clibpath, user's LIBS come after $link_objs and before the hdf5 -# libraries in $link_args, followed by any external library paths and libraries -# from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in from the hdf5 build. -# The order of the flags is intended to give precedence to the user's flags. -H5BLD_FCFLAGS=" " -F9XMODFLAG="" -F9XSUFFIXFLAG="" -H5BLD_LDFLAGS=" " -H5BLD_LIBS="-lz -ldl -lm " - -FC="${HDF5_FC:-$FCBASE}" -FLINKER="${HDF5_FLINKER:-$FLINKERBASE}" -FCFLAGS="${HDF5_FCFLAGS:-$FCFLAGSBASE}" -LDFLAGS="${HDF5_LDFLAGS:-$LDFLAGSBASE}" -LIBS="${HDF5_LIBS:-$LIBSBASE}" - -# If a static library is available, the default will be to use it. If the only -# available library is shared, it will be used by default. The user can -# override either default, although choosing an unavailable library will result -# in link errors. -STATIC_AVAILABLE="yes" -if test "${STATIC_AVAILABLE}" = "yes"; then - USE_SHARED_LIB="${HDF5_USE_SHLIB:-no}" -else - USE_SHARED_LIB="${HDF5_USE_SHLIB:-yes}" -fi - -usage() { - # A wonderfully informative "usage" message. - echo "usage: $prog_name [OPTIONS] " - echo " OPTIONS:" - echo " -help This help message." - echo " -echo Show all the shell commands executed" - echo " -prefix=DIR Prefix directory to find HDF5 lib/ and include/" - echo " subdirectories [default: $prefix]" - echo " -show Show the commands without executing them" - echo " -showconfig Show the HDF5 library configuration summary" - echo " -shlib Compile with shared HDF5 libraries [default for hdf5 built" - echo " without static libraries]" - echo " -noshlib Compile with static HDF5 libraries [default for hdf5 built" - echo " with static libraries]" - echo " " - echo " - the normal compile line options for your compiler." - echo " $prog_name uses the same compiler you used to compile" - echo " HDF5. Check with your compiler's man pages for more" - echo " information on which options are needed." - echo " " - echo " You can override the compiler and linker to compile your program by" - echo " setting the following environment variables accordingly:" - echo " " - echo " HDF5_FC - use a different Fortran 90 or 95 compiler" - echo " HDF5_FLINKER - use a different linker" - echo " HDF5_USE_SHLIB=[yes|no] - use shared or static version of the HDF5 library" - echo " [default: no except when built with only" - echo " shared libraries]" - echo " " - echo " You can also add or change paths and flags to the compile line using" - echo " the following environment varibles or by assigning them to their counterparts" - echo " in the 'Things You Can Modify to Override...'" section of $prog_name - echo " " - echo " Variable Current value to be replaced" - echo " HDF5_FCFLAGS \"$CFLAGSBASE\"" - echo " HDF5_LDFLAGS \"$LDFLAGSBASE\"" - echo " HDF5_LIBS \"$LIBSBASE\"" - echo " " - echo " Note that adding library paths to HDF5_LDFLAGS where another hdf5 version" - echo " is located may link your program with that other hdf5 library version." - echo " " - exit $EXIT_FAILURE -} - -# Show the configuration summary of the library recorded in the -# libhdf5.settings file reside in the lib directory. -showconfigure() -{ - cat ${libdir}/libhdf5.settings - status=$? -} - -# Main -status=$EXIT_SUCCESS - -if test "$#" = "0"; then - # No parameters specified, issue usage statement and exit. - usage -fi - -for arg in $@ ; do - if test "x$get_output_file" = "xyes"; then - link_args="$link_args $arg" - output_file="$arg" - get_output_file="no" - continue - fi - - case "$arg" in - -c) - allargs="$allargs $arg" - compile_args="$compile_args $arg" - - if test "x$do_link" = "xyes" -a -n "$output_file"; then - compile_args="$compile_args -o $output_file" - fi - - do_link="no" - dash_c="yes" - ;; - -o) - allargs="$allargs $arg" - dash_o="yes" - - if test "x$dash_c" = "xyes"; then - compile_args="$compile_args $arg" - else - link_args="$link_args $arg" - do_link="yes" - get_output_file="yes" - fi - ;; - -E|-M|-MT) - allargs="$allargs $arg" - compile_args="$compile_args $arg" - dash_c="yes" - do_link="no" - ;; - -l*) - link_args="$link_args $arg" - allargs="$allargs $arg" - ;; - -prefix=*) - prefix="`expr "$arg" : '-prefix=\(.*\)'`" - ;; - -echo) - set -x - ;; - -show) - SHOW="echo" - ;; - -showconfig) - showconfigure - exit $status - ;; - -shlib) - USE_SHARED_LIB="yes" - ;; - -noshlib) - USE_SHARED_LIB="no" - ;; - -help) - usage - ;; - *\"*) - qarg="'"$arg"'" - allargs="$allargs $qarg" - ;; - *\'*) - qarg='\"'"$arg"'\"' - allargs="$allargs $qarg" - ;; - - *) allargs="$allargs $arg" - if [ -s "$arg" ] ; then - ext=`expr "$arg" : '.*\(\..*\)'` - if [ "$ext" = ".f" -o "$ext" = ".F" -o \ - "$ext" = ".for" -o "$ext" = ".FOR" -o \ - "$ext" = ".ftn" -o "$ext" = ".FTN" -o \ - "$ext" = ".f90" -o "$ext" = ".F90" -o \ - "$ext" = ".f95" -o "$ext" = ".F95" -o \ - "$ext" = ".f03" -o "$ext" = ".F03" -o \ - "$ext" = ".f08" -o "$ext" = ".F08" ] ; then - do_compile="yes" - compile_args="$compile_args $arg" - fname=`basename $arg $ext` - link_objs="$link_objs $fname.o" - elif [ "$ext" = ".o" ] ; then - if test "x$dash_c" = "xyes" ; then - compile_args="$compile_args $arg" - else - do_link="yes" - link_objs="$link_objs $arg" - fi - elif test "x$ext" = "x.a"; then - # This is an archive that we're linking in - libraries=" $libraries $arg " - else - compile_args="$compile_args $arg" - link_args="$link_args $arg" - fi - else - compile_args="$compile_args $arg" - link_args="$link_args $arg" - fi - ;; - esac -done - -# It's possible that there isn't a modules flag... - fmodules="" - if test -n "$F9XMODFLAG"; then - fmodules="${F9XMODFLAG}${includedir}" - fi - -if test "x$do_compile" = "xyes"; then - if test "x$dash_c" != "xyes"; then - compile_args="-c $compile_args" - fi - - - $SHOW $FC $H5BLD_FCFLAGS $FCFLAGS ${F9XSUFFIXFLAG} ${fmodules} $compile_args - status=$? - - if test "$status" != "0"; then - exit $status - fi -fi - - -if test "x$do_link" = "xyes"; then - shared_link="" -# conditionnaly link with the hl library - if test "X$HL" = "Xhl"; then - libraries=" $libraries -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 " - else - libraries=" $libraries -lhdf5_fortran -lhdf5 " - fi - link_args="$link_args -L${libdir}" - - case "$host_os" in - linux*) flag="-rpath -Wl," ;; - hpux*) flag="-Wl,+b -Wl," ;; - freebsd*|solaris*) flag="-R" ;; - rs6000*|aix*) flag="-L" ;; - sgi) flag="-rpath " ;; - *) flag="" ;; - esac - - if test -n "$flag"; then - shared_link="${flag}${libdir}" - fi - - if test "x$USE_SHARED_LIB" != "xyes"; then - # The hdf5 library "-l" flags are in here already. This is a static - # compile though, so change it to the static versions (.a) of the libraries. - new_libraries="" - for lib in $libraries; do - case "$lib" in - -lhdf5) - new_libraries="$new_libraries ${libdir}/libhdf5.a" - ;; - -lhdf5_hl) - new_libraries="$new_libraries ${libdir}/libhdf5_hl.a" - ;; - -lhdf5_fortran) - new_libraries="$new_libraries ${libdir}/libhdf5_fortran.a" - ;; - -lhdf5hl_fortran) - new_libraries="$new_libraries ${libdir}/libhdf5hl_fortran.a" - ;; - *) - new_libraries="$new_libraries $lib" - ;; - esac - done - libraries="$new_libraries" - fi - - for lib in $libraries; do - if echo $link_args | grep " $lib " > /dev/null || - echo $link_args | grep " $lib$" > /dev/null; then - : - else - link_args="$link_args $lib " - fi - done - - # The LIBS are just a bunch of -l* libraries necessary for the HDF5 - # module. It's okay if they're included twice in the compile line. - link_args="$link_args $H5BLD_LDFLAGS $H5BLD_LIBS" - - # User's FCFLAGS come after their H5BLD counterparts. User's LDFLAGS come just - # before clibpath, user's LIBS come after $link_objs and before the hdf5 - # libraries in $link_args, followed by any external library paths and libraries - # from AM_LDFLAGS, LDFLAGS, AM_LIBS or LIBS carried in from the hdf5 build. - # The order of the flags is intended to give precedence to the user's flags. - $SHOW $FLINKER $FCFLAGS $H5BLD_FCFLAGS $F9XSUFFIXFLAG $LDFLAGS $fmodules $link_objs $LIBS $link_args $shared_link - status=$? -fi - -exit $status diff --git a/build/fortran/test/.deps/t.Plo b/build/fortran/test/.deps/t.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/fortran/test/.deps/t.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/fortran/test/Makefile b/build/fortran/test/Makefile deleted file mode 100644 index b7cbb5e..0000000 --- a/build/fortran/test/Makefile +++ /dev/null @@ -1,1695 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# fortran/test/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -VPATH = ../../../fortran/test -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Some Fortran compilers can't build shared libraries, so sometimes we -# want to build a shared C library and a static Fortran library. If so, -# pass the -static flag to the library linker. -am__append_1 = -static -#am__append_2 = fortranlib_test_F03 -check_PROGRAMS = $(am__EXEEXT_2) -TESTS = $(am__EXEEXT_2) -subdir = fortran/test -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -libh5test_fortran_la_LIBADD = -am__libh5test_fortran_la_SOURCES_DIST = tf_F90.f90 tf.f90 t.c \ - tf_F03.f90 tf_F08.f90 -am_libh5test_fortran_la_OBJECTS = tf_F90.lo \ - tf.lo \ - t.lo -#am_libh5test_fortran_la_OBJECTS = tf_F03.lo \ -# tf.lo \ -# t.lo -#am_libh5test_fortran_la_OBJECTS = \ -# tf_F08.lo tf.lo t.lo -libh5test_fortran_la_OBJECTS = $(am_libh5test_fortran_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -#am__EXEEXT_1 = \ -# fortranlib_test_F03$(EXEEXT) -am__EXEEXT_2 = fortranlib_test$(EXEEXT) fflush1$(EXEEXT) \ - fflush2$(EXEEXT) fortranlib_test_1_8$(EXEEXT) $(am__EXEEXT_1) -am_fflush1_OBJECTS = fflush1.$(OBJEXT) -fflush1_OBJECTS = $(am_fflush1_OBJECTS) -fflush1_LDADD = $(LDADD) -fflush1_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) \ - $(LIBHDF5) -am_fflush2_OBJECTS = fflush2.$(OBJEXT) -fflush2_OBJECTS = $(am_fflush2_OBJECTS) -fflush2_LDADD = $(LDADD) -fflush2_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) \ - $(LIBHDF5) -am_fortranlib_test_OBJECTS = fortranlib_test-tH5F.$(OBJEXT) \ - fortranlib_test-tH5D.$(OBJEXT) fortranlib_test-tH5R.$(OBJEXT) \ - fortranlib_test-tH5S.$(OBJEXT) fortranlib_test-tH5T.$(OBJEXT) \ - fortranlib_test-tH5VL.$(OBJEXT) fortranlib_test-tH5Z.$(OBJEXT) \ - fortranlib_test-tH5Sselect.$(OBJEXT) \ - fortranlib_test-tH5P.$(OBJEXT) fortranlib_test-tH5A.$(OBJEXT) \ - fortranlib_test-tH5I.$(OBJEXT) fortranlib_test-tH5G.$(OBJEXT) \ - fortranlib_test-tH5E.$(OBJEXT) fortranlib_test-tHDF5.$(OBJEXT) \ - fortranlib_test-fortranlib_test.$(OBJEXT) -fortranlib_test_OBJECTS = $(am_fortranlib_test_OBJECTS) -fortranlib_test_LDADD = $(LDADD) -fortranlib_test_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ - $(LIBH5F) $(LIBHDF5) -fortranlib_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ - $(fortranlib_test_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -am_fortranlib_test_1_8_OBJECTS = tH5O.$(OBJEXT) tH5A_1_8.$(OBJEXT) \ - tH5G_1_8.$(OBJEXT) tH5MISC_1_8.$(OBJEXT) tHDF5_1_8.$(OBJEXT) \ - fortranlib_test_1_8.$(OBJEXT) -fortranlib_test_1_8_OBJECTS = $(am_fortranlib_test_1_8_OBJECTS) -fortranlib_test_1_8_LDADD = $(LDADD) -fortranlib_test_1_8_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ - $(LIBH5F) $(LIBHDF5) -am__fortranlib_test_F03_SOURCES_DIST = tH5E_F03.f90 tH5F_F03.f90 \ - tH5L_F03.f90 tH5O_F03.f90 tH5P_F03.f90 tH5T_F03.f90 \ - tHDF5_F03.f90 fortranlib_test_F03.f90 -#am_fortranlib_test_F03_OBJECTS = \ -# tH5E_F03.$(OBJEXT) \ -# tH5F_F03.$(OBJEXT) \ -# tH5L_F03.$(OBJEXT) \ -# tH5O_F03.$(OBJEXT) \ -# tH5P_F03.$(OBJEXT) \ -# tH5T_F03.$(OBJEXT) \ -# tHDF5_F03.$(OBJEXT) \ -# fortranlib_test_F03.$(OBJEXT) -fortranlib_test_F03_OBJECTS = $(am_fortranlib_test_F03_OBJECTS) -fortranlib_test_F03_LDADD = $(LDADD) -fortranlib_test_F03_DEPENDENCIES = libh5test_fortran.la $(LIBH5TEST) \ - $(LIBH5F) $(LIBHDF5) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) -LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) -AM_V_FC = $(am__v_FC_$(V)) -am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) -am__v_FC_0 = @echo " FC " $@; -am__v_FC_1 = -FCLD = $(FC) -FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_FCLD = $(am__v_FCLD_$(V)) -am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_FCLD_0 = @echo " FCLD " $@; -am__v_FCLD_1 = -SOURCES = $(libh5test_fortran_la_SOURCES) $(fflush1_SOURCES) \ - $(fflush2_SOURCES) $(fortranlib_test_SOURCES) \ - $(fortranlib_test_1_8_SOURCES) $(fortranlib_test_F03_SOURCES) -DIST_SOURCES = $(am__libh5test_fortran_la_SOURCES_DIST) \ - $(fflush1_SOURCES) $(fflush2_SOURCES) \ - $(fortranlib_test_SOURCES) $(fortranlib_test_1_8_SOURCES) \ - $(am__fortranlib_test_F03_SOURCES_DIST) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_builddir)/fortran/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 - -# Include files -AM_FCFLAGS = -I$(top_builddir)/fortran/src \ - $(F9XMODFLAG)$(top_builddir)/fortran/src -AM_LDFLAGS = $(am__append_1) -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/test -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/test -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../fortran/test -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. - -# Temporary files -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.raw - -# The Fortran test library -noinst_LTLIBRARIES = libh5test_fortran.la -ff_PREFIX = F90 - -# Check if the compiler supports the Fortran 2003 standard -# which should include the intrinsic module iso_c_binding -#ff_PREFIX = F03 - -# Our main targets, the tests themselves -TEST_PROG = fortranlib_test fflush1 fflush2 fortranlib_test_1_8 \ - $(am__append_2) - -# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be -# compiled first -libh5test_fortran_la_SOURCES = tf_F90.f90 \ - tf.f90 \ - t.c - -# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be -# compiled first -#libh5test_fortran_la_SOURCES = tf_F03.f90 \ -# tf.f90 \ -# t.c - -# tf.f90 depends on either tf_F08.f90 or tf_F03.f90 so they need to be -# compiled first -#libh5test_fortran_la_SOURCES = \ -# tf_F08.f90 tf.f90 t.c - -# Source files are used for both the library and fortranlib_test. -# Automake will complain about this without the following workaround. -fortranlib_test_FCFLAGS = $(AM_FCFLAGS) -fortranlib_test_CFLAGS = $(AM_CFLAGS) -fortranlib_test_SOURCES = tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90 tH5VL.f90 tH5Z.f90 \ - tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 tH5G.f90 tH5E.f90 tHDF5.f90 fortranlib_test.f90 - -fortranlib_test_1_8_SOURCES = tH5O.f90 tH5A_1_8.f90 tH5G_1_8.f90 tH5MISC_1_8.f90 tHDF5_1_8.f90\ - fortranlib_test_1_8.f90 - -#fortranlib_test_F03_SOURCES = tH5E_F03.f90 tH5F_F03.f90 tH5L_F03.f90 \ -# tH5O_F03.f90 tH5P_F03.f90 tH5T_F03.f90 tHDF5_F03.f90 fortranlib_test_F03.f90 - -fflush1_SOURCES = fflush1.f90 -fflush2_SOURCES = fflush2.f90 - -# The tests depend on both fortran libraries and both main libraries. -LDADD = libh5test_fortran.la $(LIBH5TEST) $(LIBH5F) $(LIBHDF5) -MOSTLYCLEANFILES = *.tmp - -# Mark this directory as part of the Fortran API (this affects output -# from tests in conclude.am) -FORTRAN_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign fortran/test/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libh5test_fortran.la: $(libh5test_fortran_la_OBJECTS) $(libh5test_fortran_la_DEPENDENCIES) $(EXTRA_libh5test_fortran_la_DEPENDENCIES) - $(AM_V_FCLD)$(FCLINK) $(libh5test_fortran_la_OBJECTS) $(libh5test_fortran_la_LIBADD) $(LIBS) - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -fflush1$(EXEEXT): $(fflush1_OBJECTS) $(fflush1_DEPENDENCIES) $(EXTRA_fflush1_DEPENDENCIES) - @rm -f fflush1$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(fflush1_OBJECTS) $(fflush1_LDADD) $(LIBS) - -fflush2$(EXEEXT): $(fflush2_OBJECTS) $(fflush2_DEPENDENCIES) $(EXTRA_fflush2_DEPENDENCIES) - @rm -f fflush2$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(fflush2_OBJECTS) $(fflush2_LDADD) $(LIBS) - -fortranlib_test$(EXEEXT): $(fortranlib_test_OBJECTS) $(fortranlib_test_DEPENDENCIES) $(EXTRA_fortranlib_test_DEPENDENCIES) - @rm -f fortranlib_test$(EXEEXT) - $(AM_V_FCLD)$(fortranlib_test_LINK) $(fortranlib_test_OBJECTS) $(fortranlib_test_LDADD) $(LIBS) - -fortranlib_test_1_8$(EXEEXT): $(fortranlib_test_1_8_OBJECTS) $(fortranlib_test_1_8_DEPENDENCIES) $(EXTRA_fortranlib_test_1_8_DEPENDENCIES) - @rm -f fortranlib_test_1_8$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(fortranlib_test_1_8_OBJECTS) $(fortranlib_test_1_8_LDADD) $(LIBS) - -fortranlib_test_F03$(EXEEXT): $(fortranlib_test_F03_OBJECTS) $(fortranlib_test_F03_DEPENDENCIES) $(EXTRA_fortranlib_test_F03_DEPENDENCIES) - @rm -f fortranlib_test_F03$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(fortranlib_test_F03_OBJECTS) $(fortranlib_test_F03_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/t.Plo - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -.f90.o: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -.f90.obj: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` - -.f90.lo: - $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -fortranlib_test-tH5F.o: tH5F.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5F.o $(FCFLAGS_f90) `test -f 'tH5F.f90' || echo '$(srcdir)/'`tH5F.f90 - -fortranlib_test-tH5F.obj: tH5F.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5F.obj $(FCFLAGS_f90) `if test -f 'tH5F.f90'; then $(CYGPATH_W) 'tH5F.f90'; else $(CYGPATH_W) '$(srcdir)/tH5F.f90'; fi` - -fortranlib_test-tH5D.o: tH5D.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5D.o $(FCFLAGS_f90) `test -f 'tH5D.f90' || echo '$(srcdir)/'`tH5D.f90 - -fortranlib_test-tH5D.obj: tH5D.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5D.obj $(FCFLAGS_f90) `if test -f 'tH5D.f90'; then $(CYGPATH_W) 'tH5D.f90'; else $(CYGPATH_W) '$(srcdir)/tH5D.f90'; fi` - -fortranlib_test-tH5R.o: tH5R.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5R.o $(FCFLAGS_f90) `test -f 'tH5R.f90' || echo '$(srcdir)/'`tH5R.f90 - -fortranlib_test-tH5R.obj: tH5R.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5R.obj $(FCFLAGS_f90) `if test -f 'tH5R.f90'; then $(CYGPATH_W) 'tH5R.f90'; else $(CYGPATH_W) '$(srcdir)/tH5R.f90'; fi` - -fortranlib_test-tH5S.o: tH5S.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5S.o $(FCFLAGS_f90) `test -f 'tH5S.f90' || echo '$(srcdir)/'`tH5S.f90 - -fortranlib_test-tH5S.obj: tH5S.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5S.obj $(FCFLAGS_f90) `if test -f 'tH5S.f90'; then $(CYGPATH_W) 'tH5S.f90'; else $(CYGPATH_W) '$(srcdir)/tH5S.f90'; fi` - -fortranlib_test-tH5T.o: tH5T.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5T.o $(FCFLAGS_f90) `test -f 'tH5T.f90' || echo '$(srcdir)/'`tH5T.f90 - -fortranlib_test-tH5T.obj: tH5T.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5T.obj $(FCFLAGS_f90) `if test -f 'tH5T.f90'; then $(CYGPATH_W) 'tH5T.f90'; else $(CYGPATH_W) '$(srcdir)/tH5T.f90'; fi` - -fortranlib_test-tH5VL.o: tH5VL.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5VL.o $(FCFLAGS_f90) `test -f 'tH5VL.f90' || echo '$(srcdir)/'`tH5VL.f90 - -fortranlib_test-tH5VL.obj: tH5VL.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5VL.obj $(FCFLAGS_f90) `if test -f 'tH5VL.f90'; then $(CYGPATH_W) 'tH5VL.f90'; else $(CYGPATH_W) '$(srcdir)/tH5VL.f90'; fi` - -fortranlib_test-tH5Z.o: tH5Z.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Z.o $(FCFLAGS_f90) `test -f 'tH5Z.f90' || echo '$(srcdir)/'`tH5Z.f90 - -fortranlib_test-tH5Z.obj: tH5Z.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Z.obj $(FCFLAGS_f90) `if test -f 'tH5Z.f90'; then $(CYGPATH_W) 'tH5Z.f90'; else $(CYGPATH_W) '$(srcdir)/tH5Z.f90'; fi` - -fortranlib_test-tH5Sselect.o: tH5Sselect.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Sselect.o $(FCFLAGS_f90) `test -f 'tH5Sselect.f90' || echo '$(srcdir)/'`tH5Sselect.f90 - -fortranlib_test-tH5Sselect.obj: tH5Sselect.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5Sselect.obj $(FCFLAGS_f90) `if test -f 'tH5Sselect.f90'; then $(CYGPATH_W) 'tH5Sselect.f90'; else $(CYGPATH_W) '$(srcdir)/tH5Sselect.f90'; fi` - -fortranlib_test-tH5P.o: tH5P.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5P.o $(FCFLAGS_f90) `test -f 'tH5P.f90' || echo '$(srcdir)/'`tH5P.f90 - -fortranlib_test-tH5P.obj: tH5P.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5P.obj $(FCFLAGS_f90) `if test -f 'tH5P.f90'; then $(CYGPATH_W) 'tH5P.f90'; else $(CYGPATH_W) '$(srcdir)/tH5P.f90'; fi` - -fortranlib_test-tH5A.o: tH5A.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5A.o $(FCFLAGS_f90) `test -f 'tH5A.f90' || echo '$(srcdir)/'`tH5A.f90 - -fortranlib_test-tH5A.obj: tH5A.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5A.obj $(FCFLAGS_f90) `if test -f 'tH5A.f90'; then $(CYGPATH_W) 'tH5A.f90'; else $(CYGPATH_W) '$(srcdir)/tH5A.f90'; fi` - -fortranlib_test-tH5I.o: tH5I.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5I.o $(FCFLAGS_f90) `test -f 'tH5I.f90' || echo '$(srcdir)/'`tH5I.f90 - -fortranlib_test-tH5I.obj: tH5I.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5I.obj $(FCFLAGS_f90) `if test -f 'tH5I.f90'; then $(CYGPATH_W) 'tH5I.f90'; else $(CYGPATH_W) '$(srcdir)/tH5I.f90'; fi` - -fortranlib_test-tH5G.o: tH5G.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5G.o $(FCFLAGS_f90) `test -f 'tH5G.f90' || echo '$(srcdir)/'`tH5G.f90 - -fortranlib_test-tH5G.obj: tH5G.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5G.obj $(FCFLAGS_f90) `if test -f 'tH5G.f90'; then $(CYGPATH_W) 'tH5G.f90'; else $(CYGPATH_W) '$(srcdir)/tH5G.f90'; fi` - -fortranlib_test-tH5E.o: tH5E.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5E.o $(FCFLAGS_f90) `test -f 'tH5E.f90' || echo '$(srcdir)/'`tH5E.f90 - -fortranlib_test-tH5E.obj: tH5E.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tH5E.obj $(FCFLAGS_f90) `if test -f 'tH5E.f90'; then $(CYGPATH_W) 'tH5E.f90'; else $(CYGPATH_W) '$(srcdir)/tH5E.f90'; fi` - -fortranlib_test-tHDF5.o: tHDF5.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tHDF5.o $(FCFLAGS_f90) `test -f 'tHDF5.f90' || echo '$(srcdir)/'`tHDF5.f90 - -fortranlib_test-tHDF5.obj: tHDF5.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-tHDF5.obj $(FCFLAGS_f90) `if test -f 'tHDF5.f90'; then $(CYGPATH_W) 'tHDF5.f90'; else $(CYGPATH_W) '$(srcdir)/tHDF5.f90'; fi` - -fortranlib_test-fortranlib_test.o: fortranlib_test.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-fortranlib_test.o $(FCFLAGS_f90) `test -f 'fortranlib_test.f90' || echo '$(srcdir)/'`fortranlib_test.f90 - -fortranlib_test-fortranlib_test.obj: fortranlib_test.f90 - $(AM_V_FC)$(FC) $(fortranlib_test_FCFLAGS) $(FCFLAGS) -c -o fortranlib_test-fortranlib_test.obj $(FCFLAGS_f90) `if test -f 'fortranlib_test.f90'; then $(CYGPATH_W) 'fortranlib_test.f90'; else $(CYGPATH_W) '$(srcdir)/fortranlib_test.f90'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -fortranlib_test.log: fortranlib_test$(EXEEXT) - @p='fortranlib_test$(EXEEXT)'; \ - b='fortranlib_test'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -fflush1.log: fflush1$(EXEEXT) - @p='fflush1$(EXEEXT)'; \ - b='fflush1'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -fflush2.log: fflush2$(EXEEXT) - @p='fflush2$(EXEEXT)'; \ - b='fflush2'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -fortranlib_test_1_8.log: fortranlib_test_1_8$(EXEEXT) - @p='fortranlib_test_1_8$(EXEEXT)'; \ - b='fortranlib_test_1_8'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -fortranlib_test_F03.log: fortranlib_test_F03$(EXEEXT) - @p='fortranlib_test_F03$(EXEEXT)'; \ - b='fortranlib_test_F03'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \ - clean-noinstLTLIBRARIES mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-local distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic \ - maintainer-clean-local - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - clean-local clean-noinstLTLIBRARIES cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-local distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ - uninstall uninstall-am - -.PRECIOUS: Makefile - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-Fortran test/Makefile(.in) -# -# Autoconf cannot figure out dependencies between modules; disable parallel make -.NOTPARALLEL: - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Fortran module files can have different extensions and different names -# (e.g., different capitalizations) on different platforms. Write rules -# for them explicitly rather than trying to teach automake about them. -# They should be installed as headers and removed during clean. -maintainer-clean-local: clean-local -distclean-local: clean-local -clean-local: - @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ - $(RM) *.$(F9XMODEXT); \ - fi - -# fflush2 depends on files created by fflush1 -fflush2.chkexe_: fflush1.chkexe_ -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/fortran/testpar/Makefile b/build/fortran/testpar/Makefile deleted file mode 100644 index d6fb6d9..0000000 --- a/build/fortran/testpar/Makefile +++ /dev/null @@ -1,1367 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# fortran/testpar/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Fortran Parallel Library Test Makefile(.in) -# -VPATH = ../../../fortran/testpar -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Some Fortran compilers can't build shared libraries, so sometimes we -# want to build a shared C library and a static Fortran library. If so, -# pass the -static flag to the library linker. -# (Actually, we historically have bad luck combining shared libraries with -# parallel code. But you're welcome to try...) -am__append_1 = -static -check_PROGRAMS = $(am__EXEEXT_1) -TESTS = -subdir = fortran/testpar -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__EXEEXT_1 = parallel_test$(EXEEXT) -am_parallel_test_OBJECTS = ptest.$(OBJEXT) hyper.$(OBJEXT) \ - mdset.$(OBJEXT) -parallel_test_OBJECTS = $(am_parallel_test_OBJECTS) -parallel_test_LDADD = $(LDADD) -parallel_test_DEPENDENCIES = $(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) \ - $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) -LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) -AM_V_FC = $(am__v_FC_$(V)) -am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) -am__v_FC_0 = @echo " FC " $@; -am__v_FC_1 = -FCLD = $(FC) -FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_FCLD = $(am__v_FCLD_$(V)) -am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_FCLD_0 = @echo " FCLD " $@; -am__v_FCLD_1 = -SOURCES = $(parallel_test_SOURCES) -DIST_SOURCES = $(parallel_test_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 - -# Include files -AM_FCFLAGS = -I$(top_srcdir)/fortran/src \ - -I$(top_srcdir)/fortran/test \ - $(F9XMODFLAG)$(top_builddir)/fortran/src \ - $(F9XMODFLAG)$(top_builddir)/fortran/test -AM_LDFLAGS = $(am__append_1) -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/fortran/testpar -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../fortran/testpar -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../fortran/testpar -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. - -# Temporary files -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 parf[12].h5 - -# These are our main targets -TEST_PROG_PARA = parallel_test - -# Test source files -parallel_test_SOURCES = ptest.f90 hyper.f90 mdset.f90 - -# The tests depend on several libraries. -LDADD = $(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) $(LIBHDF5) - -# Mark this directory as part of the Fortran API -FORTRAN_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fortran/testpar/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign fortran/testpar/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -parallel_test$(EXEEXT): $(parallel_test_OBJECTS) $(parallel_test_DEPENDENCIES) $(EXTRA_parallel_test_DEPENDENCIES) - @rm -f parallel_test$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(parallel_test_OBJECTS) $(parallel_test_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -.f90.o: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -.f90.obj: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` - -.f90.lo: - $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/Makefile b/build/hl/Makefile deleted file mode 100644 index 12779a4..0000000 --- a/build/hl/Makefile +++ /dev/null @@ -1,1423 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# This makefile mostly just reinvokes make in the various subdirectories -# but does so in the correct order. You can alternatively invoke make from -# each subdirectory manually. -# -# HDF5 High-Level Makefile(.in) -VPATH = ../../hl -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../hl -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = ../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 -#FORTRAN_DIR = fortran -#CXX_DIR = c++ -SUBDIRS = src test tools $(CXX_DIR) $(FORTRAN_DIR) -DIST_SUBDIRS = src test tools c++ fortran examples - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Install examples -install-examples uninstall-examples: - for d in examples $(HDF5_INTERFACES); do \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - done - -installcheck-local: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Clean examples when check-clean is invoked -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS) examples; do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -build-check-clean: -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/c++/Makefile b/build/hl/c++/Makefile deleted file mode 100644 index ceb18b0..0000000 --- a/build/hl/c++/Makefile +++ /dev/null @@ -1,1413 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/c++/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# High-Level API C++ Makefile(.in) -# -VPATH = ../../../hl/c++ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/c++ -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++ -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++ -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/c++ -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 -SUBDIRS = src test -DIST_SUBDIRS = src test examples - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/c++/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Install examples -install-examples uninstall-examples: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -installcheck-local: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Clean examples when check-clean is invoked -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS) examples; do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/c++/examples/Makefile b/build/hl/c++/examples/Makefile deleted file mode 100644 index fbd238a..0000000 --- a/build/hl/c++/examples/Makefile +++ /dev/null @@ -1,1331 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/c++/examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Library Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../../../hl/c++/examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/c++/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-hlc++-ex.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-hlc++-ex.sh.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/c++/examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 - -# These are the programs that 'make all' or 'make prog' will build and -# which 'make check' will run. List them in the order they should be run. -EXAMPLE_PROG = ptExampleFL -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# These are the example files to be installed -INSTALL_FILES = ptExampleFL.cpp -INSTALL_SCRIPT_FILES = run-hlc++-ex.sh - -# Tell conclude.am that these are C++ tests. -CXX_API = yes - -# Where to install examples -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/c++ -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/c++/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-hlc++-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlc++-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# How to build programs using h5c++ -$(EXTRA_PROG): $(H5CPP) - $(H5CPP) $(H5CCFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp - -# List dependencies for each program. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C++ compiler, not h5c++. This is -# an inelegant way of solving the problem, unfortunately. -ptExampleFL: ptExampleFL.cpp - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/c++/examples/run-hlc++-ex.sh b/build/hl/c++/examples/run-hlc++-ex.sh deleted file mode 100644 index 75bdd2e..0000000 --- a/build/hl/c++/examples/run-hlc++-ex.sh +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-hlc++-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the c++ examples from source files # -# installed in .../share/hdf5_examples/hl/c++ using h5c++. The # -# order for running programs with RunTest in the MAIN section below is taken # -# from the Makefile. The order is important since some of the test programs # -# use data files created by earlier test programs. Any future additions should # -# be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../../}" -AR="ar" -RANLIB="ranlib" -H5TOOL="h5c++" # The tool name -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".cpp" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - - - -################## MAIN ################## - -# Run tests -if [ $? -eq 0 ] -then - if (RunTest ptExampleFL &&\ - rm ptExampleFL); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -# Cleanup -rm *.o -rm *.h5 -echo - -exit $EXIT_VALUE - diff --git a/build/hl/c++/src/.deps/H5PacketTable.Plo b/build/hl/c++/src/.deps/H5PacketTable.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/c++/src/.deps/H5PacketTable.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/c++/src/Makefile b/build/hl/c++/src/Makefile deleted file mode 100644 index aa7298f..0000000 --- a/build/hl/c++/src/Makefile +++ /dev/null @@ -1,1464 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/c++/src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-C++ Makefile(.in) -# - - -VPATH = ../../../../hl/c++/src -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/c++/src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ - $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libhdf5_hl_cpp_la_DEPENDENCIES = $(LIBH5_HL) $(LIBH5CPP) -am_libhdf5_hl_cpp_la_OBJECTS = H5PacketTable.lo -libhdf5_hl_cpp_la_OBJECTS = $(am_libhdf5_hl_cpp_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libhdf5_hl_cpp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(AM_CXXFLAGS) $(CXXFLAGS) $(libhdf5_hl_cpp_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_$(V)) -am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_$(V)) -am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -SOURCES = $(libhdf5_hl_cpp_la_SOURCES) -DIST_SOURCES = $(libhdf5_hl_cpp_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -HEADERS = $(include_HEADERS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/lt_vers.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include src directory -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_srcdir)/hl/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/src -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/src -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/c++/src -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# Add libtool shared library version numbers to the HDF5 library -# See libtool versioning documentation online. -# After making changes, run bin/reconfigure to update other configure related -# files like Makefile.in. -LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 2 -LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 16 -LT_CXX_VERS_REVISION = 0 -LT_CXX_VERS_AGE = 0 -LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 6 -LT_F_VERS_AGE = 0 -LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 2 -LT_HL_VERS_AGE = 2 -LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 2 -LT_HL_CXX_VERS_AGE = 1 -LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 5 -LT_HL_F_VERS_AGE = 0 -LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 7 -LT_TOOLS_VERS_AGE = 0 - -# This is our main target -lib_LTLIBRARIES = libhdf5_hl_cpp.la - -# Add libtool numbers to the HDF5 HL C++ library (from config/lt_vers.am) -libhdf5_hl_cpp_la_LDFLAGS = -version-info $(LT_HL_CXX_VERS_INTERFACE):$(LT_HL_CXX_VERS_REVISION):$(LT_HL_CXX_VERS_AGE) $(AM_LDFLAGS) - -# Source files for the library -# At the moment, only the H5PT Packet Table has a C++ API. -libhdf5_hl_cpp_la_SOURCES = H5PacketTable.cpp - -# HDF5 HL C++ library depends on HDF5 Library. -libhdf5_hl_cpp_la_LIBADD = $(LIBH5_HL) $(LIBH5CPP) - -# Public headers -include_HEADERS = H5PacketTable.h - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/c++/src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libhdf5_hl_cpp.la: $(libhdf5_hl_cpp_la_OBJECTS) $(libhdf5_hl_cpp_la_DEPENDENCIES) $(EXTRA_libhdf5_hl_cpp_la_DEPENDENCIES) - $(AM_V_CXXLD)$(libhdf5_hl_cpp_la_LINK) -rpath $(libdir) $(libhdf5_hl_cpp_la_OBJECTS) $(libhdf5_hl_cpp_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/H5PacketTable.Plo - -.cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-includeHEADERS: $(include_HEADERS) - @$(NORMAL_INSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ - fi; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ - done - -uninstall-includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-includeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-includeHEADERS install-info \ - install-info-am install-libLTLIBRARIES install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ - uninstall-includeHEADERS uninstall-libLTLIBRARIES - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/c++/test/.deps/ptableTest.Po b/build/hl/c++/test/.deps/ptableTest.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/c++/test/.deps/ptableTest.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/c++/test/Makefile b/build/hl/c++/test/Makefile deleted file mode 100644 index 3b0d824..0000000 --- a/build/hl/c++/test/Makefile +++ /dev/null @@ -1,1387 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/c++/test/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-C++ Makefile(.in) -# -VPATH = ../../../../hl/c++/test -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -check_PROGRAMS = $(am__EXEEXT_1) -TESTS = $(am__EXEEXT_1) -subdir = hl/c++/test -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__EXEEXT_1 = ptableTest$(EXEEXT) -am_ptableTest_OBJECTS = ptableTest.$(OBJEXT) -ptableTest_OBJECTS = $(am_ptableTest_OBJECTS) -ptableTest_LDADD = $(LDADD) -ptableTest_DEPENDENCIES = $(LIBH5CPP_HL) $(LIBH5_HL) $(LIBH5CPP) \ - $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_$(V)) -am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_$(V)) -am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -SOURCES = $(ptableTest_SOURCES) -DIST_SOURCES = $(ptableTest_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include directories -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_srcdir)/c++/src -I$(top_srcdir)/hl/src \ - -I$(top_srcdir)/hl/c++/src -I$(top_srcdir)/test \ - -I$(top_builddir)/hl/test -I$(top_srcdir)/hl/test -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/c++/test -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/c++/test -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/c++/test -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# These are our main targets. They should be listed in the order to be -# executed, generally most specific tests to least specific tests. -TEST_PROG = ptableTest - -# The tests depend on the hdf5, hdf5 C++, and hdf5_hl libraries -LDADD = $(LIBH5CPP_HL) $(LIBH5_HL) $(LIBH5CPP) $(LIBHDF5) -ptableTest_SOURCES = ptableTest.cpp - -# Tell conclude.am that these are C++ tests. -CXX_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/c++/test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/c++/test/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -ptableTest$(EXEEXT): $(ptableTest_OBJECTS) $(ptableTest_DEPENDENCIES) $(EXTRA_ptableTest_DEPENDENCIES) - @rm -f ptableTest$(EXEEXT) - $(AM_V_CXXLD)$(CXXLINK) $(ptableTest_OBJECTS) $(ptableTest_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/ptableTest.Po - -.cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -ptableTest.log: ptableTest$(EXEEXT) - @p='ptableTest$(EXEEXT)'; \ - b='ptableTest'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/examples/Makefile b/build/hl/examples/Makefile deleted file mode 100644 index eb96f71..0000000 --- a/build/hl/examples/Makefile +++ /dev/null @@ -1,1370 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Library Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../../hl/examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-hlc-ex.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/run-hlc-ex.sh.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 -#EXAMPLE_PROG_PARA = - -# Example directory -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/c -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl -INSTALL_SCRIPT_FILES = run-hlc-ex.sh -INSTALL_TOP_SCRIPT_FILES = run-hl-ex.sh - -# Example programs. -# Don't tell automake about them, because if it knew they were programs, -# it would try to compile them instead of using the h5cc script. -# Use the boilerplate in config/examples.am instead. -EXAMPLE_PROG = ex_lite1 ex_lite2 ex_lite3 ptExampleFL \ - ex_image1 ex_image2 \ - ex_table_01 ex_table_02 ex_table_03 ex_table_04 \ - ex_table_05 ex_table_06 ex_table_07 ex_table_08 \ - ex_table_09 ex_table_10 ex_table_11 ex_table_12 \ - ex_ds1 - -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# Install files -# List all file that should be installed in examples directory -INSTALL_FILES = ex_lite1.c ex_lite2.c ex_lite3.c ptExampleFL.c \ - ex_image1.c ex_image2.c \ - ex_table_01.c ex_table_02.c ex_table_03.c ex_table_04.c \ - ex_table_05.c ex_table_06.c ex_table_07.c ex_table_08.c \ - ex_table_09.c ex_table_10.c ex_table_11.c ex_table_12.c \ - ex_ds1.c image24pixel.txt image8.txt pal_rgb.h - -#LD_LIBRARY_PATH = $(LL_PATH) - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-hlc-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlc-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Additional dependencies for each program are listed below. -#$(EXTRA_PROG): $(H5CC_PP) -# $(H5CC_PP) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; -$(EXTRA_PROG): $(H5CC) - $(H5CC) $(H5CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c; - -# ex_lite2 uses a file created by ex_lite1 -ex_lite2.chkexe_: ex_lite1.chkexe_ - -# List dependencies for each program. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C compiler, not h5cc. This is -# an inelegant way of solving the problem. -# All programs share the same build rule and a dependency on the main hdf5 -# library above. -ex_lite1: $(srcdir)/ex_lite1.c -ex_lite2: $(srcdir)/ex_lite2.c -ex_lite3: $(srcdir)/ex_lite3.c -ptExampleFL: $(srcdir)/ptExampleFL.c -ex_image1: $(srcdir)/ex_image1.c -ex_image2: $(srcdir)/ex_image2.c -ex_table01: $(srcdir)/ex_table01.c -ex_table02: $(srcdir)/ex_table02.c -ex_table03: $(srcdir)/ex_table03.c -ex_table04: $(srcdir)/ex_table04.c -ex_table05: $(srcdir)/ex_table05.c -ex_table06: $(srcdir)/ex_table06.c -ex_table07: $(srcdir)/ex_table07.c -ex_table08: $(srcdir)/ex_table08.c -ex_table09: $(srcdir)/ex_table09.c -ex_table10: $(srcdir)/ex_table10.c -ex_table11: $(srcdir)/ex_table11.c -ex_table12: $(srcdir)/ex_table12.c - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/examples/run-hlc-ex.sh b/build/hl/examples/run-hlc-ex.sh deleted file mode 100644 index 7690a7d..0000000 --- a/build/hl/examples/run-hlc-ex.sh +++ /dev/null @@ -1,119 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-hlc-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the c examples from source files installed # -# in .../share/hdf5_examples/hl/c using h5cc or h5pc. The order for running # -# programs with RunTest in the MAIN section below is taken from the Makefile. # -# The order is important since some of the test programs use data files created # -# by earlier test programs. Any future additions should be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../../}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5cc" # The tool name -else - H5TOOL="h5pcc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".c" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - - - -################## MAIN ################## - -# Run tests -if [ $? -eq 0 ] -then - if (RunTest ex_lite1 &&\ - rm ex_lite1 &&\ - RunTest ex_lite2 &&\ - rm ex_lite2 &&\ - RunTest ex_lite3 &&\ - rm ex_lite3 &&\ - RunTest ptExampleFL &&\ - rm ptExampleFL &&\ - RunTest ex_image1 &&\ - rm ex_image1 &&\ - RunTest ex_image2 &&\ - rm ex_image2 &&\ - RunTest ex_table_01 &&\ - rm ex_table_01 &&\ - RunTest ex_table_02 &&\ - rm ex_table_02 &&\ - RunTest ex_table_03 &&\ - rm ex_table_03 &&\ - RunTest ex_table_04 &&\ - rm ex_table_04 &&\ - RunTest ex_table_05 && - rm ex_table_05 && - RunTest ex_table_06 &&\ - rm ex_table_06 &&\ - RunTest ex_table_07 &&\ - rm ex_table_07 &&\ - RunTest ex_table_08 &&\ - rm ex_table_08 &&\ - RunTest ex_table_09 &&\ - rm ex_table_09 &&\ - RunTest ex_table_10 &&\ - rm ex_table_10 &&\ - RunTest ex_table_11 &&\ - rm ex_table_11 &&\ - RunTest ex_table_12 &&\ - rm ex_table_12 &&\ - RunTest ex_ds1 &&\ - rm ex_ds1); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -# Cleanup -rm *.o -rm *.h5 -echo - -exit $EXIT_VALUE - diff --git a/build/hl/fortran/Makefile b/build/hl/fortran/Makefile deleted file mode 100644 index 702090e..0000000 --- a/build/hl/fortran/Makefile +++ /dev/null @@ -1,1417 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/fortran/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# This makefile mostly just reinvokes make in the various subdirectories -# but does so in the correct order. You can alternatively invoke make from -# each subdirectory manually. -# -# HDF5 High-Level Makefile(.in) -VPATH = ../../../hl/fortran -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/fortran -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/fortran -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 -SUBDIRS = src test -DIST_SUBDIRS = src test examples - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/fortran/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Install examples -install-examples uninstall-examples: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -installcheck-local: - @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Clean examples when check-clean is invoked -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS) examples; do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/fortran/examples/Makefile b/build/hl/fortran/examples/Makefile deleted file mode 100644 index 4251191..0000000 --- a/build/hl/fortran/examples/Makefile +++ /dev/null @@ -1,1342 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/fortran/examples/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5-Fortran Examples Makefile(.in) -# - -# We can't tell automake about example programs, because they need to be -# built using h5cc (or h5fc, etc.) instead of the standard compilers. -# This creates some extra work for us. -VPATH = ../../../../hl/fortran/examples -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/fortran/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = run-hlfortran-ex.sh -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/run-hlfortran-ex.sh.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/examples.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/examples -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/examples -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/fortran/examples -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 - -# Compile parallel fortran examples only if parallel is enabled -#EXAMPLE_PROG_PARA = - -# These are the programs that 'make all' or 'make tests' will build and -# that 'make check' will run. List them in the order in which they should -# be run. -# We don't tell automake about these programs so that it doesn't try to -# compile them with the regular fortran compiler. -EXAMPLE_PROG = exlite ex_ds1 -TEST_EXAMPLES_SCRIPT = $(INSTALL_SCRIPT_FILES) - -# List files to be installed here -INSTALL_FILES = exlite.f90 ex_ds1.f90 -INSTALL_SCRIPT_FILES = run-hlfortran-ex.sh - -# Mark this directory as part of the Fortran API (this affects output -# from tests in conclude.am) -FORTRAN_API = yes - -# Tell automake how to install examples -# Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/fortran -EXAMPLETOPDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl - -# Assume that all tests in this directory are examples, and tell -# conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# We need to tell automake what to clean -MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/examples/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/fortran/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -run-hlfortran-ex.sh: $(top_builddir)/config.status $(srcdir)/run-hlfortran-ex.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: installcheck-local - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: all all-am all-local check check-TESTS check-am clean \ - clean-generic clean-libtool cscopelist-am ctags-am distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installcheck-local installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags-am uninstall uninstall-am \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Tell automake how to build examples using h5fc -#$(EXTRA_PROG): $(H5FC_PP) -# $(H5FC_PP) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; -$(EXTRA_PROG): $(H5FC) - $(H5FC) $(H5CCFLAGS) -o $@ $(srcdir)/$@.f90; - -# How to create EXAMPLEDIR if it doesn't already exist -$(EXAMPLEDIR): - -$(top_srcdir)/bin/mkdirs $@ -$(EXAMPLETOPDIR): - -$(top_srcdir)/bin/mkdirs $@ - -# Install and uninstall rules. We install the source files, not the -# example programs themselves. -install-data-local: - @$(MAKE) $(AM_MAKEFLAGS) install-examples -uninstall-local: - @$(MAKE) $(AM_MAKEFLAGS) uninstall-examples - -install-examples: $(EXAMPLEDIR) $(INSTALL_FILES) - @for f in X $(INSTALL_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLEDIR)/. || exit 1); \ - chmod a-x $(EXAMPLEDIR)/$$f; \ - fi; \ - done - @for f in X $(INSTALL_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $$f $(EXAMPLEDIR)/. || exit 1);\ - fi; \ - done - @for f in X $(INSTALL_TOP_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - chmod a-x $(EXAMPLETOPDIR)/$$f;\ - fi; \ - done - @for f in X $(INSTALL_TOP_SCRIPT_FILES); do \ - if test $$f != X; then \ - (set -x; $(INSTALL) $(srcdir)/$$f $(EXAMPLETOPDIR)/. || exit 1); \ - fi; \ - done - -uninstall-examples: - @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES); \ - fi - @if test -n "$(INSTALL_SCRIPT_FILES)" -a -d $(EXAMPLEDIR); then \ - set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_SCRIPT_FILES); \ - fi - @if test -n "$(INSTALL_TOP_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_FILES); \ - fi - @if test -n "$(INSTALL_TOP_SCRIPT_FILES)" -a -d $(EXAMPLETOPDIR); then \ - set -x; cd $(EXAMPLETOPDIR) && $(RM) $(INSTALL_TOP_SCRIPT_FILES); \ - fi - -installcheck-local: - @if test "$(STATIC_SHARED)" = "static, shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - $(MAKE) $(AM_MAKEFLAGS) clean; \ - H5CCFLAGS="" $(MAKE) $(AM_MAKEFLAGS) check; \ - elif test "$(STATIC_SHARED)" = "shared"; then \ - H5CCFLAGS="-shlib" $(MAKE) $(AM_MAKEFLAGS) check; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) check; \ - fi - @if test "$(INSTALL_FILES)" -a $(TEST_EXAMPLES_SCRIPT) -a -d $(EXAMPLEDIR); then \ - echo "============================"; \ - echo "Testing $(TEST_EXAMPLES_SCRIPT)"; \ - echo "============================"; \ - (cd $(EXAMPLEDIR); \ - /bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \ - fi -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# List dependencies for each example. Normally, automake would take -# care of this for us, but if we tell automake about the programs it -# will try to build them with the normal C compiler, not h5cc. This is -# an inelegant way of solving the problem. -# All programs share the same build rule and a dependency on the main hdf5 -# and fortran libraries above. - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/fortran/examples/run-hlfortran-ex.sh b/build/hl/fortran/examples/run-hlfortran-ex.sh deleted file mode 100644 index 16ba469..0000000 --- a/build/hl/fortran/examples/run-hlfortran-ex.sh +++ /dev/null @@ -1,84 +0,0 @@ -#! /bin/sh -# -# Copyright by The HDF Group. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. - -# -# This file: run-hlfortran-ex.sh -# Written by: Larry Knox -# Date: May 11, 2010 -# -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# # -# This script will compile and run the fortran examples from source files # -# installed in .../share/hdf5_examples/hl/fortran using h5fc or h5pfc. The # -# order for running programs with RunTest in the MAIN section below is taken # -# from the Makefile. The order is important since some of the test programs # -# use data files created by earlier test programs. Any future additions should # -# be placed accordingly. # -# # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -# Initializations -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -# Where the tool is installed. -# default is relative path to installed location of the tools -prefix="${prefix:-../../../../}" -PARALLEL=no # Am I in parallel mode? -AR="ar" -RANLIB="ranlib" -if [ "$PARALLEL" = no ]; then - H5TOOL="h5fc" # The tool name -else - H5TOOL="h5pfc" # The tool name -fi -H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary - -#### Run test #### -RunTest() -{ - TEST_EXEC=$1 - Test=$1".f90" - - echo - echo "################# $1 #################" - ${H5TOOL_BIN} -o $TEST_EXEC $Test - if [ $? -ne 0 ] - then - echo "messed up compiling $Test" - exit 1 - fi - ./$TEST_EXEC -} - - - -################## MAIN ################## - -# Run tests -if [ $? -eq 0 ] -then - if (RunTest exlite &&\ - rm exlite); then - EXIT_VALUE=${EXIT_SUCCESS} - else - EXIT_VALUE=${EXIT_FAILURE} - fi -fi - -# Cleanup -rm *.o -rm *.h5 -echo - -exit $EXIT_VALUE - diff --git a/build/hl/fortran/src/.deps/H5DSfc.Plo b/build/hl/fortran/src/.deps/H5DSfc.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/fortran/src/.deps/H5DSfc.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/fortran/src/.deps/H5IMcc.Plo b/build/hl/fortran/src/.deps/H5IMcc.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/fortran/src/.deps/H5IMcc.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/fortran/src/.deps/H5IMfc.Plo b/build/hl/fortran/src/.deps/H5IMfc.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/fortran/src/.deps/H5IMfc.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/fortran/src/.deps/H5LTfc.Plo b/build/hl/fortran/src/.deps/H5LTfc.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/fortran/src/.deps/H5LTfc.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/fortran/src/.deps/H5TBfc.Plo b/build/hl/fortran/src/.deps/H5TBfc.Plo deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/fortran/src/.deps/H5TBfc.Plo +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/fortran/src/Makefile b/build/hl/fortran/src/Makefile deleted file mode 100644 index bf476e7..0000000 --- a/build/hl/fortran/src/Makefile +++ /dev/null @@ -1,1512 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/fortran/src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# HDF5 High-Level Fortran Makefile(.in) - -VPATH = ../../../../hl/fortran/src -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Some Fortran compilers can't build shared libraries, so sometimes we -# want to build a shared C library and a static Fortran library. If so, -# pass the -static flag to the library linker. -am__append_1 = -static -TESTS = -subdir = hl/fortran/src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libhdf5hl_fortran_la_DEPENDENCIES = $(LIBH5_HL) $(LIBH5F) -am_libhdf5hl_fortran_la_OBJECTS = H5DSfc.lo H5LTfc.lo H5IMfc.lo \ - H5IMcc.lo H5TBfc.lo H5DSff.lo H5LTff.lo H5IMff.lo H5TBff.lo -libhdf5hl_fortran_la_OBJECTS = $(am_libhdf5hl_fortran_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libhdf5hl_fortran_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=FC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(FCLD) \ - $(AM_FCFLAGS) $(FCFLAGS) $(libhdf5hl_fortran_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) -LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) -AM_V_FC = $(am__v_FC_$(V)) -am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) -am__v_FC_0 = @echo " FC " $@; -am__v_FC_1 = -FCLD = $(FC) -FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_FCLD = $(am__v_FCLD_$(V)) -am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_FCLD_0 = @echo " FCLD " $@; -am__v_FCLD_1 = -SOURCES = $(libhdf5hl_fortran_la_SOURCES) -DIST_SOURCES = $(libhdf5hl_fortran_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/lt_vers.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_srcdir)/hl/src -I$(top_builddir)/hl/src \ - -I$(top_srcdir)/fortran/src -I$(top_builddir)/fortran/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -I$(top_builddir)/fortran/src \ - $(F9XMODFLAG)$(top_builddir)/fortran/src -AM_LDFLAGS = $(am__append_1) -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/src -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/src -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/fortran/src -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# Add libtool shared library version numbers to the HDF5 library -# See libtool versioning documentation online. -# After making changes, run bin/reconfigure to update other configure related -# files like Makefile.in. -LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 2 -LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 16 -LT_CXX_VERS_REVISION = 0 -LT_CXX_VERS_AGE = 0 -LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 6 -LT_F_VERS_AGE = 0 -LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 2 -LT_HL_VERS_AGE = 2 -LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 2 -LT_HL_CXX_VERS_AGE = 1 -LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 5 -LT_HL_F_VERS_AGE = 0 -LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 7 -LT_TOOLS_VERS_AGE = 0 - -# Our main target, the high-level fortran library -lib_LTLIBRARIES = libhdf5hl_fortran.la - -# Add libtool numbers to the HDF5 HL Fortran library (from config/lt_vers.am) -libhdf5hl_fortran_la_LDFLAGS = -version-info $(LT_HL_F_VERS_INTERFACE):$(LT_HL_F_VERS_REVISION):$(LT_HL_F_VERS_AGE) $(AM_LDFLAGS) - -# Source files for the library -#if BUILD_PARALLEL_CONDITIONAL -# PARALLEL_COND_SRC=HDFDmpiof.c HDF5mpio.f90 -#endif - -# List sources to include in the HDF5 HL Fortran library. -libhdf5hl_fortran_la_SOURCES = H5DSfc.c H5LTfc.c H5IMfc.c H5IMcc.c H5TBfc.c \ - H5DSff.f90 H5LTff.f90 H5IMff.f90 H5TBff.f90 - - -# HDF5 HL Fortran library depends on HDF5 Library. -libhdf5hl_fortran_la_LIBADD = $(LIBH5_HL) $(LIBH5F) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/fortran/src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libhdf5hl_fortran.la: $(libhdf5hl_fortran_la_OBJECTS) $(libhdf5hl_fortran_la_DEPENDENCIES) $(EXTRA_libhdf5hl_fortran_la_DEPENDENCIES) - $(AM_V_FCLD)$(libhdf5hl_fortran_la_LINK) -rpath $(libdir) $(libhdf5hl_fortran_la_OBJECTS) $(libhdf5hl_fortran_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/H5DSfc.Plo -include ./$(DEPDIR)/H5IMcc.Plo -include ./$(DEPDIR)/H5IMfc.Plo -include ./$(DEPDIR)/H5LTfc.Plo -include ./$(DEPDIR)/H5TBfc.Plo - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -.f90.o: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -.f90.obj: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` - -.f90.lo: - $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) all-local -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-local distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic \ - maintainer-clean-local - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES uninstall-local - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool clean-local cscopelist-am ctags ctags-am \ - distclean distclean-compile distclean-generic \ - distclean-libtool distclean-local distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-data-local install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ - uninstall uninstall-am uninstall-libLTLIBRARIES \ - uninstall-local - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp - -# Fortran module files can have different extensions and different names -# (e.g., different capitalizations) on different platforms. Write rules -# for them explicitly rather than trying to teach automake about them. -# They should be installed as headers and removed during clean. -maintainer-clean-local: clean-local -distclean-local: clean-local -clean-local: - @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ - $(RM) *.$(F9XMODEXT); \ - fi - -install-data-local: - @if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \ - $(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \ - fi - -uninstall-local: - @if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \ - if test -f "$(includedir)/hdf5.$(F9XMODEXT)" -o -f "$(DESTDIR)$(includedir)/HDF5.$(F9XMODEXT)"; then \ - set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ - fi; \ - fi - -# Hardcode the dependencies of these files. There isn't a known way of -# determining this automagically (like we do with the C files). So, when -# doing a parallel make, some modules could be made way before the -# modules they depend upon are actually made. *sigh* -H5DSff.lo: $(srcdir)/H5DSff.f90 -H5LTff.lo: $(srcdir)/H5LTff.f90 -H5IMff.lo: $(srcdir)/H5IMff.f90 -H5TBff.lo: $(srcdir)/H5TBff.f90 -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/fortran/test/Makefile b/build/hl/fortran/test/Makefile deleted file mode 100644 index 58307df..0000000 --- a/build/hl/fortran/test/Makefile +++ /dev/null @@ -1,1422 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/fortran/test/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# HDF5 High-Level Fortran Makefile(.in) -VPATH = ../../../../hl/fortran/test -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu - -# Some Fortran compilers can't build shared libraries, so sometimes we -# need to make sure the Fortran programs link against the static version -# of the HDF5 library. We do this by passing the -static flag to the linker. -am__append_1 = -static -check_PROGRAMS = $(am__EXEEXT_1) -TESTS = $(am__EXEEXT_1) -subdir = hl/fortran/test -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__EXEEXT_1 = tstds$(EXEEXT) tstlite$(EXEEXT) tstimage$(EXEEXT) \ - tsttable$(EXEEXT) -am_tstds_OBJECTS = tstds.$(OBJEXT) -tstds_OBJECTS = $(am_tstds_OBJECTS) -tstds_LDADD = $(LDADD) -tstds_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -am_tstimage_OBJECTS = tstimage.$(OBJEXT) -tstimage_OBJECTS = $(am_tstimage_OBJECTS) -tstimage_LDADD = $(LDADD) -tstimage_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) -am_tstlite_OBJECTS = tstlite.$(OBJEXT) -tstlite_OBJECTS = $(am_tstlite_OBJECTS) -tstlite_LDADD = $(LDADD) -tstlite_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) -am_tsttable_OBJECTS = tsttable.$(OBJEXT) -tsttable_OBJECTS = $(am_tsttable_OBJECTS) -tsttable_LDADD = $(LDADD) -tsttable_DEPENDENCIES = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -FCCOMPILE = $(FC) $(AM_FCFLAGS) $(FCFLAGS) -LTFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) $(AM_FCFLAGS) $(FCFLAGS) -AM_V_FC = $(am__v_FC_$(V)) -am__v_FC_ = $(am__v_FC_$(AM_DEFAULT_VERBOSITY)) -am__v_FC_0 = @echo " FC " $@; -am__v_FC_1 = -FCLD = $(FC) -FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_FCLD = $(am__v_FCLD_$(V)) -am__v_FCLD_ = $(am__v_FCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_FCLD_0 = @echo " FCLD " $@; -am__v_FCLD_1 = -SOURCES = $(tstds_SOURCES) $(tstimage_SOURCES) $(tstlite_SOURCES) \ - $(tsttable_SOURCES) -DIST_SOURCES = $(tstds_SOURCES) $(tstimage_SOURCES) $(tstlite_SOURCES) \ - $(tsttable_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_builddir)/src -I$(top_srcdir)/hl/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -I$(top_builddir)/fortran/src \ - -I$(top_builddir)/hl/fortran/src \ - $(F9XMODFLAG)$(top_builddir)/fortran/src \ - $(F9XMODFLAG)$(top_builddir)/hl/fortran/src -AM_LDFLAGS = $(am__append_1) -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/fortran/test -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/fortran/test -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/fortran/test -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. - -# Temporary files. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 dsetf[1-5].h5 \ - f1img.h5 f1tab.h5 tstds.h5 - -# Our main target, the test programs -TEST_PROG = tstds tstlite tstimage tsttable -LDADD = $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5) - -# Source files for the programs -tstds_SOURCES = tstds.f90 -tstlite_SOURCES = tstlite.f90 -tstimage_SOURCES = tstimage.f90 -tsttable_SOURCES = tsttable.f90 - -# Mark this directory as part of the Fortran API (this affects output -# from tests in conclude.am) -FORTRAN_API = yes - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/fortran/test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/fortran/test/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -tstds$(EXEEXT): $(tstds_OBJECTS) $(tstds_DEPENDENCIES) $(EXTRA_tstds_DEPENDENCIES) - @rm -f tstds$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(tstds_OBJECTS) $(tstds_LDADD) $(LIBS) - -tstimage$(EXEEXT): $(tstimage_OBJECTS) $(tstimage_DEPENDENCIES) $(EXTRA_tstimage_DEPENDENCIES) - @rm -f tstimage$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(tstimage_OBJECTS) $(tstimage_LDADD) $(LIBS) - -tstlite$(EXEEXT): $(tstlite_OBJECTS) $(tstlite_DEPENDENCIES) $(EXTRA_tstlite_DEPENDENCIES) - @rm -f tstlite$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(tstlite_OBJECTS) $(tstlite_LDADD) $(LIBS) - -tsttable$(EXEEXT): $(tsttable_OBJECTS) $(tsttable_DEPENDENCIES) $(EXTRA_tsttable_DEPENDENCIES) - @rm -f tsttable$(EXEEXT) - $(AM_V_FCLD)$(FCLINK) $(tsttable_OBJECTS) $(tsttable_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -.f90.o: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -.f90.obj: - $(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'` - -.f90.lo: - $(AM_V_FC)$(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -tstds.log: tstds$(EXEEXT) - @p='tstds$(EXEEXT)'; \ - b='tstds'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -tstlite.log: tstlite$(EXEEXT) - @p='tstlite$(EXEEXT)'; \ - b='tstlite'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -tstimage.log: tstimage$(EXEEXT) - @p='tstimage$(EXEEXT)'; \ - b='tstimage'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -tsttable.log: tsttable$(EXEEXT) - @p='tsttable$(EXEEXT)'; \ - b='tsttable'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/src/.deps/H5DO.Plo b/build/hl/src/.deps/H5DO.Plo deleted file mode 100644 index d1ca219..0000000 --- a/build/hl/src/.deps/H5DO.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5DO.lo: ../../../hl/src/H5DO.c /usr/include/stdc-predef.h \ - /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/xlocale.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/assert.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ - ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ - ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ - ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ - ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ - ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ - ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ - ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ - ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ - ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ - ../../../src/H5FDdirect.h ../../../hl/src/hdf5_hl.h \ - ../../../hl/src/H5DOpublic.h ../../../hl/src/H5DSpublic.h \ - ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ - ../../../hl/src/H5TBpublic.h ../../../hl/src/H5PTpublic.h \ - ../../../src/H5private.h /usr/include/ctype.h /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ - /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ - /usr/include/bits/uio.h /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -/usr/include/string.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/xlocale.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/assert.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: diff --git a/build/hl/src/.deps/H5DS.Plo b/build/hl/src/.deps/H5DS.Plo deleted file mode 100644 index def0da7..0000000 --- a/build/hl/src/.deps/H5DS.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5DS.lo: ../../../hl/src/H5DS.c /usr/include/stdc-predef.h \ - /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/stdlib.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/src/H5DSprivate.h \ - ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ - ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ - /usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5LTprivate.h \ - ../../../hl/src/H5IMprivate.h ../../../hl/src/H5TBprivate.h - -/usr/include/stdc-predef.h: - -/usr/include/assert.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/stdlib.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/src/H5DSprivate.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5LTprivate.h: - -../../../hl/src/H5IMprivate.h: - -../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.deps/H5IM.Plo b/build/hl/src/.deps/H5IM.Plo deleted file mode 100644 index b012d41..0000000 --- a/build/hl/src/.deps/H5IM.Plo +++ /dev/null @@ -1,375 +0,0 @@ -H5IM.lo: ../../../hl/src/H5IM.c /usr/include/stdc-predef.h \ - ../../../hl/src/H5IMprivate.h ../../../hl/src/H5HLprivate2.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/include/sys/types.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ - /usr/include/assert.h /usr/include/ctype.h /usr/include/xlocale.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5LTprivate.h - -/usr/include/stdc-predef.h: - -../../../hl/src/H5IMprivate.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5LTprivate.h: diff --git a/build/hl/src/.deps/H5LT.Plo b/build/hl/src/.deps/H5LT.Plo deleted file mode 100644 index 318c2d6..0000000 --- a/build/hl/src/.deps/H5LT.Plo +++ /dev/null @@ -1,373 +0,0 @@ -H5LT.lo: ../../../hl/src/H5LT.c /usr/include/stdc-predef.h \ - /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/xlocale.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/assert.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../../hl/src/H5LTprivate.h ../../../hl/src/H5HLprivate2.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ - ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ - ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ - ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ - ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ - ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ - ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ - ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ - ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ - ../../../src/H5FDdirect.h ../../../hl/src/hdf5_hl.h \ - ../../../hl/src/H5DOpublic.h ../../../hl/src/H5DSpublic.h \ - ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ - ../../../hl/src/H5TBpublic.h ../../../hl/src/H5PTpublic.h \ - ../../../src/H5private.h /usr/include/ctype.h /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ - /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ - /usr/include/bits/uio.h /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -/usr/include/string.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/xlocale.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/assert.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../../hl/src/H5LTprivate.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: diff --git a/build/hl/src/.deps/H5LTanalyze.Plo b/build/hl/src/.deps/H5LTanalyze.Plo deleted file mode 100644 index 16174b4..0000000 --- a/build/hl/src/.deps/H5LTanalyze.Plo +++ /dev/null @@ -1,217 +0,0 @@ -H5LTanalyze.lo: ../../../hl/src/H5LTanalyze.c /usr/include/stdc-predef.h \ - /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/string.h /usr/include/xlocale.h /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/inttypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h ../../../src/hdf5.h \ - ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ - ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ - ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ - ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ - ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ - ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ - ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ - ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ - ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ - ../../../src/H5FDdirect.h ../../../hl/src/H5LTparse.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/string.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/inttypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/H5LTparse.h: diff --git a/build/hl/src/.deps/H5LTparse.Plo b/build/hl/src/.deps/H5LTparse.Plo deleted file mode 100644 index 229e46b..0000000 --- a/build/hl/src/.deps/H5LTparse.Plo +++ /dev/null @@ -1,188 +0,0 @@ -H5LTparse.lo: ../../../hl/src/H5LTparse.c /usr/include/stdc-predef.h \ - /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/string.h /usr/include/xlocale.h ../../../src/hdf5.h \ - ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h \ - ../../../src/H5Epubgen.h ../../../src/H5Fpublic.h \ - ../../../src/H5FDpublic.h ../../../src/H5Gpublic.h \ - ../../../src/H5MMpublic.h ../../../src/H5Ppublic.h \ - ../../../src/H5Zpublic.h ../../../src/H5PLpublic.h \ - ../../../src/H5Rpublic.h ../../../src/H5Spublic.h \ - ../../../src/H5FDcore.h ../../../src/H5FDfamily.h ../../../src/H5FDlog.h \ - ../../../src/H5FDmpi.h ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h \ - ../../../src/H5FDsec2.h ../../../src/H5FDstdio.h \ - ../../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/string.h: - -/usr/include/xlocale.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: diff --git a/build/hl/src/.deps/H5PT.Plo b/build/hl/src/.deps/H5PT.Plo deleted file mode 100644 index 93082ee..0000000 --- a/build/hl/src/.deps/H5PT.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5PT.lo: ../../../hl/src/H5PT.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - ../../../hl/src/H5PTprivate.h ../../../hl/src/H5HLprivate2.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ - /usr/include/assert.h /usr/include/ctype.h /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ - /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ - /usr/include/bits/uio.h /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/string.h /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ - /usr/include/bits/confname.h /usr/include/getopt.h \ - /usr/include/sys/wait.h /usr/include/pwd.h /usr/include/sys/stat.h \ - /usr/include/sys/time.h /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5TBprivate.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../hl/src/H5PTprivate.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.deps/H5TB.Plo b/build/hl/src/.deps/H5TB.Plo deleted file mode 100644 index c0914c7..0000000 --- a/build/hl/src/.deps/H5TB.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5TB.lo: ../../../hl/src/H5TB.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/src/H5LTprivate.h \ - ../../../hl/src/H5HLprivate2.h ../../../src/hdf5.h \ - ../../../src/H5public.h ../../src/H5pubconf.h ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../src/H5private.h \ - /usr/include/assert.h /usr/include/ctype.h /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/fcntl.h \ - /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ - /usr/include/bits/uio.h /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5TBprivate.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/src/H5LTprivate.h: - -../../../hl/src/H5HLprivate2.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5TBprivate.h: diff --git a/build/hl/src/.libs/H5DO.o b/build/hl/src/.libs/H5DO.o deleted file mode 100644 index b013f06..0000000 Binary files a/build/hl/src/.libs/H5DO.o and /dev/null differ diff --git a/build/hl/src/.libs/H5DS.o b/build/hl/src/.libs/H5DS.o deleted file mode 100644 index 4b06910..0000000 Binary files a/build/hl/src/.libs/H5DS.o and /dev/null differ diff --git a/build/hl/src/.libs/H5IM.o b/build/hl/src/.libs/H5IM.o deleted file mode 100644 index 8dbf67b..0000000 Binary files a/build/hl/src/.libs/H5IM.o and /dev/null differ diff --git a/build/hl/src/.libs/H5LT.o b/build/hl/src/.libs/H5LT.o deleted file mode 100644 index 1d0674a..0000000 Binary files a/build/hl/src/.libs/H5LT.o and /dev/null differ diff --git a/build/hl/src/.libs/H5LTanalyze.o b/build/hl/src/.libs/H5LTanalyze.o deleted file mode 100644 index 7f8f4f5..0000000 Binary files a/build/hl/src/.libs/H5LTanalyze.o and /dev/null differ diff --git a/build/hl/src/.libs/H5LTparse.o b/build/hl/src/.libs/H5LTparse.o deleted file mode 100644 index 7be2a2a..0000000 Binary files a/build/hl/src/.libs/H5LTparse.o and /dev/null differ diff --git a/build/hl/src/.libs/H5PT.o b/build/hl/src/.libs/H5PT.o deleted file mode 100644 index c90a06f..0000000 Binary files a/build/hl/src/.libs/H5PT.o and /dev/null differ diff --git a/build/hl/src/.libs/H5TB.o b/build/hl/src/.libs/H5TB.o deleted file mode 100644 index e8bd5a6..0000000 Binary files a/build/hl/src/.libs/H5TB.o and /dev/null differ diff --git a/build/hl/src/.libs/libhdf5_hl.a b/build/hl/src/.libs/libhdf5_hl.a deleted file mode 100644 index 659f734..0000000 Binary files a/build/hl/src/.libs/libhdf5_hl.a and /dev/null differ diff --git a/build/hl/src/.libs/libhdf5_hl.la b/build/hl/src/.libs/libhdf5_hl.la deleted file mode 120000 index ba90d06..0000000 --- a/build/hl/src/.libs/libhdf5_hl.la +++ /dev/null @@ -1 +0,0 @@ -../libhdf5_hl.la \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.lai b/build/hl/src/.libs/libhdf5_hl.lai deleted file mode 100644 index 962397c..0000000 --- a/build/hl/src/.libs/libhdf5_hl.lai +++ /dev/null @@ -1,41 +0,0 @@ -# libhdf5_hl.la - a libtool library file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='libhdf5_hl.so.10' - -# Names of this library. -library_names='libhdf5_hl.so.10.2.2 libhdf5_hl.so.10 libhdf5_hl.so' - -# The name of the static archive. -old_library='libhdf5_hl.a' - -# Linker flags that cannot go in dependency_libs. -inherited_linker_flags='' - -# Libraries that this one depends upon. -dependency_libs=' /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib/libhdf5.la -lz -ldl -lm' - -# Names of additional weak libraries provided by this library -weak_library_names='' - -# Version information for libhdf5_hl. -current=12 -age=2 -revision=2 - -# Is this an already installed library? -installed=yes - -# Should we warn about portability when linking against -modules? -shouldnotlink=no - -# Files to dlopen/dlpreopen -dlopen='' -dlpreopen='' - -# Directory that this library needs to be installed in: -libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' diff --git a/build/hl/src/.libs/libhdf5_hl.so b/build/hl/src/.libs/libhdf5_hl.so deleted file mode 120000 index 81effd8..0000000 --- a/build/hl/src/.libs/libhdf5_hl.so +++ /dev/null @@ -1 +0,0 @@ -libhdf5_hl.so.10.2.2 \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.so.10 b/build/hl/src/.libs/libhdf5_hl.so.10 deleted file mode 120000 index 81effd8..0000000 --- a/build/hl/src/.libs/libhdf5_hl.so.10 +++ /dev/null @@ -1 +0,0 @@ -libhdf5_hl.so.10.2.2 \ No newline at end of file diff --git a/build/hl/src/.libs/libhdf5_hl.so.10.2.2 b/build/hl/src/.libs/libhdf5_hl.so.10.2.2 deleted file mode 100755 index cfd22d3..0000000 Binary files a/build/hl/src/.libs/libhdf5_hl.so.10.2.2 and /dev/null differ diff --git a/build/hl/src/H5DO.lo b/build/hl/src/H5DO.lo deleted file mode 100644 index c58fdf0..0000000 --- a/build/hl/src/H5DO.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5DO.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5DO.o' - -# Name of the non-PIC object -non_pic_object='H5DO.o' - diff --git a/build/hl/src/H5DO.o b/build/hl/src/H5DO.o deleted file mode 100644 index abd6357..0000000 Binary files a/build/hl/src/H5DO.o and /dev/null differ diff --git a/build/hl/src/H5DS.lo b/build/hl/src/H5DS.lo deleted file mode 100644 index cfd6ab4..0000000 --- a/build/hl/src/H5DS.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5DS.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5DS.o' - -# Name of the non-PIC object -non_pic_object='H5DS.o' - diff --git a/build/hl/src/H5DS.o b/build/hl/src/H5DS.o deleted file mode 100644 index 3c37468..0000000 Binary files a/build/hl/src/H5DS.o and /dev/null differ diff --git a/build/hl/src/H5IM.lo b/build/hl/src/H5IM.lo deleted file mode 100644 index 5dae021..0000000 --- a/build/hl/src/H5IM.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5IM.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5IM.o' - -# Name of the non-PIC object -non_pic_object='H5IM.o' - diff --git a/build/hl/src/H5IM.o b/build/hl/src/H5IM.o deleted file mode 100644 index 1b98227..0000000 Binary files a/build/hl/src/H5IM.o and /dev/null differ diff --git a/build/hl/src/H5LT.lo b/build/hl/src/H5LT.lo deleted file mode 100644 index 6b566db..0000000 --- a/build/hl/src/H5LT.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5LT.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5LT.o' - -# Name of the non-PIC object -non_pic_object='H5LT.o' - diff --git a/build/hl/src/H5LT.o b/build/hl/src/H5LT.o deleted file mode 100644 index c6951bd..0000000 Binary files a/build/hl/src/H5LT.o and /dev/null differ diff --git a/build/hl/src/H5LTanalyze.lo b/build/hl/src/H5LTanalyze.lo deleted file mode 100644 index 92b84ef..0000000 --- a/build/hl/src/H5LTanalyze.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5LTanalyze.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5LTanalyze.o' - -# Name of the non-PIC object -non_pic_object='H5LTanalyze.o' - diff --git a/build/hl/src/H5LTanalyze.o b/build/hl/src/H5LTanalyze.o deleted file mode 100644 index 8b9a33f..0000000 Binary files a/build/hl/src/H5LTanalyze.o and /dev/null differ diff --git a/build/hl/src/H5LTparse.lo b/build/hl/src/H5LTparse.lo deleted file mode 100644 index 3dc61cd..0000000 --- a/build/hl/src/H5LTparse.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5LTparse.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5LTparse.o' - -# Name of the non-PIC object -non_pic_object='H5LTparse.o' - diff --git a/build/hl/src/H5LTparse.o b/build/hl/src/H5LTparse.o deleted file mode 100644 index 59977ba..0000000 Binary files a/build/hl/src/H5LTparse.o and /dev/null differ diff --git a/build/hl/src/H5PT.lo b/build/hl/src/H5PT.lo deleted file mode 100644 index 7db4918..0000000 --- a/build/hl/src/H5PT.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5PT.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5PT.o' - -# Name of the non-PIC object -non_pic_object='H5PT.o' - diff --git a/build/hl/src/H5PT.o b/build/hl/src/H5PT.o deleted file mode 100644 index 2fed1d6..0000000 Binary files a/build/hl/src/H5PT.o and /dev/null differ diff --git a/build/hl/src/H5TB.lo b/build/hl/src/H5TB.lo deleted file mode 100644 index 56f602c..0000000 --- a/build/hl/src/H5TB.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5TB.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5TB.o' - -# Name of the non-PIC object -non_pic_object='H5TB.o' - diff --git a/build/hl/src/H5TB.o b/build/hl/src/H5TB.o deleted file mode 100644 index cde2367..0000000 Binary files a/build/hl/src/H5TB.o and /dev/null differ diff --git a/build/hl/src/Makefile b/build/hl/src/Makefile deleted file mode 100644 index 663e1a8..0000000 --- a/build/hl/src/Makefile +++ /dev/null @@ -1,1469 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 High-Level Library Makefile(.in) -# - - -VPATH = ../../../hl/src -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ - $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libhdf5_hl_la_DEPENDENCIES = $(LIBHDF5) -am_libhdf5_hl_la_OBJECTS = H5DO.lo H5DS.lo H5IM.lo H5LT.lo \ - H5LTanalyze.lo H5LTparse.lo H5PT.lo H5TB.lo -libhdf5_hl_la_OBJECTS = $(am_libhdf5_hl_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libhdf5_hl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libhdf5_hl_la_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(libhdf5_hl_la_SOURCES) -DIST_SOURCES = $(libhdf5_hl_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -HEADERS = $(include_HEADERS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/bin/depcomp \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am \ - $(top_srcdir)/config/lt_vers.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Add include directories to the C preprocessor flags -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/src -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/src -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/src -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# Add libtool shared library version numbers to the HDF5 library -# See libtool versioning documentation online. -# After making changes, run bin/reconfigure to update other configure related -# files like Makefile.in. -LT_VERS_INTERFACE = 13 -LT_VERS_REVISION = 2 -LT_VERS_AGE = 3 -LT_CXX_VERS_INTERFACE = 16 -LT_CXX_VERS_REVISION = 0 -LT_CXX_VERS_AGE = 0 -LT_F_VERS_INTERFACE = 10 -LT_F_VERS_REVISION = 6 -LT_F_VERS_AGE = 0 -LT_HL_VERS_INTERFACE = 12 -LT_HL_VERS_REVISION = 2 -LT_HL_VERS_AGE = 2 -LT_HL_CXX_VERS_INTERFACE = 12 -LT_HL_CXX_VERS_REVISION = 2 -LT_HL_CXX_VERS_AGE = 1 -LT_HL_F_VERS_INTERFACE = 10 -LT_HL_F_VERS_REVISION = 5 -LT_HL_F_VERS_AGE = 0 -LT_TOOLS_VERS_INTERFACE = 10 -LT_TOOLS_VERS_REVISION = 7 -LT_TOOLS_VERS_AGE = 0 - -# This library is our main target. -lib_LTLIBRARIES = libhdf5_hl.la - -# Add libtool numbers to the HDF5 hl library (from config/lt_vers.am) -libhdf5_hl_la_LDFLAGS = -version-info $(LT_HL_VERS_INTERFACE):$(LT_HL_VERS_REVISION):$(LT_HL_VERS_AGE) $(AM_LDFLAGS) - -# List sources to include in the HDF5 HL Library. -libhdf5_hl_la_SOURCES = H5DO.c H5DS.c H5IM.c H5LT.c H5LTanalyze.c H5LTparse.c H5PT.c H5TB.c - -# HDF5 HL library depends on HDF5 Library. -libhdf5_hl_la_LIBADD = $(LIBHDF5) - -# Public header files (to be installed) -include_HEADERS = hdf5_hl.h H5DOpublic.h H5IMpublic.h H5LTpublic.h H5TBpublic.h H5DSpublic.h H5PTpublic.h - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libhdf5_hl.la: $(libhdf5_hl_la_OBJECTS) $(libhdf5_hl_la_DEPENDENCIES) $(EXTRA_libhdf5_hl_la_DEPENDENCIES) - $(AM_V_CCLD)$(libhdf5_hl_la_LINK) -rpath $(libdir) $(libhdf5_hl_la_OBJECTS) $(libhdf5_hl_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/H5DO.Plo -include ./$(DEPDIR)/H5DS.Plo -include ./$(DEPDIR)/H5IM.Plo -include ./$(DEPDIR)/H5LT.Plo -include ./$(DEPDIR)/H5LTanalyze.Plo -include ./$(DEPDIR)/H5LTparse.Plo -include ./$(DEPDIR)/H5PT.Plo -include ./$(DEPDIR)/H5TB.Plo - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-includeHEADERS: $(include_HEADERS) - @$(NORMAL_INSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ - fi; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ - done - -uninstall-includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-includeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-generic clean-libLTLIBRARIES \ - clean-libtool cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-includeHEADERS install-info \ - install-info-am install-libLTLIBRARIES install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ - uninstall-includeHEADERS uninstall-libLTLIBRARIES - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/src/libhdf5_hl.la b/build/hl/src/libhdf5_hl.la deleted file mode 100644 index 71598e5..0000000 --- a/build/hl/src/libhdf5_hl.la +++ /dev/null @@ -1,42 +0,0 @@ -# libhdf5_hl.la - a libtool library file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='libhdf5_hl.so.10' - -# Names of this library. -library_names='libhdf5_hl.so.10.2.2 libhdf5_hl.so.10 libhdf5_hl.so' - -# The name of the static archive. -old_library='libhdf5_hl.a' - -# Linker flags that cannot go in dependency_libs. -inherited_linker_flags='' - -# Libraries that this one depends upon. -dependency_libs=' /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la -lz -ldl -lm' - -# Names of additional weak libraries provided by this library -weak_library_names='' - -# Version information for libhdf5_hl. -current=12 -age=2 -revision=2 - -# Is this an already installed library? -installed=no - -# Should we warn about portability when linking against -modules? -shouldnotlink=no - -# Files to dlopen/dlpreopen -dlopen='' -dlpreopen='' - -# Directory that this library needs to be installed in: -libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/src; /bin/sh \"/mnt/wrk/lrknox/hdf5_hdf5/build/libtool\" --silent --tag CC --mode=relink gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -version-info 12:2:2 -o libhdf5_hl.la -rpath /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib H5DO.lo H5DS.lo H5IM.lo H5LT.lo H5LTanalyze.lo H5LTparse.lo H5PT.lo H5TB.lo ../../src/libhdf5.la -lz -ldl -lm @inst_prefix_dir@)" diff --git a/build/hl/test/.deps/gen_test_ds.Po b/build/hl/test/.deps/gen_test_ds.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/build/hl/test/.deps/gen_test_ds.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/build/hl/test/.deps/test_ds.Po b/build/hl/test/.deps/test_ds.Po deleted file mode 100644 index 2324b0d..0000000 --- a/build/hl/test/.deps/test_ds.Po +++ /dev/null @@ -1,387 +0,0 @@ -test_ds.o: ../../../hl/test/test_ds.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../test/H5srcdir.h: - -H5srcdir_str.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: diff --git a/build/hl/test/.deps/test_dset_opt.Po b/build/hl/test/.deps/test_dset_opt.Po deleted file mode 100644 index 54475c3..0000000 --- a/build/hl/test/.deps/test_dset_opt.Po +++ /dev/null @@ -1,386 +0,0 @@ -test_dset_opt.o: ../../../hl/test/test_dset_opt.c \ - /usr/include/stdc-predef.h /usr/include/stdlib.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ - ../../../hl/src/H5DOpublic.h /usr/include/zlib.h /usr/include/zconf.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../test/H5srcdir.h: - -H5srcdir_str.h: - -../../../hl/src/H5DOpublic.h: - -/usr/include/zlib.h: - -/usr/include/zconf.h: diff --git a/build/hl/test/.deps/test_file_image.Po b/build/hl/test/.deps/test_file_image.Po deleted file mode 100644 index 61c44aa..0000000 --- a/build/hl/test/.deps/test_file_image.Po +++ /dev/null @@ -1,377 +0,0 @@ -test_file_image.o: ../../../hl/test/test_file_image.c \ - /usr/include/stdc-predef.h ../../../hl/test/h5hltest.h \ - ../../../test/h5test.h ../../../src/hdf5.h ../../../src/H5public.h \ - ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/include/sys/types.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../hl/src/H5LTpublic.h - -/usr/include/stdc-predef.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../hl/src/H5LTpublic.h: diff --git a/build/hl/test/.deps/test_image.Po b/build/hl/test/.deps/test_image.Po deleted file mode 100644 index 2958342..0000000 --- a/build/hl/test/.deps/test_image.Po +++ /dev/null @@ -1,386 +0,0 @@ -test_image.o: ../../../hl/test/test_image.c /usr/include/stdc-predef.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h /usr/include/stdlib.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ - ../../../hl/src/H5LTpublic.h ../../../hl/src/H5IMpublic.h \ - ../../../hl/test/pal_rgb.h - -/usr/include/stdc-predef.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/stdlib.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../test/H5srcdir.h: - -H5srcdir_str.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/test/pal_rgb.h: diff --git a/build/hl/test/.deps/test_lite.Po b/build/hl/test/.deps/test_lite.Po deleted file mode 100644 index f4b9d41..0000000 --- a/build/hl/test/.deps/test_lite.Po +++ /dev/null @@ -1,382 +0,0 @@ -test_lite.o: ../../../hl/test/test_lite.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ - ../../../hl/src/H5LTpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../test/H5srcdir.h: - -H5srcdir_str.h: - -../../../hl/src/H5LTpublic.h: diff --git a/build/hl/test/.deps/test_packet.Po b/build/hl/test/.deps/test_packet.Po deleted file mode 100644 index 04b5b9d..0000000 --- a/build/hl/test/.deps/test_packet.Po +++ /dev/null @@ -1,380 +0,0 @@ -test_packet.o: ../../../hl/test/test_packet.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../hl/src/H5PTpublic.h \ - ../../../hl/src/H5TBpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../hl/src/H5TBpublic.h: diff --git a/build/hl/test/.deps/test_packet_vlen.Po b/build/hl/test/.deps/test_packet_vlen.Po deleted file mode 100644 index e6cf0b5..0000000 --- a/build/hl/test/.deps/test_packet_vlen.Po +++ /dev/null @@ -1,375 +0,0 @@ -test_packet_vlen.o: ../../../hl/test/test_packet_vlen.c \ - /usr/include/stdc-predef.h ../../../hl/test/h5hltest.h \ - ../../../test/h5test.h ../../../src/hdf5.h ../../../src/H5public.h \ - ../../src/H5pubconf.h ../../../src/H5version.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/include/sys/types.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h - -/usr/include/stdc-predef.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: diff --git a/build/hl/test/.deps/test_table.Po b/build/hl/test/.deps/test_table.Po deleted file mode 100644 index f580ca2..0000000 --- a/build/hl/test/.deps/test_table.Po +++ /dev/null @@ -1,382 +0,0 @@ -test_table.o: ../../../hl/test/test_table.c /usr/include/stdc-predef.h \ - /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../hl/test/h5hltest.h ../../../test/h5test.h \ - ../../../src/hdf5.h ../../../src/H5public.h ../../src/H5pubconf.h \ - ../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../src/H5api_adpt.h ../../../src/H5Apublic.h \ - ../../../src/H5Ipublic.h ../../../src/H5Opublic.h \ - ../../../src/H5Lpublic.h ../../../src/H5Tpublic.h \ - ../../../src/H5ACpublic.h ../../../src/H5Cpublic.h \ - ../../../src/H5Dpublic.h ../../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../../src/H5Epubgen.h \ - ../../../src/H5Fpublic.h ../../../src/H5FDpublic.h \ - ../../../src/H5Gpublic.h ../../../src/H5MMpublic.h \ - ../../../src/H5Ppublic.h ../../../src/H5Zpublic.h \ - ../../../src/H5PLpublic.h ../../../src/H5Rpublic.h \ - ../../../src/H5Spublic.h ../../../src/H5FDcore.h \ - ../../../src/H5FDfamily.h ../../../src/H5FDlog.h ../../../src/H5FDmpi.h \ - ../../../src/H5FDmpio.h ../../../src/H5FDmulti.h ../../../src/H5FDsec2.h \ - ../../../src/H5FDstdio.h ../../../src/H5FDdirect.h \ - ../../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../../src/H5win32defs.h \ - ../../../src/H5overflow.h ../../../hl/src/H5HLprivate2.h \ - ../../../hl/src/hdf5_hl.h ../../../hl/src/H5DOpublic.h \ - ../../../hl/src/H5DSpublic.h ../../../hl/src/H5LTpublic.h \ - ../../../hl/src/H5IMpublic.h ../../../hl/src/H5TBpublic.h \ - ../../../hl/src/H5PTpublic.h ../../../test/H5srcdir.h H5srcdir_str.h \ - ../../../hl/src/H5TBpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/stdlib.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../hl/test/h5hltest.h: - -../../../test/h5test.h: - -../../../src/hdf5.h: - -../../../src/H5public.h: - -../../src/H5pubconf.h: - -../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../src/H5api_adpt.h: - -../../../src/H5Apublic.h: - -../../../src/H5Ipublic.h: - -../../../src/H5Opublic.h: - -../../../src/H5Lpublic.h: - -../../../src/H5Tpublic.h: - -../../../src/H5ACpublic.h: - -../../../src/H5Cpublic.h: - -../../../src/H5Dpublic.h: - -../../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../../src/H5Epubgen.h: - -../../../src/H5Fpublic.h: - -../../../src/H5FDpublic.h: - -../../../src/H5Gpublic.h: - -../../../src/H5MMpublic.h: - -../../../src/H5Ppublic.h: - -../../../src/H5Zpublic.h: - -../../../src/H5PLpublic.h: - -../../../src/H5Rpublic.h: - -../../../src/H5Spublic.h: - -../../../src/H5FDcore.h: - -../../../src/H5FDfamily.h: - -../../../src/H5FDlog.h: - -../../../src/H5FDmpi.h: - -../../../src/H5FDmpio.h: - -../../../src/H5FDmulti.h: - -../../../src/H5FDsec2.h: - -../../../src/H5FDstdio.h: - -../../../src/H5FDdirect.h: - -../../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../../src/H5win32defs.h: - -../../../src/H5overflow.h: - -../../../hl/src/H5HLprivate2.h: - -../../../hl/src/hdf5_hl.h: - -../../../hl/src/H5DOpublic.h: - -../../../hl/src/H5DSpublic.h: - -../../../hl/src/H5LTpublic.h: - -../../../hl/src/H5IMpublic.h: - -../../../hl/src/H5TBpublic.h: - -../../../hl/src/H5PTpublic.h: - -../../../test/H5srcdir.h: - -H5srcdir_str.h: - -../../../hl/src/H5TBpublic.h: diff --git a/build/hl/test/.libs/lt-test_ds b/build/hl/test/.libs/lt-test_ds deleted file mode 100755 index 4e21ed1..0000000 Binary files a/build/hl/test/.libs/lt-test_ds and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_dset_opt b/build/hl/test/.libs/lt-test_dset_opt deleted file mode 100755 index a3fc26c..0000000 Binary files a/build/hl/test/.libs/lt-test_dset_opt and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_file_image b/build/hl/test/.libs/lt-test_file_image deleted file mode 100755 index 859271f..0000000 Binary files a/build/hl/test/.libs/lt-test_file_image and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_image b/build/hl/test/.libs/lt-test_image deleted file mode 100755 index 3550ce2..0000000 Binary files a/build/hl/test/.libs/lt-test_image and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_lite b/build/hl/test/.libs/lt-test_lite deleted file mode 100755 index 066a8ad..0000000 Binary files a/build/hl/test/.libs/lt-test_lite and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_packet b/build/hl/test/.libs/lt-test_packet deleted file mode 100755 index 7322daa..0000000 Binary files a/build/hl/test/.libs/lt-test_packet and /dev/null differ diff --git a/build/hl/test/.libs/lt-test_table b/build/hl/test/.libs/lt-test_table deleted file mode 100755 index d522c01..0000000 Binary files a/build/hl/test/.libs/lt-test_table and /dev/null differ diff --git a/build/hl/test/.libs/test_ds b/build/hl/test/.libs/test_ds deleted file mode 100755 index 75303e1..0000000 Binary files a/build/hl/test/.libs/test_ds and /dev/null differ diff --git a/build/hl/test/.libs/test_dset_opt b/build/hl/test/.libs/test_dset_opt deleted file mode 100755 index d0bfa5e..0000000 Binary files a/build/hl/test/.libs/test_dset_opt and /dev/null differ diff --git a/build/hl/test/.libs/test_file_image b/build/hl/test/.libs/test_file_image deleted file mode 100755 index 5e8675e..0000000 Binary files a/build/hl/test/.libs/test_file_image and /dev/null differ diff --git a/build/hl/test/.libs/test_image b/build/hl/test/.libs/test_image deleted file mode 100755 index e351401..0000000 Binary files a/build/hl/test/.libs/test_image and /dev/null differ diff --git a/build/hl/test/.libs/test_lite b/build/hl/test/.libs/test_lite deleted file mode 100755 index ccb6712..0000000 Binary files a/build/hl/test/.libs/test_lite and /dev/null differ diff --git a/build/hl/test/.libs/test_packet b/build/hl/test/.libs/test_packet deleted file mode 100755 index e06bb57..0000000 Binary files a/build/hl/test/.libs/test_packet and /dev/null differ diff --git a/build/hl/test/.libs/test_table b/build/hl/test/.libs/test_table deleted file mode 100755 index 452b958..0000000 Binary files a/build/hl/test/.libs/test_table and /dev/null differ diff --git a/build/hl/test/H5srcdir_str.h b/build/hl/test/H5srcdir_str.h deleted file mode 100644 index b5749cf..0000000 --- a/build/hl/test/H5srcdir_str.h +++ /dev/null @@ -1,20 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by The HDF Group. * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the COPYING file, which can be found at the root of the source code * - * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * - * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -/* If you are reading this file and it has a '.h' suffix, it was automatically - * generated from the '.in' version. Make changes there. - */ - -/* Set the 'srcdir' path from configure time */ -static const char *config_srcdir = "../../../hl/test"; - diff --git a/build/hl/test/Makefile b/build/hl/test/Makefile deleted file mode 100644 index f422e3d..0000000 --- a/build/hl/test/Makefile +++ /dev/null @@ -1,1529 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/test/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# -# -# HDF5 High-Level Test Makefile(.in) -# - -VPATH = ../../../hl/test -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -check_PROGRAMS = $(am__EXEEXT_1) -#noinst_PROGRAMS = $(am__EXEEXT_2) -TESTS = $(am__EXEEXT_1) -subdir = hl/test -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = H5srcdir_str.h -CONFIG_CLEAN_VPATH_FILES = -am__EXEEXT_1 = test_lite$(EXEEXT) test_image$(EXEEXT) \ - test_file_image$(EXEEXT) test_table$(EXEEXT) test_ds$(EXEEXT) \ - test_packet$(EXEEXT) test_dset_opt$(EXEEXT) -am__EXEEXT_2 = gen_test_ds$(EXEEXT) -PROGRAMS = $(noinst_PROGRAMS) -gen_test_ds_SOURCES = gen_test_ds.c -gen_test_ds_OBJECTS = gen_test_ds.$(OBJEXT) -gen_test_ds_LDADD = $(LDADD) -gen_test_ds_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -test_ds_SOURCES = test_ds.c -test_ds_OBJECTS = test_ds.$(OBJEXT) -test_ds_LDADD = $(LDADD) -test_ds_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -test_dset_opt_SOURCES = test_dset_opt.c -test_dset_opt_OBJECTS = test_dset_opt.$(OBJEXT) -test_dset_opt_LDADD = $(LDADD) -test_dset_opt_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -test_file_image_SOURCES = test_file_image.c -test_file_image_OBJECTS = test_file_image.$(OBJEXT) -test_file_image_LDADD = $(LDADD) -test_file_image_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -test_image_SOURCES = test_image.c -test_image_OBJECTS = test_image.$(OBJEXT) -test_image_LDADD = $(LDADD) -test_image_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -test_lite_SOURCES = test_lite.c -test_lite_OBJECTS = test_lite.$(OBJEXT) -test_lite_LDADD = $(LDADD) -test_lite_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -am_test_packet_OBJECTS = test_packet.$(OBJEXT) \ - test_packet_vlen.$(OBJEXT) -test_packet_OBJECTS = $(am_test_packet_OBJECTS) -test_packet_LDADD = $(LDADD) -test_packet_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -test_table_SOURCES = test_table.c -test_table_OBJECTS = test_table.$(OBJEXT) -test_table_LDADD = $(LDADD) -test_table_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = gen_test_ds.c test_ds.c test_dset_opt.c test_file_image.c \ - test_image.c test_lite.c $(test_packet_SOURCES) test_table.c -DIST_SOURCES = gen_test_ds.c test_ds.c test_dset_opt.c \ - test_file_image.c test_image.c test_lite.c \ - $(test_packet_SOURCES) test_table.c -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/H5srcdir_str.h.in $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Add include directories to C preprocessor flags -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I. -I$(srcdir) \ - -I$(top_builddir)/src -I$(top_srcdir)/src \ - -I$(top_builddir)/test -I$(top_srcdir)/test \ - -I$(top_srcdir)/hl/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/test -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/test -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. - -# Temporary files. These files are the ones created by running `make test'. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 \ - combine_tables[1-2].h5 test_ds[1-9].h5 test_ds10.h5 \ - test_image[1-3].h5 file_img[1-2].h5 test_lite[1-4].h5 \ - test_table.h5 test_packet_table.h5 test_packet_compress.h5 \ - test_detach.h5 test_dectris.h5 test_packet_table_vlen.h5 \ - testfl_packet_table_vlen.h5 - -# The tests depend on the hdf5, hdf5 test, and hdf5_hl libraries -LDADD = $(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) - -# Test programs. These are our main targets. They should be listed in the -# order to be executed, generally most specific tests to least specific tests. -TEST_PROG = test_lite test_image test_file_image test_table test_ds test_packet test_dset_opt - -# These programs generate test files for the tests. They don't need to be -# compiled every time we want to test the library. However, putting -# them in a conditional causes automake to generate rules so that they -# can be built by hand. They can also be built by specifying -# --enable-build-all at configure time. -BUILD_ALL_PROGS = gen_test_ds - -# Sources for test_packet executable -test_packet_SOURCES = test_packet.c test_packet_vlen.c - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/test/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -H5srcdir_str.h: $(top_builddir)/config.status $(srcdir)/H5srcdir_str.h.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -clean-noinstPROGRAMS: - @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -gen_test_ds$(EXEEXT): $(gen_test_ds_OBJECTS) $(gen_test_ds_DEPENDENCIES) $(EXTRA_gen_test_ds_DEPENDENCIES) - @rm -f gen_test_ds$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(gen_test_ds_OBJECTS) $(gen_test_ds_LDADD) $(LIBS) - -test_ds$(EXEEXT): $(test_ds_OBJECTS) $(test_ds_DEPENDENCIES) $(EXTRA_test_ds_DEPENDENCIES) - @rm -f test_ds$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_ds_OBJECTS) $(test_ds_LDADD) $(LIBS) - -test_dset_opt$(EXEEXT): $(test_dset_opt_OBJECTS) $(test_dset_opt_DEPENDENCIES) $(EXTRA_test_dset_opt_DEPENDENCIES) - @rm -f test_dset_opt$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_dset_opt_OBJECTS) $(test_dset_opt_LDADD) $(LIBS) - -test_file_image$(EXEEXT): $(test_file_image_OBJECTS) $(test_file_image_DEPENDENCIES) $(EXTRA_test_file_image_DEPENDENCIES) - @rm -f test_file_image$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_file_image_OBJECTS) $(test_file_image_LDADD) $(LIBS) - -test_image$(EXEEXT): $(test_image_OBJECTS) $(test_image_DEPENDENCIES) $(EXTRA_test_image_DEPENDENCIES) - @rm -f test_image$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_image_OBJECTS) $(test_image_LDADD) $(LIBS) - -test_lite$(EXEEXT): $(test_lite_OBJECTS) $(test_lite_DEPENDENCIES) $(EXTRA_test_lite_DEPENDENCIES) - @rm -f test_lite$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_lite_OBJECTS) $(test_lite_LDADD) $(LIBS) - -test_packet$(EXEEXT): $(test_packet_OBJECTS) $(test_packet_DEPENDENCIES) $(EXTRA_test_packet_DEPENDENCIES) - @rm -f test_packet$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_packet_OBJECTS) $(test_packet_LDADD) $(LIBS) - -test_table$(EXEEXT): $(test_table_OBJECTS) $(test_table_DEPENDENCIES) $(EXTRA_test_table_DEPENDENCIES) - @rm -f test_table$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_table_OBJECTS) $(test_table_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/gen_test_ds.Po -include ./$(DEPDIR)/test_ds.Po -include ./$(DEPDIR)/test_dset_opt.Po -include ./$(DEPDIR)/test_file_image.Po -include ./$(DEPDIR)/test_image.Po -include ./$(DEPDIR)/test_lite.Po -include ./$(DEPDIR)/test_packet.Po -include ./$(DEPDIR)/test_packet_vlen.Po -include ./$(DEPDIR)/test_table.Po - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -test_lite.log: test_lite$(EXEEXT) - @p='test_lite$(EXEEXT)'; \ - b='test_lite'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_image.log: test_image$(EXEEXT) - @p='test_image$(EXEEXT)'; \ - b='test_image'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_file_image.log: test_file_image$(EXEEXT) - @p='test_file_image$(EXEEXT)'; \ - b='test_file_image'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_table.log: test_table$(EXEEXT) - @p='test_table$(EXEEXT)'; \ - b='test_table'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_ds.log: test_ds$(EXEEXT) - @p='test_ds$(EXEEXT)'; \ - b='test_ds'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_packet.log: test_packet$(EXEEXT) - @p='test_packet$(EXEEXT)'; \ - b='test_packet'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -test_dset_opt.log: test_dset_opt$(EXEEXT) - @p='test_dset_opt$(EXEEXT)'; \ - b='test_dset_opt'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) all-local -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - clean-noinstPROGRAMS mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-checkPROGRAMS clean-generic clean-libtool \ - clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local pdf pdf-am ps ps-am recheck tags tags-am \ - uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/test/combine_tables1.h5 b/build/hl/test/combine_tables1.h5 deleted file mode 100644 index c37f303..0000000 Binary files a/build/hl/test/combine_tables1.h5 and /dev/null differ diff --git a/build/hl/test/combine_tables2.h5 b/build/hl/test/combine_tables2.h5 deleted file mode 100644 index dae21c7..0000000 Binary files a/build/hl/test/combine_tables2.h5 and /dev/null differ diff --git a/build/hl/test/test_dectris.h5 b/build/hl/test/test_dectris.h5 deleted file mode 100644 index af7a782..0000000 Binary files a/build/hl/test/test_dectris.h5 and /dev/null differ diff --git a/build/hl/test/test_detach.h5 b/build/hl/test/test_detach.h5 deleted file mode 100644 index 3b4e722..0000000 Binary files a/build/hl/test/test_detach.h5 and /dev/null differ diff --git a/build/hl/test/test_ds b/build/hl/test/test_ds deleted file mode 100755 index cdedcd1..0000000 --- a/build/hl/test/test_ds +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_ds - temporary wrapper script for .libs/test_ds -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_ds program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_ds.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_ds:test_ds:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_ds:test_ds:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_ds:test_ds:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_ds' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_ds.chkexe b/build/hl/test/test_ds.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_ds.chklog b/build/hl/test/test_ds.chklog deleted file mode 100644 index 483db9e..0000000 --- a/build/hl/test/test_ds.chklog +++ /dev/null @@ -1,65 +0,0 @@ -============================ - test_ds Test Log -============================ -Testing test_char_attachscales PASSED -Testing test_short_attachscales PASSED -Testing test_int_attachscales PASSED -Testing test_long_attachscales PASSED -Testing test_float_attachscales PASSED -Testing set char scale/cmp scale name PASSED -Testing set short scale/cmp scale name PASSED -Testing set int scale/cmp scale name PASSED -Testing set long scale/cmp scale name PASSED -Testing set float scale/cmp scale name PASSED -Testing test_numberofscales PASSED -Testing test_long_attachscales PASSED -Testing test_duplicatelong_attachscales PASSED -Testing set same long scale/cmp scale name PASSED -Testing test_foreign_scaleattached PASSED -Testing test_foreign_scaleattached PASSED -Testing test_detachscales PASSED -Testing permutations of attaching and detaching PASSED -Testing API functions -Testing detach scales PASSED -Testing set/get label PASSED -Testing set scale/get scale name PASSED -Testing iterate scales PASSED -Testing error conditions -Testing attach a dataset to itself PASSED -Testing attach a group with a dataset PASSED -Testing attach a dataset with a group PASSED -Testing set scale for a group PASSED -Testing attach a scale that has scales PASSED -Testing attach to a dataset that is a scale PASSED -Testing attach to a dataset that is a reserved class dataset PASSED -Testing is scale PASSED -Testing detach scale from dataset it is not attached to PASSED -Testing detach scale from group PASSED -Testing detach scale when scale is group PASSED -Testing parameter errors -Testing attach scales PASSED -Testing detach scales PASSED -Testing set/get label PASSED -Testing iterate scales PASSED -Testing ranks -Testing attach PASSED -Testing detach PASSED -Testing attach, set, get names, labels PASSED -Testing attach a scalar scale PASSED -Testing iterators -Testing iterate when the dataset has no scales PASSED -Testing iterate on dimension that is outside the rank PASSED -Testing iterate for dimension with many scales PASSED -Testing iterate on group PASSED -Testing iterate in deleted scales PASSED -Testing scales with several datatypes -Testing floating point and short scales PASSED -Testing string scales PASSED -Testing reading ASCII data and generate HDF5 data with scales -Testing generating scales PASSED -All dimension scales tests passed. -0.29user 0.02system 0:00.37elapsed 86%CPU (0avgtext+0avgdata 7240maxresident)k -0inputs+1112outputs (0major+9680minor)pagefaults 0swaps - -Finished testing test_ds -============================ diff --git a/build/hl/test/test_ds.o b/build/hl/test/test_ds.o deleted file mode 100644 index ef18471..0000000 Binary files a/build/hl/test/test_ds.o and /dev/null differ diff --git a/build/hl/test/test_ds1.h5 b/build/hl/test/test_ds1.h5 deleted file mode 100644 index bd52b4d..0000000 Binary files a/build/hl/test/test_ds1.h5 and /dev/null differ diff --git a/build/hl/test/test_ds10.h5 b/build/hl/test/test_ds10.h5 deleted file mode 100644 index 9a8fe9e..0000000 Binary files a/build/hl/test/test_ds10.h5 and /dev/null differ diff --git a/build/hl/test/test_ds2.h5 b/build/hl/test/test_ds2.h5 deleted file mode 100644 index 6a79308..0000000 Binary files a/build/hl/test/test_ds2.h5 and /dev/null differ diff --git a/build/hl/test/test_ds3.h5 b/build/hl/test/test_ds3.h5 deleted file mode 100644 index 6801667..0000000 Binary files a/build/hl/test/test_ds3.h5 and /dev/null differ diff --git a/build/hl/test/test_ds4.h5 b/build/hl/test/test_ds4.h5 deleted file mode 100644 index fdb8505..0000000 Binary files a/build/hl/test/test_ds4.h5 and /dev/null differ diff --git a/build/hl/test/test_ds5.h5 b/build/hl/test/test_ds5.h5 deleted file mode 100644 index 968eaa9..0000000 Binary files a/build/hl/test/test_ds5.h5 and /dev/null differ diff --git a/build/hl/test/test_ds6.h5 b/build/hl/test/test_ds6.h5 deleted file mode 100644 index b7dacdd..0000000 Binary files a/build/hl/test/test_ds6.h5 and /dev/null differ diff --git a/build/hl/test/test_ds7.h5 b/build/hl/test/test_ds7.h5 deleted file mode 100644 index 14b141f..0000000 Binary files a/build/hl/test/test_ds7.h5 and /dev/null differ diff --git a/build/hl/test/test_ds8.h5 b/build/hl/test/test_ds8.h5 deleted file mode 100644 index fb3c05c..0000000 Binary files a/build/hl/test/test_ds8.h5 and /dev/null differ diff --git a/build/hl/test/test_ds9.h5 b/build/hl/test/test_ds9.h5 deleted file mode 100644 index c40827b..0000000 Binary files a/build/hl/test/test_ds9.h5 and /dev/null differ diff --git a/build/hl/test/test_dset_opt b/build/hl/test/test_dset_opt deleted file mode 100755 index d6df7a7..0000000 --- a/build/hl/test/test_dset_opt +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_dset_opt - temporary wrapper script for .libs/test_dset_opt -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_dset_opt program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_dset_opt.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_dset_opt:test_dset_opt:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_dset_opt:test_dset_opt:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_dset_opt:test_dset_opt:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_dset_opt' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_dset_opt.chkexe b/build/hl/test/test_dset_opt.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_dset_opt.chklog b/build/hl/test/test_dset_opt.chklog deleted file mode 100644 index ccc3548..0000000 --- a/build/hl/test/test_dset_opt.chklog +++ /dev/null @@ -1,20 +0,0 @@ -============================ - test_dset_opt Test Log -============================ -Testing basic functionality of H5DOwrite_chunk PASSED -Testing overwriting existing data with H5DOwrite_chunk PASSED -Testing skipping compression filter for H5DOwrite_chunk/H5DOread_chunk PASSED -Testing skipping compression filters but keep two other filters PASSED -Testing data conversion for H5DOwrite_chunk/H5DOread_chunk PASSED -Testing invalid parameters for H5DOwrite_chunk/H5DOread_chunk PASSED -Testing basic functionality of H5DOread_chunk (chunk cache disabled) PASSED -Testing basic functionality of H5DOread_chunk (flush chunk cache) PASSED -Testing basic functionality of H5DOread_chunk (does not flush chunk cache) PASSED -Testing basic functionality of H5DOread_chunk on unfiltered datasets PASSED -Testing H5DOread_chunk with unallocated chunks PASSED -All direct chunk read/write tests passed. -0.04user 0.02system 0:00.12elapsed 59%CPU (0avgtext+0avgdata 7128maxresident)k -0inputs+272outputs (0major+9280minor)pagefaults 0swaps - -Finished testing test_dset_opt -============================ diff --git a/build/hl/test/test_dset_opt.o b/build/hl/test/test_dset_opt.o deleted file mode 100644 index 61ffc91..0000000 Binary files a/build/hl/test/test_dset_opt.o and /dev/null differ diff --git a/build/hl/test/test_file_image b/build/hl/test/test_file_image deleted file mode 100755 index 08b71ce..0000000 --- a/build/hl/test/test_file_image +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_file_image - temporary wrapper script for .libs/test_file_image -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_file_image program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_file_image.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_file_image:test_file_image:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_file_image:test_file_image:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_file_image:test_file_image:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_file_image' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_file_image.chkexe b/build/hl/test/test_file_image.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_file_image.chklog b/build/hl/test/test_file_image.chklog deleted file mode 100644 index 878edab..0000000 --- a/build/hl/test/test_file_image.chklog +++ /dev/null @@ -1,15 +0,0 @@ -============================ - test_file_image Test Log -============================ -Testing get file images PASSED -Testing open file images and check image copies PASSED -Testing read file images PASSED -Testing write and extend file images PASSED -Testing read extended file images PASSED -Testing close file images PASSED -File image tests passed. -0.05user 0.03system 0:00.08elapsed 103%CPU (0avgtext+0avgdata 8940maxresident)k -0inputs+152outputs (0major+10147minor)pagefaults 0swaps - -Finished testing test_file_image -============================ diff --git a/build/hl/test/test_file_image.o b/build/hl/test/test_file_image.o deleted file mode 100644 index 4335b14..0000000 Binary files a/build/hl/test/test_file_image.o and /dev/null differ diff --git a/build/hl/test/test_image b/build/hl/test/test_image deleted file mode 100755 index aa39aa7..0000000 --- a/build/hl/test/test_image +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_image - temporary wrapper script for .libs/test_image -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_image program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_image.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_image:test_image:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_image:test_image:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_image:test_image:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_image' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_image.chkexe b/build/hl/test/test_image.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_image.chklog b/build/hl/test/test_image.chklog deleted file mode 100644 index 945577a..0000000 --- a/build/hl/test/test_image.chklog +++ /dev/null @@ -1,22 +0,0 @@ -============================ - test_image Test Log -============================ -Testing indexed image PASSED -Testing true color image PASSED -Testing pallete functions PASSED -Testing read ascii image data and generate images -Testing make indexed image PASSED -Testing attaching palettes PASSED -Testing make true color image with pixel interlace PASSED -Testing make true color image with plane interlace PASSED -Testing read and process data and make indexed images -Testing make indexed image from all the data PASSED -Testing make indexed image from land data PASSED -Testing make indexed image from sea data PASSED -Testing attaching palettes PASSED -All image tests passed. -0.21user 0.03system 0:00.27elapsed 88%CPU (0avgtext+0avgdata 7544maxresident)k -0inputs+4920outputs (0major+9872minor)pagefaults 0swaps - -Finished testing test_image -============================ diff --git a/build/hl/test/test_image.o b/build/hl/test/test_image.o deleted file mode 100644 index 4167c86..0000000 Binary files a/build/hl/test/test_image.o and /dev/null differ diff --git a/build/hl/test/test_image1.h5 b/build/hl/test/test_image1.h5 deleted file mode 100644 index c603e82..0000000 Binary files a/build/hl/test/test_image1.h5 and /dev/null differ diff --git a/build/hl/test/test_image2.h5 b/build/hl/test/test_image2.h5 deleted file mode 100644 index d92681b..0000000 Binary files a/build/hl/test/test_image2.h5 and /dev/null differ diff --git a/build/hl/test/test_image3.h5 b/build/hl/test/test_image3.h5 deleted file mode 100644 index f6715ed..0000000 Binary files a/build/hl/test/test_image3.h5 and /dev/null differ diff --git a/build/hl/test/test_lite b/build/hl/test/test_lite deleted file mode 100755 index 6fee167..0000000 --- a/build/hl/test/test_lite +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_lite - temporary wrapper script for .libs/test_lite -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_lite program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_lite.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_lite:test_lite:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_lite:test_lite:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_lite:test_lite:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_lite' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_lite.chkexe b/build/hl/test/test_lite.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_lite.chklog b/build/hl/test/test_lite.chklog deleted file mode 100644 index a943d0e..0000000 --- a/build/hl/test/test_lite.chklog +++ /dev/null @@ -1,101 +0,0 @@ -============================ - test_lite Test Log -============================ -Testing H5LTmake_dataset PASSED -Testing H5LTread_dataset PASSED -Testing H5LTmake_dataset_char PASSED -Testing H5LTmake_dataset_short PASSED -Testing H5LTmake_dataset_int PASSED -Testing H5LTmake_dataset_long PASSED -Testing H5LTmake_dataset_float PASSED -Testing H5LTmake_dataset_double PASSED -Testing H5LTmake_dataset_string PASSED -Testing H5LTset_attribute_string PASSED -Testing H5LTget_attribute_string PASSED -Testing H5LTset_attribute_char PASSED -Testing H5LTget_attribute_char PASSED -Testing H5LTset_attribute_short PASSED -Testing H5LTget_attribute_short PASSED -Testing H5LTset_attribute_int PASSED -Testing H5LTget_attribute_int PASSED -Testing H5LTset_attribute_long PASSED -Testing H5LTget_attribute_long PASSED -Testing H5LTset_attribute_uchar PASSED -Testing H5LTget_attribute_uchar PASSED -Testing H5LTset_attribute_ushort PASSED -Testing H5LTget_attribute_ushort PASSED -Testing H5LTset_attribute_uint PASSED -Testing H5LTget_attribute_uint PASSED -Testing H5LTset_attribute_ulong PASSED -Testing H5LTget_attribute_ulong PASSED -Testing H5LTset_attribute_float PASSED -Testing H5LTget_attribute_float PASSED -Testing H5LTset_attribute_double PASSED -Testing H5LTget_attribute_double PASSED -Testing H5LTget_attribute_ndims PASSED -Testing H5LTget_attribute_info PASSED -Testing H5LTset_attribute_string PASSED -Testing H5LTget_attribute_string PASSED -Testing H5LTset_attribute_char PASSED -Testing H5LTget_attribute_char PASSED -Testing H5LTset_attribute_short PASSED -Testing H5LTget_attribute_short PASSED -Testing H5LTset_attribute_int PASSED -Testing H5LTget_attribute_int PASSED -Testing H5LTset_attribute_long PASSED -Testing H5LTget_attribute_long PASSED -Testing H5LTset_attribute_uchar PASSED -Testing H5LTget_attribute_uchar PASSED -Testing H5LTset_attribute_ushort PASSED -Testing H5LTget_attribute_ushort PASSED -Testing H5LTset_attribute_uint PASSED -Testing H5LTget_attribute_uint PASSED -Testing H5LTset_attribute_ulong PASSED -Testing H5LTget_attribute_ulong PASSED -Testing H5LTset_attribute_float PASSED -Testing H5LTget_attribute_float PASSED -Testing H5LTset_attribute_double PASSED -Testing H5LTget_attribute_double PASSED -Testing H5LTget_attribute_ndims PASSED -Testing H5LTget_attribute_info PASSED -Testing H5LTset_attribute_string PASSED -Testing H5LTget_attribute_string PASSED -Testing H5LTset_attribute_char PASSED -Testing H5LTget_attribute_char PASSED -Testing H5LTset_attribute_short PASSED -Testing H5LTget_attribute_short PASSED -Testing H5LTset_attribute_int PASSED -Testing H5LTget_attribute_int PASSED -Testing H5LTset_attribute_long PASSED -Testing H5LTget_attribute_long PASSED -Testing H5LTset_attribute_uchar PASSED -Testing H5LTget_attribute_uchar PASSED -Testing H5LTset_attribute_ushort PASSED -Testing H5LTget_attribute_ushort PASSED -Testing H5LTset_attribute_uint PASSED -Testing H5LTget_attribute_uint PASSED -Testing H5LTset_attribute_ulong PASSED -Testing H5LTget_attribute_ulong PASSED -Testing H5LTset_attribute_float PASSED -Testing H5LTget_attribute_float PASSED -Testing H5LTset_attribute_double PASSED -Testing H5LTget_attribute_double PASSED -Testing H5LTget_attribute_ndims PASSED -Testing H5LTget_attribute_info PASSED -Testing H5LTpath_valid PASSED -Testing H5LTtext_to_dtype - text for integer types PASSED - text for floating-point types PASSED - text for string types PASSED - text for opaque types PASSED - text for enum types PASSED - text for variable types PASSED - text for array types PASSED - text for compound types PASSED - text for compound type of bug fix PASSED - text for complicated compound types PASSED -0.07user 0.04system 0:00.16elapsed 71%CPU (0avgtext+0avgdata 7128maxresident)k -0inputs+200outputs (0major+9312minor)pagefaults 0swaps - -Finished testing test_lite -============================ diff --git a/build/hl/test/test_lite.o b/build/hl/test/test_lite.o deleted file mode 100644 index 6adbb10..0000000 Binary files a/build/hl/test/test_lite.o and /dev/null differ diff --git a/build/hl/test/test_lite1.h5 b/build/hl/test/test_lite1.h5 deleted file mode 100644 index 57cf31d..0000000 Binary files a/build/hl/test/test_lite1.h5 and /dev/null differ diff --git a/build/hl/test/test_lite2.h5 b/build/hl/test/test_lite2.h5 deleted file mode 100644 index 3367f10..0000000 Binary files a/build/hl/test/test_lite2.h5 and /dev/null differ diff --git a/build/hl/test/test_lite3.h5 b/build/hl/test/test_lite3.h5 deleted file mode 100644 index 3f7b208..0000000 Binary files a/build/hl/test/test_lite3.h5 and /dev/null differ diff --git a/build/hl/test/test_lite4.h5 b/build/hl/test/test_lite4.h5 deleted file mode 100644 index 82075af..0000000 Binary files a/build/hl/test/test_lite4.h5 and /dev/null differ diff --git a/build/hl/test/test_packet b/build/hl/test/test_packet deleted file mode 100755 index 739ab4a..0000000 --- a/build/hl/test/test_packet +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_packet - temporary wrapper script for .libs/test_packet -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_packet program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_packet.o test_packet_vlen.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_packet:test_packet:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_packet:test_packet:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_packet:test_packet:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_packet' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_packet.chkexe b/build/hl/test/test_packet.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_packet.chklog b/build/hl/test/test_packet.chklog deleted file mode 100644 index 1217337..0000000 --- a/build/hl/test/test_packet.chklog +++ /dev/null @@ -1,32 +0,0 @@ -============================ - test_packet Test Log -============================ -Testing packet table -Testing H5PTcreate_fl and H5PTclose PASSED -Testing H5PTopen PASSED -Testing H5PTappend PASSED -Testing H5PTread_packets PASSED -Testing H5PTget_next PASSED -Testing large packet table PASSED -Testing reading/writing non-native packet table PASSED -Testing opaque data PASSED -Testing packet table compression PASSED -Testing error conditions PASSED -Testing packet table with various variable-length datatypes - with vlen of atomic PASSED - with vlen of compound datatypes PASSED - with compound datatype containing vlen datatype PASSED - with vlen datatype of vlen datatype PASSED -Testing H5PTis_varlen PASSED -Testing adding attributes to packet tables PASSED -Testing accessor functions PASSED -Testing packet table with various variable-length datatypes - H5PTcreate_fl - with vlen of atomic PASSED - with vlen of compound datatypes PASSED - with compound datatype containing vlen datatype PASSED - with vlen datatype of vlen datatype PASSED -0.20user 0.03system 0:00.23elapsed 100%CPU (0avgtext+0avgdata 7348maxresident)k -0inputs+1192outputs (0major+14077minor)pagefaults 0swaps - -Finished testing test_packet -============================ diff --git a/build/hl/test/test_packet.o b/build/hl/test/test_packet.o deleted file mode 100644 index 2aaca96..0000000 Binary files a/build/hl/test/test_packet.o and /dev/null differ diff --git a/build/hl/test/test_packet_compress.h5 b/build/hl/test/test_packet_compress.h5 deleted file mode 100644 index a080c19..0000000 Binary files a/build/hl/test/test_packet_compress.h5 and /dev/null differ diff --git a/build/hl/test/test_packet_table.h5 b/build/hl/test/test_packet_table.h5 deleted file mode 100644 index 4ff9a2e..0000000 Binary files a/build/hl/test/test_packet_table.h5 and /dev/null differ diff --git a/build/hl/test/test_packet_table_vlen.h5 b/build/hl/test/test_packet_table_vlen.h5 deleted file mode 100644 index 89a8536..0000000 Binary files a/build/hl/test/test_packet_table_vlen.h5 and /dev/null differ diff --git a/build/hl/test/test_packet_vlen.o b/build/hl/test/test_packet_vlen.o deleted file mode 100644 index 15ca42ae..0000000 Binary files a/build/hl/test/test_packet_vlen.o and /dev/null differ diff --git a/build/hl/test/test_table b/build/hl/test/test_table deleted file mode 100755 index aa30ff4..0000000 --- a/build/hl/test/test_table +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# test_table - temporary wrapper script for .libs/test_table -# Generated by libtool (GNU libtool) 2.4.6 -# -# The test_table program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/test; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file test_table.o ../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../test/.libs/libh5test.a ../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "test_table:test_table:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "test_table:test_table:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "test_table:test_table:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'test_table' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/test/test_table.chkexe b/build/hl/test/test_table.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/test/test_table.chklog b/build/hl/test/test_table.chklog deleted file mode 100644 index 3d4af26..0000000 --- a/build/hl/test/test_table.chklog +++ /dev/null @@ -1,48 +0,0 @@ -============================ - test_table Test Log -============================ -Testing table with file creation mode (read/write in native architecture): -Testing making table PASSED -Testing reading table PASSED -Testing writing records PASSED -Testing reading records PASSED -Testing appending records PASSED -Testing inserting records PASSED -Testing deleting records PASSED -Testing deleting records (differing memory layout) PASSED -Testing adding records PASSED -Testing combining tables PASSED -Testing writing fields by name PASSED -Testing reading fields by name PASSED -Testing writing fields by index PASSED -Testing reading fields by index PASSED -Testing inserting fields PASSED -Testing deleting fields PASSED -Testing getting table info PASSED -Testing getting field info PASSED -Testing table with file open mode (read big-endian data): -Testing reading table PASSED -Testing reading records PASSED -Testing reading fields by name PASSED -Testing reading fields by index PASSED -Testing getting table info PASSED -Testing getting field info PASSED -Testing table with file open mode (read little-endian data): -Testing reading table PASSED -Testing reading records PASSED -Testing reading fields by name PASSED -Testing reading fields by index PASSED -Testing getting table info PASSED -Testing getting field info PASSED -Testing table with file open mode (read Cray data): -Testing reading table PASSED -Testing reading records PASSED -Testing reading fields by name PASSED -Testing reading fields by index PASSED -Testing getting table info PASSED -Testing getting field info PASSED -0.11user 0.05system 0:00.19elapsed 88%CPU (0avgtext+0avgdata 7252maxresident)k -0inputs+272outputs (0major+25234minor)pagefaults 0swaps - -Finished testing test_table -============================ diff --git a/build/hl/test/test_table.h5 b/build/hl/test/test_table.h5 deleted file mode 100644 index adfc02f..0000000 Binary files a/build/hl/test/test_table.h5 and /dev/null differ diff --git a/build/hl/test/test_table.o b/build/hl/test/test_table.o deleted file mode 100644 index a1eb066..0000000 Binary files a/build/hl/test/test_table.o and /dev/null differ diff --git a/build/hl/test/testfl_packet_table_vlen.h5 b/build/hl/test/testfl_packet_table_vlen.h5 deleted file mode 100644 index eaabde6..0000000 Binary files a/build/hl/test/testfl_packet_table_vlen.h5 and /dev/null differ diff --git a/build/hl/tools/Makefile b/build/hl/tools/Makefile deleted file mode 100644 index fe01b89..0000000 --- a/build/hl/tools/Makefile +++ /dev/null @@ -1,1399 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/tools/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# Tools HDF5 Makefile(.in) -# -VPATH = ../../../hl/tools -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -TESTS = -subdir = hl/tools -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - check recheck distdir -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/bin/mkinstalldirs $(top_srcdir)/bin/test-driver \ - $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am COPYING -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/tools -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../hl/tools -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 - -# All subdirectories -SUBDIRS = gif2h5 - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .log .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/tools/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/tools/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-recursive -all-am: Makefile all-local -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) check-am install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ - check check-TESTS check-am clean clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \ - recheck tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/tools/gif2h5/.deps/decompress.Po b/build/hl/tools/gif2h5/.deps/decompress.Po deleted file mode 100644 index 8f5382f..0000000 --- a/build/hl/tools/gif2h5/.deps/decompress.Po +++ /dev/null @@ -1,204 +0,0 @@ -decompress.o: ../../../../hl/tools/gif2h5/decompress.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ - /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ - ../../../src/H5pubconf.h ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../../hl/tools/gif2h5/gif.h: - -/usr/include/string.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/gif2hdf.Po b/build/hl/tools/gif2h5/.deps/gif2hdf.Po deleted file mode 100644 index 25fefd9..0000000 --- a/build/hl/tools/gif2h5/.deps/gif2hdf.Po +++ /dev/null @@ -1,218 +0,0 @@ -gif2hdf.o: ../../../../hl/tools/gif2h5/gif2hdf.c \ - /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/xlocale.h /usr/include/stdio.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/libio.h \ - /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/types.h \ - /usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - ../../../../hl/tools/gif2h5/gif.h ../../../../src/hdf5.h \ - ../../../../src/H5public.h ../../../src/H5pubconf.h \ - ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h ../../../../tools/lib/h5tools.h \ - ../../../../tools/lib/h5tools_error.h ../../../../src/H5Epublic.h \ - ../../../../tools/lib/h5tools_str.h \ - ../../../../tools/lib/h5tools_utils.h - -/usr/include/stdc-predef.h: - -/usr/include/string.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/xlocale.h: - -/usr/include/stdio.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../../hl/tools/gif2h5/gif.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: - -../../../../tools/lib/h5tools.h: - -../../../../tools/lib/h5tools_error.h: - -../../../../src/H5Epublic.h: - -../../../../tools/lib/h5tools_str.h: - -../../../../tools/lib/h5tools_utils.h: diff --git a/build/hl/tools/gif2h5/.deps/gif2mem.Po b/build/hl/tools/gif2h5/.deps/gif2mem.Po deleted file mode 100644 index 4dd1c31..0000000 --- a/build/hl/tools/gif2h5/.deps/gif2mem.Po +++ /dev/null @@ -1,204 +0,0 @@ -gif2mem.o: ../../../../hl/tools/gif2h5/gif2mem.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../../../hl/tools/gif2h5/gif.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ - ../../../src/H5pubconf.h ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../../../hl/tools/gif2h5/gif.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/gifread.Po b/build/hl/tools/gif2h5/.deps/gifread.Po deleted file mode 100644 index c0b75ce..0000000 --- a/build/hl/tools/gif2h5/.deps/gifread.Po +++ /dev/null @@ -1,204 +0,0 @@ -gifread.o: ../../../../hl/tools/gif2h5/gifread.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ - /usr/include/string.h ../../../../src/hdf5.h ../../../../src/H5public.h \ - ../../../src/H5pubconf.h ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../../hl/tools/gif2h5/gif.h: - -/usr/include/string.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/h52gifgentst.Po b/build/hl/tools/gif2h5/.deps/h52gifgentst.Po deleted file mode 100644 index 5e69684..0000000 --- a/build/hl/tools/gif2h5/.deps/h52gifgentst.Po +++ /dev/null @@ -1,202 +0,0 @@ -h52gifgentst.o: ../../../../hl/tools/gif2h5/h52gifgentst.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h ../../../../src/hdf5.h \ - ../../../../src/H5public.h ../../../src/H5pubconf.h \ - ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: - -../../../../hl/src/H5IMpublic.h: diff --git a/build/hl/tools/gif2h5/.deps/hdf2gif.Po b/build/hl/tools/gif2h5/.deps/hdf2gif.Po deleted file mode 100644 index 748a43c..0000000 --- a/build/hl/tools/gif2h5/.deps/hdf2gif.Po +++ /dev/null @@ -1,222 +0,0 @@ -hdf2gif.o: ../../../../hl/tools/gif2h5/hdf2gif.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/assert.h ../../../../hl/tools/gif2h5/gif.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - ../../../../src/hdf5.h ../../../../src/H5public.h \ - ../../../src/H5pubconf.h ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h \ - ../../../../tools/lib/h5tools.h ../../../../tools/lib/h5tools_error.h \ - ../../../../src/H5Epublic.h ../../../../tools/lib/h5tools_str.h \ - ../../../../tools/lib/h5tools_utils.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/assert.h: - -../../../../hl/tools/gif2h5/gif.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: - -../../../../hl/src/H5IMpublic.h: - -../../../../tools/lib/h5tools.h: - -../../../../tools/lib/h5tools_error.h: - -../../../../src/H5Epublic.h: - -../../../../tools/lib/h5tools_str.h: - -../../../../tools/lib/h5tools_utils.h: diff --git a/build/hl/tools/gif2h5/.deps/hdfgifwr.Po b/build/hl/tools/gif2h5/.deps/hdfgifwr.Po deleted file mode 100644 index bd1358e..0000000 --- a/build/hl/tools/gif2h5/.deps/hdfgifwr.Po +++ /dev/null @@ -1,205 +0,0 @@ -hdfgifwr.o: ../../../../hl/tools/gif2h5/hdfgifwr.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - ../../../../hl/tools/gif2h5/gif.h ../../../../src/hdf5.h \ - ../../../../src/H5public.h ../../../src/H5pubconf.h \ - ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../../../hl/tools/gif2h5/gif.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: diff --git a/build/hl/tools/gif2h5/.deps/writehdf.Po b/build/hl/tools/gif2h5/.deps/writehdf.Po deleted file mode 100644 index a4f14dc..0000000 --- a/build/hl/tools/gif2h5/.deps/writehdf.Po +++ /dev/null @@ -1,207 +0,0 @@ -writehdf.o: ../../../../hl/tools/gif2h5/writehdf.c \ - /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/xlocale.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h ../../../../hl/tools/gif2h5/gif.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../../../src/hdf5.h ../../../../src/H5public.h \ - ../../../src/H5pubconf.h ../../../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../../../src/H5api_adpt.h ../../../../src/H5Apublic.h \ - ../../../../src/H5Ipublic.h ../../../../src/H5Opublic.h \ - ../../../../src/H5Lpublic.h ../../../../src/H5Tpublic.h \ - ../../../../src/H5ACpublic.h ../../../../src/H5Cpublic.h \ - ../../../../src/H5Dpublic.h ../../../../src/H5Epublic.h \ - ../../../../src/H5Epubgen.h ../../../../src/H5Fpublic.h \ - ../../../../src/H5FDpublic.h ../../../../src/H5Gpublic.h \ - ../../../../src/H5MMpublic.h ../../../../src/H5Ppublic.h \ - ../../../../src/H5Zpublic.h ../../../../src/H5PLpublic.h \ - ../../../../src/H5Rpublic.h ../../../../src/H5Spublic.h \ - ../../../../src/H5FDcore.h ../../../../src/H5FDfamily.h \ - ../../../../src/H5FDlog.h ../../../../src/H5FDmpi.h \ - ../../../../src/H5FDmpio.h ../../../../src/H5FDmulti.h \ - ../../../../src/H5FDsec2.h ../../../../src/H5FDstdio.h \ - ../../../../src/H5FDdirect.h ../../../../hl/src/H5IMpublic.h - -/usr/include/stdc-predef.h: - -/usr/include/string.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/xlocale.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -../../../../hl/tools/gif2h5/gif.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../../../src/hdf5.h: - -../../../../src/H5public.h: - -../../../src/H5pubconf.h: - -../../../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../../../src/H5api_adpt.h: - -../../../../src/H5Apublic.h: - -../../../../src/H5Ipublic.h: - -../../../../src/H5Opublic.h: - -../../../../src/H5Lpublic.h: - -../../../../src/H5Tpublic.h: - -../../../../src/H5ACpublic.h: - -../../../../src/H5Cpublic.h: - -../../../../src/H5Dpublic.h: - -../../../../src/H5Epublic.h: - -../../../../src/H5Epubgen.h: - -../../../../src/H5Fpublic.h: - -../../../../src/H5FDpublic.h: - -../../../../src/H5Gpublic.h: - -../../../../src/H5MMpublic.h: - -../../../../src/H5Ppublic.h: - -../../../../src/H5Zpublic.h: - -../../../../src/H5PLpublic.h: - -../../../../src/H5Rpublic.h: - -../../../../src/H5Spublic.h: - -../../../../src/H5FDcore.h: - -../../../../src/H5FDfamily.h: - -../../../../src/H5FDlog.h: - -../../../../src/H5FDmpi.h: - -../../../../src/H5FDmpio.h: - -../../../../src/H5FDmulti.h: - -../../../../src/H5FDsec2.h: - -../../../../src/H5FDstdio.h: - -../../../../src/H5FDdirect.h: - -../../../../hl/src/H5IMpublic.h: diff --git a/build/hl/tools/gif2h5/.libs/gif2h5 b/build/hl/tools/gif2h5/.libs/gif2h5 deleted file mode 100755 index 5048eba..0000000 Binary files a/build/hl/tools/gif2h5/.libs/gif2h5 and /dev/null differ diff --git a/build/hl/tools/gif2h5/.libs/h52gif b/build/hl/tools/gif2h5/.libs/h52gif deleted file mode 100755 index 6492e62..0000000 Binary files a/build/hl/tools/gif2h5/.libs/h52gif and /dev/null differ diff --git a/build/hl/tools/gif2h5/.libs/h52gifgentst b/build/hl/tools/gif2h5/.libs/h52gifgentst deleted file mode 100755 index 39e49c4..0000000 Binary files a/build/hl/tools/gif2h5/.libs/h52gifgentst and /dev/null differ diff --git a/build/hl/tools/gif2h5/.libs/lt-gif2h5 b/build/hl/tools/gif2h5/.libs/lt-gif2h5 deleted file mode 100755 index e13c0a9..0000000 Binary files a/build/hl/tools/gif2h5/.libs/lt-gif2h5 and /dev/null differ diff --git a/build/hl/tools/gif2h5/.libs/lt-h52gif b/build/hl/tools/gif2h5/.libs/lt-h52gif deleted file mode 100755 index 90918be..0000000 Binary files a/build/hl/tools/gif2h5/.libs/lt-h52gif and /dev/null differ diff --git a/build/hl/tools/gif2h5/Makefile b/build/hl/tools/gif2h5/Makefile deleted file mode 100644 index ace6749..0000000 --- a/build/hl/tools/gif2h5/Makefile +++ /dev/null @@ -1,1469 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# hl/tools/gif2h5/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF5 Library Makefile(.in) -# - -VPATH = ../../../../hl/tools/gif2h5 -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/hdf5 -pkgincludedir = $(includedir)/hdf5 -pkglibdir = $(libdir)/hdf5 -pkglibexecdir = $(libexecdir)/hdf5 -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -bin_PROGRAMS = gif2h5$(EXEEXT) h52gif$(EXEEXT) -noinst_PROGRAMS = h52gifgentst$(EXEEXT) -TESTS = $(TEST_SCRIPT) -subdir = hl/tools/gif2h5 -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal_cxx.m4 \ - $(top_srcdir)/m4/aclocal_fc.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/H5config.h -CONFIG_CLEAN_FILES = h52giftest.sh -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) -am_gif2h5_OBJECTS = gif2hdf.$(OBJEXT) gif2mem.$(OBJEXT) \ - decompress.$(OBJEXT) gifread.$(OBJEXT) writehdf.$(OBJEXT) -gif2h5_OBJECTS = $(am_gif2h5_OBJECTS) -gif2h5_LDADD = $(LDADD) -gif2h5_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -gif2h5_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(gif2h5_LDFLAGS) $(LDFLAGS) -o $@ -am_h52gif_OBJECTS = hdf2gif.$(OBJEXT) hdfgifwr.$(OBJEXT) -h52gif_OBJECTS = $(am_h52gif_OBJECTS) -h52gif_LDADD = $(LDADD) -h52gif_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) -h52gif_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(h52gif_LDFLAGS) $(LDFLAGS) -o $@ -am_h52gifgentst_OBJECTS = h52gifgentst.$(OBJEXT) -h52gifgentst_OBJECTS = $(am_h52gifgentst_OBJECTS) -h52gifgentst_LDADD = $(LDADD) -h52gifgentst_DEPENDENCIES = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/bin/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(gif2h5_SOURCES) $(h52gif_SOURCES) $(h52gifgentst_SOURCES) -DIST_SOURCES = $(gif2h5_SOURCES) $(h52gif_SOURCES) \ - $(h52gifgentst_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__tty_colors_dummy = \ - mgn= red= grn= lgn= blu= brg= std=; \ - am__color_tests=no -am__tty_colors = { \ - $(am__tty_colors_dummy); \ - if test "X$(AM_COLOR_TESTS)" = Xno; then \ - am__color_tests=no; \ - elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ - am__color_tests=yes; \ - elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ - am__color_tests=yes; \ - fi; \ - if test $$am__color_tests = yes; then \ - red=''; \ - grn=''; \ - lgn=''; \ - blu=''; \ - mgn=''; \ - brg=''; \ - std=''; \ - fi; \ -} -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__recheck_rx = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* -# A command that, given a newline-separated list of test names on the -# standard input, print the name of the tests that are to be re-run -# upon "make recheck". -am__list_recheck_tests = $(AWK) '{ \ - recheck = 1; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - { \ - if ((getline line2 < ($$0 ".log")) < 0) \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ - { \ - recheck = 0; \ - break; \ - } \ - else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ - { \ - break; \ - } \ - }; \ - if (recheck) \ - print $$0; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# A command that, given a newline-separated list of test names on the -# standard input, create the global log from their .trs and .log files. -am__create_global_log = $(AWK) ' \ -function fatal(msg) \ -{ \ - print "fatal: making $@: " msg | "cat >&2"; \ - exit 1; \ -} \ -function rst_section(header) \ -{ \ - print header; \ - len = length(header); \ - for (i = 1; i <= len; i = i + 1) \ - printf "="; \ - printf "\n\n"; \ -} \ -{ \ - copy_in_global_log = 1; \ - global_test_result = "RUN"; \ - while ((rc = (getline line < ($$0 ".trs"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".trs"); \ - if (line ~ /$(am__global_test_result_rx)/) \ - { \ - sub("$(am__global_test_result_rx)", "", line); \ - sub("[ ]*$$", "", line); \ - global_test_result = line; \ - } \ - else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ - copy_in_global_log = 0; \ - }; \ - if (copy_in_global_log) \ - { \ - rst_section(global_test_result ": " $$0); \ - while ((rc = (getline line < ($$0 ".log"))) != 0) \ - { \ - if (rc < 0) \ - fatal("failed to read from " $$0 ".log"); \ - print line; \ - }; \ - printf "\n"; \ - }; \ - close ($$0 ".trs"); \ - close ($$0 ".log"); \ -}' -# Restructured Text title. -am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } -# Solaris 10 'make', and several other traditional 'make' implementations, -# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it -# by disabling -e (using the XSI extension "set +e") if it's set. -am__sh_e_setup = case $$- in *e*) set +e;; esac -# Default flags passed to test drivers. -am__common_driver_flags = \ - --color-tests "$$am__color_tests" \ - --enable-hard-errors "$$am__enable_hard_errors" \ - --expect-failure "$$am__expect_failure" -# To be inserted before the command running the test. Creates the -# directory for the log if needed. Stores in $dir the directory -# containing $f, in $tst the test, in $log the log. Executes the -# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and -# passes TESTS_ENVIRONMENT. Set up options for the wrapper that -# will run the test scripts (or their associated LOG_COMPILER, if -# thy have one). -am__check_pre = \ -$(am__sh_e_setup); \ -$(am__vpath_adj_setup) $(am__vpath_adj) \ -$(am__tty_colors); \ -srcdir=$(srcdir); export srcdir; \ -case "$@" in \ - */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ - *) am__odir=.;; \ -esac; \ -test "x$$am__odir" = x"." || test -d "$$am__odir" \ - || $(MKDIR_P) "$$am__odir" || exit $$?; \ -if test -f "./$$f"; then dir=./; \ -elif test -f "$$f"; then dir=; \ -else dir="$(srcdir)/"; fi; \ -tst=$$dir$$f; log='$@'; \ -if test -n '$(DISABLE_HARD_ERRORS)'; then \ - am__enable_hard_errors=no; \ -else \ - am__enable_hard_errors=yes; \ -fi; \ -case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ - am__expect_failure=yes;; \ - *) \ - am__expect_failure=no;; \ -esac; \ -$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) -# A shell command to get the names of the tests scripts with any registered -# extension removed (i.e., equivalently, the names of the test logs, with -# the '.log' extension removed). The result is saved in the shell variable -# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, -# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", -# since that might cause problem with VPATH rewrites for suffix-less tests. -# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. -am__set_TESTS_bases = \ - bases='$(TEST_LOGS)'; \ - bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ - bases=`echo $$bases` -RECHECK_LOGS = $(TEST_LOGS) -AM_RECURSIVE_TARGETS = check recheck -TEST_SUITE_LOG = test-suite.log -am__test_logs1 = $(TESTS:=.log) -am__test_logs2 = $(am__test_logs1:.log=.log) -TEST_LOGS = $(am__test_logs2:.sh.log=.log) -SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/bin/test-driver -SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS) -am__set_b = \ - case '$@' in \ - */*) \ - case '$*' in \ - */*) b='$*';; \ - *) b=`echo '$@' | sed 's/\.log$$//'`; \ - esac;; \ - *) \ - b='$*';; \ - esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/h52giftest.sh.in \ - $(top_srcdir)/bin/depcomp $(top_srcdir)/bin/mkinstalldirs \ - $(top_srcdir)/bin/test-driver $(top_srcdir)/config/commence.am \ - $(top_srcdir)/config/conclude.am -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing aclocal-1.15 -ADD_PARALLEL_FILES = no -AMTAR = $${TAR-tar} - -# H5_CFLAGS holds flags that should be used when building hdf5, -# but which should not be exported to h5cc for building other programs. -# AM_CFLAGS is an automake construct which should be used by Makefiles -# instead of CFLAGS, as CFLAGS is reserved solely for the user to define. -# This applies to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS as well. -AM_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g - -# Include src and tools/lib directories -AM_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -I$(top_srcdir)/src \ - -I$(top_srcdir)/tools/lib -I$(top_srcdir)/hl/src -AM_CXXFLAGS = -AM_DEFAULT_VERBOSITY = 0 -AM_FCFLAGS = -AM_LDFLAGS = -AM_MAKEFLAGS = -AR = ar -AUTOCONF = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoconf -AUTOHEADER = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing autoheader -AUTOMAKE = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing automake-1.15 -AWK = gawk -BYTESEX = little-endian -CC = gcc -CCDEPMODE = depmode=gcc3 -CC_VERSION = /usr/bin/gcc ( gcc (GCC) 4.8.5 20150623 ) -CFLAGS = -CLEARFILEBUF = yes -CODESTACK = no -CONFIG_DATE = Mon May 14 21:05:08 CDT 2018 -CONFIG_MODE = development -CONFIG_USER = lrknox@jelly -CPP = gcc -E -CPPFLAGS = -CXX = no -CXXCPP = g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -CXX_VERSION = no ( g++ (GCC) 4.8.5 20150623 ) -CYGPATH_W = echo -DEBUG_PKG = d,e,f,g,hg,i,mm,o,p,s,t,v,z -DEFAULT_API_VERSION = v18 -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DEPRECATED_SYMBOLS = yes -DIRECT_VFD = no -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -EXTERNAL_FILTERS = deflate(zlib) - -# Make sure that these variables are exported to the Makefiles -F9XMODEXT = -F9XMODFLAG = -F9XSUFFIXFLAG = -FC = no -FC2003 = -FCFLAGS = -FCFLAGS_f90 = -FCLIBS = -FC_VERSION = no ( GNU Fortran (GCC) 4.8.5 20150623 ) -FGREP = /usr/bin/grep -F -FSEARCH_DIRS = -GREP = /usr/bin/grep -H5_CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -H5_CPPFLAGS = -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L -UNDEBUG -DH5D_DEBUG -DH5E_DEBUG -DH5F_DEBUG -DH5G_DEBUG -DH5HG_DEBUG -DH5I_DEBUG -DH5MM_DEBUG -DH5O_DEBUG -DH5P_DEBUG -DH5S_DEBUG -DH5T_DEBUG -DH5V_DEBUG -DH5Z_DEBUG -DH5_DEBUG_API -H5_CXXFLAGS = -H5_FCFLAGS = -H5_FORTRAN_SHARED = no -H5_LDFLAGS = -H5_VERSION = 1.8.21-pre1 -HADDR_T = -HAVE_DMALLOC = no -HAVE_FORTRAN_2003 = -HAVE_PTHREAD = -HDF5_HL = yes -HDF5_INTERFACES = -HDF_CXX = no -HDF_FORTRAN = no -HDF_FORTRAN2003 = no -HID_T = -HL = hl -HL_FOR = -HSIZE_T = -HSSIZE_T = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INSTRUMENT = yes -INSTRUMENT_LIBRARY = yes -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -LIBOBJS = -LIBS = -lz -ldl -lm -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LL_PATH = -LN_S = ln -s -LTLIBOBJS = -LT_STATIC_EXEC = -LT_SYS_LIBRARY_PATH = -MAINT = # -MAKEINFO = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -MPE = no -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJECT_NAMELEN_DEFAULT_F = -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = hdf5 -PACKAGE_BUGREPORT = help@hdfgroup.org -PACKAGE_NAME = HDF5 -PACKAGE_STRING = HDF5 1.8.21-pre1 -PACKAGE_TARNAME = hdf5 -PACKAGE_URL = -PACKAGE_VERSION = 1.8.21-pre1 -PARALLEL = no -PATH_SEPARATOR = : -PERL = perl -RANLIB = ranlib -ROOT = /mnt/wrk/lrknox/hdf5_hdf5/build -RUNPARALLEL = -RUNSERIAL = -R_INTEGER = -R_LARGE = -SEARCH = $(srcdir) $(top_builddir)/src $(top_srcdir)/src -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -SIZE_T = -STATIC_EXEC = no -STATIC_SHARED = static, shared -STRICT_FORMAT_CHECKS = yes -STRIP = strip -TESTPARALLEL = -THREADSAFE = no -TIME = time -TR = /usr/bin/tr -TRACE_API = yes -UNAME_CYGWIN = no -UNAME_INFO = Linux jelly 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux -USE_FILTER_DEFLATE = yes -USE_FILTER_SZIP = no -USINGMEMCHECKER = no -VERSION = 1.8.21-pre1 -WORDS_BIGENDIAN = no -abs_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5 -abs_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/../hl/tools/gif2h5 -abs_top_builddir = /mnt/wrk/lrknox/hdf5_hdf5/build -abs_top_srcdir = /mnt/wrk/lrknox/hdf5_hdf5/build/.. -ac_ct_AR = -ac_ct_CC = gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -ac_ct_FC = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share - -# Install directories that automake doesn't know about -docdir = $(exec_prefix)/doc -dvidir = ${docdir} -enable_shared = yes -enable_static = yes -exec_prefix = ${prefix} -fortran_linux_linker_option = -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /mnt/wrk/lrknox/hdf5_hdf5/bin/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /mnt/wrk/lrknox/hdf5_hdf5/build/hdf5 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = ../../../../hl/tools/gif2h5 -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../../../ -top_builddir = ../../.. -top_srcdir = ../../../.. - -# Shell commands used in Makefiles -RM = rm -f -CP = cp - -# Some machines need a command to run executables; this is that command -# so that our tests will run. -# We use RUNEXEC instead of RUNSERIAL directly because it may be that -# some tests need to be run with a different command. Older versions -# of the makefiles used the command -# $(LIBTOOL) --mode=execute -# in some directories, for instance. -RUNEXEC = $(RUNSERIAL) - -# Libraries to link to while building -LIBHDF5 = $(top_builddir)/src/libhdf5.la -LIBH5TEST = $(top_builddir)/test/libh5test.la -LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la -LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la -LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la -LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la -LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la -LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la -LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la - -# Note that in svn revision 19400 the '/' after DESTDIR in H5* variables below -# has been removed. According to the official description of DESTDIR by Gnu at -# http://www.gnu.org/prep/standards/html_node/DESTDIR.html, DESTDIR is -# prepended to the normal and complete install path that it precedes for the -# purpose of installing in a temporary directory which is useful for building -# rpms and other packages. The '/' after ${DESTDIR} will be followed by another -# '/' at the beginning of the normal install path. When DESTDIR is empty the -# path then begins with '//', which is incorrect and causes problems at least for -# Cygwin. - -# Scripts used to build examples -# If only shared libraries have been installed, have h5cc build examples with -# shared libraries instead of static libraries -H5CC = ${DESTDIR}$(bindir)/h5cc -H5CC_PP = ${DESTDIR}$(bindir)/h5pcc -H5FC = ${DESTDIR}$(bindir)/h5fc -H5FC_PP = ${DESTDIR}$(bindir)/h5pfc -H5CPP = ${DESTDIR}$(bindir)/h5c++ -ACLOCAL_AMFLAGS = "-I m4" - -# The trace script; this is used on source files from the C library to -# insert tracing macros. -TRACE = perl $(top_srcdir)/bin/trace - -# .chkexe files are used to mark tests that have run successfully. -# .chklog files are output from those tests. -# *.clog and *.clog2 are from the MPE option. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2 *.h5 *.gif - -# These are our main targets, the tools -TEST_SCRIPT = h52giftest.sh -check_SCRIPTS = $(TEST_SCRIPT) - -# Add h52gif and gif2h5 specific linker flags here -h52gif_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) -gif2h5_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) -gif2h5_SOURCES = gif2hdf.c gif2mem.c decompress.c gifread.c writehdf.c -h52gif_SOURCES = hdf2gif.c hdfgifwr.c -h52gifgentst_SOURCES = h52gifgentst.c - -# Programs all depend on the hdf5 library, the tools library, and the HL -# library. -LDADD = $(LIBH5_HL) $(LIBH5TOOLS) $(LIBHDF5) - -# Automake needs to be taught how to build lib, dyn, progs, and tests targets. -# These will be filled in automatically for the most part (e.g., -# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and -# EXTRA_TEST variables are supplied to allow the user to force targets to -# be built at certain times. -LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \ - $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB) - -PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \ - $(EXTRA_PROG) - -chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST) -TEST_EXTENSIONS = .sh -SH_LOG_COMPILER = $(SHELL) -AM_SH_LOG_FLAGS = -REALTIMEOUTPUT = $(realtimeOutput) -TEST_PROG_CHKEXE = $(TEST_PROG:=.chkexe_) -TEST_PROG_PARA_CHKEXE = $(TEST_PROG_PARA:=.chkexe_) -TEST_SCRIPT_CHKSH = $(TEST_SCRIPT:=.chkexe_) -TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign hl/tools/gif2h5/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign hl/tools/gif2h5/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; -$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__empty): - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -h52giftest.sh: $(top_builddir)/config.status $(srcdir)/h52giftest.sh.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -clean-noinstPROGRAMS: - @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -gif2h5$(EXEEXT): $(gif2h5_OBJECTS) $(gif2h5_DEPENDENCIES) $(EXTRA_gif2h5_DEPENDENCIES) - @rm -f gif2h5$(EXEEXT) - $(AM_V_CCLD)$(gif2h5_LINK) $(gif2h5_OBJECTS) $(gif2h5_LDADD) $(LIBS) - -h52gif$(EXEEXT): $(h52gif_OBJECTS) $(h52gif_DEPENDENCIES) $(EXTRA_h52gif_DEPENDENCIES) - @rm -f h52gif$(EXEEXT) - $(AM_V_CCLD)$(h52gif_LINK) $(h52gif_OBJECTS) $(h52gif_LDADD) $(LIBS) - -h52gifgentst$(EXEEXT): $(h52gifgentst_OBJECTS) $(h52gifgentst_DEPENDENCIES) $(EXTRA_h52gifgentst_DEPENDENCIES) - @rm -f h52gifgentst$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(h52gifgentst_OBJECTS) $(h52gifgentst_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/decompress.Po -include ./$(DEPDIR)/gif2hdf.Po -include ./$(DEPDIR)/gif2mem.Po -include ./$(DEPDIR)/gifread.Po -include ./$(DEPDIR)/h52gifgentst.Po -include ./$(DEPDIR)/hdf2gif.Po -include ./$(DEPDIR)/hdfgifwr.Po -include ./$(DEPDIR)/writehdf.Po - -.c.o: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -# Recover from deleted '.trs' file; this should ensure that -# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create -# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells -# to avoid problems with "make -n". -.log.trs: - rm -f $< $@ - $(MAKE) $(AM_MAKEFLAGS) $< - -# Leading 'am--fnord' is there to ensure the list of targets does not -# expand to empty, as could happen e.g. with make check TESTS=''. -am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) -am--force-recheck: - @: - -$(TEST_SUITE_LOG): $(TEST_LOGS) - @$(am__set_TESTS_bases); \ - am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ - redo_bases=`for i in $$bases; do \ - am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ - done`; \ - if test -n "$$redo_bases"; then \ - redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ - redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ - if $(am__make_dryrun); then :; else \ - rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ - fi; \ - fi; \ - if test -n "$$am__remaking_logs"; then \ - echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ - "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ - am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ - fi; \ - if $(am__make_dryrun); then :; else \ - st=0; \ - errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ - for i in $$redo_bases; do \ - test -f $$i.trs && test -r $$i.trs \ - || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ - test -f $$i.log && test -r $$i.log \ - || { echo "$$errmsg $$i.log" >&2; st=1; }; \ - done; \ - test $$st -eq 0 || exit 1; \ - fi - @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ - ws='[ ]'; \ - results=`for b in $$bases; do echo $$b.trs; done`; \ - test -n "$$results" || results=/dev/null; \ - all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ - pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ - fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ - skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ - xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ - xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ - error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ - if test `expr $$fail + $$xpass + $$error` -eq 0; then \ - success=true; \ - else \ - success=false; \ - fi; \ - br='==================='; br=$$br$$br$$br$$br; \ - result_count () \ - { \ - if test x"$$1" = x"--maybe-color"; then \ - maybe_colorize=yes; \ - elif test x"$$1" = x"--no-color"; then \ - maybe_colorize=no; \ - else \ - echo "$@: invalid 'result_count' usage" >&2; exit 4; \ - fi; \ - shift; \ - desc=$$1 count=$$2; \ - if test $$maybe_colorize = yes && test $$count -gt 0; then \ - color_start=$$3 color_end=$$std; \ - else \ - color_start= color_end=; \ - fi; \ - echo "$${color_start}# $$desc $$count$${color_end}"; \ - }; \ - create_testsuite_report () \ - { \ - result_count $$1 "TOTAL:" $$all "$$brg"; \ - result_count $$1 "PASS: " $$pass "$$grn"; \ - result_count $$1 "SKIP: " $$skip "$$blu"; \ - result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ - result_count $$1 "FAIL: " $$fail "$$red"; \ - result_count $$1 "XPASS:" $$xpass "$$red"; \ - result_count $$1 "ERROR:" $$error "$$mgn"; \ - }; \ - { \ - echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ - $(am__rst_title); \ - create_testsuite_report --no-color; \ - echo; \ - echo ".. contents:: :depth: 2"; \ - echo; \ - for b in $$bases; do echo $$b; done \ - | $(am__create_global_log); \ - } >$(TEST_SUITE_LOG).tmp || exit 1; \ - mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ - if $$success; then \ - col="$$grn"; \ - else \ - col="$$red"; \ - test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ - fi; \ - echo "$${col}$$br$${std}"; \ - echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ - echo "$${col}$$br$${std}"; \ - create_testsuite_report --maybe-color; \ - echo "$$col$$br$$std"; \ - if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ - if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ - fi; \ - echo "$$col$$br$$std"; \ - fi; \ - $$success || exit 1 -recheck: all $(check_SCRIPTS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - @set +e; $(am__set_TESTS_bases); \ - bases=`for i in $$bases; do echo $$i; done \ - | $(am__list_recheck_tests)` || exit 1; \ - log_list=`for i in $$bases; do echo $$i.log; done`; \ - log_list=`echo $$log_list`; \ - $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ - am__force_recheck=am--force-recheck \ - TEST_LOGS="$$log_list"; \ - exit $$? -.sh.log: - @p='$<'; \ - $(am__set_b); \ - $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) -#.sh$(EXEEXT).log: -# @p='$<'; \ -# $(am__set_b); \ -# $(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \ -# --log-file $$b.log --trs-file $$b.trs \ -# $(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \ -# "$$tst" $(AM_TESTS_FD_REDIRECT) - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) all-local -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool \ - clean-noinstPROGRAMS mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-TESTS \ - check-am clean clean-binPROGRAMS clean-generic clean-libtool \ - clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am \ - uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - -# List all build rules defined by HDF5 Makefiles as "PHONY" targets here. -# This tells the Makefiles that these targets are not files to be built but -# commands that should be executed even if a file with the same name already -# exists. -.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ - build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test help - -help: - @$(top_srcdir)/bin/makehelp -# lib/progs/tests targets recurse into subdirectories. build-* targets -# build files in this directory. -build-lib: $(LIB) -build-progs: $(LIB) $(PROGS) -build-tests: $(LIB) $(PROGS) $(chk_TESTS) - -# General rule for recursive building targets. -# BUILT_SOURCES contain targets that need to be built before anything else -# in the directory (e.g., for Fortran type detection) -lib progs tests check-s check-p :: $(BUILT_SOURCES) - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# General rule for recursive cleaning targets. Like the rule above, -# but doesn't require building BUILT_SOURCES. -check-clean :: - @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; - @for d in X $(SUBDIRS); do \ - if test $$d != X && test $$d != .; then \ - (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ - fi; \ - done - -# Tell Automake to build tests when the user types `make all' (this is -# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since -# Automake won't build them automatically, either. -all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(chk_TESTS) - -# make install-doc doesn't do anything outside of doc directory, but -# Makefiles should recognize it. -# UPDATE: docs no longer reside in this build tree, so this target -# is depreciated. -install-doc uninstall-doc: - @echo "Nothing to be done." - -# clean up files generated by tests so they can be re-run. -build-check-clean: - $(RM) -rf $(CHECK_CLEANFILES) - -# run check-clean whenever mostlyclean is run -mostlyclean-local: build-check-clean - -# check-install is just a synonym for installcheck -check-install: installcheck - -# Run each test in order, passing $(TEST_FLAGS) to the program. -# Since tests are done in a shell loop, "make -i" does apply inside it. -# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop. -# The timestamps give a rough idea how much time the tests use. -# -# Note that targets in chk_TESTS (defined above) will be built when the user -# types 'make tests' or 'make check', but only programs in TEST_PROG, -# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. -check-TESTS: test - -test _test: - @$(MAKE) build-check-s - @$(MAKE) build-check-p - -# Actual execution of check-s. -build-check-s: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @$(MAKE) $(AM_MAKEFLAGS) _exec_check-s - @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ - echo "===Serial tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -_exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - -# The dummy.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \ - tname=$(@:.chkexe_=)$(EXEEXT);\ - log=$(@:.chkexe_=.chklog); \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ - echo "No need to test $${tname} again."; \ - else \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee $${log}; \ - else \ - echo "============================" > $${log}; \ - fi; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "Fortran API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log};\ - else \ - echo "C++ API: $(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log};\ - fi; \ - else \ - echo "Testing $(HDF5_DRIVER) $${tname} $(TEST_FLAGS)"; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" | tee -a $${log}; \ - else \ - echo "$(HDF5_DRIVER) $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "============================" | tee -a $${log}; \ - else \ - echo "============================" >> $${log}; \ - fi; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) | tee -a $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - else \ - srcdir="$(srcdir)" \ - $(TIME) $(RUNEXEC) ./$${tname} $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $(@:.chkexe_=.chkexe) || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - fi; \ - echo "" >> $${log}; \ - if test -n "$(REALTIMEOUTPUT)"; then \ - echo "Finished testing $${tname} $(TEST_FLAGS)" | tee -a $${log}; \ - echo "============================" | tee -a $${log}; \ - else \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - fi; \ - if test -z "$(REALTIMEOUTPUT)"; then \ - cat $${log}; \ - fi; \ - fi; \ - fi - -# The dummysh.chkexe here prevents the target from being -# empty if there are no tests in the current directory. -# $${log} is the log file. -# $${tname} is the name of test. -$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: - @if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummysh.chkexe_"; then \ - cmd=$(@:.chkexe_=);\ - tname=`basename $$cmd`;\ - chkname=`basename $(@:.chkexe_=.chkexe)`;\ - log=`basename $(@:.chkexe_=.chklog)`; \ - echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ - echo "No need to test $${tname} again."; \ - else \ - echo "============================" > $${log}; \ - if test "X$(FORTRAN_API)" = "Xyes"; then \ - echo "Fortran API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "Fortran API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - elif test "X$(CXX_API)" = "Xyes"; then \ - echo "C++ API: Testing $${tname} $(TEST_FLAGS)"; \ - echo "C++ API: $${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - else \ - echo "Testing $${tname} $(TEST_FLAGS)"; \ - echo "$${tname} $(TEST_FLAGS) Test Log" >> $${log}; \ - fi; \ - echo "============================" >> $${log}; \ - RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir="$(srcdir)" \ - $(TIME) $(SHELL) $$cmd $(TEST_FLAGS) >> $${log} 2>&1 \ - && touch $${chkname} || \ - (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ - (cat $${log} && false) || exit 1; \ - echo "" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ - echo "============================" >> $${log}; \ - echo "Finished testing $${tname} $(TEST_FLAGS)"; \ - cat $${log}; \ - fi; \ - echo "============================"; \ - fi - -# Actual execution of check-p. -build-check-p: $(LIB) $(PROGS) $(chk_TESTS) - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \ - fi - @if test -n "$(TEST_PROG_PARA)"; then \ - echo "**** Hint ****"; \ - echo "Parallel test files reside in the current directory" \ - "by default."; \ - echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \ - echo " HDF5_PARAPREFIX=/PFS/user/me"; \ - echo " export HDF5_PARAPREFIX"; \ - echo " make check"; \ - echo "**** end of Hint ****"; \ - fi - @for test in $(TEST_PROG_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNEXEC="$(RUNPARALLEL)" || exit 1; \ - fi; \ - done - @for test in $(TEST_SCRIPT_PARA) dummy; do \ - if test $$test != dummy; then \ - $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ || exit 1; \ - fi; \ - done - @if test -n "$(TEST_PROG_PARA)$(TEST_SCRIPT_PARA)"; then \ - echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ - fi - -# Run test with different Virtual File Driver -check-vfd: $(LIB) $(PROGS) $(chk_TESTS) - @for vfd in $(VFD_LIST) dummy; do \ - if test $$vfd != dummy; then \ - echo "============================"; \ - echo "Testing Virtual File Driver $$vfd"; \ - echo "============================"; \ - $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \ - HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \ - fi; \ - done - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/build/hl/tools/gif2h5/decompress.o b/build/hl/tools/gif2h5/decompress.o deleted file mode 100644 index 13dfaee..0000000 Binary files a/build/hl/tools/gif2h5/decompress.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/gif2h5 b/build/hl/tools/gif2h5/gif2h5 deleted file mode 100755 index 2a5a927..0000000 --- a/build/hl/tools/gif2h5/gif2h5 +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# gif2h5 - temporary wrapper script for .libs/gif2h5 -# Generated by libtool (GNU libtool) 2.4.6 -# -# The gif2h5 program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file gif2hdf.o gif2mem.o decompress.o gifread.o writehdf.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "gif2h5:gif2h5:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "gif2h5:gif2h5:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "gif2h5:gif2h5:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'gif2h5' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/tools/gif2h5/gif2hdf.o b/build/hl/tools/gif2h5/gif2hdf.o deleted file mode 100644 index 634238c..0000000 Binary files a/build/hl/tools/gif2h5/gif2hdf.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/gif2mem.o b/build/hl/tools/gif2h5/gif2mem.o deleted file mode 100644 index b15d6c9..0000000 Binary files a/build/hl/tools/gif2h5/gif2mem.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/gifread.o b/build/hl/tools/gif2h5/gifread.o deleted file mode 100644 index 3f2c95f..0000000 Binary files a/build/hl/tools/gif2h5/gifread.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/h52gif b/build/hl/tools/gif2h5/h52gif deleted file mode 100755 index 3393356..0000000 --- a/build/hl/tools/gif2h5/h52gif +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# h52gif - temporary wrapper script for .libs/h52gif -# Generated by libtool (GNU libtool) 2.4.6 -# -# The h52gif program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file hdf2gif.o hdfgifwr.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "h52gif:h52gif:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "h52gif:h52gif:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "h52gif:h52gif:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'h52gif' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/tools/gif2h5/h52gifgentst b/build/hl/tools/gif2h5/h52gifgentst deleted file mode 100755 index 07aae7a..0000000 --- a/build/hl/tools/gif2h5/h52gifgentst +++ /dev/null @@ -1,228 +0,0 @@ -#! /bin/sh - -# h52gifgentst - temporary wrapper script for .libs/h52gifgentst -# Generated by libtool (GNU libtool) 2.4.6 -# -# The h52gifgentst program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command="(cd /mnt/wrk/lrknox/hdf5_hdf5/build/hl/tools/gif2h5; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/mnt/wrk/lrknox/ParaTools/taucmdr-1.0a/bin:/usr/hdf/bin/AUTOTOOLS:./:/usr/hdf/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/kerberos/bin:/bin:/mnt/wrk/lrknox/ec2/bin:/home/lrknox/bin:/home/lrknox/hdf/coverity/cov-analysis-linux64-2017.07/bin; export PATH; gcc -std=c99 -pedantic -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wfloat-equal -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wdisabled-optimization -Wformat=2 -Wunreachable-code -Wendif-labels -Wdeclaration-after-statement -Wold-style-definition -Winvalid-pch -Wvariadic-macros -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-macros -Wunsafe-loop-optimizations -Wc++-compat -Wstrict-overflow -Wlogical-op -Wlarger-than=2048 -Wvla -Wsync-nand -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wstrict-overflow=5 -Wjump-misses-init -Wdouble-promotion -Wsuggest-attribute=const -Wtrampolines -Wstack-usage=8192 -Wvector-operation-performance -Wsuggest-attribute=pure -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -g -o \$progdir/\$file h52gifgentst.o ../../../hl/src/.libs/libhdf5_hl.so /mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs/libhdf5.so ../../../tools/lib/.libs/libh5tools.a ../../../src/.libs/libhdf5.so -lz -ldl -lm -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hl/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/src/.libs -Wl,-rpath -Wl,/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib)" - -# This environment variable determines our operation mode. -if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then - # install mode needs the following variables: - generated_by_libtool_version='2.4.6' - notinst_deplibs=' ../../../hl/src/libhdf5_hl.la /mnt/wrk/lrknox/hdf5_hdf5/build/src/libhdf5.la ../../../src/libhdf5.la' -else - # When we are sourced in execute mode, $file and $ECHO are already set. - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - file="$0" - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - ECHO="printf %s\\n" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string --lt- -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's ../../../libtool value, followed by no. -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=$0 - shift - for lt_opt - do - case "$lt_opt" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'` - test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=. - lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'` - cat "$lt_dump_D/$lt_dump_F" - exit 0 - ;; - --lt-*) - $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n "$lt_option_debug"; then - echo "h52gifgentst:h52gifgentst:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - $ECHO "h52gifgentst:h52gifgentst:$LINENO: newargv[$lt_dump_args_N]: $lt_arg" - lt_dump_args_N=`expr $lt_dump_args_N + 1` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ - - if test -n "$lt_option_debug"; then - $ECHO "h52gifgentst:h52gifgentst:$LINENO: newargv[0]: $progdir/$program" 1>&2 - func_lt_dump_args ${1+"$@"} 1>&2 - fi - exec "$progdir/$program" ${1+"$@"} - - $ECHO "$0: cannot exec $program $*" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from $@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case " $* " in - *\ --lt-*) - for lt_wr_arg - do - case $lt_wr_arg in - --lt-*) ;; - *) set x "$@" "$lt_wr_arg"; shift;; - esac - shift - done ;; - esac - func_exec_program_core ${1+"$@"} -} - - # Parse options - func_parse_lt_options "$0" ${1+"$@"} - - # Find the directory that this script lives in. - thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - test "x$thisdir" = "x$file" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'` - while test -n "$file"; do - destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'` - - # If there was a directory component, then change thisdir. - if test "x$destdir" != "x$file"; then - case "$destdir" in - [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; - *) thisdir="$thisdir/$destdir" ;; - esac - fi - - file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'` - file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no - if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then - # special case for '.' - if test "$thisdir" = "."; then - thisdir=`pwd` - fi - # remove .libs from thisdir - case "$thisdir" in - *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;; - .libs ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=`cd "$thisdir" && pwd` - test -n "$absdir" && thisdir="$absdir" - - program=lt-'h52gifgentst' - progdir="$thisdir/.libs" - - if test ! -f "$progdir/$program" || - { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /usr/bin/sed 1q`; \ - test "X$file" != "X$progdir/$program"; }; then - - file="$$-$program" - - if test ! -d "$progdir"; then - mkdir "$progdir" - else - rm -f "$progdir/$file" - fi - - # relink executable if necessary - if test -n "$relink_command"; then - if relink_command_output=`eval $relink_command 2>&1`; then : - else - $ECHO "$relink_command_output" >&2 - rm -f "$progdir/$file" - exit 1 - fi - fi - - mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || - { rm -f "$progdir/$program"; - mv -f "$progdir/$file" "$progdir/$program"; } - rm -f "$progdir/$file" - fi - - if test -f "$progdir/$program"; then - if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then - # Run the actual program with our arguments. - func_exec_program ${1+"$@"} - fi - else - # The program doesn't exist. - $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2 - $ECHO "This script is just a wrapper for $program." 1>&2 - $ECHO "See the libtool documentation for more information." 1>&2 - exit 1 - fi -fi diff --git a/build/hl/tools/gif2h5/h52gifgentst.o b/build/hl/tools/gif2h5/h52gifgentst.o deleted file mode 100644 index 755e6b7..0000000 Binary files a/build/hl/tools/gif2h5/h52gifgentst.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/h52giftest.sh b/build/hl/tools/gif2h5/h52giftest.sh deleted file mode 100644 index 133f574..0000000 --- a/build/hl/tools/gif2h5/h52giftest.sh +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh -# -# Copyright by The HDF Group. -# Copyright by the Board of Trustees of the University of Illinois. -# All rights reserved. -# -# This file is part of HDF5. The full HDF5 copyright notice, including -# terms governing use, modification, and redistribution, is contained in -# the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. -# If you do not have access to either file, you may request a copy from -# help@hdfgroup.org. -# -# HDF Utilities Test script - - -TESTFILE1="$srcdir/testfiles/h52giftst.h5" -TESTFILE2="$srcdir/testfiles/image1.gif" -TESTFILE3="$srcdir/testfiles/ex_image2.h5" - -# initialize errors variable -errors=0 - -TESTING() { - SPACES=" " - echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012' -} - - - -# Verify the test runs with success (return code is 0) -TOOLTEST() -{ - # for now, discard any error messages generated. - $RUNSERIAL $* > /dev/null 2>&1 - - RET=$? - if [ $RET = 0 ] ; then - echo " PASSED" - else - echo "*FAILED*" - errors="` expr $errors + 1 `"; - fi - -} - -# Verify the test runs with failure (return code is not 0) -# Use for testing if tool can handle error conditions like -# illegal input, bad arguments, exeeding limits, ... -TOOLTESTFAIL() -{ - # for now, discard any error messages generated. - $RUNSERIAL $* > /dev/null 2>&1 - - RET=$? - if [ $RET != 0 ] ; then - echo " PASSED" - else - echo "*FAILED*" - errors="` expr $errors + 1 `"; - fi -} - - -# Positive tests for gif2h5 -echo "**validate the gif2h5 tool processes input correctly..." -TESTING "./gif2h5 image1.gif image1.h5" -TOOLTEST ./gif2h5 $TESTFILE2 image1.h5 -echo "" - -# Positive tests for h52gif -echo "**validate the h52gif tool processes input correctly..." -TESTING "./h52gif h52giftst.h5 image1.gif -i image" -TOOLTEST ./h52gif $TESTFILE1 image1.gif -i image -echo "" - -# Negative tests. -echo "**verify the the h52gif tool handle error conditions correctly..." -# nonexisting dataset name -TESTING "./h52gif h52giftst.h5 image.gif -i nosuch_image" -TOOLTESTFAIL "./h52gif $TESTFILE1 image.gif -i nosuch_image" -# this test should have failed but it did not. Comment it out for now. -#TESTING "./h52gif h52giftst.h5 image.gif -i palette" -#TOOLTESTFAIL "./h52gif $TESTFILE1 image.gif -i palette" -TESTING "./h52gif h52giftst.h5 image24.gif -i image24bitpixel" -TOOLTESTFAIL "./h52gif $TESTFILE3 image24.gif -i image24bitpixel" -echo "" - -# all done. summarize results. -if test $errors -eq 0 ; then - echo "All gif2h5 and h52gif tests passed." - exit 0 -else - echo "Some gif2h5 or h52gif tests failed with $errors errors." - exit 1 -fi diff --git a/build/hl/tools/gif2h5/h52giftest.sh.chkexe b/build/hl/tools/gif2h5/h52giftest.sh.chkexe deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/tools/gif2h5/h52giftest.sh.chklog b/build/hl/tools/gif2h5/h52giftest.sh.chklog deleted file mode 100644 index d2b5ec9..0000000 --- a/build/hl/tools/gif2h5/h52giftest.sh.chklog +++ /dev/null @@ -1,19 +0,0 @@ -============================ -h52giftest.sh Test Log -============================ -**validate the gif2h5 tool processes input correctly... -Testing ./gif2h5 image1.gif image1.h5 PASSED - -**validate the h52gif tool processes input correctly... -Testing ./h52gif h52giftst.h5 image1.gif -i image PASSED - -**verify the the h52gif tool handle error conditions correctly... -Testing ./h52gif h52giftst.h5 image.gif -i nosuch_image PASSED -Testing ./h52gif h52giftst.h5 image24.gif -i image24bitpixel PASSED - -All gif2h5 and h52gif tests passed. -0.14user 0.09system 0:00.27elapsed 84%CPU (0avgtext+0avgdata 7600maxresident)k -0inputs+1216outputs (0major+32332minor)pagefaults 0swaps - -Finished testing h52giftest.sh -============================ diff --git a/build/hl/tools/gif2h5/hdf2gif.o b/build/hl/tools/gif2h5/hdf2gif.o deleted file mode 100644 index 7e8f849..0000000 Binary files a/build/hl/tools/gif2h5/hdf2gif.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/hdfgifwr.o b/build/hl/tools/gif2h5/hdfgifwr.o deleted file mode 100644 index a5c3a63..0000000 Binary files a/build/hl/tools/gif2h5/hdfgifwr.o and /dev/null differ diff --git a/build/hl/tools/gif2h5/image.gif b/build/hl/tools/gif2h5/image.gif deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/tools/gif2h5/image1.gif b/build/hl/tools/gif2h5/image1.gif deleted file mode 100644 index b90b23a..0000000 Binary files a/build/hl/tools/gif2h5/image1.gif and /dev/null differ diff --git a/build/hl/tools/gif2h5/image1.h5 b/build/hl/tools/gif2h5/image1.h5 deleted file mode 100644 index b78b42e..0000000 Binary files a/build/hl/tools/gif2h5/image1.h5 and /dev/null differ diff --git a/build/hl/tools/gif2h5/image24.gif b/build/hl/tools/gif2h5/image24.gif deleted file mode 100644 index e69de29..0000000 diff --git a/build/hl/tools/gif2h5/writehdf.o b/build/hl/tools/gif2h5/writehdf.o deleted file mode 100644 index 4f6f37e..0000000 Binary files a/build/hl/tools/gif2h5/writehdf.o and /dev/null differ diff --git a/build/libtool b/build/libtool deleted file mode 100644 index 9db894a..0000000 --- a/build/libtool +++ /dev/null @@ -1,11957 +0,0 @@ -#! /bin/sh -# Generated automatically by config.status (hdf5) 1.8.21-pre1 -# Libtool was configured on host jelly: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -# Copyright (C) 2014 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. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - - -# The names of the tagged configurations supported by this script. -available_tags='CXX FC ' - -# Configured defaults for sys_lib_dlsearch_path munging. -: ${LT_SYS_LIBRARY_PATH=""} - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=2.4.6 -macro_revision=2.4.6 - -# Whether or not to build shared libraries. -build_libtool_libs=yes - -# Whether or not to build static libraries. -build_old_libs=yes - -# What type of objects to build. -pic_mode=default - -# Whether or not to optimize for fast installation. -fast_install=yes - -# Shared archive member basename,for filename based shared library versioning on AIX. -shared_archive_member_spec= - -# Shell to use when invoking shell scripts. -SHELL="/bin/sh" - -# An echo program that protects backslashes. -ECHO="printf %s\\n" - -# The PATH separator for the build system. -PATH_SEPARATOR=":" - -# The host system. -host_alias= -host=x86_64-unknown-linux-gnu -host_os=linux-gnu - -# The build system. -build_alias= -build=x86_64-unknown-linux-gnu -build_os=linux-gnu - -# A sed program that does not truncate output. -SED="/usr/bin/sed" - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP="/usr/bin/grep" - -# An ERE matcher. -EGREP="/usr/bin/grep -E" - -# A literal string matcher. -FGREP="/usr/bin/grep -F" - -# A BSD- or MS-compatible name lister. -NM="/usr/bin/nm -B" - -# Whether we need soft or hard links. -LN_S="ln -s" - -# What is the maximum length of a command? -max_cmd_len=1572864 - -# Object file suffix (normally "o"). -objext=o - -# Executable file suffix (normally ""). -exeext= - -# whether the shell understands "unset". -lt_unset=unset - -# turn spaces into newlines. -SP2NL="tr \\040 \\012" - -# turn newlines into spaces. -NL2SP="tr \\015\\012 \\040\\040" - -# convert $build file names to $host format. -to_host_file_cmd=func_convert_file_noop - -# convert $build files to toolchain format. -to_tool_file_cmd=func_convert_file_noop - -# An object symbol dumper. -OBJDUMP="objdump" - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method="pass_all" - -# Command to use when deplibs_check_method = "file_magic". -file_magic_cmd="\$MAGIC_CMD" - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob="" - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob="no" - -# DLL creation program. -DLLTOOL="false" - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd="printf %s\\n" - -# The archiver. -AR="ar" - -# Flags to create an archive. -AR_FLAGS="cru" - -# How to feed a file listing to the archiver. -archiver_list_spec="@" - -# A symbol stripping program. -STRIP="strip" - -# Commands used to install an old-style archive. -RANLIB="ranlib" -old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$tool_oldlib" -old_postuninstall_cmds="" - -# Whether to use a lock for old archive extraction. -lock_old_archive_extraction=no - -# A C compiler. -LTCC="gcc" - -# LTCC compiler flags. -LTCFLAGS="" - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p' | sed '/ __gnu_lto/d'" - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" - -# Transform the output of nm into a list of symbols to manually relocate. -global_symbol_to_import="" - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p'" - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(lib.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"lib\\1\", (void *) \\&\\1},/p'" - -# The name lister interface. -nm_interface="BSD nm" - -# Specify filename containing input files for $NM. -nm_file_list_spec="@" - -# The root where to search for dependent libraries,and where our libraries should be installed. -lt_sysroot= - -# Command to truncate a binary pipe. -lt_truncate_bin="/usr/bin/dd bs=4096 count=1" - -# The name of the directory that contains temporary libtool files. -objdir=.libs - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=file - -# Must we lock files when doing compilation? -need_locks="no" - -# Manifest tool. -MANIFEST_TOOL=":" - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL="" - -# Tool to change global to local symbols on Mac OS X. -NMEDIT="" - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO="" - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL="" - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64="" - -# Old archive suffix (normally "a"). -libext=a - -# Shared library suffix (normally ".so"). -shrext_cmds=".so" - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds="" - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" - -# Do we need the "lib" prefix for modules? -need_lib_prefix=no - -# Do we need a version for libraries? -need_version=no - -# Library versioning type. -version_type=linux - -# Shared library runtime path variable. -runpath_var=LD_RUN_PATH - -# Shared library path variable. -shlibpath_var=LD_LIBRARY_PATH - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=no - -# Format of library name prefix. -libname_spec="lib\$name" - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec="\$libname\$release\$shared_ext\$versuffix \$libname\$release\$shared_ext\$major \$libname\$shared_ext" - -# The coded name of the library, if different from the real name. -soname_spec="\$libname\$release\$shared_ext\$major" - -# Permission mode override for installation of shared libraries. -install_override_mode="" - -# Command to use after installation of a shared archive. -postinstall_cmds="" - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds="" - -# Commands used to finish a libtool library installation in a directory. -finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval="" - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=yes - -# Compile-time system search path for libraries. -sys_lib_search_path_spec="/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 /usr/lib /lib " - -# Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/hdf/lib /usr/hdf/lib/INTEL /usr/lib64/mysql " - -# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. -configure_time_lt_sys_library_path="" - -# Whether dlopen is supported. -dlopen_support=yes - -# Whether dlopen of programs is supported. -dlopen_self=yes - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=no - -# Commands to strip libraries. -old_striplib="strip --strip-debug" -striplib="strip --strip-unneeded" - - -# The linker used to build libraries. -LD="/usr/bin/ld -m elf_x86_64" - -# How to create reloadable object files. -reload_flag=" -r" -reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - -# Commands used to build an old-style archive. -old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" - -# A language specific compiler. -CC="gcc" - -# Is the compiler the GNU compiler? -with_gcc=yes - -# Compiler flag to turn off builtin functions. -no_builtin_flag=" -fno-builtin" - -# Additional compiler flags for building library objects. -pic_flag=" -fPIC -DPIC" - -# How to pass a linker flag through the compiler. -wl="-Wl," - -# Compiler flag to prevent dynamic linking. -link_static_flag="-static" - -# Does compiler simultaneously support -c and -o options? -compiler_c_o="yes" - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=no - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=no - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="\$wl--export-dynamic" - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="\$wl--whole-archive\$convenience \$wl--no-whole-archive" - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object="no" - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds="" - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds="" - -# Commands used to build a shared archive. -archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname -o \$lib" -archive_expsym_cmds="echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ - cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ - echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ - \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname \$wl-version-script \$wl\$output_objdir/\$libname.ver -o \$lib" - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds="" -module_expsym_cmds="" - -# Whether we are building with GNU ld or not. -with_gnu_ld="yes" - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag="" - -# Flag that enforces no undefined symbols. -no_undefined_flag="" - -# Flag to hardcode $libdir into a binary during linking. -# This must work even if $libdir does not exist -hardcode_libdir_flag_spec="\$wl-rpath \$wl\$libdir" - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator="" - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=no - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting $shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=no - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=no - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=unsupported - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=no - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=no - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown - -# Set to "yes" if exported symbols are required. -always_export_symbols=no - -# The commands to list exported symbols. -export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" - -# Symbols that must always be exported. -include_expsyms="" - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds="" - -# Commands necessary for finishing linking programs. -postlink_cmds="" - -# Specify filename containing input files. -file_list_spec="" - -# How to hardcode a shared library path into an executable. -hardcode_action=immediate - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="" - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects="" -postdep_objects="" -predeps="" -postdeps="" - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path="" - -# ### END LIBTOOL CONFIG - - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -#! /bin/sh -## DO NOT EDIT - This file generated from ./build-aux/ltmain.in -## by inline-source v2014-01-03.01 - -# libtool (GNU libtool) 2.4.6 -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit , 1996 - -# Copyright (C) 1996-2015 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. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - - -PROGRAM=libtool -PACKAGE=libtool -VERSION=2.4.6 -package_revision=2.4.6 - - -## ------ ## -## Usage. ## -## ------ ## - -# Run './libtool --help' for help with using this script from the -# command line. - - -## ------------------------------- ## -## User overridable command paths. ## -## ------------------------------- ## - -# After configure completes, it has a better idea of some of the -# shell tools we need than the defaults used by the functions shared -# with bootstrap, so set those here where they can still be over- -# ridden by the user, but otherwise take precedence. - -: ${AUTOCONF="autoconf"} -: ${AUTOMAKE="automake"} - - -## -------------------------- ## -## Source external libraries. ## -## -------------------------- ## - -# Much of our low-level functionality needs to be sourced from external -# libraries, which are installed to $pkgauxdir. - -# Set a version string for this script. -scriptversion=2015-01-20.17; # UTC - -# General shell script boiler plate, and helper functions. -# Written by Gary V. Vaughan, 2004 - -# Copyright (C) 2004-2015 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. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. - -# As a special exception to the GNU General Public License, if you distribute -# this file as part of a program or library that is built using GNU Libtool, -# you may include this file under the same distribution terms that you use -# for the rest of that program. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Please report bugs or propose patches to gary@gnu.org. - - -## ------ ## -## Usage. ## -## ------ ## - -# Evaluate this file near the top of your script to gain access to -# the functions and variables defined here: -# -# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh -# -# If you need to override any of the default environment variable -# settings, do that before evaluating this file. - - -## -------------------- ## -## Shell normalisation. ## -## -------------------- ## - -# Some shells need a little help to be as Bourne compatible as possible. -# Before doing anything else, make sure all that help has been provided! - -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac -fi - -# NLS nuisances: We save the old values in case they are required later. -_G_user_locale= -_G_safe_locale= -for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES -do - eval "if test set = \"\${$_G_var+set}\"; then - save_$_G_var=\$$_G_var - $_G_var=C - export $_G_var - _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" - _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" - fi" -done - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Make sure IFS has a sensible default -sp=' ' -nl=' -' -IFS="$sp $nl" - -# There are apparently some retarded systems that use ';' as a PATH separator! -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - - -## ------------------------- ## -## Locate command utilities. ## -## ------------------------- ## - - -# func_executable_p FILE -# ---------------------- -# Check that FILE is an executable regular file. -func_executable_p () -{ - test -f "$1" && test -x "$1" -} - - -# func_path_progs PROGS_LIST CHECK_FUNC [PATH] -# -------------------------------------------- -# Search for either a program that responds to --version with output -# containing "GNU", or else returned by CHECK_FUNC otherwise, by -# trying all the directories in PATH with each of the elements of -# PROGS_LIST. -# -# CHECK_FUNC should accept the path to a candidate program, and -# set $func_check_prog_result if it truncates its output less than -# $_G_path_prog_max characters. -func_path_progs () -{ - _G_progs_list=$1 - _G_check_func=$2 - _G_PATH=${3-"$PATH"} - - _G_path_prog_max=0 - _G_path_prog_found=false - _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} - for _G_dir in $_G_PATH; do - IFS=$_G_save_IFS - test -z "$_G_dir" && _G_dir=. - for _G_prog_name in $_G_progs_list; do - for _exeext in '' .EXE; do - _G_path_prog=$_G_dir/$_G_prog_name$_exeext - func_executable_p "$_G_path_prog" || continue - case `"$_G_path_prog" --version 2>&1` in - *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; - *) $_G_check_func $_G_path_prog - func_path_progs_result=$func_check_prog_result - ;; - esac - $_G_path_prog_found && break 3 - done - done - done - IFS=$_G_save_IFS - test -z "$func_path_progs_result" && { - echo "no acceptable sed could be found in \$PATH" >&2 - exit 1 - } -} - - -# We want to be able to use the functions in this file before configure -# has figured out where the best binaries are kept, which means we have -# to search for them ourselves - except when the results are already set -# where we skip the searches. - -# Unless the user overrides by setting SED, search the path for either GNU -# sed, or the sed that truncates its output the least. -test -z "$SED" && { - _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for _G_i in 1 2 3 4 5 6 7; do - _G_sed_script=$_G_sed_script$nl$_G_sed_script - done - echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed - _G_sed_script= - - func_check_prog_sed () - { - _G_path_prog=$1 - - _G_count=0 - printf 0123456789 >conftest.in - while : - do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo '' >> conftest.nl - "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break - diff conftest.out conftest.nl >/dev/null 2>&1 || break - _G_count=`expr $_G_count + 1` - if test "$_G_count" -gt "$_G_path_prog_max"; then - # Best one so far, save it but keep looking for a better one - func_check_prog_result=$_G_path_prog - _G_path_prog_max=$_G_count - fi - # 10*(2^10) chars as input seems more than enough - test 10 -lt "$_G_count" && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out - } - - func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin - rm -f conftest.sed - SED=$func_path_progs_result -} - - -# Unless the user overrides by setting GREP, search the path for either GNU -# grep, or the grep that truncates its output the least. -test -z "$GREP" && { - func_check_prog_grep () - { - _G_path_prog=$1 - - _G_count=0 - _G_path_prog_max=0 - printf 0123456789 >conftest.in - while : - do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo 'GREP' >> conftest.nl - "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break - diff conftest.out conftest.nl >/dev/null 2>&1 || break - _G_count=`expr $_G_count + 1` - if test "$_G_count" -gt "$_G_path_prog_max"; then - # Best one so far, save it but keep looking for a better one - func_check_prog_result=$_G_path_prog - _G_path_prog_max=$_G_count - fi - # 10*(2^10) chars as input seems more than enough - test 10 -lt "$_G_count" && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out - } - - func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin - GREP=$func_path_progs_result -} - - -## ------------------------------- ## -## User overridable command paths. ## -## ------------------------------- ## - -# All uppercase variable names are used for environment variables. These -# variables can be overridden by the user before calling a script that -# uses them if a suitable command of that name is not already available -# in the command search PATH. - -: ${CP="cp -f"} -: ${ECHO="printf %s\n"} -: ${EGREP="$GREP -E"} -: ${FGREP="$GREP -F"} -: ${LN_S="ln -s"} -: ${MAKE="make"} -: ${MKDIR="mkdir"} -: ${MV="mv -f"} -: ${RM="rm -f"} -: ${SHELL="${CONFIG_SHELL-/bin/sh}"} - - -## -------------------- ## -## Useful sed snippets. ## -## -------------------- ## - -sed_dirname='s|/[^/]*$||' -sed_basename='s|^.*/||' - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Same as above, but do not quote variable references. -sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' - -# Sed substitution that converts a w32 file name or path -# that contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-'\' parameter expansions in output of sed_double_quote_subst that -# were '\'-ed in input to the same. If an odd number of '\' preceded a -# '$' in input to sed_double_quote_subst, that '$' was protected from -# expansion. Since each input '\' is now two '\'s, look for any number -# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. -_G_bs='\\' -_G_bs2='\\\\' -_G_bs4='\\\\\\\\' -_G_dollar='\$' -sed_double_backslash="\ - s/$_G_bs4/&\\ -/g - s/^$_G_bs2$_G_dollar/$_G_bs&/ - s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g - s/\n//g" - - -## ----------------- ## -## Global variables. ## -## ----------------- ## - -# Except for the global variables explicitly listed below, the following -# functions in the '^func_' namespace, and the '^require_' namespace -# variables initialised in the 'Resource management' section, sourcing -# this file will not pollute your global namespace with anything -# else. There's no portable way to scope variables in Bourne shell -# though, so actually running these functions will sometimes place -# results into a variable named after the function, and often use -# temporary variables in the '^_G_' namespace. If you are careful to -# avoid using those namespaces casually in your sourcing script, things -# should continue to work as you expect. And, of course, you can freely -# overwrite any of the functions or variables defined here before -# calling anything to customize them. - -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. - -# Allow overriding, eg assuming that you follow the convention of -# putting '$debug_cmd' at the start of all your functions, you can get -# bash to show function call trace with: -# -# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name -debug_cmd=${debug_cmd-":"} -exit_cmd=: - -# By convention, finish your script with: -# -# exit $exit_status -# -# so that you can set exit_status to non-zero if you want to indicate -# something went wrong during execution without actually bailing out at -# the point of failure. -exit_status=$EXIT_SUCCESS - -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath=$0 - -# The name of this program. -progname=`$ECHO "$progpath" |$SED "$sed_basename"` - -# Make sure we have an absolute progpath for reexecution: -case $progpath in - [\\/]*|[A-Za-z]:\\*) ;; - *[\\/]*) - progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` - progdir=`cd "$progdir" && pwd` - progpath=$progdir/$progname - ;; - *) - _G_IFS=$IFS - IFS=${PATH_SEPARATOR-:} - for progdir in $PATH; do - IFS=$_G_IFS - test -x "$progdir/$progname" && break - done - IFS=$_G_IFS - test -n "$progdir" || progdir=`pwd` - progpath=$progdir/$progname - ;; -esac - - -## ----------------- ## -## Standard options. ## -## ----------------- ## - -# The following options affect the operation of the functions defined -# below, and should be set appropriately depending on run-time para- -# meters passed on the command line. - -opt_dry_run=false -opt_quiet=false -opt_verbose=false - -# Categories 'all' and 'none' are always available. Append any others -# you will pass as the first argument to func_warning from your own -# code. -warning_categories= - -# By default, display warnings according to 'opt_warning_types'. Set -# 'warning_func' to ':' to elide all warnings, or func_fatal_error to -# treat the next displayed warning as a fatal error. -warning_func=func_warn_and_continue - -# Set to 'all' to display all warnings, 'none' to suppress all -# warnings, or a space delimited list of some subset of -# 'warning_categories' to display only the listed warnings. -opt_warning_types=all - - -## -------------------- ## -## Resource management. ## -## -------------------- ## - -# This section contains definitions for functions that each ensure a -# particular resource (a file, or a non-empty configuration variable for -# example) is available, and if appropriate to extract default values -# from pertinent package files. Call them using their associated -# 'require_*' variable to ensure that they are executed, at most, once. -# -# It's entirely deliberate that calling these functions can set -# variables that don't obey the namespace limitations obeyed by the rest -# of this file, in order that that they be as useful as possible to -# callers. - - -# require_term_colors -# ------------------- -# Allow display of bold text on terminals that support it. -require_term_colors=func_require_term_colors -func_require_term_colors () -{ - $debug_cmd - - test -t 1 && { - # COLORTERM and USE_ANSI_COLORS environment variables take - # precedence, because most terminfo databases neglect to describe - # whether color sequences are supported. - test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} - - if test 1 = "$USE_ANSI_COLORS"; then - # Standard ANSI escape sequences - tc_reset='' - tc_bold=''; tc_standout='' - tc_red=''; tc_green='' - tc_blue=''; tc_cyan='' - else - # Otherwise trust the terminfo database after all. - test -n "`tput sgr0 2>/dev/null`" && { - tc_reset=`tput sgr0` - test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` - tc_standout=$tc_bold - test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` - test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` - test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` - test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` - test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` - } - fi - } - - require_term_colors=: -} - - -## ----------------- ## -## Function library. ## -## ----------------- ## - -# This section contains a variety of useful functions to call in your -# scripts. Take note of the portable wrappers for features provided by -# some modern shells, which will fall back to slower equivalents on -# less featureful shells. - - -# func_append VAR VALUE -# --------------------- -# Append VALUE onto the existing contents of VAR. - - # We should try to minimise forks, especially on Windows where they are - # unreasonably slow, so skip the feature probes when bash or zsh are - # being used: - if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then - : ${_G_HAVE_ARITH_OP="yes"} - : ${_G_HAVE_XSI_OPS="yes"} - # The += operator was introduced in bash 3.1 - case $BASH_VERSION in - [12].* | 3.0 | 3.0*) ;; - *) - : ${_G_HAVE_PLUSEQ_OP="yes"} - ;; - esac - fi - - # _G_HAVE_PLUSEQ_OP - # Can be empty, in which case the shell is probed, "yes" if += is - # useable or anything else if it does not work. - test -z "$_G_HAVE_PLUSEQ_OP" \ - && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ - && _G_HAVE_PLUSEQ_OP=yes - -if test yes = "$_G_HAVE_PLUSEQ_OP" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_append () - { - $debug_cmd - - eval "$1+=\$2" - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_append () - { - $debug_cmd - - eval "$1=\$$1\$2" - } -fi - - -# func_append_quoted VAR VALUE -# ---------------------------- -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -if test yes = "$_G_HAVE_PLUSEQ_OP"; then - eval 'func_append_quoted () - { - $debug_cmd - - func_quote_for_eval "$2" - eval "$1+=\\ \$func_quote_for_eval_result" - }' -else - func_append_quoted () - { - $debug_cmd - - func_quote_for_eval "$2" - eval "$1=\$$1\\ \$func_quote_for_eval_result" - } -fi - - -# func_append_uniq VAR VALUE -# -------------------------- -# Append unique VALUE onto the existing contents of VAR, assuming -# entries are delimited by the first character of VALUE. For example: -# -# func_append_uniq options " --another-option option-argument" -# -# will only append to $options if " --another-option option-argument " -# is not already present somewhere in $options already (note spaces at -# each end implied by leading space in second argument). -func_append_uniq () -{ - $debug_cmd - - eval _G_current_value='`$ECHO $'$1'`' - _G_delim=`expr "$2" : '\(.\)'` - - case $_G_delim$_G_current_value$_G_delim in - *"$2$_G_delim"*) ;; - *) func_append "$@" ;; - esac -} - - -# func_arith TERM... -# ------------------ -# Set func_arith_result to the result of evaluating TERMs. - test -z "$_G_HAVE_ARITH_OP" \ - && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ - && _G_HAVE_ARITH_OP=yes - -if test yes = "$_G_HAVE_ARITH_OP"; then - eval 'func_arith () - { - $debug_cmd - - func_arith_result=$(( $* )) - }' -else - func_arith () - { - $debug_cmd - - func_arith_result=`expr "$@"` - } -fi - - -# func_basename FILE -# ------------------ -# Set func_basename_result to FILE with everything up to and including -# the last / stripped. -if test yes = "$_G_HAVE_XSI_OPS"; then - # If this shell supports suffix pattern removal, then use it to avoid - # forking. Hide the definitions single quotes in case the shell chokes - # on unsupported syntax... - _b='func_basename_result=${1##*/}' - _d='case $1 in - */*) func_dirname_result=${1%/*}$2 ;; - * ) func_dirname_result=$3 ;; - esac' - -else - # ...otherwise fall back to using sed. - _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' - _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` - if test "X$func_dirname_result" = "X$1"; then - func_dirname_result=$3 - else - func_append func_dirname_result "$2" - fi' -fi - -eval 'func_basename () -{ - $debug_cmd - - '"$_b"' -}' - - -# func_dirname FILE APPEND NONDIR_REPLACEMENT -# ------------------------------------------- -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -eval 'func_dirname () -{ - $debug_cmd - - '"$_d"' -}' - - -# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT -# -------------------------------------------------------- -# Perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# For efficiency, we do not delegate to the functions above but instead -# duplicate the functionality here. -eval 'func_dirname_and_basename () -{ - $debug_cmd - - '"$_b"' - '"$_d"' -}' - - -# func_echo ARG... -# ---------------- -# Echo program name prefixed message. -func_echo () -{ - $debug_cmd - - _G_message=$* - - func_echo_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_IFS - $ECHO "$progname: $_G_line" - done - IFS=$func_echo_IFS -} - - -# func_echo_all ARG... -# -------------------- -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} - - -# func_echo_infix_1 INFIX ARG... -# ------------------------------ -# Echo program name, followed by INFIX on the first line, with any -# additional lines not showing INFIX. -func_echo_infix_1 () -{ - $debug_cmd - - $require_term_colors - - _G_infix=$1; shift - _G_indent=$_G_infix - _G_prefix="$progname: $_G_infix: " - _G_message=$* - - # Strip color escape sequences before counting printable length - for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" - do - test -n "$_G_tc" && { - _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` - _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` - } - done - _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes - - func_echo_infix_1_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_infix_1_IFS - $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 - _G_prefix=$_G_indent - done - IFS=$func_echo_infix_1_IFS -} - - -# func_error ARG... -# ----------------- -# Echo program name prefixed message to standard error. -func_error () -{ - $debug_cmd - - $require_term_colors - - func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 -} - - -# func_fatal_error ARG... -# ----------------------- -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - $debug_cmd - - func_error "$*" - exit $EXIT_FAILURE -} - - -# func_grep EXPRESSION FILENAME -# ----------------------------- -# Check whether EXPRESSION matches any line of FILENAME, without output. -func_grep () -{ - $debug_cmd - - $GREP "$1" "$2" >/dev/null 2>&1 -} - - -# func_len STRING -# --------------- -# Set func_len_result to the length of STRING. STRING may not -# start with a hyphen. - test -z "$_G_HAVE_XSI_OPS" \ - && (eval 'x=a/b/c; - test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ - && _G_HAVE_XSI_OPS=yes - -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_len () - { - $debug_cmd - - func_len_result=${#1} - }' -else - func_len () - { - $debug_cmd - - func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` - } -fi - - -# func_mkdir_p DIRECTORY-PATH -# --------------------------- -# Make sure the entire path to DIRECTORY-PATH is available. -func_mkdir_p () -{ - $debug_cmd - - _G_directory_path=$1 - _G_dir_list= - - if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then - - # Protect directory names starting with '-' - case $_G_directory_path in - -*) _G_directory_path=./$_G_directory_path ;; - esac - - # While some portion of DIR does not yet exist... - while test ! -d "$_G_directory_path"; do - # ...make a list in topmost first order. Use a colon delimited - # list incase some portion of path contains whitespace. - _G_dir_list=$_G_directory_path:$_G_dir_list - - # If the last portion added has no slash in it, the list is done - case $_G_directory_path in */*) ;; *) break ;; esac - - # ...otherwise throw away the child directory and loop - _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` - done - _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` - - func_mkdir_p_IFS=$IFS; IFS=: - for _G_dir in $_G_dir_list; do - IFS=$func_mkdir_p_IFS - # mkdir can fail with a 'File exist' error if two processes - # try to create one of the directories concurrently. Don't - # stop in that case! - $MKDIR "$_G_dir" 2>/dev/null || : - done - IFS=$func_mkdir_p_IFS - - # Bail out if we (or some other process) failed to create a directory. - test -d "$_G_directory_path" || \ - func_fatal_error "Failed to create '$1'" - fi -} - - -# func_mktempdir [BASENAME] -# ------------------------- -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, BASENAME is the basename for that directory. -func_mktempdir () -{ - $debug_cmd - - _G_template=${TMPDIR-/tmp}/${1-$progname} - - if test : = "$opt_dry_run"; then - # Return a directory name, but don't create it in dry-run mode - _G_tmpdir=$_G_template-$$ - else - - # If mktemp works, use that first and foremost - _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` - - if test ! -d "$_G_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - _G_tmpdir=$_G_template-${RANDOM-0}$$ - - func_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$_G_tmpdir" - umask $func_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$_G_tmpdir" || \ - func_fatal_error "cannot create temporary directory '$_G_tmpdir'" - fi - - $ECHO "$_G_tmpdir" -} - - -# func_normal_abspath PATH -# ------------------------ -# Remove doubled-up and trailing slashes, "." path components, -# and cancel out any ".." path components in PATH after making -# it an absolute path. -func_normal_abspath () -{ - $debug_cmd - - # These SED scripts presuppose an absolute path with a trailing slash. - _G_pathcar='s|^/\([^/]*\).*$|\1|' - _G_pathcdr='s|^/[^/]*||' - _G_removedotparts=':dotsl - s|/\./|/|g - t dotsl - s|/\.$|/|' - _G_collapseslashes='s|/\{1,\}|/|g' - _G_finalslash='s|/*$|/|' - - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` - while :; do - # Processed it all yet? - if test / = "$func_normal_abspath_tpath"; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result"; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in - "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} - - -# func_notquiet ARG... -# -------------------- -# Echo program name prefixed message only when not in quiet mode. -func_notquiet () -{ - $debug_cmd - - $opt_quiet || func_echo ${1+"$@"} - - # A bug in bash halts the script if the last line of a function - # fails when set -e is in force, so we need another command to - # work around that: - : -} - - -# func_relative_path SRCDIR DSTDIR -# -------------------------------- -# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. -func_relative_path () -{ - $debug_cmd - - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break - ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break - ;; - *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=$func_dirname_result - if test -z "$func_relative_path_tlibdir"; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result - ;; - esac - done - - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test -n "$func_stripname_result"; then - func_append func_relative_path_result "/$func_stripname_result" - fi - - # Normalisation. If bindir is libdir, return '.' else relative path. - if test -n "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - fi - - test -n "$func_relative_path_result" || func_relative_path_result=. - - : -} - - -# func_quote_for_eval ARG... -# -------------------------- -# Aesthetically quote ARGs to be evaled later. -# This function returns two values: -# i) func_quote_for_eval_result -# double-quoted, suitable for a subsequent eval -# ii) func_quote_for_eval_unquoted_result -# has all characters that are still active within double -# quotes backslashified. -func_quote_for_eval () -{ - $debug_cmd - - func_quote_for_eval_unquoted_result= - func_quote_for_eval_result= - while test 0 -lt $#; do - case $1 in - *[\\\`\"\$]*) - _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; - *) - _G_unquoted_arg=$1 ;; - esac - if test -n "$func_quote_for_eval_unquoted_result"; then - func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" - else - func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" - fi - - case $_G_unquoted_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and variable expansion - # for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_quoted_arg=\"$_G_unquoted_arg\" - ;; - *) - _G_quoted_arg=$_G_unquoted_arg - ;; - esac - - if test -n "$func_quote_for_eval_result"; then - func_append func_quote_for_eval_result " $_G_quoted_arg" - else - func_append func_quote_for_eval_result "$_G_quoted_arg" - fi - shift - done -} - - -# func_quote_for_expand ARG -# ------------------------- -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () -{ - $debug_cmd - - case $1 in - *[\\\`\"]*) - _G_arg=`$ECHO "$1" | $SED \ - -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; - *) - _G_arg=$1 ;; - esac - - case $_G_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_arg=\"$_G_arg\" - ;; - esac - - func_quote_for_expand_result=$_G_arg -} - - -# func_stripname PREFIX SUFFIX NAME -# --------------------------------- -# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_stripname () - { - $debug_cmd - - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary variable first. - func_stripname_result=$3 - func_stripname_result=${func_stripname_result#"$1"} - func_stripname_result=${func_stripname_result%"$2"} - }' -else - func_stripname () - { - $debug_cmd - - case $2 in - .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; - *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; - esac - } -fi - - -# func_show_eval CMD [FAIL_EXP] -# ----------------------------- -# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. -func_show_eval () -{ - $debug_cmd - - _G_cmd=$1 - _G_fail_exp=${2-':'} - - func_quote_for_expand "$_G_cmd" - eval "func_notquiet $func_quote_for_expand_result" - - $opt_dry_run || { - eval "$_G_cmd" - _G_status=$? - if test 0 -ne "$_G_status"; then - eval "(exit $_G_status); $_G_fail_exp" - fi - } -} - - -# func_show_eval_locale CMD [FAIL_EXP] -# ------------------------------------ -# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. Use the saved locale for evaluation. -func_show_eval_locale () -{ - $debug_cmd - - _G_cmd=$1 - _G_fail_exp=${2-':'} - - $opt_quiet || { - func_quote_for_expand "$_G_cmd" - eval "func_echo $func_quote_for_expand_result" - } - - $opt_dry_run || { - eval "$_G_user_locale - $_G_cmd" - _G_status=$? - eval "$_G_safe_locale" - if test 0 -ne "$_G_status"; then - eval "(exit $_G_status); $_G_fail_exp" - fi - } -} - - -# func_tr_sh -# ---------- -# Turn $1 into a string suitable for a shell variable name. -# Result is stored in $func_tr_sh_result. All characters -# not in the set a-zA-Z0-9_ are replaced with '_'. Further, -# if $1 begins with a digit, a '_' is prepended as well. -func_tr_sh () -{ - $debug_cmd - - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac -} - - -# func_verbose ARG... -# ------------------- -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $debug_cmd - - $opt_verbose && func_echo "$*" - - : -} - - -# func_warn_and_continue ARG... -# ----------------------------- -# Echo program name prefixed warning message to standard error. -func_warn_and_continue () -{ - $debug_cmd - - $require_term_colors - - func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 -} - - -# func_warning CATEGORY ARG... -# ---------------------------- -# Echo program name prefixed warning message to standard error. Warning -# messages can be filtered according to CATEGORY, where this function -# elides messages where CATEGORY is not listed in the global variable -# 'opt_warning_types'. -func_warning () -{ - $debug_cmd - - # CATEGORY must be in the warning_categories list! - case " $warning_categories " in - *" $1 "*) ;; - *) func_internal_error "invalid warning category '$1'" ;; - esac - - _G_category=$1 - shift - - case " $opt_warning_types " in - *" $_G_category "*) $warning_func ${1+"$@"} ;; - esac -} - - -# func_sort_ver VER1 VER2 -# ----------------------- -# 'sort -V' is not generally available. -# Note this deviates from the version comparison in automake -# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a -# but this should suffice as we won't be specifying old -# version formats or redundant trailing .0 in bootstrap.conf. -# If we did want full compatibility then we should probably -# use m4_version_compare from autoconf. -func_sort_ver () -{ - $debug_cmd - - printf '%s\n%s\n' "$1" "$2" \ - | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n -} - -# func_lt_ver PREV CURR -# --------------------- -# Return true if PREV and CURR are in the correct order according to -# func_sort_ver, otherwise false. Use it like this: -# -# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." -func_lt_ver () -{ - $debug_cmd - - test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` -} - - -# Local variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" -# time-stamp-time-zone: "UTC" -# End: -#! /bin/sh - -# Set a version string for this script. -scriptversion=2014-01-07.03; # UTC - -# A portable, pluggable option parser for Bourne shell. -# Written by Gary V. Vaughan, 2010 - -# Copyright (C) 2010-2015 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. - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Please report bugs or propose patches to gary@gnu.org. - - -## ------ ## -## Usage. ## -## ------ ## - -# This file is a library for parsing options in your shell scripts along -# with assorted other useful supporting features that you can make use -# of too. -# -# For the simplest scripts you might need only: -# -# #!/bin/sh -# . relative/path/to/funclib.sh -# . relative/path/to/options-parser -# scriptversion=1.0 -# func_options ${1+"$@"} -# eval set dummy "$func_options_result"; shift -# ...rest of your script... -# -# In order for the '--version' option to work, you will need to have a -# suitably formatted comment like the one at the top of this file -# starting with '# Written by ' and ending with '# warranty; '. -# -# For '-h' and '--help' to work, you will also need a one line -# description of your script's purpose in a comment directly above the -# '# Written by ' line, like the one at the top of this file. -# -# The default options also support '--debug', which will turn on shell -# execution tracing (see the comment above debug_cmd below for another -# use), and '--verbose' and the func_verbose function to allow your script -# to display verbose messages only when your user has specified -# '--verbose'. -# -# After sourcing this file, you can plug processing for additional -# options by amending the variables from the 'Configuration' section -# below, and following the instructions in the 'Option parsing' -# section further down. - -## -------------- ## -## Configuration. ## -## -------------- ## - -# You should override these variables in your script after sourcing this -# file so that they reflect the customisations you have added to the -# option parser. - -# The usage line for option parsing errors and the start of '-h' and -# '--help' output messages. You can embed shell variables for delayed -# expansion at the time the message is displayed, but you will need to -# quote other shell meta-characters carefully to prevent them being -# expanded when the contents are evaled. -usage='$progpath [OPTION]...' - -# Short help message in response to '-h' and '--help'. Add to this or -# override it after sourcing this library to reflect the full set of -# options your script accepts. -usage_message="\ - --debug enable verbose shell tracing - -W, --warnings=CATEGORY - report the warnings falling in CATEGORY [all] - -v, --verbose verbosely report processing - --version print version information and exit - -h, --help print short or long help message and exit -" - -# Additional text appended to 'usage_message' in response to '--help'. -long_help_message=" -Warning categories include: - 'all' show all warnings - 'none' turn off all the warnings - 'error' warnings are treated as fatal errors" - -# Help message printed before fatal option parsing errors. -fatal_help="Try '\$progname --help' for more information." - - - -## ------------------------- ## -## Hook function management. ## -## ------------------------- ## - -# This section contains functions for adding, removing, and running hooks -# to the main code. A hook is just a named list of of function, that can -# be run in order later on. - -# func_hookable FUNC_NAME -# ----------------------- -# Declare that FUNC_NAME will run hooks added with -# 'func_add_hook FUNC_NAME ...'. -func_hookable () -{ - $debug_cmd - - func_append hookable_fns " $1" -} - - -# func_add_hook FUNC_NAME HOOK_FUNC -# --------------------------------- -# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must -# first have been declared "hookable" by a call to 'func_hookable'. -func_add_hook () -{ - $debug_cmd - - case " $hookable_fns " in - *" $1 "*) ;; - *) func_fatal_error "'$1' does not accept hook functions." ;; - esac - - eval func_append ${1}_hooks '" $2"' -} - - -# func_remove_hook FUNC_NAME HOOK_FUNC -# ------------------------------------ -# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. -func_remove_hook () -{ - $debug_cmd - - eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' -} - - -# func_run_hooks FUNC_NAME [ARG]... -# --------------------------------- -# Run all hook functions registered to FUNC_NAME. -# It is assumed that the list of hook functions contains nothing more -# than a whitespace-delimited list of legal shell function names, and -# no effort is wasted trying to catch shell meta-characters or preserve -# whitespace. -func_run_hooks () -{ - $debug_cmd - - case " $hookable_fns " in - *" $1 "*) ;; - *) func_fatal_error "'$1' does not support hook funcions.n" ;; - esac - - eval _G_hook_fns=\$$1_hooks; shift - - for _G_hook in $_G_hook_fns; do - eval $_G_hook '"$@"' - - # store returned options list back into positional - # parameters for next 'cmd' execution. - eval _G_hook_result=\$${_G_hook}_result - eval set dummy "$_G_hook_result"; shift - done - - func_quote_for_eval ${1+"$@"} - func_run_hooks_result=$func_quote_for_eval_result -} - - - -## --------------- ## -## Option parsing. ## -## --------------- ## - -# In order to add your own option parsing hooks, you must accept the -# full positional parameter list in your hook function, remove any -# options that you action, and then pass back the remaining unprocessed -# options in '_result', escaped suitably for -# 'eval'. Like this: -# -# my_options_prep () -# { -# $debug_cmd -# -# # Extend the existing usage message. -# usage_message=$usage_message' -# -s, --silent don'\''t print informational messages -# ' -# -# func_quote_for_eval ${1+"$@"} -# my_options_prep_result=$func_quote_for_eval_result -# } -# func_add_hook func_options_prep my_options_prep -# -# -# my_silent_option () -# { -# $debug_cmd -# -# # Note that for efficiency, we parse as many options as we can -# # recognise in a loop before passing the remainder back to the -# # caller on the first unrecognised argument we encounter. -# while test $# -gt 0; do -# opt=$1; shift -# case $opt in -# --silent|-s) opt_silent=: ;; -# # Separate non-argument short options: -# -s*) func_split_short_opt "$_G_opt" -# set dummy "$func_split_short_opt_name" \ -# "-$func_split_short_opt_arg" ${1+"$@"} -# shift -# ;; -# *) set dummy "$_G_opt" "$*"; shift; break ;; -# esac -# done -# -# func_quote_for_eval ${1+"$@"} -# my_silent_option_result=$func_quote_for_eval_result -# } -# func_add_hook func_parse_options my_silent_option -# -# -# my_option_validation () -# { -# $debug_cmd -# -# $opt_silent && $opt_verbose && func_fatal_help "\ -# '--silent' and '--verbose' options are mutually exclusive." -# -# func_quote_for_eval ${1+"$@"} -# my_option_validation_result=$func_quote_for_eval_result -# } -# func_add_hook func_validate_options my_option_validation -# -# You'll alse need to manually amend $usage_message to reflect the extra -# options you parse. It's preferable to append if you can, so that -# multiple option parsing hooks can be added safely. - - -# func_options [ARG]... -# --------------------- -# All the functions called inside func_options are hookable. See the -# individual implementations for details. -func_hookable func_options -func_options () -{ - $debug_cmd - - func_options_prep ${1+"$@"} - eval func_parse_options \ - ${func_options_prep_result+"$func_options_prep_result"} - eval func_validate_options \ - ${func_parse_options_result+"$func_parse_options_result"} - - eval func_run_hooks func_options \ - ${func_validate_options_result+"$func_validate_options_result"} - - # save modified positional parameters for caller - func_options_result=$func_run_hooks_result -} - - -# func_options_prep [ARG]... -# -------------------------- -# All initialisations required before starting the option parse loop. -# Note that when calling hook functions, we pass through the list of -# positional parameters. If a hook function modifies that list, and -# needs to propogate that back to rest of this script, then the complete -# modified list must be put in 'func_run_hooks_result' before -# returning. -func_hookable func_options_prep -func_options_prep () -{ - $debug_cmd - - # Option defaults: - opt_verbose=false - opt_warning_types= - - func_run_hooks func_options_prep ${1+"$@"} - - # save modified positional parameters for caller - func_options_prep_result=$func_run_hooks_result -} - - -# func_parse_options [ARG]... -# --------------------------- -# The main option parsing loop. -func_hookable func_parse_options -func_parse_options () -{ - $debug_cmd - - func_parse_options_result= - - # this just eases exit handling - while test $# -gt 0; do - # Defer to hook functions for initial option parsing, so they - # get priority in the event of reusing an option name. - func_run_hooks func_parse_options ${1+"$@"} - - # Adjust func_parse_options positional parameters to match - eval set dummy "$func_run_hooks_result"; shift - - # Break out of the loop if we already parsed every option. - test $# -gt 0 || break - - _G_opt=$1 - shift - case $_G_opt in - --debug|-x) debug_cmd='set -x' - func_echo "enabling shell trace mode" - $debug_cmd - ;; - - --no-warnings|--no-warning|--no-warn) - set dummy --warnings none ${1+"$@"} - shift - ;; - - --warnings|--warning|-W) - test $# = 0 && func_missing_arg $_G_opt && break - case " $warning_categories $1" in - *" $1 "*) - # trailing space prevents matching last $1 above - func_append_uniq opt_warning_types " $1" - ;; - *all) - opt_warning_types=$warning_categories - ;; - *none) - opt_warning_types=none - warning_func=: - ;; - *error) - opt_warning_types=$warning_categories - warning_func=func_fatal_error - ;; - *) - func_fatal_error \ - "unsupported warning category: '$1'" - ;; - esac - shift - ;; - - --verbose|-v) opt_verbose=: ;; - --version) func_version ;; - -\?|-h) func_usage ;; - --help) func_help ;; - - # Separate optargs to long options (plugins may need this): - --*=*) func_split_equals "$_G_opt" - set dummy "$func_split_equals_lhs" \ - "$func_split_equals_rhs" ${1+"$@"} - shift - ;; - - # Separate optargs to short options: - -W*) - func_split_short_opt "$_G_opt" - set dummy "$func_split_short_opt_name" \ - "$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-v*|-x*) - func_split_short_opt "$_G_opt" - set dummy "$func_split_short_opt_name" \ - "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; - esac - done - - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - func_parse_options_result=$func_quote_for_eval_result -} - - -# func_validate_options [ARG]... -# ------------------------------ -# Perform any sanity checks on option settings and/or unconsumed -# arguments. -func_hookable func_validate_options -func_validate_options () -{ - $debug_cmd - - # Display all warnings if -W was not given. - test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" - - func_run_hooks func_validate_options ${1+"$@"} - - # Bail if the options were screwed! - $exit_cmd $EXIT_FAILURE - - # save modified positional parameters for caller - func_validate_options_result=$func_run_hooks_result -} - - - -## ----------------- ## -## Helper functions. ## -## ----------------- ## - -# This section contains the helper functions used by the rest of the -# hookable option parser framework in ascii-betical order. - - -# func_fatal_help ARG... -# ---------------------- -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - $debug_cmd - - eval \$ECHO \""Usage: $usage"\" - eval \$ECHO \""$fatal_help"\" - func_error ${1+"$@"} - exit $EXIT_FAILURE -} - - -# func_help -# --------- -# Echo long help message to standard output and exit. -func_help () -{ - $debug_cmd - - func_usage_message - $ECHO "$long_help_message" - exit 0 -} - - -# func_missing_arg ARGNAME -# ------------------------ -# Echo program name prefixed message to standard error and set global -# exit_cmd. -func_missing_arg () -{ - $debug_cmd - - func_error "Missing argument for '$1'." - exit_cmd=exit -} - - -# func_split_equals STRING -# ------------------------ -# Set func_split_equals_lhs and func_split_equals_rhs shell variables after -# splitting STRING at the '=' sign. -test -z "$_G_HAVE_XSI_OPS" \ - && (eval 'x=a/b/c; - test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ - && _G_HAVE_XSI_OPS=yes - -if test yes = "$_G_HAVE_XSI_OPS" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_split_equals () - { - $debug_cmd - - func_split_equals_lhs=${1%%=*} - func_split_equals_rhs=${1#*=} - test "x$func_split_equals_lhs" = "x$1" \ - && func_split_equals_rhs= - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_split_equals () - { - $debug_cmd - - func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` - func_split_equals_rhs= - test "x$func_split_equals_lhs" = "x$1" \ - || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` - } -fi #func_split_equals - - -# func_split_short_opt SHORTOPT -# ----------------------------- -# Set func_split_short_opt_name and func_split_short_opt_arg shell -# variables after splitting SHORTOPT after the 2nd character. -if test yes = "$_G_HAVE_XSI_OPS" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_split_short_opt () - { - $debug_cmd - - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"} - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_split_short_opt () - { - $debug_cmd - - func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` - func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` - } -fi #func_split_short_opt - - -# func_usage -# ---------- -# Echo short help message to standard output and exit. -func_usage () -{ - $debug_cmd - - func_usage_message - $ECHO "Run '$progname --help |${PAGER-more}' for full usage" - exit 0 -} - - -# func_usage_message -# ------------------ -# Echo short help message to standard output. -func_usage_message () -{ - $debug_cmd - - eval \$ECHO \""Usage: $usage"\" - echo - $SED -n 's|^# || - /^Written by/{ - x;p;x - } - h - /^Written by/q' < "$progpath" - echo - eval \$ECHO \""$usage_message"\" -} - - -# func_version -# ------------ -# Echo version message to standard output and exit. -func_version () -{ - $debug_cmd - - printf '%s\n' "$progname $scriptversion" - $SED -n ' - /(C)/!b go - :more - /\./!{ - N - s|\n# | | - b more - } - :go - /^# Written by /,/# warranty; / { - s|^# || - s|^# *$|| - s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| - p - } - /^# Written by / { - s|^# || - p - } - /^warranty; /q' < "$progpath" - - exit $? -} - - -# Local variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" -# time-stamp-time-zone: "UTC" -# End: - -# Set a version string. -scriptversion='(GNU libtool) 2.4.6' - - -# func_echo ARG... -# ---------------- -# Libtool also displays the current mode in messages, so override -# funclib.sh func_echo with this custom definition. -func_echo () -{ - $debug_cmd - - _G_message=$* - - func_echo_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_IFS - $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" - done - IFS=$func_echo_IFS -} - - -# func_warning ARG... -# ------------------- -# Libtool warnings are not categorized, so override funclib.sh -# func_warning with this simpler definition. -func_warning () -{ - $debug_cmd - - $warning_func ${1+"$@"} -} - - -## ---------------- ## -## Options parsing. ## -## ---------------- ## - -# Hook in the functions to make sure our own options are parsed during -# the option parsing loop. - -usage='$progpath [OPTION]... [MODE-ARG]...' - -# Short help message in response to '-h'. -usage_message="Options: - --config show all configuration variables - --debug enable verbose shell tracing - -n, --dry-run display commands without modifying any files - --features display basic configuration information and exit - --mode=MODE use operation mode MODE - --no-warnings equivalent to '-Wnone' - --preserve-dup-deps don't remove duplicate dependency libraries - --quiet, --silent don't print informational messages - --tag=TAG use configuration variables from tag TAG - -v, --verbose print more informational messages than default - --version print version information - -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] - -h, --help, --help-all print short, long, or detailed help message -" - -# Additional text appended to 'usage_message' in response to '--help'. -func_help () -{ - $debug_cmd - - func_usage_message - $ECHO "$long_help_message - -MODE must be one of the following: - - clean remove files from the build directory - compile compile a source file into a libtool object - execute automatically set library path, then run a program - finish complete the installation of libtool libraries - install install libraries or executables - link create a library or an executable - uninstall remove libraries from an installed directory - -MODE-ARGS vary depending on the MODE. When passed as first option, -'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. -Try '$progname --help --mode=MODE' for a more detailed description of MODE. - -When reporting a bug, please describe a test case to reproduce it and -include the following information: - - host-triplet: $host - shell: $SHELL - compiler: $LTCC - compiler flags: $LTCFLAGS - linker: $LD (gnu? $with_gnu_ld) - version: $progname (GNU libtool) 2.4.6 - automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` - autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` - -Report bugs to . -GNU libtool home page: . -General help using GNU software: ." - exit 0 -} - - -# func_lo2o OBJECT-NAME -# --------------------- -# Transform OBJECT-NAME from a '.lo' suffix to the platform specific -# object suffix. - -lo2o=s/\\.lo\$/.$objext/ -o2lo=s/\\.$objext\$/.lo/ - -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_lo2o () - { - case $1 in - *.lo) func_lo2o_result=${1%.lo}.$objext ;; - * ) func_lo2o_result=$1 ;; - esac - }' - - # func_xform LIBOBJ-OR-SOURCE - # --------------------------- - # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) - # suffix to a '.lo' libtool-object suffix. - eval 'func_xform () - { - func_xform_result=${1%.*}.lo - }' -else - # ...otherwise fall back to using sed. - func_lo2o () - { - func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` - } - - func_xform () - { - func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` - } -fi - - -# func_fatal_configuration ARG... -# ------------------------------- -# Echo program name prefixed message to standard error, followed by -# a configuration failure hint, and exit. -func_fatal_configuration () -{ - func__fatal_error ${1+"$@"} \ - "See the $PACKAGE documentation for more information." \ - "Fatal configuration error." -} - - -# func_config -# ----------- -# Display the configuration for all the tags in this script. -func_config () -{ - re_begincf='^# ### BEGIN LIBTOOL' - re_endcf='^# ### END LIBTOOL' - - # Default configuration. - $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" - - # Now print the configurations for the tags. - for tagname in $taglist; do - $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" - done - - exit $? -} - - -# func_features -# ------------- -# Display the features supported by this script. -func_features () -{ - echo "host: $host" - if test yes = "$build_libtool_libs"; then - echo "enable shared libraries" - else - echo "disable shared libraries" - fi - if test yes = "$build_old_libs"; then - echo "enable static libraries" - else - echo "disable static libraries" - fi - - exit $? -} - - -# func_enable_tag TAGNAME -# ----------------------- -# Verify that TAGNAME is valid, and either flag an error and exit, or -# enable the TAGNAME tag. We also add TAGNAME to the global $taglist -# variable here. -func_enable_tag () -{ - # Global variable: - tagname=$1 - - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf=/$re_begincf/,/$re_endcf/p - - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac - - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; - *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" - - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac -} - - -# func_check_version_match -# ------------------------ -# Ensure that we are using m4 macros, and libtool script from the same -# release of libtool. -func_check_version_match () -{ - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from an older release. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - fi - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, -$progname: but the definition of this LT_INIT comes from revision $macro_revision. -$progname: You should recreate aclocal.m4 with macros from revision $package_revision -$progname: of $PACKAGE $VERSION and run autoconf again. -_LT_EOF - fi - - exit $EXIT_MISMATCH - fi -} - - -# libtool_options_prep [ARG]... -# ----------------------------- -# Preparation for options parsed by libtool. -libtool_options_prep () -{ - $debug_mode - - # Option defaults: - opt_config=false - opt_dlopen= - opt_dry_run=false - opt_help=false - opt_mode= - opt_preserve_dup_deps=false - opt_quiet=false - - nonopt= - preserve_args= - - # Shorthand for --mode=foo, only valid as the first argument - case $1 in - clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; - compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; - execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; - finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; - install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; - link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; - uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; - esac - - # Pass back the list of options. - func_quote_for_eval ${1+"$@"} - libtool_options_prep_result=$func_quote_for_eval_result -} -func_add_hook func_options_prep libtool_options_prep - - -# libtool_parse_options [ARG]... -# --------------------------------- -# Provide handling for libtool specific options. -libtool_parse_options () -{ - $debug_cmd - - # Perform our own loop to consume as many options as possible in - # each iteration. - while test $# -gt 0; do - _G_opt=$1 - shift - case $_G_opt in - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - - --config) func_config ;; - - --dlopen|-dlopen) - opt_dlopen="${opt_dlopen+$opt_dlopen -}$1" - shift - ;; - - --preserve-dup-deps) - opt_preserve_dup_deps=: ;; - - --features) func_features ;; - - --finish) set dummy --mode finish ${1+"$@"}; shift ;; - - --help) opt_help=: ;; - - --help-all) opt_help=': help-all' ;; - - --mode) test $# = 0 && func_missing_arg $_G_opt && break - opt_mode=$1 - case $1 in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; - - # Catch anything else as an error - *) func_error "invalid argument for $_G_opt" - exit_cmd=exit - break - ;; - esac - shift - ;; - - --no-silent|--no-quiet) - opt_quiet=false - func_append preserve_args " $_G_opt" - ;; - - --no-warnings|--no-warning|--no-warn) - opt_warning=false - func_append preserve_args " $_G_opt" - ;; - - --no-verbose) - opt_verbose=false - func_append preserve_args " $_G_opt" - ;; - - --silent|--quiet) - opt_quiet=: - opt_verbose=false - func_append preserve_args " $_G_opt" - ;; - - --tag) test $# = 0 && func_missing_arg $_G_opt && break - opt_tag=$1 - func_append preserve_args " $_G_opt $1" - func_enable_tag "$1" - shift - ;; - - --verbose|-v) opt_quiet=false - opt_verbose=: - func_append preserve_args " $_G_opt" - ;; - - # An option not handled by this hook function: - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; - esac - done - - - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - libtool_parse_options_result=$func_quote_for_eval_result -} -func_add_hook func_parse_options libtool_parse_options - - - -# libtool_validate_options [ARG]... -# --------------------------------- -# Perform any sanity checks on option settings and/or unconsumed -# arguments. -libtool_validate_options () -{ - # save first non-option argument - if test 0 -lt $#; then - nonopt=$1 - shift - fi - - # preserve --debug - test : = "$debug_cmd" || func_append preserve_args " --debug" - - case $host in - # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 - # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 - *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - - $opt_help || { - # Sanity checks first: - func_check_version_match - - test yes != "$build_libtool_libs" \ - && test yes != "$build_old_libs" \ - && func_fatal_configuration "not configured to build any kind of library" - - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test execute != "$opt_mode"; then - func_error "unrecognized option '-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help=$help - help="Try '$progname --help --mode=$opt_mode' for more information." - } - - # Pass back the unparsed argument list - func_quote_for_eval ${1+"$@"} - libtool_validate_options_result=$func_quote_for_eval_result -} -func_add_hook func_validate_options libtool_validate_options - - -# Process options as early as possible so that --help and --version -# can return quickly. -func_options ${1+"$@"} -eval set dummy "$func_options_result"; shift - - - -## ----------- ## -## Main. ## -## ----------- ## - -magic='%%%MAGIC variable%%%' -magic_exe='%%%MAGIC EXE variable%%%' - -# Global variables. -extracted_archives= -extracted_serial=0 - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# func_generated_by_libtool -# True iff stdin has been generated by Libtool. This function is only -# a basic sanity check; it will hardly flush out determined imposters. -func_generated_by_libtool_p () -{ - $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 -} - -# func_lalib_p file -# True iff FILE is a libtool '.la' library or '.lo' object file. -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_lalib_p () -{ - test -f "$1" && - $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p -} - -# func_lalib_unsafe_p file -# True iff FILE is a libtool '.la' library or '.lo' object file. -# This function implements the same check as func_lalib_p without -# resorting to external programs. To this end, it redirects stdin and -# closes it afterwards, without saving the original file descriptor. -# As a safety measure, use it only where a negative result would be -# fatal anyway. Works if 'file' does not exist. -func_lalib_unsafe_p () -{ - lalib_p=no - if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then - for lalib_p_l in 1 2 3 4 - do - read lalib_p_line - case $lalib_p_line in - \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; - esac - done - exec 0<&5 5<&- - fi - test yes = "$lalib_p" -} - -# func_ltwrapper_script_p file -# True iff FILE is a libtool wrapper script -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_script_p () -{ - test -f "$1" && - $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p -} - -# func_ltwrapper_executable_p file -# True iff FILE is a libtool wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_executable_p () -{ - func_ltwrapper_exec_suffix= - case $1 in - *.exe) ;; - *) func_ltwrapper_exec_suffix=.exe ;; - esac - $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 -} - -# func_ltwrapper_scriptname file -# Assumes file is an ltwrapper_executable -# uses $file to determine the appropriate filename for a -# temporary ltwrapper_script. -func_ltwrapper_scriptname () -{ - func_dirname_and_basename "$1" "" "." - func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper -} - -# func_ltwrapper_p file -# True iff FILE is a libtool wrapper script or wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_p () -{ - func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" -} - - -# func_execute_cmds commands fail_cmd -# Execute tilde-delimited COMMANDS. -# If FAIL_CMD is given, eval that upon failure. -# FAIL_CMD may read-access the current command in variable CMD! -func_execute_cmds () -{ - $debug_cmd - - save_ifs=$IFS; IFS='~' - for cmd in $1; do - IFS=$sp$nl - eval cmd=\"$cmd\" - IFS=$save_ifs - func_show_eval "$cmd" "${2-:}" - done - IFS=$save_ifs -} - - -# func_source file -# Source FILE, adding directory component if necessary. -# Note that it is not necessary on cygwin/mingw to append a dot to -# FILE even if both FILE and FILE.exe exist: automatic-append-.exe -# behavior happens only for exec(3), not for open(2)! Also, sourcing -# 'FILE.' does not work on cygwin managed mounts. -func_source () -{ - $debug_cmd - - case $1 in - */* | *\\*) . "$1" ;; - *) . "./$1" ;; - esac -} - - -# func_resolve_sysroot PATH -# Replace a leading = in PATH with a sysroot. Store the result into -# func_resolve_sysroot_result -func_resolve_sysroot () -{ - func_resolve_sysroot_result=$1 - case $func_resolve_sysroot_result in - =*) - func_stripname '=' '' "$func_resolve_sysroot_result" - func_resolve_sysroot_result=$lt_sysroot$func_stripname_result - ;; - esac -} - -# func_replace_sysroot PATH -# If PATH begins with the sysroot, replace it with = and -# store the result into func_replace_sysroot_result. -func_replace_sysroot () -{ - case $lt_sysroot:$1 in - ?*:"$lt_sysroot"*) - func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result='='$func_stripname_result - ;; - *) - # Including no sysroot. - func_replace_sysroot_result=$1 - ;; - esac -} - -# func_infer_tag arg -# Infer tagged configuration to use if any are available and -# if one wasn't chosen via the "--tag" command line option. -# Only attempt this if the compiler in the base compile -# command doesn't match the default compiler. -# arg is usually of the form 'gcc ...' -func_infer_tag () -{ - $debug_cmd - - if test -n "$available_tags" && test -z "$tagname"; then - CC_quoted= - for arg in $CC; do - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case $@ in - # Blanks in the command may have been stripped by the calling shell, - # but not from the CC environment variable when configure was run. - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; - # Blanks at the start of $base_compile will cause this to fail - # if we don't check for them as well. - *) - for z in $available_tags; do - if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then - # Evaluate the configuration. - eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" - CC_quoted= - for arg in $CC; do - # Double-quote args containing other shell metacharacters. - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case "$@ " in - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) - # The compiler in the base compile command matches - # the one in the tagged configuration. - # Assume this is the tagged configuration we want. - tagname=$z - break - ;; - esac - fi - done - # If $tagname still isn't set, then no tagged configuration - # was found and let the user know that the "--tag" command - # line option must be used. - if test -z "$tagname"; then - func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with '--tag'" -# else -# func_verbose "using $tagname tagged configuration" - fi - ;; - esac - fi -} - - - -# func_write_libtool_object output_name pic_name nonpic_name -# Create a libtool object file (analogous to a ".la" file), -# but don't create it if we're doing a dry run. -func_write_libtool_object () -{ - write_libobj=$1 - if test yes = "$build_libtool_libs"; then - write_lobj=\'$2\' - else - write_lobj=none - fi - - if test yes = "$build_old_libs"; then - write_oldobj=\'$3\' - else - write_oldobj=none - fi - - $opt_dry_run || { - cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then - func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$sed_naive_backslashify"` - else - func_convert_core_file_wine_to_w32_result= - fi - fi -} -# end: func_convert_core_file_wine_to_w32 - - -# func_convert_core_path_wine_to_w32 ARG -# Helper function used by path conversion functions when $build is *nix, and -# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly -# configured wine environment available, with the winepath program in $build's -# $PATH. Assumes ARG has no leading or trailing path separator characters. -# -# ARG is path to be converted from $build format to win32. -# Result is available in $func_convert_core_path_wine_to_w32_result. -# Unconvertible file (directory) names in ARG are skipped; if no directory names -# are convertible, then the result may be empty. -func_convert_core_path_wine_to_w32 () -{ - $debug_cmd - - # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result= - if test -n "$1"; then - oldIFS=$IFS - IFS=: - for func_convert_core_path_wine_to_w32_f in $1; do - IFS=$oldIFS - func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result"; then - if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result - else - func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" - fi - fi - done - IFS=$oldIFS - fi -} -# end: func_convert_core_path_wine_to_w32 - - -# func_cygpath ARGS... -# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when -# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) -# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or -# (2), returns the Cygwin file name or path in func_cygpath_result (input -# file name or path is assumed to be in w32 format, as previously converted -# from $build's *nix or MSYS format). In case (3), returns the w32 file name -# or path in func_cygpath_result (input file name or path is assumed to be in -# Cygwin format). Returns an empty string on error. -# -# ARGS are passed to cygpath, with the last one being the file name or path to -# be converted. -# -# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH -# environment variable; do not put it in $PATH. -func_cygpath () -{ - $debug_cmd - - if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then - func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` - if test "$?" -ne 0; then - # on failure, ensure result is empty - func_cygpath_result= - fi - else - func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" - fi -} -#end: func_cygpath - - -# func_convert_core_msys_to_w32 ARG -# Convert file name or path ARG from MSYS format to w32 format. Return -# result in func_convert_core_msys_to_w32_result. -func_convert_core_msys_to_w32 () -{ - $debug_cmd - - # awkward: cmd appends spaces to result - func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` -} -#end: func_convert_core_msys_to_w32 - - -# func_convert_file_check ARG1 ARG2 -# Verify that ARG1 (a file name in $build format) was converted to $host -# format in ARG2. Otherwise, emit an error message, but continue (resetting -# func_to_host_file_result to ARG1). -func_convert_file_check () -{ - $debug_cmd - - if test -z "$2" && test -n "$1"; then - func_error "Could not determine host file name corresponding to" - func_error " '$1'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback: - func_to_host_file_result=$1 - fi -} -# end func_convert_file_check - - -# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH -# Verify that FROM_PATH (a path in $build format) was converted to $host -# format in TO_PATH. Otherwise, emit an error message, but continue, resetting -# func_to_host_file_result to a simplistic fallback value (see below). -func_convert_path_check () -{ - $debug_cmd - - if test -z "$4" && test -n "$3"; then - func_error "Could not determine the host path corresponding to" - func_error " '$3'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback. This is a deliberately simplistic "conversion" and - # should not be "improved". See libtool.info. - if test "x$1" != "x$2"; then - lt_replace_pathsep_chars="s|$1|$2|g" - func_to_host_path_result=`echo "$3" | - $SED -e "$lt_replace_pathsep_chars"` - else - func_to_host_path_result=$3 - fi - fi -} -# end func_convert_path_check - - -# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG -# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT -# and appending REPL if ORIG matches BACKPAT. -func_convert_path_front_back_pathsep () -{ - $debug_cmd - - case $4 in - $1 ) func_to_host_path_result=$3$func_to_host_path_result - ;; - esac - case $4 in - $2 ) func_append func_to_host_path_result "$3" - ;; - esac -} -# end func_convert_path_front_back_pathsep - - -################################################## -# $build to $host FILE NAME CONVERSION FUNCTIONS # -################################################## -# invoked via '$to_host_file_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# Result will be available in $func_to_host_file_result. - - -# func_to_host_file ARG -# Converts the file name ARG from $build format to $host format. Return result -# in func_to_host_file_result. -func_to_host_file () -{ - $debug_cmd - - $to_host_file_cmd "$1" -} -# end func_to_host_file - - -# func_to_tool_file ARG LAZY -# converts the file name ARG from $build format to toolchain format. Return -# result in func_to_tool_file_result. If the conversion in use is listed -# in (the comma separated) LAZY, no conversion takes place. -func_to_tool_file () -{ - $debug_cmd - - case ,$2, in - *,"$to_tool_file_cmd",*) - func_to_tool_file_result=$1 - ;; - *) - $to_tool_file_cmd "$1" - func_to_tool_file_result=$func_to_host_file_result - ;; - esac -} -# end func_to_tool_file - - -# func_convert_file_noop ARG -# Copy ARG to func_to_host_file_result. -func_convert_file_noop () -{ - func_to_host_file_result=$1 -} -# end func_convert_file_noop - - -# func_convert_file_msys_to_w32 ARG -# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_file_result. -func_convert_file_msys_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_to_host_file_result=$func_convert_core_msys_to_w32_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_w32 - - -# func_convert_file_cygwin_to_w32 ARG -# Convert file name ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_file_cygwin_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - # because $build is cygwin, we call "the" cygpath in $PATH; no need to use - # LT_CYGPATH in this case. - func_to_host_file_result=`cygpath -m "$1"` - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_cygwin_to_w32 - - -# func_convert_file_nix_to_w32 ARG -# Convert file name ARG from *nix to w32 format. Requires a wine environment -# and a working winepath. Returns result in func_to_host_file_result. -func_convert_file_nix_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result=$func_convert_core_file_wine_to_w32_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_w32 - - -# func_convert_file_msys_to_cygwin ARG -# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_file_msys_to_cygwin () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result=$func_cygpath_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_cygwin - - -# func_convert_file_nix_to_cygwin ARG -# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed -# in a wine environment, working winepath, and LT_CYGPATH set. Returns result -# in func_to_host_file_result. -func_convert_file_nix_to_cygwin () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. - func_convert_core_file_wine_to_w32 "$1" - func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result=$func_cygpath_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_cygwin - - -############################################# -# $build to $host PATH CONVERSION FUNCTIONS # -############################################# -# invoked via '$to_host_path_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# The result will be available in $func_to_host_path_result. -# -# Path separators are also converted from $build format to $host format. If -# ARG begins or ends with a path separator character, it is preserved (but -# converted to $host format) on output. -# -# All path conversion functions are named using the following convention: -# file name conversion function : func_convert_file_X_to_Y () -# path conversion function : func_convert_path_X_to_Y () -# where, for any given $build/$host combination the 'X_to_Y' value is the -# same. If conversion functions are added for new $build/$host combinations, -# the two new functions must follow this pattern, or func_init_to_host_path_cmd -# will break. - - -# func_init_to_host_path_cmd -# Ensures that function "pointer" variable $to_host_path_cmd is set to the -# appropriate value, based on the value of $to_host_file_cmd. -to_host_path_cmd= -func_init_to_host_path_cmd () -{ - $debug_cmd - - if test -z "$to_host_path_cmd"; then - func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd=func_convert_path_$func_stripname_result - fi -} - - -# func_to_host_path ARG -# Converts the path ARG from $build format to $host format. Return result -# in func_to_host_path_result. -func_to_host_path () -{ - $debug_cmd - - func_init_to_host_path_cmd - $to_host_path_cmd "$1" -} -# end func_to_host_path - - -# func_convert_path_noop ARG -# Copy ARG to func_to_host_path_result. -func_convert_path_noop () -{ - func_to_host_path_result=$1 -} -# end func_convert_path_noop - - -# func_convert_path_msys_to_w32 ARG -# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_path_result. -func_convert_path_msys_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # Remove leading and trailing path separator characters from ARG. MSYS - # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; - # and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result=$func_convert_core_msys_to_w32_result - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_msys_to_w32 - - -# func_convert_path_cygwin_to_w32 ARG -# Convert path ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_path_cygwin_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_cygwin_to_w32 - - -# func_convert_path_nix_to_w32 ARG -# Convert path ARG from *nix to w32 format. Requires a wine environment and -# a working winepath. Returns result in func_to_host_file_result. -func_convert_path_nix_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result=$func_convert_core_path_wine_to_w32_result - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_nix_to_w32 - - -# func_convert_path_msys_to_cygwin ARG -# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_path_msys_to_cygwin () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result=$func_cygpath_result - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_msys_to_cygwin - - -# func_convert_path_nix_to_cygwin ARG -# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a -# a wine environment, working winepath, and LT_CYGPATH set. Returns result in -# func_to_host_file_result. -func_convert_path_nix_to_cygwin () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # Remove leading and trailing path separator characters from - # ARG. msys behavior is inconsistent here, cygpath turns them - # into '.;' and ';.', and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result=$func_cygpath_result - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_nix_to_cygwin - - -# func_dll_def_p FILE -# True iff FILE is a Windows DLL '.def' file. -# Keep in sync with _LT_DLL_DEF_P in libtool.m4 -func_dll_def_p () -{ - $debug_cmd - - func_dll_def_p_tmp=`$SED -n \ - -e 's/^[ ]*//' \ - -e '/^\(;.*\)*$/d' \ - -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ - -e q \ - "$1"` - test DEF = "$func_dll_def_p_tmp" -} - - -# func_mode_compile arg... -func_mode_compile () -{ - $debug_cmd - - # Get the compilation command and the source file. - base_compile= - srcfile=$nonopt # always keep a non-empty value in "srcfile" - suppress_opt=yes - suppress_output= - arg_mode=normal - libobj= - later= - pie_flag= - - for arg - do - case $arg_mode in - arg ) - # do not "continue". Instead, add this to base_compile - lastarg=$arg - arg_mode=normal - ;; - - target ) - libobj=$arg - arg_mode=normal - continue - ;; - - normal ) - # Accept any command-line options. - case $arg in - -o) - test -n "$libobj" && \ - func_fatal_error "you cannot specify '-o' more than once" - arg_mode=target - continue - ;; - - -pie | -fpie | -fPIE) - func_append pie_flag " $arg" - continue - ;; - - -shared | -static | -prefer-pic | -prefer-non-pic) - func_append later " $arg" - continue - ;; - - -no-suppress) - suppress_opt=no - continue - ;; - - -Xcompiler) - arg_mode=arg # the next one goes into the "base_compile" arg list - continue # The current "srcfile" will either be retained or - ;; # replaced later. I would guess that would be a bug. - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - lastarg= - save_ifs=$IFS; IFS=, - for arg in $args; do - IFS=$save_ifs - func_append_quoted lastarg "$arg" - done - IFS=$save_ifs - func_stripname ' ' '' "$lastarg" - lastarg=$func_stripname_result - - # Add the arguments to base_compile. - func_append base_compile " $lastarg" - continue - ;; - - *) - # Accept the current argument as the source file. - # The previous "srcfile" becomes the current argument. - # - lastarg=$srcfile - srcfile=$arg - ;; - esac # case $arg - ;; - esac # case $arg_mode - - # Aesthetically quote the previous argument. - func_append_quoted base_compile "$lastarg" - done # for arg - - case $arg_mode in - arg) - func_fatal_error "you must specify an argument for -Xcompile" - ;; - target) - func_fatal_error "you must specify a target with '-o'" - ;; - *) - # Get the name of the library object. - test -z "$libobj" && { - func_basename "$srcfile" - libobj=$func_basename_result - } - ;; - esac - - # Recognize several different file suffixes. - # If the user specifies -o file.o, it is replaced with file.lo - case $libobj in - *.[cCFSifmso] | \ - *.ada | *.adb | *.ads | *.asm | \ - *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ - *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) - func_xform "$libobj" - libobj=$func_xform_result - ;; - esac - - case $libobj in - *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; - *) - func_fatal_error "cannot determine name of library object from '$libobj'" - ;; - esac - - func_infer_tag $base_compile - - for arg in $later; do - case $arg in - -shared) - test yes = "$build_libtool_libs" \ - || func_fatal_configuration "cannot build a shared library" - build_old_libs=no - continue - ;; - - -static) - build_libtool_libs=no - build_old_libs=yes - continue - ;; - - -prefer-pic) - pic_mode=yes - continue - ;; - - -prefer-non-pic) - pic_mode=no - continue - ;; - esac - done - - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ - && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name '$libobj' may not contain shell special characters." - func_dirname_and_basename "$obj" "/" "" - objname=$func_basename_result - xdir=$func_dirname_result - lobj=$xdir$objdir/$objname - - test -z "$base_compile" && \ - func_fatal_help "you must specify a compilation command" - - # Delete any leftover library objects. - if test yes = "$build_old_libs"; then - removelist="$obj $lobj $libobj ${libobj}T" - else - removelist="$lobj $libobj ${libobj}T" - fi - - # On Cygwin there's no "real" PIC flag so we must build both object types - case $host_os in - cygwin* | mingw* | pw32* | os2* | cegcc*) - pic_mode=default - ;; - esac - if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then - # non-PIC code in shared libraries is not supported - pic_mode=default - fi - - # Calculate the filename of the output object if compiler does - # not support -o with -c - if test no = "$compiler_c_o"; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext - lockfile=$output_obj.lock - else - output_obj= - need_locks=no - lockfile= - fi - - # Lock this critical section if it is needed - # We use this script file to make the link, it avoids creating a new file - if test yes = "$need_locks"; then - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - elif test warn = "$need_locks"; then - if test -f "$lockfile"; then - $ECHO "\ -*** ERROR, $lockfile exists and contains: -`cat $lockfile 2>/dev/null` - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - func_append removelist " $output_obj" - $ECHO "$srcfile" > "$lockfile" - fi - - $opt_dry_run || $RM $removelist - func_append removelist " $lockfile" - trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 - - func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 - srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result - - # Only build a PIC object if we are building libtool libraries. - if test yes = "$build_libtool_libs"; then - # Without this assignment, base_compile gets emptied. - fbsd_hideous_sh_bug=$base_compile - - if test no != "$pic_mode"; then - command="$base_compile $qsrcfile $pic_flag" - else - # Don't build PIC code - command="$base_compile $qsrcfile" - fi - - func_mkdir_p "$xdir$objdir" - - if test -z "$output_obj"; then - # Place PIC objects in $objdir - func_append command " -o $lobj" - fi - - func_show_eval_locale "$command" \ - 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - - if test warn = "$need_locks" && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed, then go on to compile the next one - if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then - func_show_eval '$MV "$output_obj" "$lobj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - - # Allow error messages only from the first compilation. - if test yes = "$suppress_opt"; then - suppress_output=' >/dev/null 2>&1' - fi - fi - - # Only build a position-dependent object if we build old libraries. - if test yes = "$build_old_libs"; then - if test yes != "$pic_mode"; then - # Don't build PIC code - command="$base_compile $qsrcfile$pie_flag" - else - command="$base_compile $qsrcfile $pic_flag" - fi - if test yes = "$compiler_c_o"; then - func_append command " -o $obj" - fi - - # Suppress compiler output if we already did a PIC compilation. - func_append command "$suppress_output" - func_show_eval_locale "$command" \ - '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - - if test warn = "$need_locks" && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed - if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then - func_show_eval '$MV "$output_obj" "$obj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - fi - - $opt_dry_run || { - func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" - - # Unlock the critical section if it was locked - if test no != "$need_locks"; then - removelist=$lockfile - $RM "$lockfile" - fi - } - - exit $EXIT_SUCCESS -} - -$opt_help || { - test compile = "$opt_mode" && func_mode_compile ${1+"$@"} -} - -func_mode_help () -{ - # We need to display help for each of the modes. - case $opt_mode in - "") - # Generic help is extracted from the usage comments - # at the start of this file. - func_help - ;; - - clean) - $ECHO \ -"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... - -Remove files from the build directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed -to RM. - -If FILE is a libtool library, object or program, all the files associated -with it are deleted. Otherwise, only FILE itself is deleted using RM." - ;; - - compile) - $ECHO \ -"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - -Compile a source file into a libtool library object. - -This mode accepts the following additional options: - - -o OUTPUT-FILE set the output file name to OUTPUT-FILE - -no-suppress do not suppress compiler output for multiple passes - -prefer-pic try to build PIC objects only - -prefer-non-pic try to build non-PIC objects only - -shared do not build a '.o' file suitable for static linking - -static only build a '.o' file suitable for static linking - -Wc,FLAG pass FLAG directly to the compiler - -COMPILE-COMMAND is a command to be used in creating a 'standard' object file -from the given SOURCEFILE. - -The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix '.c' with the -library object suffix, '.lo'." - ;; - - execute) - $ECHO \ -"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... - -Automatically set library path, then run a program. - -This mode accepts the following additional options: - - -dlopen FILE add the directory containing FILE to the library path - -This mode sets the library path environment variable according to '-dlopen' -flags. - -If any of the ARGS are libtool executable wrappers, then they are translated -into their corresponding uninstalled binary, and any of their required library -directories are added to the library path. - -Then, COMMAND is executed, with ARGS as arguments." - ;; - - finish) - $ECHO \ -"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... - -Complete the installation of libtool libraries. - -Each LIBDIR is a directory that contains libtool libraries. - -The commands that this mode executes may require superuser privileges. Use -the '--dry-run' option if you just want to see what would be executed." - ;; - - install) - $ECHO \ -"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... - -Install executables or libraries. - -INSTALL-COMMAND is the installation command. The first component should be -either the 'install' or 'cp' program. - -The following components of INSTALL-COMMAND are treated specially: - - -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation - -The rest of the components are interpreted as arguments to that command (only -BSD-compatible install options are recognized)." - ;; - - link) - $ECHO \ -"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... - -Link object files or libraries together to form another library, or to -create an executable program. - -LINK-COMMAND is a command using the C compiler that you would use to create -a program from several object files. - -The following components of LINK-COMMAND are treated specially: - - -all-static do not do any dynamic linking at all - -avoid-version do not add a version suffix if possible - -bindir BINDIR specify path to binaries directory (for systems where - libraries must be found in the PATH setting at runtime) - -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime - -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols - -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) - -export-symbols SYMFILE - try to export only the symbols listed in SYMFILE - -export-symbols-regex REGEX - try to export only the symbols matching REGEX - -LLIBDIR search LIBDIR for required installed libraries - -lNAME OUTPUT-FILE requires the installed library libNAME - -module build a library that can dlopened - -no-fast-install disable the fast-install mode - -no-install link a not-installable executable - -no-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE use a list of object files found in FILE to specify objects - -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) - -precious-files-regex REGEX - don't remove output files matching REGEX - -release RELEASE specify package release information - -rpath LIBDIR the created library will eventually be installed in LIBDIR - -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries - -shared only do dynamic linking of libtool libraries - -shrext SUFFIX override the standard shared library file extension - -static do not do any dynamic linking of uninstalled libtool libraries - -static-libtool-libs - do not do any dynamic linking of libtool libraries - -version-info CURRENT[:REVISION[:AGE]] - specify library version info [each variable defaults to 0] - -weak LIBNAME declare that the target provides the LIBNAME interface - -Wc,FLAG - -Xcompiler FLAG pass linker-specific FLAG directly to the compiler - -Wl,FLAG - -Xlinker FLAG pass linker-specific FLAG directly to the linker - -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) - -All other options (arguments beginning with '-') are ignored. - -Every other argument is treated as a filename. Files ending in '.la' are -treated as uninstalled libtool libraries, other files are standard or library -object files. - -If the OUTPUT-FILE ends in '.la', then a libtool library is created, -only library objects ('.lo' files) may be specified, and '-rpath' is -required, except when creating a convenience library. - -If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created -using 'ar' and 'ranlib', or on Windows using 'lib'. - -If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file -is created, otherwise an executable program is created." - ;; - - uninstall) - $ECHO \ -"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... - -Remove libraries from an installation directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed -to RM. - -If FILE is a libtool library, all the files associated with it are deleted. -Otherwise, only FILE itself is deleted using RM." - ;; - - *) - func_fatal_help "invalid operation mode '$opt_mode'" - ;; - esac - - echo - $ECHO "Try '$progname --help' for more information about other modes." -} - -# Now that we've collected a possible --mode arg, show help if necessary -if $opt_help; then - if test : = "$opt_help"; then - func_mode_help - else - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - func_mode_help - done - } | $SED -n '1p; 2,$s/^Usage:/ or: /p' - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - echo - func_mode_help - done - } | - $SED '1d - /^When reporting/,/^Report/{ - H - d - } - $x - /information about other modes/d - /more detailed .*MODE/d - s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' - fi - exit $? -fi - - -# func_mode_execute arg... -func_mode_execute () -{ - $debug_cmd - - # The first argument is the command name. - cmd=$nonopt - test -z "$cmd" && \ - func_fatal_help "you must specify a COMMAND" - - # Handle -dlopen flags immediately. - for file in $opt_dlopen; do - test -f "$file" \ - || func_fatal_help "'$file' is not a file" - - dir= - case $file in - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "'$lib' is not a valid libtool archive" - - # Read the libtool library. - dlname= - library_names= - func_source "$file" - - # Skip this library if it cannot be dlopened. - if test -z "$dlname"; then - # Warn if it was a shared library. - test -n "$library_names" && \ - func_warning "'$file' was not linked with '-export-dynamic'" - continue - fi - - func_dirname "$file" "" "." - dir=$func_dirname_result - - if test -f "$dir/$objdir/$dlname"; then - func_append dir "/$objdir" - else - if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" - fi - fi - ;; - - *.lo) - # Just add the directory containing the .lo file. - func_dirname "$file" "" "." - dir=$func_dirname_result - ;; - - *) - func_warning "'-dlopen' is ignored for non-libtool libraries and objects" - continue - ;; - esac - - # Get the absolute pathname. - absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir=$absdir - - # Now add the directory to shlibpath_var. - if eval "test -z \"\$$shlibpath_var\""; then - eval "$shlibpath_var=\"\$dir\"" - else - eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" - fi - done - - # This variable tells wrapper scripts just to set shlibpath_var - # rather than running their programs. - libtool_execute_magic=$magic - - # Check if any of the arguments is a wrapper script. - args= - for file - do - case $file in - -* | *.la | *.lo ) ;; - *) - # Do a test to see if this is really a libtool program. - if func_ltwrapper_script_p "$file"; then - func_source "$file" - # Transform arg to wrapped name. - file=$progdir/$program - elif func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - func_source "$func_ltwrapper_scriptname_result" - # Transform arg to wrapped name. - file=$progdir/$program - fi - ;; - esac - # Quote arguments (to preserve shell metacharacters). - func_append_quoted args "$file" - done - - if $opt_dry_run; then - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS - else - if test -n "$shlibpath_var"; then - # Export the shlibpath_var. - eval "export $shlibpath_var" - fi - - # Restore saved environment variables - for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES - do - eval "if test \"\${save_$lt_var+set}\" = set; then - $lt_var=\$save_$lt_var; export $lt_var - else - $lt_unset $lt_var - fi" - done - - # Now prepare to actually exec the command. - exec_cmd=\$cmd$args - fi -} - -test execute = "$opt_mode" && func_mode_execute ${1+"$@"} - - -# func_mode_finish arg... -func_mode_finish () -{ - $debug_cmd - - libs= - libdirs= - admincmds= - - for opt in "$nonopt" ${1+"$@"} - do - if test -d "$opt"; then - func_append libdirs " $opt" - - elif test -f "$opt"; then - if func_lalib_unsafe_p "$opt"; then - func_append libs " $opt" - else - func_warning "'$opt' is not a valid libtool archive" - fi - - else - func_fatal_error "invalid argument '$opt'" - fi - done - - if test -n "$libs"; then - if test -n "$lt_sysroot"; then - sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` - sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" - else - sysroot_cmd= - fi - - # Remove sysroot references - if $opt_dry_run; then - for lib in $libs; do - echo "removing references to $lt_sysroot and '=' prefixes from $lib" - done - else - tmpdir=`func_mktempdir` - for lib in $libs; do - $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ - > $tmpdir/tmp-la - mv -f $tmpdir/tmp-la $lib - done - ${RM}r "$tmpdir" - fi - fi - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for libdir in $libdirs; do - if test -n "$finish_cmds"; then - # Do each command in the finish commands. - func_execute_cmds "$finish_cmds" 'admincmds="$admincmds -'"$cmd"'"' - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" - $opt_dry_run || eval "$cmds" || func_append admincmds " - $cmds" - fi - done - fi - - # Exit here if they wanted silent mode. - $opt_quiet && exit $EXIT_SUCCESS - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - echo "----------------------------------------------------------------------" - echo "Libraries have been installed in:" - for libdir in $libdirs; do - $ECHO " $libdir" - done - echo - echo "If you ever happen to want to link against installed libraries" - echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the '-LLIBDIR'" - echo "flag during linking and do at least one of the following:" - if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the '$shlibpath_var' environment variable" - echo " during execution" - fi - if test -n "$runpath_var"; then - echo " - add LIBDIR to the '$runpath_var' environment variable" - echo " during linking" - fi - if test -n "$hardcode_libdir_flag_spec"; then - libdir=LIBDIR - eval flag=\"$hardcode_libdir_flag_spec\" - - $ECHO " - use the '$flag' linker flag" - fi - if test -n "$admincmds"; then - $ECHO " - have your system administrator run these commands:$admincmds" - fi - if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" - fi - echo - - echo "See any operating system documentation about shared libraries for" - case $host in - solaris2.[6789]|solaris2.1[0-9]) - echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" - echo "pages." - ;; - *) - echo "more information, such as the ld(1) and ld.so(8) manual pages." - ;; - esac - echo "----------------------------------------------------------------------" - fi - exit $EXIT_SUCCESS -} - -test finish = "$opt_mode" && func_mode_finish ${1+"$@"} - - -# func_mode_install arg... -func_mode_install () -{ - $debug_cmd - - # There may be an optional sh(1) argument at the beginning of - # install_prog (especially on Windows NT). - if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || - # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac - then - # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " - arg=$1 - shift - else - install_prog= - arg=$nonopt - fi - - # The real first argument should be the name of the installation program. - # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" - install_shared_prog=$install_prog - case " $install_prog " in - *[\\\ /]cp\ *) install_cp=: ;; - *) install_cp=false ;; - esac - - # We need to accept at least all the BSD install flags. - dest= - files= - opts= - prev= - install_type= - isdir=false - stripme= - no_mode=: - for arg - do - arg2= - if test -n "$dest"; then - func_append files " $dest" - dest=$arg - continue - fi - - case $arg in - -d) isdir=: ;; - -f) - if $install_cp; then :; else - prev=$arg - fi - ;; - -g | -m | -o) - prev=$arg - ;; - -s) - stripme=" -s" - continue - ;; - -*) - ;; - *) - # If the previous option needed an argument, then skip it. - if test -n "$prev"; then - if test X-m = "X$prev" && test -n "$install_override_mode"; then - arg2=$install_override_mode - no_mode=false - fi - prev= - else - dest=$arg - continue - fi - ;; - esac - - # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" - if test -n "$arg2"; then - func_quote_for_eval "$arg2" - fi - func_append install_shared_prog " $func_quote_for_eval_result" - done - - test -z "$install_prog" && \ - func_fatal_help "you must specify an install program" - - test -n "$prev" && \ - func_fatal_help "the '$prev' option requires an argument" - - if test -n "$install_override_mode" && $no_mode; then - if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" - fi - fi - - if test -z "$files"; then - if test -z "$dest"; then - func_fatal_help "no file or destination specified" - else - func_fatal_help "you must specify a destination" - fi - fi - - # Strip any trailing slash from the destination. - func_stripname '' '/' "$dest" - dest=$func_stripname_result - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=: - if $isdir; then - destdir=$dest - destname= - else - func_dirname_and_basename "$dest" "" "." - destdir=$func_dirname_result - destname=$func_basename_result - - # Not a directory, so check to see that there is only one file specified. - set dummy $files; shift - test "$#" -gt 1 && \ - func_fatal_help "'$dest' is not a directory" - fi - case $destdir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - for file in $files; do - case $file in - *.lo) ;; - *) - func_fatal_help "'$destdir' must be an absolute directory name" - ;; - esac - done - ;; - esac - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic=$magic - - staticlibs= - future_libdirs= - current_libdirs= - for file in $files; do - - # Do each installation. - case $file in - *.$libext) - # Do the static libraries later. - func_append staticlibs " $file" - ;; - - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "'$file' is not a valid libtool archive" - - library_names= - old_library= - relink_command= - func_source "$file" - - # Add the libdir to current_libdirs if it is the destination. - if test "X$destdir" = "X$libdir"; then - case "$current_libdirs " in - *" $libdir "*) ;; - *) func_append current_libdirs " $libdir" ;; - esac - else - # Note the libdir as a future libdir. - case "$future_libdirs " in - *" $libdir "*) ;; - *) func_append future_libdirs " $libdir" ;; - esac - fi - - func_dirname "$file" "/" "" - dir=$func_dirname_result - func_append dir "$objdir" - - if test -n "$relink_command"; then - # Determine the prefix the user has applied to our future dir. - inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` - - # Don't allow the user to place us outside of our expected - # location b/c this prevents finding dependent libraries that - # are installed to the same prefix. - # At present, this check doesn't affect windows .dll's that - # are installed into $libdir/../bin (currently, that works fine) - # but it's something to keep an eye on. - test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" - - if test -n "$inst_prefix_dir"; then - # Stick the inst_prefix_dir data into the link command. - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` - else - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` - fi - - func_warning "relinking '$file'" - func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' - fi - - # See the names of the shared library. - set dummy $library_names; shift - if test -n "$1"; then - realname=$1 - shift - - srcname=$realname - test -n "$relink_command" && srcname=${realname}T - - # Install the shared library and build the symlinks. - func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ - 'exit $?' - tstripme=$stripme - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - case $realname in - *.dll.a) - tstripme= - ;; - esac - ;; - os2*) - case $realname in - *_dll.a) - tstripme= - ;; - esac - ;; - esac - if test -n "$tstripme" && test -n "$striplib"; then - func_show_eval "$striplib $destdir/$realname" 'exit $?' - fi - - if test "$#" -gt 0; then - # Delete the old symlinks, and create new ones. - # Try 'ln -sf' first, because the 'ln' binary might depend on - # the symlink we replace! Solaris /bin/ln does not understand -f, - # so we also need to try rm && ln -s. - for linkname - do - test "$linkname" != "$realname" \ - && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" - done - fi - - # Do each command in the postinstall commands. - lib=$destdir/$realname - func_execute_cmds "$postinstall_cmds" 'exit $?' - fi - - # Install the pseudo-library for information purposes. - func_basename "$file" - name=$func_basename_result - instname=$dir/${name}i - func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' - - # Maybe install the static library, too. - test -n "$old_library" && func_append staticlibs " $dir/$old_library" - ;; - - *.lo) - # Install (i.e. copy) a libtool object. - - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile=$destdir/$destname - else - func_basename "$file" - destfile=$func_basename_result - destfile=$destdir/$destfile - fi - - # Deduce the name of the destination old-style object file. - case $destfile in - *.lo) - func_lo2o "$destfile" - staticdest=$func_lo2o_result - ;; - *.$objext) - staticdest=$destfile - destfile= - ;; - *) - func_fatal_help "cannot copy a libtool object to '$destfile'" - ;; - esac - - # Install the libtool object if requested. - test -n "$destfile" && \ - func_show_eval "$install_prog $file $destfile" 'exit $?' - - # Install the old object if enabled. - if test yes = "$build_old_libs"; then - # Deduce the name of the old-style object file. - func_lo2o "$file" - staticobj=$func_lo2o_result - func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' - fi - exit $EXIT_SUCCESS - ;; - - *) - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile=$destdir/$destname - else - func_basename "$file" - destfile=$func_basename_result - destfile=$destdir/$destfile - fi - - # If the file is missing, and there is a .exe on the end, strip it - # because it is most likely a libtool script we actually want to - # install - stripped_ext= - case $file in - *.exe) - if test ! -f "$file"; then - func_stripname '' '.exe' "$file" - file=$func_stripname_result - stripped_ext=.exe - fi - ;; - esac - - # Do a test to see if this is really a libtool program. - case $host in - *cygwin* | *mingw*) - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - wrapper=$func_ltwrapper_scriptname_result - else - func_stripname '' '.exe' "$file" - wrapper=$func_stripname_result - fi - ;; - *) - wrapper=$file - ;; - esac - if func_ltwrapper_script_p "$wrapper"; then - notinst_deplibs= - relink_command= - - func_source "$wrapper" - - # Check the variables that should have been set. - test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script '$wrapper'" - - finalize=: - for lib in $notinst_deplibs; do - # Check to see that each library is installed. - libdir= - if test -f "$lib"; then - func_source "$lib" - fi - libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` - if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "'$lib' has not been installed in '$libdir'" - finalize=false - fi - done - - relink_command= - func_source "$wrapper" - - outputname= - if test no = "$fast_install" && test -n "$relink_command"; then - $opt_dry_run || { - if $finalize; then - tmpdir=`func_mktempdir` - func_basename "$file$stripped_ext" - file=$func_basename_result - outputname=$tmpdir/$file - # Replace the output file specification. - relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - - $opt_quiet || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" - } - if eval "$relink_command"; then : - else - func_error "error: relink '$file' with the above command before installing it" - $opt_dry_run || ${RM}r "$tmpdir" - continue - fi - file=$outputname - else - func_warning "cannot relink '$file'" - fi - } - else - # Install the binary that we compiled earlier. - file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - # remove .exe since cygwin /usr/bin/install will append another - # one anyway - case $install_prog,$host in - */usr/bin/install*,*cygwin*) - case $file:$destfile in - *.exe:*.exe) - # this is ok - ;; - *.exe:*) - destfile=$destfile.exe - ;; - *:*.exe) - func_stripname '' '.exe' "$destfile" - destfile=$func_stripname_result - ;; - esac - ;; - esac - func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' - $opt_dry_run || if test -n "$outputname"; then - ${RM}r "$tmpdir" - fi - ;; - esac - done - - for file in $staticlibs; do - func_basename "$file" - name=$func_basename_result - - # Set up the ranlib parameters. - oldlib=$destdir/$name - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result - - func_show_eval "$install_prog \$file \$oldlib" 'exit $?' - - if test -n "$stripme" && test -n "$old_striplib"; then - func_show_eval "$old_striplib $tool_oldlib" 'exit $?' - fi - - # Do each command in the postinstall commands. - func_execute_cmds "$old_postinstall_cmds" 'exit $?' - done - - test -n "$future_libdirs" && \ - func_warning "remember to run '$progname --finish$future_libdirs'" - - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' - else - exit $EXIT_SUCCESS - fi -} - -test install = "$opt_mode" && func_mode_install ${1+"$@"} - - -# func_generate_dlsyms outputname originator pic_p -# Extract symbols from dlprefiles and create ${outputname}S.o with -# a dlpreopen symbol table. -func_generate_dlsyms () -{ - $debug_cmd - - my_outputname=$1 - my_originator=$2 - my_pic_p=${3-false} - my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` - my_dlsyms= - - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms=${my_outputname}S.c - else - func_error "not configured to extract global symbols from dlpreopened files" - fi - fi - - if test -n "$my_dlsyms"; then - case $my_dlsyms in - "") ;; - *.c) - # Discover the nlist of each of the dlfiles. - nlist=$output_objdir/$my_outputname.nm - - func_show_eval "$RM $nlist ${nlist}S ${nlist}T" - - # Parse the name list into a source file. - func_verbose "creating $output_objdir/$my_dlsyms" - - $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ - -#ifdef __cplusplus -extern \"C\" { -#endif - -#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) -#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" -#endif - -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE -/* DATA imports from DLLs on WIN32 can't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT_DLSYM_CONST -#elif defined __osf__ -/* This system does not cope well with relocations in const data. */ -# define LT_DLSYM_CONST -#else -# define LT_DLSYM_CONST const -#endif - -#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) - -/* External symbol declarations for the compiler. */\ -" - - if test yes = "$dlself"; then - func_verbose "generating symbol list for '$output'" - - $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" - - # Add our own program objects to the symbol list. - progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` - for progfile in $progfiles; do - func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from '$func_to_tool_file_result'" - $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" - done - - if test -n "$exclude_expsyms"; then - $opt_dry_run || { - eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - if test -n "$export_symbols_regex"; then - $opt_dry_run || { - eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - export_symbols=$output_objdir/$outputname.exp - $opt_dry_run || { - $RM $export_symbols - eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' - ;; - esac - } - else - $opt_dry_run || { - eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' - eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' - ;; - esac - } - fi - fi - - for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from '$dlprefile'" - func_basename "$dlprefile" - name=$func_basename_result - case $host in - *cygwin* | *mingw* | *cegcc* ) - # if an import library, we need to obtain dlname - if func_win32_import_lib_p "$dlprefile"; then - func_tr_sh "$dlprefile" - eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename= - if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then - # Use subshell, to avoid clobbering current variable values - dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname"; then - func_basename "$dlprefile_dlname" - dlprefile_dlbasename=$func_basename_result - else - # no lafile. user explicitly requested -dlpreopen . - $sharedlib_from_linklib_cmd "$dlprefile" - dlprefile_dlbasename=$sharedlib_from_linklib_result - fi - fi - $opt_dry_run || { - if test -n "$dlprefile_dlbasename"; then - eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' - else - func_warning "Could not compute DLL name from $name" - eval '$ECHO ": $name " >> "$nlist"' - fi - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | - $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" - } - else # not an import lib - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - fi - ;; - *) - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - ;; - esac - done - - $opt_dry_run || { - # Make sure we have at least an empty file. - test -f "$nlist" || : > "$nlist" - - if test -n "$exclude_expsyms"; then - $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T - $MV "$nlist"T "$nlist" - fi - - # Try sorting and uniquifying the output. - if $GREP -v "^: " < "$nlist" | - if sort -k 3 /dev/null 2>&1; then - sort -k 3 - else - sort +2 - fi | - uniq > "$nlist"S; then - : - else - $GREP -v "^: " < "$nlist" > "$nlist"S - fi - - if test -f "$nlist"S; then - eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' - else - echo '/* NONE */' >> "$output_objdir/$my_dlsyms" - fi - - func_show_eval '$RM "${nlist}I"' - if test -n "$global_symbol_to_import"; then - eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' - fi - - echo >> "$output_objdir/$my_dlsyms" "\ - -/* The mapping between symbol names and symbols. */ -typedef struct { - const char *name; - void *address; -} lt_dlsymlist; -extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[];\ -" - - if test -s "$nlist"I; then - echo >> "$output_objdir/$my_dlsyms" "\ -static void lt_syminit(void) -{ - LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; - for (; symbol->name; ++symbol) - {" - $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" - echo >> "$output_objdir/$my_dlsyms" "\ - } -}" - fi - echo >> "$output_objdir/$my_dlsyms" "\ -LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[] = -{ {\"$my_originator\", (void *) 0}," - - if test -s "$nlist"I; then - echo >> "$output_objdir/$my_dlsyms" "\ - {\"@INIT@\", (void *) <_syminit}," - fi - - case $need_lib_prefix in - no) - eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - *) - eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - esac - echo >> "$output_objdir/$my_dlsyms" "\ - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt_${my_prefix}_LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif\ -" - } # !$opt_dry_run - - pic_flag_for_symtable= - case "$compile_command " in - *" -static "*) ;; - *) - case $host in - # compiling the symbol table file with pic_flag works around - # a FreeBSD bug that causes programs to crash when -lm is - # linked before any other PIC object. But we must not use - # pic_flag when linking with -static. The problem exists in - # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. - *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) - pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; - *-*-hpux*) - pic_flag_for_symtable=" $pic_flag" ;; - *) - $my_pic_p && pic_flag_for_symtable=" $pic_flag" - ;; - esac - ;; - esac - symtab_cflags= - for arg in $LTCFLAGS; do - case $arg in - -pie | -fpie | -fPIE) ;; - *) func_append symtab_cflags " $arg" ;; - esac - done - - # Now compile the dynamic symbol file. - func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' - - # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' - - # Transform the symbol file into the correct name. - symfileobj=$output_objdir/${my_outputname}S.$objext - case $host in - *cygwin* | *mingw* | *cegcc* ) - if test -f "$output_objdir/$my_outputname.def"; then - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - else - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - fi - ;; - *) - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - ;; - esac - ;; - *) - func_fatal_error "unknown suffix for '$my_dlsyms'" - ;; - esac - else - # We keep going just in case the user didn't refer to - # lt_preloaded_symbols. The linker will fail if global_symbol_pipe - # really was required. - - # Nullify the symbol file. - compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` - fi -} - -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $debug_cmd - - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $debug_cmd - - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - -# func_win32_libid arg -# return the library type of file 'arg' -# -# Need a lot of goo to handle *both* DLLs and import libs -# Has to be a shell function in order to 'eat' the argument -# that is supplied when $file_magic_command is called. -# Despite the name, also deal with 64 bit binaries. -func_win32_libid () -{ - $debug_cmd - - win32_libid_type=unknown - win32_fileres=`file -L $1 2>/dev/null` - case $win32_fileres in - *ar\ archive\ import\ library*) # definitely import - win32_libid_type="x86 archive import" - ;; - *ar\ archive*) # could be an import, or static - # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. - if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | - $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - case $nm_interface in - "MS dumpbin") - if func_cygming_ms_implib_p "$1" || - func_cygming_gnu_implib_p "$1" - then - win32_nmres=import - else - win32_nmres= - fi - ;; - *) - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' - 1,100{ - / I /{ - s|.*|import| - p - q - } - }'` - ;; - esac - case $win32_nmres in - import*) win32_libid_type="x86 archive import";; - *) win32_libid_type="x86 archive static";; - esac - fi - ;; - *DLL*) - win32_libid_type="x86 DLL" - ;; - *executable*) # but shell scripts are "executable" too... - case $win32_fileres in - *MS\ Windows\ PE\ Intel*) - win32_libid_type="x86 DLL" - ;; - esac - ;; - esac - $ECHO "$win32_libid_type" -} - -# func_cygming_dll_for_implib ARG -# -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib () -{ - $debug_cmd - - sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` -} - -# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs -# -# The is the core of a fallback implementation of a -# platform-specific function to extract the name of the -# DLL associated with the specified import library LIBNAME. -# -# SECTION_NAME is either .idata$6 or .idata$7, depending -# on the platform and compiler that created the implib. -# -# Echos the name of the DLL associated with the -# specified import library. -func_cygming_dll_for_implib_fallback_core () -{ - $debug_cmd - - match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` - $OBJDUMP -s --section "$1" "$2" 2>/dev/null | - $SED '/^Contents of section '"$match_literal"':/{ - # Place marker at beginning of archive member dllname section - s/.*/====MARK====/ - p - d - } - # These lines can sometimes be longer than 43 characters, but - # are always uninteresting - /:[ ]*file format pe[i]\{,1\}-/d - /^In archive [^:]*:/d - # Ensure marker is printed - /^====MARK====/p - # Remove all lines with less than 43 characters - /^.\{43\}/!d - # From remaining lines, remove first 43 characters - s/^.\{43\}//' | - $SED -n ' - # Join marker and all lines until next marker into a single line - /^====MARK====/ b para - H - $ b para - b - :para - x - s/\n//g - # Remove the marker - s/^====MARK====// - # Remove trailing dots and whitespace - s/[\. \t]*$// - # Print - /./p' | - # we now have a list, one entry per line, of the stringified - # contents of the appropriate section of all members of the - # archive that possess that section. Heuristic: eliminate - # all those that have a first or second character that is - # a '.' (that is, objdump's representation of an unprintable - # character.) This should work for all archives with less than - # 0x302f exports -- but will fail for DLLs whose name actually - # begins with a literal '.' or a single character followed by - # a '.'. - # - # Of those that remain, print the first one. - $SED -e '/^\./d;/^.\./d;q' -} - -# func_cygming_dll_for_implib_fallback ARG -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# -# This fallback implementation is for use when $DLLTOOL -# does not support the --identify-strict option. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib_fallback () -{ - $debug_cmd - - if func_cygming_gnu_implib_p "$1"; then - # binutils import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1"; then - # ms-generated import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` - else - # unknown - sharedlib_from_linklib_result= - fi -} - - -# func_extract_an_archive dir oldlib -func_extract_an_archive () -{ - $debug_cmd - - f_ex_an_ar_dir=$1; shift - f_ex_an_ar_oldlib=$1 - if test yes = "$lock_old_archive_extraction"; then - lockfile=$f_ex_an_ar_oldlib.lock - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - fi - func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ - 'stat=$?; rm -f "$lockfile"; exit $stat' - if test yes = "$lock_old_archive_extraction"; then - $opt_dry_run || rm -f "$lockfile" - fi - if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then - : - else - func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" - fi -} - - -# func_extract_archives gentop oldlib ... -func_extract_archives () -{ - $debug_cmd - - my_gentop=$1; shift - my_oldlibs=${1+"$@"} - my_oldobjs= - my_xlib= - my_xabs= - my_xdir= - - for my_xlib in $my_oldlibs; do - # Extract the objects. - case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; - *) my_xabs=`pwd`"/$my_xlib" ;; - esac - func_basename "$my_xlib" - my_xlib=$func_basename_result - my_xlib_u=$my_xlib - while :; do - case " $extracted_archives " in - *" $my_xlib_u "*) - func_arith $extracted_serial + 1 - extracted_serial=$func_arith_result - my_xlib_u=lt$extracted_serial-$my_xlib ;; - *) break ;; - esac - done - extracted_archives="$extracted_archives $my_xlib_u" - my_xdir=$my_gentop/$my_xlib_u - - func_mkdir_p "$my_xdir" - - case $host in - *-darwin*) - func_verbose "Extracting $my_xabs" - # Do not bother doing anything if just a dry run - $opt_dry_run || { - darwin_orig_dir=`pwd` - cd $my_xdir || exit $? - darwin_archive=$my_xabs - darwin_curdir=`pwd` - func_basename "$darwin_archive" - darwin_base_archive=$func_basename_result - darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` - if test -n "$darwin_arches"; then - darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` - darwin_arch= - func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches; do - func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" - $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" - cd "unfat-$$/$darwin_base_archive-$darwin_arch" - func_extract_an_archive "`pwd`" "$darwin_base_archive" - cd "$darwin_curdir" - $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" - done # $darwin_arches - ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` - darwin_file= - darwin_files= - for darwin_file in $darwin_filelist; do - darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` - $LIPO -create -output "$darwin_file" $darwin_files - done # $darwin_filelist - $RM -rf unfat-$$ - cd "$darwin_orig_dir" - else - cd $darwin_orig_dir - func_extract_an_archive "$my_xdir" "$my_xabs" - fi # $darwin_arches - } # !$opt_dry_run - ;; - *) - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac - my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` - done - - func_extract_archives_result=$my_oldobjs -} - - -# func_emit_wrapper [arg=no] -# -# Emit a libtool wrapper script on stdout. -# Don't directly open a file because we may want to -# incorporate the script contents within a cygwin/mingw -# wrapper executable. Must ONLY be called from within -# func_mode_link because it depends on a number of variables -# set therein. -# -# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR -# variable will take. If 'yes', then the emitted script -# will assume that the directory where it is stored is -# the $objdir directory. This is a cygwin/mingw-specific -# behavior. -func_emit_wrapper () -{ - func_emit_wrapper_arg1=${1-no} - - $ECHO "\ -#! $SHELL - -# $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE) $VERSION -# -# The $output program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='$sed_quote_subst' - -# Be Bourne compatible -if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command=\"$relink_command\" - -# This environment variable determines our operation mode. -if test \"\$libtool_install_magic\" = \"$magic\"; then - # install mode needs the following variables: - generated_by_libtool_version='$macro_version' - notinst_deplibs='$notinst_deplibs' -else - # When we are sourced in execute mode, \$file and \$ECHO are already set. - if test \"\$libtool_execute_magic\" != \"$magic\"; then - file=\"\$0\"" - - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` - $ECHO "\ - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$1 -_LTECHO_EOF' -} - ECHO=\"$qECHO\" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's $0 value, followed by "$@". -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=\$0 - shift - for lt_opt - do - case \"\$lt_opt\" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` - test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. - lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` - cat \"\$lt_dump_D/\$lt_dump_F\" - exit 0 - ;; - --lt-*) - \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n \"\$lt_option_debug\"; then - echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" - lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ -" - case $host in - # Backslashes separate directories on plain windows - *-*-mingw | *-*-os2* | *-cegcc*) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} -" - ;; - - *) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir/\$program\" \${1+\"\$@\"} -" - ;; - esac - $ECHO "\ - \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from \$@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case \" \$* \" in - *\\ --lt-*) - for lt_wr_arg - do - case \$lt_wr_arg in - --lt-*) ;; - *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; - esac - shift - done ;; - esac - func_exec_program_core \${1+\"\$@\"} -} - - # Parse options - func_parse_lt_options \"\$0\" \${1+\"\$@\"} - - # Find the directory that this script lives in. - thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` - test \"x\$thisdir\" = \"x\$file\" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` - while test -n \"\$file\"; do - destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` - - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in - [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi - - file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` - file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 - if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then - # special case for '.' - if test \"\$thisdir\" = \".\"; then - thisdir=\`pwd\` - fi - # remove .libs from thisdir - case \"\$thisdir\" in - *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; - $objdir ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=\`cd \"\$thisdir\" && pwd\` - test -n \"\$absdir\" && thisdir=\"\$absdir\" -" - - if test yes = "$fast_install"; then - $ECHO "\ - program=lt-'$outputname'$exeext - progdir=\"\$thisdir/$objdir\" - - if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ - test \"X\$file\" != \"X\$progdir/\$program\"; }; then - - file=\"\$\$-\$program\" - - if test ! -d \"\$progdir\"; then - $MKDIR \"\$progdir\" - else - $RM \"\$progdir/\$file\" - fi" - - $ECHO "\ - - # relink executable if necessary - if test -n \"\$relink_command\"; then - if relink_command_output=\`eval \$relink_command 2>&1\`; then : - else - \$ECHO \"\$relink_command_output\" >&2 - $RM \"\$progdir/\$file\" - exit 1 - fi - fi - - $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || - { $RM \"\$progdir/\$program\"; - $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } - $RM \"\$progdir/\$file\" - fi" - else - $ECHO "\ - program='$outputname' - progdir=\"\$thisdir/$objdir\" -" - fi - - $ECHO "\ - - if test -f \"\$progdir/\$program\"; then" - - # fixup the dll searchpath if we need to. - # - # Fix the DLL searchpath if we need to. Do this before prepending - # to shlibpath, because on Windows, both are PATH and uninstalled - # libraries must come first. - if test -n "$dllsearchpath"; then - $ECHO "\ - # Add the dll search path components to the executable PATH - PATH=$dllsearchpath:\$PATH -" - fi - - # Export our shlibpath_var if we have one. - if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then - $ECHO "\ - # Add our own library path to $shlibpath_var - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" - - # Some systems cannot cope with colon-terminated $shlibpath_var - # The second colon is a workaround for a bug in BeOS R4 sed - $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` - - export $shlibpath_var -" - fi - - $ECHO "\ - if test \"\$libtool_execute_magic\" != \"$magic\"; then - # Run the actual program with our arguments. - func_exec_program \${1+\"\$@\"} - fi - else - # The program doesn't exist. - \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 - \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 - \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 - exit 1 - fi -fi\ -" -} - - -# func_emit_cwrapperexe_src -# emit the source code for a wrapper executable on stdout -# Must ONLY be called from within func_mode_link because -# it depends on a number of variable set therein. -func_emit_cwrapperexe_src () -{ - cat < -#include -#ifdef _MSC_VER -# include -# include -# include -#else -# include -# include -# ifdef __CYGWIN__ -# include -# endif -#endif -#include -#include -#include -#include -#include -#include -#include -#include - -#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) - -/* declarations of non-ANSI functions */ -#if defined __MINGW32__ -# ifdef __STRICT_ANSI__ -int _putenv (const char *); -# endif -#elif defined __CYGWIN__ -# ifdef __STRICT_ANSI__ -char *realpath (const char *, char *); -int putenv (char *); -int setenv (const char *, const char *, int); -# endif -/* #elif defined other_platform || defined ... */ -#endif - -/* portability defines, excluding path handling macros */ -#if defined _MSC_VER -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -# define S_IXUSR _S_IEXEC -#elif defined __MINGW32__ -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -#elif defined __CYGWIN__ -# define HAVE_SETENV -# define FOPEN_WB "wb" -/* #elif defined other platforms ... */ -#endif - -#if defined PATH_MAX -# define LT_PATHMAX PATH_MAX -#elif defined MAXPATHLEN -# define LT_PATHMAX MAXPATHLEN -#else -# define LT_PATHMAX 1024 -#endif - -#ifndef S_IXOTH -# define S_IXOTH 0 -#endif -#ifndef S_IXGRP -# define S_IXGRP 0 -#endif - -/* path handling portability macros */ -#ifndef DIR_SEPARATOR -# define DIR_SEPARATOR '/' -# define PATH_SEPARATOR ':' -#endif - -#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ - defined __OS2__ -# define HAVE_DOS_BASED_FILE_SYSTEM -# define FOPEN_WB "wb" -# ifndef DIR_SEPARATOR_2 -# define DIR_SEPARATOR_2 '\\' -# endif -# ifndef PATH_SEPARATOR_2 -# define PATH_SEPARATOR_2 ';' -# endif -#endif - -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - -#ifndef PATH_SEPARATOR_2 -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) -#else /* PATH_SEPARATOR_2 */ -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) -#endif /* PATH_SEPARATOR_2 */ - -#ifndef FOPEN_WB -# define FOPEN_WB "w" -#endif -#ifndef _O_BINARY -# define _O_BINARY 0 -#endif - -#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) -#define XFREE(stale) do { \ - if (stale) { free (stale); stale = 0; } \ -} while (0) - -#if defined LT_DEBUGWRAPPER -static int lt_debug = 1; -#else -static int lt_debug = 0; -#endif - -const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ - -void *xmalloc (size_t num); -char *xstrdup (const char *string); -const char *base_name (const char *name); -char *find_executable (const char *wrapper); -char *chase_symlinks (const char *pathspec); -int make_executable (const char *path); -int check_executable (const char *path); -char *strendzap (char *str, const char *pat); -void lt_debugprintf (const char *file, int line, const char *fmt, ...); -void lt_fatal (const char *file, int line, const char *message, ...); -static const char *nonnull (const char *s); -static const char *nonempty (const char *s); -void lt_setenv (const char *name, const char *value); -char *lt_extend_str (const char *orig_value, const char *add, int to_end); -void lt_update_exe_path (const char *name, const char *value); -void lt_update_lib_path (const char *name, const char *value); -char **prepare_spawn (char **argv); -void lt_dump_script (FILE *f); -EOF - - cat <= 0) - && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) - return 1; - else - return 0; -} - -int -make_executable (const char *path) -{ - int rval = 0; - struct stat st; - - lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", - nonempty (path)); - if ((!path) || (!*path)) - return 0; - - if (stat (path, &st) >= 0) - { - rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); - } - return rval; -} - -/* Searches for the full path of the wrapper. Returns - newly allocated full path name if found, NULL otherwise - Does not chase symlinks, even on platforms that support them. -*/ -char * -find_executable (const char *wrapper) -{ - int has_slash = 0; - const char *p; - const char *p_next; - /* static buffer for getcwd */ - char tmp[LT_PATHMAX + 1]; - size_t tmp_len; - char *concat_name; - - lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", - nonempty (wrapper)); - - if ((wrapper == NULL) || (*wrapper == '\0')) - return NULL; - - /* Absolute path? */ -#if defined HAVE_DOS_BASED_FILE_SYSTEM - if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - else - { -#endif - if (IS_DIR_SEPARATOR (wrapper[0])) - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } -#if defined HAVE_DOS_BASED_FILE_SYSTEM - } -#endif - - for (p = wrapper; *p; p++) - if (*p == '/') - { - has_slash = 1; - break; - } - if (!has_slash) - { - /* no slashes; search PATH */ - const char *path = getenv ("PATH"); - if (path != NULL) - { - for (p = path; *p; p = p_next) - { - const char *q; - size_t p_len; - for (q = p; *q; q++) - if (IS_PATH_SEPARATOR (*q)) - break; - p_len = (size_t) (q - p); - p_next = (*q == '\0' ? q : q + 1); - if (p_len == 0) - { - /* empty path: current directory */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = - XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - } - else - { - concat_name = - XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, p, p_len); - concat_name[p_len] = '/'; - strcpy (concat_name + p_len + 1, wrapper); - } - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - } - /* not found in PATH; assume curdir */ - } - /* Relative path | not found in path: prepend cwd */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - return NULL; -} - -char * -chase_symlinks (const char *pathspec) -{ -#ifndef S_ISLNK - return xstrdup (pathspec); -#else - char buf[LT_PATHMAX]; - struct stat s; - char *tmp_pathspec = xstrdup (pathspec); - char *p; - int has_symlinks = 0; - while (strlen (tmp_pathspec) && !has_symlinks) - { - lt_debugprintf (__FILE__, __LINE__, - "checking path component for symlinks: %s\n", - tmp_pathspec); - if (lstat (tmp_pathspec, &s) == 0) - { - if (S_ISLNK (s.st_mode) != 0) - { - has_symlinks = 1; - break; - } - - /* search backwards for last DIR_SEPARATOR */ - p = tmp_pathspec + strlen (tmp_pathspec) - 1; - while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - p--; - if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - { - /* no more DIR_SEPARATORS left */ - break; - } - *p = '\0'; - } - else - { - lt_fatal (__FILE__, __LINE__, - "error accessing file \"%s\": %s", - tmp_pathspec, nonnull (strerror (errno))); - } - } - XFREE (tmp_pathspec); - - if (!has_symlinks) - { - return xstrdup (pathspec); - } - - tmp_pathspec = realpath (pathspec, buf); - if (tmp_pathspec == 0) - { - lt_fatal (__FILE__, __LINE__, - "could not follow symlinks for %s", pathspec); - } - return xstrdup (tmp_pathspec); -#endif -} - -char * -strendzap (char *str, const char *pat) -{ - size_t len, patlen; - - assert (str != NULL); - assert (pat != NULL); - - len = strlen (str); - patlen = strlen (pat); - - if (patlen <= len) - { - str += len - patlen; - if (STREQ (str, pat)) - *str = '\0'; - } - return str; -} - -void -lt_debugprintf (const char *file, int line, const char *fmt, ...) -{ - va_list args; - if (lt_debug) - { - (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); - va_start (args, fmt); - (void) vfprintf (stderr, fmt, args); - va_end (args); - } -} - -static void -lt_error_core (int exit_status, const char *file, - int line, const char *mode, - const char *message, va_list ap) -{ - fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); - vfprintf (stderr, message, ap); - fprintf (stderr, ".\n"); - - if (exit_status >= 0) - exit (exit_status); -} - -void -lt_fatal (const char *file, int line, const char *message, ...) -{ - va_list ap; - va_start (ap, message); - lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); - va_end (ap); -} - -static const char * -nonnull (const char *s) -{ - return s ? s : "(null)"; -} - -static const char * -nonempty (const char *s) -{ - return (s && !*s) ? "(empty)" : nonnull (s); -} - -void -lt_setenv (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_setenv) setting '%s' to '%s'\n", - nonnull (name), nonnull (value)); - { -#ifdef HAVE_SETENV - /* always make a copy, for consistency with !HAVE_SETENV */ - char *str = xstrdup (value); - setenv (name, str, 1); -#else - size_t len = strlen (name) + 1 + strlen (value) + 1; - char *str = XMALLOC (char, len); - sprintf (str, "%s=%s", name, value); - if (putenv (str) != EXIT_SUCCESS) - { - XFREE (str); - } -#endif - } -} - -char * -lt_extend_str (const char *orig_value, const char *add, int to_end) -{ - char *new_value; - if (orig_value && *orig_value) - { - size_t orig_value_len = strlen (orig_value); - size_t add_len = strlen (add); - new_value = XMALLOC (char, add_len + orig_value_len + 1); - if (to_end) - { - strcpy (new_value, orig_value); - strcpy (new_value + orig_value_len, add); - } - else - { - strcpy (new_value, add); - strcpy (new_value + add_len, orig_value); - } - } - else - { - new_value = xstrdup (add); - } - return new_value; -} - -void -lt_update_exe_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - /* some systems can't cope with a ':'-terminated path #' */ - size_t len = strlen (new_value); - while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) - { - new_value[--len] = '\0'; - } - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -void -lt_update_lib_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -EOF - case $host_os in - mingw*) - cat <<"EOF" - -/* Prepares an argument vector before calling spawn(). - Note that spawn() does not by itself call the command interpreter - (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : - ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); - GetVersionEx(&v); - v.dwPlatformId == VER_PLATFORM_WIN32_NT; - }) ? "cmd.exe" : "command.com"). - Instead it simply concatenates the arguments, separated by ' ', and calls - CreateProcess(). We must quote the arguments since Win32 CreateProcess() - interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a - special way: - - Space and tab are interpreted as delimiters. They are not treated as - delimiters if they are surrounded by double quotes: "...". - - Unescaped double quotes are removed from the input. Their only effect is - that within double quotes, space and tab are treated like normal - characters. - - Backslashes not followed by double quotes are not special. - - But 2*n+1 backslashes followed by a double quote become - n backslashes followed by a double quote (n >= 0): - \" -> " - \\\" -> \" - \\\\\" -> \\" - */ -#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -char ** -prepare_spawn (char **argv) -{ - size_t argc; - char **new_argv; - size_t i; - - /* Count number of arguments. */ - for (argc = 0; argv[argc] != NULL; argc++) - ; - - /* Allocate new argument vector. */ - new_argv = XMALLOC (char *, argc + 1); - - /* Put quoted arguments into the new argument vector. */ - for (i = 0; i < argc; i++) - { - const char *string = argv[i]; - - if (string[0] == '\0') - new_argv[i] = xstrdup ("\"\""); - else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) - { - int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); - size_t length; - unsigned int backslashes; - const char *s; - char *quoted_string; - char *p; - - length = 0; - backslashes = 0; - if (quote_around) - length++; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - length += backslashes + 1; - length++; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - length += backslashes + 1; - - quoted_string = XMALLOC (char, length + 1); - - p = quoted_string; - backslashes = 0; - if (quote_around) - *p++ = '"'; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - { - unsigned int j; - for (j = backslashes + 1; j > 0; j--) - *p++ = '\\'; - } - *p++ = c; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - { - unsigned int j; - for (j = backslashes; j > 0; j--) - *p++ = '\\'; - *p++ = '"'; - } - *p = '\0'; - - new_argv[i] = quoted_string; - } - else - new_argv[i] = (char *) string; - } - new_argv[argc] = NULL; - - return new_argv; -} -EOF - ;; - esac - - cat <<"EOF" -void lt_dump_script (FILE* f) -{ -EOF - func_emit_wrapper yes | - $SED -n -e ' -s/^\(.\{79\}\)\(..*\)/\1\ -\2/ -h -s/\([\\"]\)/\\\1/g -s/$/\\n/ -s/\([^\n]*\).*/ fputs ("\1", f);/p -g -D' - cat <<"EOF" -} -EOF -} -# end: func_emit_cwrapperexe_src - -# func_win32_import_lib_p ARG -# True if ARG is an import lib, as indicated by $file_magic_cmd -func_win32_import_lib_p () -{ - $debug_cmd - - case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in - *import*) : ;; - *) false ;; - esac -} - -# func_suncc_cstd_abi -# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! -# Several compiler flags select an ABI that is incompatible with the -# Cstd library. Avoid specifying it if any are in CXXFLAGS. -func_suncc_cstd_abi () -{ - $debug_cmd - - case " $compile_command " in - *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) - suncc_use_cstd_abi=no - ;; - *) - suncc_use_cstd_abi=yes - ;; - esac -} - -# func_mode_link arg... -func_mode_link () -{ - $debug_cmd - - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - # It is impossible to link a dll without this setting, and - # we shouldn't force the makefile maintainer to figure out - # what system we are compiling for in order to pass an extra - # flag for every libtool invocation. - # allow_undefined=no - - # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll that has undefined symbols, in which case not - # even a static library is built. For now, we need to specify - # -no-undefined on the libtool link line when we can be certain - # that all symbols are satisfied, otherwise we get a static library. - allow_undefined=yes - ;; - *) - allow_undefined=yes - ;; - esac - libtool_args=$nonopt - base_compile="$nonopt $@" - compile_command=$nonopt - finalize_command=$nonopt - - compile_rpath= - finalize_rpath= - compile_shlibpath= - finalize_shlibpath= - convenience= - old_convenience= - deplibs= - old_deplibs= - compiler_flags= - linker_flags= - dllsearchpath= - lib_search_path=`pwd` - inst_prefix_dir= - new_inherited_linker_flags= - - avoid_version=no - bindir= - dlfiles= - dlprefiles= - dlself=no - export_dynamic=no - export_symbols= - export_symbols_regex= - generated= - libobjs= - ltlibs= - module=no - no_install=no - objs= - os2dllname= - non_pic_objects= - precious_files_regex= - prefer_static_libs=no - preload=false - prev= - prevarg= - release= - rpath= - xrpath= - perm_rpath= - temp_rpath= - thread_safe=no - vinfo= - vinfo_number=no - weak_libs= - single_module=$wl-single_module - func_infer_tag $base_compile - - # We need to know -static, to get the right output filenames. - for arg - do - case $arg in - -shared) - test yes != "$build_libtool_libs" \ - && func_fatal_configuration "cannot build a shared library" - build_old_libs=no - break - ;; - -all-static | -static | -static-libtool-libs) - case $arg in - -all-static) - if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then - func_warning "complete static linking is impossible in this configuration" - fi - if test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - -static) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=built - ;; - -static-libtool-libs) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - esac - build_libtool_libs=no - build_old_libs=yes - break - ;; - esac - done - - # See if our shared archives depend on static archives. - test -n "$old_archive_from_new_cmds" && build_old_libs=yes - - # Go through the arguments, transforming them on the way. - while test "$#" -gt 0; do - arg=$1 - shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - output) - func_append compile_command " @OUTPUT@" - func_append finalize_command " @OUTPUT@" - ;; - esac - - case $prev in - bindir) - bindir=$arg - prev= - continue - ;; - dlfiles|dlprefiles) - $preload || { - # Add the symbol object into the linking commands. - func_append compile_command " @SYMFILE@" - func_append finalize_command " @SYMFILE@" - preload=: - } - case $arg in - *.la | *.lo) ;; # We handle these cases below. - force) - if test no = "$dlself"; then - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - self) - if test dlprefiles = "$prev"; then - dlself=yes - elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then - dlself=yes - else - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - *) - if test dlfiles = "$prev"; then - func_append dlfiles " $arg" - else - func_append dlprefiles " $arg" - fi - prev= - continue - ;; - esac - ;; - expsyms) - export_symbols=$arg - test -f "$arg" \ - || func_fatal_error "symbol file '$arg' does not exist" - prev= - continue - ;; - expsyms_regex) - export_symbols_regex=$arg - prev= - continue - ;; - framework) - case $host in - *-*-darwin*) - case "$deplibs " in - *" $qarg.ltframework "*) ;; - *) func_append deplibs " $qarg.ltframework" # this is fixed later - ;; - esac - ;; - esac - prev= - continue - ;; - inst_prefix) - inst_prefix_dir=$arg - prev= - continue - ;; - mllvm) - # Clang does not use LLVM to link, so we can simply discard any - # '-mllvm $arg' options when doing the link step. - prev= - continue - ;; - objectlist) - if test -f "$arg"; then - save_arg=$arg - moreargs= - for fil in `cat "$save_arg"` - do -# func_append moreargs " $fil" - arg=$fil - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test none = "$pic_object" && - test none = "$non_pic_object"; then - func_fatal_error "cannot find name of object for '$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - if test none != "$pic_object"; then - # Prepend the subdirectory the object is found in. - pic_object=$xdir$pic_object - - if test dlfiles = "$prev"; then - if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test dlprefiles = "$prev"; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg=$pic_object - fi - - # Non-PIC object. - if test none != "$non_pic_object"; then - # Prepend the subdirectory the object is found in. - non_pic_object=$xdir$non_pic_object - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test none = "$pic_object"; then - arg=$non_pic_object - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object=$pic_object - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "'$arg' is not a valid libtool object" - fi - fi - done - else - func_fatal_error "link input file '$arg' does not exist" - fi - arg=$save_arg - prev= - continue - ;; - os2dllname) - os2dllname=$arg - prev= - continue - ;; - precious_regex) - precious_files_regex=$arg - prev= - continue - ;; - release) - release=-$arg - prev= - continue - ;; - rpath | xrpath) - # We need an absolute path. - case $arg in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - if test rpath = "$prev"; then - case "$rpath " in - *" $arg "*) ;; - *) func_append rpath " $arg" ;; - esac - else - case "$xrpath " in - *" $arg "*) ;; - *) func_append xrpath " $arg" ;; - esac - fi - prev= - continue - ;; - shrext) - shrext_cmds=$arg - prev= - continue - ;; - weak) - func_append weak_libs " $arg" - prev= - continue - ;; - xcclinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xcompiler) - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xlinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $wl$qarg" - prev= - func_append compile_command " $wl$qarg" - func_append finalize_command " $wl$qarg" - continue - ;; - *) - eval "$prev=\"\$arg\"" - prev= - continue - ;; - esac - fi # test -n "$prev" - - prevarg=$arg - - case $arg in - -all-static) - if test -n "$link_static_flag"; then - # See comment for -static flag below, for more details. - func_append compile_command " $link_static_flag" - func_append finalize_command " $link_static_flag" - fi - continue - ;; - - -allow-undefined) - # FIXME: remove this flag sometime in the future. - func_fatal_error "'-allow-undefined' must not be used because it is the default" - ;; - - -avoid-version) - avoid_version=yes - continue - ;; - - -bindir) - prev=bindir - continue - ;; - - -dlopen) - prev=dlfiles - continue - ;; - - -dlpreopen) - prev=dlprefiles - continue - ;; - - -export-dynamic) - export_dynamic=yes - continue - ;; - - -export-symbols | -export-symbols-regex) - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - func_fatal_error "more than one -exported-symbols argument is not allowed" - fi - if test X-export-symbols = "X$arg"; then - prev=expsyms - else - prev=expsyms_regex - fi - continue - ;; - - -framework) - prev=framework - continue - ;; - - -inst-prefix-dir) - prev=inst_prefix - continue - ;; - - # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* - # so, if we see these flags be careful not to treat them like -L - -L[A-Z][A-Z]*:*) - case $with_gcc/$host in - no/*-*-irix* | /*-*-irix*) - func_append compile_command " $arg" - func_append finalize_command " $arg" - ;; - esac - continue - ;; - - -L*) - func_stripname "-L" '' "$arg" - if test -z "$func_stripname_result"; then - if test "$#" -gt 0; then - func_fatal_error "require no space between '-L' and '$1'" - else - func_fatal_error "need path for '-L' option" - fi - fi - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - absdir=`cd "$dir" && pwd` - test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of '$dir'" - dir=$absdir - ;; - esac - case "$deplibs " in - *" -L$dir "* | *" $arg "*) - # Will only happen for absolute or sysroot arguments - ;; - *) - # Preserve sysroot, but never include relative directories - case $dir in - [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; - *) func_append deplibs " -L$dir" ;; - esac - func_append lib_search_path " $dir" - ;; - esac - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$dir:"*) ;; - ::) dllsearchpath=$dir;; - *) func_append dllsearchpath ":$dir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - continue - ;; - - -l*) - if test X-lc = "X$arg" || test X-lm = "X$arg"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) - # These systems don't actually have a C or math library (as such) - continue - ;; - *-*-os2*) - # These systems don't actually have a C library (as such) - test X-lc = "X$arg" && continue - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) - # Do not include libc due to us having libc/libc_r. - test X-lc = "X$arg" && continue - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C and math libraries are in the System framework - func_append deplibs " System.ltframework" - continue - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - test X-lc = "X$arg" && continue - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - test X-lc = "X$arg" && continue - ;; - esac - elif test X-lc_r = "X$arg"; then - case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; - esac - fi - func_append deplibs " $arg" - continue - ;; - - -mllvm) - prev=mllvm - continue - ;; - - -module) - module=yes - continue - ;; - - # Tru64 UNIX uses -model [arg] to determine the layout of C++ - # classes, name mangling, and exception handling. - # Darwin uses the -arch flag to determine output architecture. - -model|-arch|-isysroot|--sysroot) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - prev=xcompiler - continue - ;; - - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - case "$new_inherited_linker_flags " in - *" $arg "*) ;; - * ) func_append new_inherited_linker_flags " $arg" ;; - esac - continue - ;; - - -multi_module) - single_module=$wl-multi_module - continue - ;; - - -no-fast-install) - fast_install=no - continue - ;; - - -no-install) - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) - # The PATH hackery in wrapper scripts is required on Windows - # and Darwin in order for the loader to find any dlls it needs. - func_warning "'-no-install' is ignored for $host" - func_warning "assuming '-no-fast-install' instead" - fast_install=no - ;; - *) no_install=yes ;; - esac - continue - ;; - - -no-undefined) - allow_undefined=no - continue - ;; - - -objectlist) - prev=objectlist - continue - ;; - - -os2dllname) - prev=os2dllname - continue - ;; - - -o) prev=output ;; - - -precious-files-regex) - prev=precious_regex - continue - ;; - - -release) - prev=release - continue - ;; - - -rpath) - prev=rpath - continue - ;; - - -R) - prev=xrpath - continue - ;; - - -R*) - func_stripname '-R' '' "$arg" - dir=$func_stripname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - =*) - func_stripname '=' '' "$dir" - dir=$lt_sysroot$func_stripname_result - ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - continue - ;; - - -shared) - # The effects of -shared are defined in a previous loop. - continue - ;; - - -shrext) - prev=shrext - continue - ;; - - -static | -static-libtool-libs) - # The effects of -static are defined in a previous loop. - # We used to do the same as -all-static on platforms that - # didn't have a PIC flag, but the assumption that the effects - # would be equivalent was wrong. It would break on at least - # Digital Unix and AIX. - continue - ;; - - -thread-safe) - thread_safe=yes - continue - ;; - - -version-info) - prev=vinfo - continue - ;; - - -version-number) - prev=vinfo - vinfo_number=yes - continue - ;; - - -weak) - prev=weak - continue - ;; - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs=$IFS; IFS=, - for flag in $args; do - IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" - done - IFS=$save_ifs - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Wl,*) - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs=$IFS; IFS=, - for flag in $args; do - IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" - done - IFS=$save_ifs - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Xcompiler) - prev=xcompiler - continue - ;; - - -Xlinker) - prev=xlinker - continue - ;; - - -XCClinker) - prev=xcclinker - continue - ;; - - # -msg_* for osf cc - -msg_*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - - # Flags to be passed through unchanged, with rationale: - # -64, -mips[0-9] enable 64-bit mode for the SGI compiler - # -r[0-9][0-9]* specify processor for the SGI compiler - # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler - # +DA*, +DD* enable 64-bit mode for the HP compiler - # -q* compiler args for the IBM compiler - # -m*, -t[45]*, -txscale* architecture-specific flags for GCC - # -F/path path to uninstalled frameworks, gcc on darwin - # -p, -pg, --coverage, -fprofile-* profiling flags for GCC - # -fstack-protector* stack protector flags for GCC - # @file GCC response files - # -tp=* Portland pgcc target processor selection - # --sysroot=* for sysroot support - # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization - # -stdlib=* select c++ std lib with clang - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ - -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - func_append compile_command " $arg" - func_append finalize_command " $arg" - func_append compiler_flags " $arg" - continue - ;; - - -Z*) - if test os2 = "`expr $host : '.*\(os2\)'`"; then - # OS/2 uses -Zxxx to specify OS/2-specific options - compiler_flags="$compiler_flags $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - case $arg in - -Zlinker | -Zstack) - prev=xcompiler - ;; - esac - continue - else - # Otherwise treat like 'Some other compiler flag' below - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - fi - ;; - - # Some other compiler flag. - -* | +*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - - *.$objext) - # A standard object. - func_append objs " $arg" - ;; - - *.lo) - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test none = "$pic_object" && - test none = "$non_pic_object"; then - func_fatal_error "cannot find name of object for '$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - test none = "$pic_object" || { - # Prepend the subdirectory the object is found in. - pic_object=$xdir$pic_object - - if test dlfiles = "$prev"; then - if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test dlprefiles = "$prev"; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg=$pic_object - } - - # Non-PIC object. - if test none != "$non_pic_object"; then - # Prepend the subdirectory the object is found in. - non_pic_object=$xdir$non_pic_object - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test none = "$pic_object"; then - arg=$non_pic_object - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object=$pic_object - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "'$arg' is not a valid libtool object" - fi - fi - ;; - - *.$libext) - # An archive. - func_append deplibs " $arg" - func_append old_deplibs " $arg" - continue - ;; - - *.la) - # A libtool-controlled library. - - func_resolve_sysroot "$arg" - if test dlfiles = "$prev"; then - # This library was specified with -dlopen. - func_append dlfiles " $func_resolve_sysroot_result" - prev= - elif test dlprefiles = "$prev"; then - # The library was specified with -dlpreopen. - func_append dlprefiles " $func_resolve_sysroot_result" - prev= - else - func_append deplibs " $func_resolve_sysroot_result" - fi - continue - ;; - - # Some other compiler argument. - *) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - esac # arg - - # Now actually substitute the argument into the commands. - if test -n "$arg"; then - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - done # argument parsing loop - - test -n "$prev" && \ - func_fatal_help "the '$prevarg' option requires an argument" - - if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then - eval arg=\"$export_dynamic_flag_spec\" - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - - oldlibs= - # calculate the name of the file, without its directory - func_basename "$output" - outputname=$func_basename_result - libobjs_save=$libobjs - - if test -n "$shlibpath_var"; then - # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` - else - shlib_search_path= - fi - eval sys_lib_search_path=\"$sys_lib_search_path_spec\" - eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" - - # Definition is injected by LT_CONFIG during libtool generation. - func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" - - func_dirname "$output" "/" "" - output_objdir=$func_dirname_result$objdir - func_to_tool_file "$output_objdir/" - tool_output_objdir=$func_to_tool_file_result - # Create the object directory. - func_mkdir_p "$output_objdir" - - # Determine the type of output - case $output in - "") - func_fatal_help "you must specify an output file" - ;; - *.$libext) linkmode=oldlib ;; - *.lo | *.$objext) linkmode=obj ;; - *.la) linkmode=lib ;; - *) linkmode=prog ;; # Anything else should be a program. - esac - - specialdeplibs= - - libs= - # Find all interdependent deplibs by searching for libraries - # that are linked more than once (e.g. -la -lb -la) - for deplib in $deplibs; do - if $opt_preserve_dup_deps; then - case "$libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append libs " $deplib" - done - - if test lib = "$linkmode"; then - libs="$predeps $libs $compiler_lib_search_path $postdeps" - - # Compute libraries that are listed more than once in $predeps - # $postdeps and mark them as special (i.e., whose duplicates are - # not to be eliminated). - pre_post_deps= - if $opt_duplicate_compiler_generated_deps; then - for pre_post_dep in $predeps $postdeps; do - case "$pre_post_deps " in - *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; - esac - func_append pre_post_deps " $pre_post_dep" - done - fi - pre_post_deps= - fi - - deplibs= - newdependency_libs= - newlib_search_path= - need_relink=no # whether we're linking any uninstalled libtool libraries - notinst_deplibs= # not-installed libtool libraries - notinst_path= # paths that contain not-installed libtool libraries - - case $linkmode in - lib) - passes="conv dlpreopen link" - for file in $dlfiles $dlprefiles; do - case $file in - *.la) ;; - *) - func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" - ;; - esac - done - ;; - prog) - compile_deplibs= - finalize_deplibs= - alldeplibs=false - newdlfiles= - newdlprefiles= - passes="conv scan dlopen dlpreopen link" - ;; - *) passes="conv" - ;; - esac - - for pass in $passes; do - # The preopen pass in lib mode reverses $deplibs; put it back here - # so that -L comes before libs that need it for instance... - if test lib,link = "$linkmode,$pass"; then - ## FIXME: Find the place where the list is rebuilt in the wrong - ## order, and fix it there properly - tmp_deplibs= - for deplib in $deplibs; do - tmp_deplibs="$deplib $tmp_deplibs" - done - deplibs=$tmp_deplibs - fi - - if test lib,link = "$linkmode,$pass" || - test prog,scan = "$linkmode,$pass"; then - libs=$deplibs - deplibs= - fi - if test prog = "$linkmode"; then - case $pass in - dlopen) libs=$dlfiles ;; - dlpreopen) libs=$dlprefiles ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; - esac - fi - if test lib,dlpreopen = "$linkmode,$pass"; then - # Collect and forward deplibs of preopened libtool libs - for lib in $dlprefiles; do - # Ignore non-libtool-libs - dependency_libs= - func_resolve_sysroot "$lib" - case $lib in - *.la) func_source "$func_resolve_sysroot_result" ;; - esac - - # Collect preopened libtool deplibs, except any this library - # has declared as weak libs - for deplib in $dependency_libs; do - func_basename "$deplib" - deplib_base=$func_basename_result - case " $weak_libs " in - *" $deplib_base "*) ;; - *) func_append deplibs " $deplib" ;; - esac - done - done - libs=$dlprefiles - fi - if test dlopen = "$pass"; then - # Collect dlpreopened libraries - save_deplibs=$deplibs - deplibs= - fi - - for deplib in $libs; do - lib= - found=false - case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append compiler_flags " $deplib" - if test lib = "$linkmode"; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -l*) - if test lib != "$linkmode" && test prog != "$linkmode"; then - func_warning "'-l' is ignored for archives/objects" - continue - fi - func_stripname '-l' '' "$deplib" - name=$func_stripname_result - if test lib = "$linkmode"; then - searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" - else - searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" - fi - for searchdir in $searchdirs; do - for search_ext in .la $std_shrext .so .a; do - # Search the libtool library - lib=$searchdir/lib$name$search_ext - if test -f "$lib"; then - if test .la = "$search_ext"; then - found=: - else - found=false - fi - break 2 - fi - done - done - if $found; then - # deplib is a libtool library - # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, - # We need to do some special things here, and not later. - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - case " $predeps $postdeps " in - *" $deplib "*) - if func_lalib_p "$lib"; then - library_names= - old_library= - func_source "$lib" - for l in $old_library $library_names; do - ll=$l - done - if test "X$ll" = "X$old_library"; then # only static version available - found=false - func_dirname "$lib" "" "." - ladir=$func_dirname_result - lib=$ladir/$old_library - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - fi - ;; - *) ;; - esac - fi - else - # deplib doesn't seem to be a libtool library - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - ;; # -l - *.ltframework) - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - if test lib = "$linkmode"; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -L*) - case $linkmode in - lib) - deplibs="$deplib $deplibs" - test conv = "$pass" && continue - newdependency_libs="$deplib $newdependency_libs" - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - prog) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - continue - fi - if test scan = "$pass"; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - *) - func_warning "'-L' is ignored for archives/objects" - ;; - esac # linkmode - continue - ;; # -L - -R*) - if test link = "$pass"; then - func_stripname '-R' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # Make sure the xrpath contains only unique directories. - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - fi - deplibs="$deplib $deplibs" - continue - ;; - *.la) - func_resolve_sysroot "$deplib" - lib=$func_resolve_sysroot_result - ;; - *.$libext) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - continue - fi - case $linkmode in - lib) - # Linking convenience modules into shared libraries is allowed, - # but linking other static libraries is non-portable. - case " $dlpreconveniencelibs " in - *" $deplib "*) ;; - *) - valid_a_lib=false - case $deplibs_check_method in - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=: - fi - ;; - pass_all) - valid_a_lib=: - ;; - esac - if $valid_a_lib; then - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" - else - echo - $ECHO "*** Warning: Trying to link with static lib archive $deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because the file extensions .$libext of this argument makes me believe" - echo "*** that it is just a static archive that I should not use here." - fi - ;; - esac - continue - ;; - prog) - if test link != "$pass"; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - continue - ;; - esac # linkmode - ;; # *.$libext - *.lo | *.$objext) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - elif test prog = "$linkmode"; then - if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then - # If there is no dlopen support or we're linking statically, - # we need to preload. - func_append newdlprefiles " $deplib" - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append newdlfiles " $deplib" - fi - fi - continue - ;; - %DEPLIBS%) - alldeplibs=: - continue - ;; - esac # case $deplib - - $found || test -f "$lib" \ - || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$lib" \ - || func_fatal_error "'$lib' is not a valid libtool archive" - - func_dirname "$lib" "" "." - ladir=$func_dirname_result - - dlname= - dlopen= - dlpreopen= - libdir= - library_names= - old_library= - inherited_linker_flags= - # If the library was installed with an old release of libtool, - # it will not redefine variables installed, or shouldnotlink - installed=yes - shouldnotlink=no - avoidtemprpath= - - - # Read the .la file - func_source "$lib" - - # Convert "-framework foo" to "foo.ltframework" - if test -n "$inherited_linker_flags"; then - tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` - for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do - case " $new_inherited_linker_flags " in - *" $tmp_inherited_linker_flag "*) ;; - *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; - esac - done - fi - dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test lib,link = "$linkmode,$pass" || - test prog,scan = "$linkmode,$pass" || - { test prog != "$linkmode" && test lib != "$linkmode"; }; then - test -n "$dlopen" && func_append dlfiles " $dlopen" - test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" - fi - - if test conv = "$pass"; then - # Only check for convenience libraries - deplibs="$lib $deplibs" - if test -z "$libdir"; then - if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for '$lib'" - fi - # It is a libtool convenience library, so add in its objects. - func_append convenience " $ladir/$objdir/$old_library" - func_append old_convenience " $ladir/$objdir/$old_library" - elif test prog != "$linkmode" && test lib != "$linkmode"; then - func_fatal_error "'$lib' is not a convenience library" - fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done - continue - fi # $pass = conv - - - # Get the name of the library we link against. - linklib= - if test -n "$old_library" && - { test yes = "$prefer_static_libs" || - test built,no = "$prefer_static_libs,$installed"; }; then - linklib=$old_library - else - for l in $old_library $library_names; do - linklib=$l - done - fi - if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for '$lib'" - fi - - # This library was specified with -dlopen. - if test dlopen = "$pass"; then - test -z "$libdir" \ - && func_fatal_error "cannot -dlopen a convenience library: '$lib'" - if test -z "$dlname" || - test yes != "$dlopen_support" || - test no = "$build_libtool_libs" - then - # If there is no dlname, no dlopen support or we're linking - # statically, we need to preload. We also need to preload any - # dependent libraries so libltdl's deplib preloader doesn't - # bomb out in the load deplibs phase. - func_append dlprefiles " $lib $dependency_libs" - else - func_append newdlfiles " $lib" - fi - continue - fi # $pass = dlopen - - # We need an absolute path. - case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; - *) - abs_ladir=`cd "$ladir" && pwd` - if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of '$ladir'" - func_warning "passing it literally to the linker, although it might fail" - abs_ladir=$ladir - fi - ;; - esac - func_basename "$lib" - laname=$func_basename_result - - # Find the relevant object directory and library name. - if test yes = "$installed"; then - if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library '$lib' was moved." - dir=$ladir - absdir=$abs_ladir - libdir=$abs_ladir - else - dir=$lt_sysroot$libdir - absdir=$lt_sysroot$libdir - fi - test yes = "$hardcode_automatic" && avoidtemprpath=yes - else - if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir=$ladir - absdir=$abs_ladir - # Remove this search path later - func_append notinst_path " $abs_ladir" - else - dir=$ladir/$objdir - absdir=$abs_ladir/$objdir - # Remove this search path later - func_append notinst_path " $abs_ladir" - fi - fi # $installed = yes - func_stripname 'lib' '.la' "$laname" - name=$func_stripname_result - - # This library was specified with -dlpreopen. - if test dlpreopen = "$pass"; then - if test -z "$libdir" && test prog = "$linkmode"; then - func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" - fi - case $host in - # special handling for platforms with PE-DLLs. - *cygwin* | *mingw* | *cegcc* ) - # Linker will automatically link against shared library if both - # static and shared are present. Therefore, ensure we extract - # symbols from the import library if a shared library is present - # (otherwise, the dlopen module name will be incorrect). We do - # this by putting the import library name into $newdlprefiles. - # We recover the dlopen module name by 'saving' the la file - # name in a special purpose variable, and (later) extracting the - # dlname from the la file. - if test -n "$dlname"; then - func_tr_sh "$dir/$linklib" - eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" - func_append newdlprefiles " $dir/$linklib" - else - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - fi - ;; - * ) - # Prefer using a static library (so that no silly _DYNAMIC symbols - # are required to link). - if test -n "$old_library"; then - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - # Otherwise, use the dlname, so that lt_dlopen finds it. - elif test -n "$dlname"; then - func_append newdlprefiles " $dir/$dlname" - else - func_append newdlprefiles " $dir/$linklib" - fi - ;; - esac - fi # $pass = dlpreopen - - if test -z "$libdir"; then - # Link the convenience library - if test lib = "$linkmode"; then - deplibs="$dir/$old_library $deplibs" - elif test prog,link = "$linkmode,$pass"; then - compile_deplibs="$dir/$old_library $compile_deplibs" - finalize_deplibs="$dir/$old_library $finalize_deplibs" - else - deplibs="$lib $deplibs" # used for prog,scan pass - fi - continue - fi - - - if test prog = "$linkmode" && test link != "$pass"; then - func_append newlib_search_path " $ladir" - deplibs="$lib $deplibs" - - linkalldeplibs=false - if test no != "$link_all_deplibs" || test -z "$library_names" || - test no = "$build_libtool_libs"; then - linkalldeplibs=: - fi - - tmp_libs= - for deplib in $dependency_libs; do - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - esac - # Need to link against all dependency_libs? - if $linkalldeplibs; then - deplibs="$deplib $deplibs" - else - # Need to hardcode shared library paths - # or/and link against static libraries - newdependency_libs="$deplib $newdependency_libs" - fi - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done # for deplib - continue - fi # $linkmode = prog... - - if test prog,link = "$linkmode,$pass"; then - if test -n "$library_names" && - { { test no = "$prefer_static_libs" || - test built,yes = "$prefer_static_libs,$installed"; } || - test -z "$old_library"; }; then - # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then - # Make sure the rpath contains only unique directories. - case $temp_rpath: in - *"$absdir:"*) ;; - *) func_append temp_rpath "$absdir:" ;; - esac - fi - - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi # $linkmode,$pass = prog,link... - - if $alldeplibs && - { test pass_all = "$deplibs_check_method" || - { test yes = "$build_libtool_libs" && - test -n "$library_names"; }; }; then - # We only need to search for static libraries - continue - fi - fi - - link_static=no # Whether the deplib will be linked statically - use_static_libs=$prefer_static_libs - if test built = "$use_static_libs" && test yes = "$installed"; then - use_static_libs=no - fi - if test -n "$library_names" && - { test no = "$use_static_libs" || test -z "$old_library"; }; then - case $host in - *cygwin* | *mingw* | *cegcc* | *os2*) - # No point in relinking DLLs because paths are not encoded - func_append notinst_deplibs " $lib" - need_relink=no - ;; - *) - if test no = "$installed"; then - func_append notinst_deplibs " $lib" - need_relink=yes - fi - ;; - esac - # This is a shared library - - # Warn about portability, can't link against -module's on some - # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule= - for dlpremoduletest in $dlprefiles; do - if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule=$dlpremoduletest - break - fi - done - if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then - echo - if test prog = "$linkmode"; then - $ECHO "*** Warning: Linking the executable $output against the loadable module" - else - $ECHO "*** Warning: Linking the shared library $output against the loadable module" - fi - $ECHO "*** $linklib is not portable!" - fi - if test lib = "$linkmode" && - test yes = "$hardcode_into_libs"; then - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi - - if test -n "$old_archive_from_expsyms_cmds"; then - # figure out the soname - set dummy $library_names - shift - realname=$1 - shift - libname=`eval "\\$ECHO \"$libname_spec\""` - # use dlname if we got it. it's perfectly good, no? - if test -n "$dlname"; then - soname=$dlname - elif test -n "$soname_spec"; then - # bleh windows - case $host in - *cygwin* | mingw* | *cegcc* | *os2*) - func_arith $current - $age - major=$func_arith_result - versuffix=-$major - ;; - esac - eval soname=\"$soname_spec\" - else - soname=$realname - fi - - # Make a new name for the extract_expsyms_cmds to use - soroot=$soname - func_basename "$soroot" - soname=$func_basename_result - func_stripname 'lib' '.dll' "$soname" - newlib=libimp-$func_stripname_result.a - - # If the library has no export list, then create one now - if test -f "$output_objdir/$soname-def"; then : - else - func_verbose "extracting exported symbol list from '$soname'" - func_execute_cmds "$extract_expsyms_cmds" 'exit $?' - fi - - # Create $newlib - if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for '$soname'" - func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' - fi - # make sure the library variables are pointing to the new library - dir=$output_objdir - linklib=$newlib - fi # test -n "$old_archive_from_expsyms_cmds" - - if test prog = "$linkmode" || test relink != "$opt_mode"; then - add_shlibpath= - add_dir= - add= - lib_linked=yes - case $hardcode_action in - immediate | unsupported) - if test no = "$hardcode_direct"; then - add=$dir/$linklib - case $host in - *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; - *-*-sysv4*uw2*) add_dir=-L$dir ;; - *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir=-L$dir ;; - *-*-darwin* ) - # if the lib is a (non-dlopened) module then we cannot - # link against it, someone is ignoring the earlier warnings - if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null; then - if test "X$dlopenmodule" != "X$lib"; then - $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library"; then - echo - echo "*** And there doesn't seem to be a static archive available" - echo "*** The link will probably fail, sorry" - else - add=$dir/$old_library - fi - elif test -n "$old_library"; then - add=$dir/$old_library - fi - fi - esac - elif test no = "$hardcode_minus_L"; then - case $host in - *-*-sunos*) add_shlibpath=$dir ;; - esac - add_dir=-L$dir - add=-l$name - elif test no = "$hardcode_shlibpath_var"; then - add_shlibpath=$dir - add=-l$name - else - lib_linked=no - fi - ;; - relink) - if test yes = "$hardcode_direct" && - test no = "$hardcode_direct_absolute"; then - add=$dir/$linklib - elif test yes = "$hardcode_minus_L"; then - add_dir=-L$absdir - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add=-l$name - elif test yes = "$hardcode_shlibpath_var"; then - add_shlibpath=$dir - add=-l$name - else - lib_linked=no - fi - ;; - *) lib_linked=no ;; - esac - - if test yes != "$lib_linked"; then - func_fatal_configuration "unsupported hardcode properties" - fi - - if test -n "$add_shlibpath"; then - case :$compile_shlibpath: in - *":$add_shlibpath:"*) ;; - *) func_append compile_shlibpath "$add_shlibpath:" ;; - esac - fi - if test prog = "$linkmode"; then - test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" - test -n "$add" && compile_deplibs="$add $compile_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - if test yes != "$hardcode_direct" && - test yes != "$hardcode_minus_L" && - test yes = "$hardcode_shlibpath_var"; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - fi - fi - fi - - if test prog = "$linkmode" || test relink = "$opt_mode"; then - add_shlibpath= - add_dir= - add= - # Finalize command for both is simple: just hardcode it. - if test yes = "$hardcode_direct" && - test no = "$hardcode_direct_absolute"; then - add=$libdir/$linklib - elif test yes = "$hardcode_minus_L"; then - add_dir=-L$libdir - add=-l$name - elif test yes = "$hardcode_shlibpath_var"; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - add=-l$name - elif test yes = "$hardcode_automatic"; then - if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib"; then - add=$inst_prefix_dir$libdir/$linklib - else - add=$libdir/$linklib - fi - else - # We cannot seem to hardcode it, guess we'll fake it. - add_dir=-L$libdir - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add=-l$name - fi - - if test prog = "$linkmode"; then - test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" - test -n "$add" && finalize_deplibs="$add $finalize_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - fi - fi - elif test prog = "$linkmode"; then - # Here we assume that one of hardcode_direct or hardcode_minus_L - # is not unsupported. This is valid on all known static and - # shared platforms. - if test unsupported != "$hardcode_direct"; then - test -n "$old_library" && linklib=$old_library - compile_deplibs="$dir/$linklib $compile_deplibs" - finalize_deplibs="$dir/$linklib $finalize_deplibs" - else - compile_deplibs="-l$name -L$dir $compile_deplibs" - finalize_deplibs="-l$name -L$dir $finalize_deplibs" - fi - elif test yes = "$build_libtool_libs"; then - # Not a shared library - if test pass_all != "$deplibs_check_method"; then - # We're trying link a shared library against a static one - # but the system doesn't support it. - - # Just print a warning and add the library to dependency_libs so - # that the program can be linked against the static library. - echo - $ECHO "*** Warning: This system cannot link to static lib archive $lib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have." - if test yes = "$module"; then - echo "*** But as you try to build a module library, libtool will still create " - echo "*** a static module, that should work as long as the dlopening application" - echo "*** is linked with the -dlopen flag to resolve symbols at runtime." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using 'nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** 'nm' from GNU binutils and a full rebuild may help." - fi - if test no = "$build_old_libs"; then - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - else - deplibs="$dir/$old_library $deplibs" - link_static=yes - fi - fi # link shared/static library? - - if test lib = "$linkmode"; then - if test -n "$dependency_libs" && - { test yes != "$hardcode_into_libs" || - test yes = "$build_old_libs" || - test yes = "$link_static"; }; then - # Extract -R from dependency_libs - temp_deplibs= - for libdir in $dependency_libs; do - case $libdir in - -R*) func_stripname '-R' '' "$libdir" - temp_xrpath=$func_stripname_result - case " $xrpath " in - *" $temp_xrpath "*) ;; - *) func_append xrpath " $temp_xrpath";; - esac;; - *) func_append temp_deplibs " $libdir";; - esac - done - dependency_libs=$temp_deplibs - fi - - func_append newlib_search_path " $absdir" - # Link against this library - test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" - # ... and its dependency_libs - tmp_libs= - for deplib in $dependency_libs; do - newdependency_libs="$deplib $newdependency_libs" - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result";; - *) func_resolve_sysroot "$deplib" ;; - esac - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $func_resolve_sysroot_result "*) - func_append specialdeplibs " $func_resolve_sysroot_result" ;; - esac - fi - func_append tmp_libs " $func_resolve_sysroot_result" - done - - if test no != "$link_all_deplibs"; then - # Add the search paths of all dependency libraries - for deplib in $dependency_libs; do - path= - case $deplib in - -L*) path=$deplib ;; - *.la) - func_resolve_sysroot "$deplib" - deplib=$func_resolve_sysroot_result - func_dirname "$deplib" "" "." - dir=$func_dirname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of '$dir'" - absdir=$dir - fi - ;; - esac - if $GREP "^installed=no" $deplib > /dev/null; then - case $host in - *-*-darwin*) - depdepl= - eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names"; then - for tmp in $deplibrary_names; do - depdepl=$tmp - done - if test -f "$absdir/$objdir/$depdepl"; then - depdepl=$absdir/$objdir/$depdepl - darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - if test -z "$darwin_install_name"; then - darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - fi - func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" - func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" - path= - fi - fi - ;; - *) - path=-L$absdir/$objdir - ;; - esac - else - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - test -z "$libdir" && \ - func_fatal_error "'$deplib' is not a valid libtool archive" - test "$absdir" != "$libdir" && \ - func_warning "'$deplib' seems to be moved" - - path=-L$absdir - fi - ;; - esac - case " $deplibs " in - *" $path "*) ;; - *) deplibs="$path $deplibs" ;; - esac - done - fi # link_all_deplibs != no - fi # linkmode = lib - done # for deplib in $libs - if test link = "$pass"; then - if test prog = "$linkmode"; then - compile_deplibs="$new_inherited_linker_flags $compile_deplibs" - finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" - else - compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - fi - fi - dependency_libs=$newdependency_libs - if test dlpreopen = "$pass"; then - # Link the dlpreopened libraries before other libraries - for deplib in $save_deplibs; do - deplibs="$deplib $deplibs" - done - fi - if test dlopen != "$pass"; then - test conv = "$pass" || { - # Make sure lib_search_path contains only unique directories. - lib_search_path= - for dir in $newlib_search_path; do - case "$lib_search_path " in - *" $dir "*) ;; - *) func_append lib_search_path " $dir" ;; - esac - done - newlib_search_path= - } - - if test prog,link = "$linkmode,$pass"; then - vars="compile_deplibs finalize_deplibs" - else - vars=deplibs - fi - for var in $vars dependency_libs; do - # Add libraries to $var in reverse order - eval tmp_libs=\"\$$var\" - new_libs= - for deplib in $tmp_libs; do - # FIXME: Pedantically, this is the right thing to do, so - # that some nasty dependency loop isn't accidentally - # broken: - #new_libs="$deplib $new_libs" - # Pragmatically, this seems to cause very few problems in - # practice: - case $deplib in - -L*) new_libs="$deplib $new_libs" ;; - -R*) ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or - # is implicitly linked in more than once by the - # compiler, it is considered special, and multiple - # occurrences thereof are not removed. Compare this - # with having the same library being listed as a - # dependency of multiple other libraries: in this case, - # we know (pedantically, we assume) the library does not - # need to be listed more than once, so we keep only the - # last copy. This is not always right, but it is rare - # enough that we require users that really mean to play - # such unportable linking tricks to link the library - # using -Wl,-lname, so that libtool does not consider it - # for duplicate removal. - case " $specialdeplibs " in - *" $deplib "*) new_libs="$deplib $new_libs" ;; - *) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$deplib $new_libs" ;; - esac - ;; - esac - ;; - esac - done - tmp_libs= - for deplib in $new_libs; do - case $deplib in - -L*) - case " $tmp_libs " in - *" $deplib "*) ;; - *) func_append tmp_libs " $deplib" ;; - esac - ;; - *) func_append tmp_libs " $deplib" ;; - esac - done - eval $var=\"$tmp_libs\" - done # for var - fi - - # Add Sun CC postdeps if required: - test CXX = "$tagname" && { - case $host_os in - linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C++ 5.9 - func_suncc_cstd_abi - - if test no != "$suncc_use_cstd_abi"; then - func_append postdeps ' -library=Cstd -library=Crun' - fi - ;; - esac - ;; - - solaris*) - func_cc_basename "$CC" - case $func_cc_basename_result in - CC* | sunCC*) - func_suncc_cstd_abi - - if test no != "$suncc_use_cstd_abi"; then - func_append postdeps ' -library=Cstd -library=Crun' - fi - ;; - esac - ;; - esac - } - - # Last step: remove runtime libs from dependency_libs - # (they stay in deplibs) - tmp_libs= - for i in $dependency_libs; do - case " $predeps $postdeps $compiler_lib_search_path " in - *" $i "*) - i= - ;; - esac - if test -n "$i"; then - func_append tmp_libs " $i" - fi - done - dependency_libs=$tmp_libs - done # for pass - if test prog = "$linkmode"; then - dlfiles=$newdlfiles - fi - if test prog = "$linkmode" || test lib = "$linkmode"; then - dlprefiles=$newdlprefiles - fi - - case $linkmode in - oldlib) - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - func_warning "'-dlopen' is ignored for archives" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "'-l' and '-L' are ignored for archives" ;; - esac - - test -n "$rpath" && \ - func_warning "'-rpath' is ignored for archives" - - test -n "$xrpath" && \ - func_warning "'-R' is ignored for archives" - - test -n "$vinfo" && \ - func_warning "'-version-info/-version-number' is ignored for archives" - - test -n "$release" && \ - func_warning "'-release' is ignored for archives" - - test -n "$export_symbols$export_symbols_regex" && \ - func_warning "'-export-symbols' is ignored for archives" - - # Now set the variables for building old libraries. - build_libtool_libs=no - oldlibs=$output - func_append objs "$old_deplibs" - ;; - - lib) - # Make sure we only generate libraries of the form 'libNAME.la'. - case $outputname in - lib*) - func_stripname 'lib' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - ;; - *) - test no = "$module" \ - && func_fatal_help "libtool library '$output' must begin with 'lib'" - - if test no != "$need_lib_prefix"; then - # Add the "lib" prefix for modules if required - func_stripname '' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - else - func_stripname '' '.la' "$outputname" - libname=$func_stripname_result - fi - ;; - esac - - if test -n "$objs"; then - if test pass_all != "$deplibs_check_method"; then - func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" - else - echo - $ECHO "*** Warning: Linking the shared library $output against the non-libtool" - $ECHO "*** objects $objs is not portable!" - func_append libobjs " $objs" - fi - fi - - test no = "$dlself" \ - || func_warning "'-dlopen self' is ignored for libtool libraries" - - set dummy $rpath - shift - test 1 -lt "$#" \ - && func_warning "ignoring multiple '-rpath's for a libtool library" - - install_libdir=$1 - - oldlibs= - if test -z "$rpath"; then - if test yes = "$build_libtool_libs"; then - # Building a libtool convenience library. - # Some compilers have problems with a '.al' extension so - # convenience libraries should have the same extension an - # archive normally would. - oldlibs="$output_objdir/$libname.$libext $oldlibs" - build_libtool_libs=convenience - build_old_libs=yes - fi - - test -n "$vinfo" && \ - func_warning "'-version-info/-version-number' is ignored for convenience libraries" - - test -n "$release" && \ - func_warning "'-release' is ignored for convenience libraries" - else - - # Parse the version information argument. - save_ifs=$IFS; IFS=: - set dummy $vinfo 0 0 0 - shift - IFS=$save_ifs - - test -n "$7" && \ - func_fatal_help "too many parameters to '-version-info'" - - # convert absolute version numbers to libtool ages - # this retains compatibility with .la files and attempts - # to make the code below a bit more comprehensible - - case $vinfo_number in - yes) - number_major=$1 - number_minor=$2 - number_revision=$3 - # - # There are really only two kinds -- those that - # use the current revision as the major version - # and those that subtract age and use age as - # a minor version. But, then there is irix - # that has an extra 1 added just for fun - # - case $version_type in - # correct linux to gnu/linux during the next big refactor - darwin|freebsd-elf|linux|osf|windows|none) - func_arith $number_major + $number_minor - current=$func_arith_result - age=$number_minor - revision=$number_revision - ;; - freebsd-aout|qnx|sunos) - current=$number_major - revision=$number_minor - age=0 - ;; - irix|nonstopux) - func_arith $number_major + $number_minor - current=$func_arith_result - age=$number_minor - revision=$number_minor - lt_irix_increment=no - ;; - esac - ;; - no) - current=$1 - revision=$2 - age=$3 - ;; - esac - - # Check that each of the things are valid numbers. - case $current in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "CURRENT '$current' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - case $revision in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "REVISION '$revision' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - case $age in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "AGE '$age' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - if test "$age" -gt "$current"; then - func_error "AGE '$age' is greater than the current interface number '$current'" - func_fatal_error "'$vinfo' is not valid version information" - fi - - # Calculate the version variables. - major= - versuffix= - verstring= - case $version_type in - none) ;; - - darwin) - # Like Linux, but with the current version available in - # verstring for coding it into the library header - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - # Darwin ld doesn't like 0 for these options... - func_arith $current + 1 - minor_current=$func_arith_result - xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - # On Darwin other compilers - case $CC in - nagfor*) - verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - ;; - *) - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - ;; - esac - ;; - - freebsd-aout) - major=.$current - versuffix=.$current.$revision - ;; - - freebsd-elf) - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - ;; - - irix | nonstopux) - if test no = "$lt_irix_increment"; then - func_arith $current - $age - else - func_arith $current - $age + 1 - fi - major=$func_arith_result - - case $version_type in - nonstopux) verstring_prefix=nonstopux ;; - *) verstring_prefix=sgi ;; - esac - verstring=$verstring_prefix$major.$revision - - # Add in all the interfaces that we are compatible with. - loop=$revision - while test 0 -ne "$loop"; do - func_arith $revision - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring=$verstring_prefix$major.$iface:$verstring - done - - # Before this point, $major must not contain '.'. - major=.$major - versuffix=$major.$revision - ;; - - linux) # correct to gnu/linux during the next big refactor - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - ;; - - osf) - func_arith $current - $age - major=.$func_arith_result - versuffix=.$current.$age.$revision - verstring=$current.$age.$revision - - # Add in all the interfaces that we are compatible with. - loop=$age - while test 0 -ne "$loop"; do - func_arith $current - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring=$verstring:$iface.0 - done - - # Make executables depend on our current version. - func_append verstring ":$current.0" - ;; - - qnx) - major=.$current - versuffix=.$current - ;; - - sco) - major=.$current - versuffix=.$current - ;; - - sunos) - major=.$current - versuffix=.$current.$revision - ;; - - windows) - # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 file systems. - func_arith $current - $age - major=$func_arith_result - versuffix=-$major - ;; - - *) - func_fatal_configuration "unknown library version type '$version_type'" - ;; - esac - - # Clear the version info if we defaulted, and they specified a release. - if test -z "$vinfo" && test -n "$release"; then - major= - case $version_type in - darwin) - # we can't check for "0.0" in archive_cmds due to quoting - # problems, so we reset it completely - verstring= - ;; - *) - verstring=0.0 - ;; - esac - if test no = "$need_version"; then - versuffix= - else - versuffix=.0.0 - fi - fi - - # Remove version info from name if versioning should be avoided - if test yes,no = "$avoid_version,$need_version"; then - major= - versuffix= - verstring= - fi - - # Check to see if the archive will have undefined symbols. - if test yes = "$allow_undefined"; then - if test unsupported = "$allow_undefined_flag"; then - if test yes = "$build_old_libs"; then - func_warning "undefined symbols not allowed in $host shared libraries; building static only" - build_libtool_libs=no - else - func_fatal_error "can't build $host shared library unless -no-undefined is specified" - fi - fi - else - # Don't allow undefined symbols. - allow_undefined_flag=$no_undefined_flag - fi - - fi - - func_generate_dlsyms "$libname" "$libname" : - func_append libobjs " $symfileobj" - test " " = "$libobjs" && libobjs= - - if test relink != "$opt_mode"; then - # Remove our outputs, but don't remove object files since they - # may have been created when compiling PIC objects. - removelist= - tempremovelist=`$ECHO "$output_objdir/*"` - for p in $tempremovelist; do - case $p in - *.$objext | *.gcno) - ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) - if test -n "$precious_files_regex"; then - if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 - then - continue - fi - fi - func_append removelist " $p" - ;; - *) ;; - esac - done - test -n "$removelist" && \ - func_show_eval "${RM}r \$removelist" - fi - - # Now set the variables for building old libraries. - if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then - func_append oldlibs " $output_objdir/$libname.$libext" - - # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` - fi - - # Eliminate all temporary directories. - #for path in $notinst_path; do - # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` - # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` - # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` - #done - - if test -n "$xrpath"; then - # If the user specified any rpath flags, then add them. - temp_xrpath= - for libdir in $xrpath; do - func_replace_sysroot "$libdir" - func_append temp_xrpath " -R$func_replace_sysroot_result" - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then - dependency_libs="$temp_xrpath $dependency_libs" - fi - fi - - # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles=$dlfiles - dlfiles= - for lib in $old_dlfiles; do - case " $dlprefiles $dlfiles " in - *" $lib "*) ;; - *) func_append dlfiles " $lib" ;; - esac - done - - # Make sure dlprefiles contains only unique files - old_dlprefiles=$dlprefiles - dlprefiles= - for lib in $old_dlprefiles; do - case "$dlprefiles " in - *" $lib "*) ;; - *) func_append dlprefiles " $lib" ;; - esac - done - - if test yes = "$build_libtool_libs"; then - if test -n "$rpath"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) - # these systems don't actually have a c library (as such)! - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C library is in the System framework - func_append deplibs " System.ltframework" - ;; - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test yes = "$build_libtool_need_lc"; then - func_append deplibs " -lc" - fi - ;; - esac - fi - - # Transform deplibs into only deplibs that can be linked in shared. - name_save=$name - libname_save=$libname - release_save=$release - versuffix_save=$versuffix - major_save=$major - # I'm not sure if I'm treating the release correctly. I think - # release should show up in the -l (ie -lgmp5) so we don't want to - # add it in twice. Is that correct? - release= - versuffix= - major= - newdeplibs= - droppeddeps=no - case $deplibs_check_method in - pass_all) - # Don't check for shared/static. Everything works. - # This might be a little naive. We might want to check - # whether the library exists or not. But this is on - # osf3 & osf4 and I'm not really sure... Just - # implementing what was already the behavior. - newdeplibs=$deplibs - ;; - test_compile) - # This code stresses the "libraries are programs" paradigm to its - # limits. Maybe even breaks it. We compile a program, linking it - # against the deplibs as a proxy for the library. Then we can check - # whether they linked in statically or dynamically with ldd. - $opt_dry_run || $RM conftest.c - cat > conftest.c </dev/null` - $nocaseglob - else - potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` - fi - for potent_lib in $potential_libs; do - # Follow soft links. - if ls -lLd "$potent_lib" 2>/dev/null | - $GREP " -> " >/dev/null; then - continue - fi - # The statement above tries to avoid entering an - # endless loop below, in case of cyclic links. - # We might still enter an endless loop, since a link - # loop can be closed while we follow links, - # but so what? - potlib=$potent_lib - while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | $SED 's/.* -> //'` - case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; - *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; - esac - done - if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | - $SED -e 10q | - $EGREP "$file_magic_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib= - break 2 - fi - done - done - fi - if test -n "$a_deplib"; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib"; then - $ECHO "*** with $libname but no candidates were found. (...for file magic test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a file magic. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - for a_deplib in $deplibs; do - case $a_deplib in - -l*) - func_stripname -l '' "$a_deplib" - name=$func_stripname_result - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - case " $predeps $postdeps " in - *" $a_deplib "*) - func_append newdeplibs " $a_deplib" - a_deplib= - ;; - esac - fi - if test -n "$a_deplib"; then - libname=`eval "\\$ECHO \"$libname_spec\""` - for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - potential_libs=`ls $i/$libname[.-]* 2>/dev/null` - for potent_lib in $potential_libs; do - potlib=$potent_lib # see symlink-check above in file_magic test - if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ - $EGREP "$match_pattern_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib= - break 2 - fi - done - done - fi - if test -n "$a_deplib"; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib"; then - $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a regex pattern. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - none | unknown | *) - newdeplibs= - tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - for i in $predeps $postdeps; do - # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` - done - fi - case $tmp_deplibs in - *[!\ \ ]*) - echo - if test none = "$deplibs_check_method"; then - echo "*** Warning: inter-library dependencies are not supported in this platform." - else - echo "*** Warning: inter-library dependencies are not known to be supported." - fi - echo "*** All declared inter-library dependencies are being dropped." - droppeddeps=yes - ;; - esac - ;; - esac - versuffix=$versuffix_save - major=$major_save - release=$release_save - libname=$libname_save - name=$name_save - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library with the System framework - newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - if test yes = "$droppeddeps"; then - if test yes = "$module"; then - echo - echo "*** Warning: libtool could not satisfy all declared inter-library" - $ECHO "*** dependencies of module $libname. Therefore, libtool will create" - echo "*** a static module, that should work as long as the dlopening" - echo "*** application is linked with the -dlopen flag." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using 'nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** 'nm' from GNU binutils and a full rebuild may help." - fi - if test no = "$build_old_libs"; then - oldlibs=$output_objdir/$libname.$libext - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - else - echo "*** The inter-library dependencies that have been dropped here will be" - echo "*** automatically added whenever a program is linked with this library" - echo "*** or is declared to -dlopen it." - - if test no = "$allow_undefined"; then - echo - echo "*** Since this library must not contain undefined symbols," - echo "*** because either the platform does not support them or" - echo "*** it was explicitly requested with -no-undefined," - echo "*** libtool will only create a static version of it." - if test no = "$build_old_libs"; then - oldlibs=$output_objdir/$libname.$libext - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - fi - fi - # Done checking deplibs! - deplibs=$newdeplibs - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - case $host in - *-*-darwin*) - newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - deplibs=$new_libs - - # All the library-specific variables (install_libdir is set above). - library_names= - old_library= - dlname= - - # Test again, we may have decided not to build it any more - if test yes = "$build_libtool_libs"; then - # Remove $wl instances when linking with ld. - # FIXME: should test the right _cmds variable. - case $archive_cmds in - *\$LD\ *) wl= ;; - esac - if test yes = "$hardcode_into_libs"; then - # Hardcode the library paths - hardcode_libdirs= - dep_rpath= - rpath=$finalize_rpath - test relink = "$opt_mode" || rpath=$compile_rpath$rpath - for libdir in $rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - func_replace_sysroot "$libdir" - libdir=$func_replace_sysroot_result - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append dep_rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" - fi - if test -n "$runpath_var" && test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" - fi - test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" - fi - - shlibpath=$finalize_shlibpath - test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath - if test -n "$shlibpath"; then - eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" - fi - - # Get the real and link names of the library. - eval shared_ext=\"$shrext_cmds\" - eval library_names=\"$library_names_spec\" - set dummy $library_names - shift - realname=$1 - shift - - if test -n "$soname_spec"; then - eval soname=\"$soname_spec\" - else - soname=$realname - fi - if test -z "$dlname"; then - dlname=$soname - fi - - lib=$output_objdir/$realname - linknames= - for link - do - func_append linknames " $link" - done - - # Use standard objects if they are pic - test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` - test "X$libobjs" = "X " && libobjs= - - delfiles= - if test -n "$export_symbols" && test -n "$include_expsyms"; then - $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols=$output_objdir/$libname.uexp - func_append delfiles " $export_symbols" - fi - - orig_export_symbols= - case $host_os in - cygwin* | mingw* | cegcc*) - if test -n "$export_symbols" && test -z "$export_symbols_regex"; then - # exporting using user supplied symfile - func_dll_def_p "$export_symbols" || { - # and it's NOT already a .def file. Must figure out - # which of the given symbols are data symbols and tag - # them as such. So, trigger use of export_symbols_cmds. - # export_symbols gets reassigned inside the "prepare - # the list of exported symbols" if statement, so the - # include_expsyms logic still works. - orig_export_symbols=$export_symbols - export_symbols= - always_export_symbols=yes - } - fi - ;; - esac - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for '$libname.la'" - export_symbols=$output_objdir/$libname.exp - $opt_dry_run || $RM $export_symbols - cmds=$export_symbols_cmds - save_ifs=$IFS; IFS='~' - for cmd1 in $cmds; do - IFS=$save_ifs - # Take the normal branch if the nm_file_list_spec branch - # doesn't work or if tool conversion is not needed. - case $nm_file_list_spec~$to_tool_file_cmd in - *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) - try_normal_branch=yes - eval cmd=\"$cmd1\" - func_len " $cmd" - len=$func_len_result - ;; - *) - try_normal_branch=no - ;; - esac - if test yes = "$try_normal_branch" \ - && { test "$len" -lt "$max_cmd_len" \ - || test "$max_cmd_len" -le -1; } - then - func_show_eval "$cmd" 'exit $?' - skipped_export=false - elif test -n "$nm_file_list_spec"; then - func_basename "$output" - output_la=$func_basename_result - save_libobjs=$libobjs - save_output=$output - output=$output_objdir/$output_la.nm - func_to_tool_file "$output" - libobjs=$nm_file_list_spec$func_to_tool_file_result - func_append delfiles " $output" - func_verbose "creating $NM input file list: $output" - for obj in $save_libobjs; do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > "$output" - eval cmd=\"$cmd1\" - func_show_eval "$cmd" 'exit $?' - output=$save_output - libobjs=$save_libobjs - skipped_export=false - else - # The command line is too long to execute in one step. - func_verbose "using reloadable object file for export list..." - skipped_export=: - # Break out early, otherwise skipped_export may be - # set to false by a later but shorter cmd. - break - fi - done - IFS=$save_ifs - if test -n "$export_symbols_regex" && test : != "$skipped_export"; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - fi - - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols=$export_symbols - test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test : != "$skipped_export" && test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for '$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands, which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - - tmp_deplibs= - for test_deplib in $deplibs; do - case " $convenience " in - *" $test_deplib "*) ;; - *) - func_append tmp_deplibs " $test_deplib" - ;; - esac - done - deplibs=$tmp_deplibs - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec" && - test yes = "$compiler_needs_object" && - test -z "$libobjs"; then - # extract the archives, so we have objects to list. - # TODO: could optimize this to just extract one archive. - whole_archive_flag_spec= - fi - if test -n "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - else - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - fi - - if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then - eval flag=\"$thread_safe_flag_spec\" - func_append linker_flags " $flag" - fi - - # Make a backup of the uninstalled library when relinking - if test relink = "$opt_mode"; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? - fi - - # Do each of the archive commands. - if test yes = "$module" && test -n "$module_cmds"; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - eval test_cmds=\"$module_expsym_cmds\" - cmds=$module_expsym_cmds - else - eval test_cmds=\"$module_cmds\" - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - eval test_cmds=\"$archive_expsym_cmds\" - cmds=$archive_expsym_cmds - else - eval test_cmds=\"$archive_cmds\" - cmds=$archive_cmds - fi - fi - - if test : != "$skipped_export" && - func_len " $test_cmds" && - len=$func_len_result && - test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - : - else - # The command line is too long to link in one step, link piecewise - # or, if using GNU ld and skipped_export is not :, use a linker - # script. - - # Save the value of $output and $libobjs because we want to - # use them later. If we have whole_archive_flag_spec, we - # want to use save_libobjs as it was before - # whole_archive_flag_spec was expanded, because we can't - # assume the linker understands whole_archive_flag_spec. - # This may have to be revisited, in case too many - # convenience libraries get linked in and end up exceeding - # the spec. - if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - fi - save_output=$output - func_basename "$output" - output_la=$func_basename_result - - # Clear the reloadable object creation command queue and - # initialize k to one. - test_cmds= - concat_cmds= - objlist= - last_robj= - k=1 - - if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then - output=$output_objdir/$output_la.lnkscript - func_verbose "creating GNU ld script: $output" - echo 'INPUT (' > $output - for obj in $save_libobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - echo ')' >> $output - func_append delfiles " $output" - func_to_tool_file "$output" - output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then - output=$output_objdir/$output_la.lnk - func_verbose "creating linker input file list: $output" - : > $output - set x $save_libobjs - shift - firstobj= - if test yes = "$compiler_needs_object"; then - firstobj="$1 " - shift - fi - for obj - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - func_append delfiles " $output" - func_to_tool_file "$output" - output=$firstobj\"$file_list_spec$func_to_tool_file_result\" - else - if test -n "$save_libobjs"; then - func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-$k.$objext - eval test_cmds=\"$reload_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - - # Loop over the list of objects to be linked. - for obj in $save_libobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - if test -z "$objlist" || - test "$len" -lt "$max_cmd_len"; then - func_append objlist " $obj" - else - # The command $test_cmds is almost too long, add a - # command to the queue. - if test 1 -eq "$k"; then - # The first file doesn't have a previous command to add. - reload_objs=$objlist - eval concat_cmds=\"$reload_cmds\" - else - # All subsequent reloadable object files will link in - # the last one created. - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" - fi - last_robj=$output_objdir/$output_la-$k.$objext - func_arith $k + 1 - k=$func_arith_result - output=$output_objdir/$output_la-$k.$objext - objlist=" $obj" - func_len " $last_robj" - func_arith $len0 + $func_len_result - len=$func_arith_result - fi - done - # Handle the remaining objects by creating one last - # reloadable object file. All subsequent reloadable object - # files will link in the last one created. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\$concat_cmds$reload_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" - fi - func_append delfiles " $output" - - else - output= - fi - - ${skipped_export-false} && { - func_verbose "generating symbol list for '$libname.la'" - export_symbols=$output_objdir/$libname.exp - $opt_dry_run || $RM $export_symbols - libobjs=$output - # Append the command to create the export file. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" - fi - } - - test -n "$save_libobjs" && - func_verbose "creating a temporary reloadable object file: $output" - - # Loop through the commands generated above and execute them. - save_ifs=$IFS; IFS='~' - for cmd in $concat_cmds; do - IFS=$save_ifs - $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS=$save_ifs - - if test -n "$export_symbols_regex" && ${skipped_export-false}; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - - ${skipped_export-false} && { - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols=$export_symbols - test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for '$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands, which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - } - - libobjs=$output - # Restore the value of output. - output=$save_output - - if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - fi - # Expand the library linking commands again to reset the - # value of $libobjs for piecewise linking. - - # Do each of the archive commands. - if test yes = "$module" && test -n "$module_cmds"; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - cmds=$module_expsym_cmds - else - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - cmds=$archive_expsym_cmds - else - cmds=$archive_cmds - fi - fi - fi - - if test -n "$delfiles"; then - # Append the command to remove temporary files to $cmds. - eval cmds=\"\$cmds~\$RM $delfiles\" - fi - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - - save_ifs=$IFS; IFS='~' - for cmd in $cmds; do - IFS=$sp$nl - eval cmd=\"$cmd\" - IFS=$save_ifs - $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS=$save_ifs - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? - - if test -n "$convenience"; then - if test -z "$whole_archive_flag_spec"; then - func_show_eval '${RM}r "$gentop"' - fi - fi - - exit $EXIT_SUCCESS - fi - - # Create links to the real library. - for linkname in $linknames; do - if test "$realname" != "$linkname"; then - func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' - fi - done - - # If -module or -export-dynamic was specified, set the dlname. - if test yes = "$module" || test yes = "$export_dynamic"; then - # On all known operating systems, these are identical. - dlname=$soname - fi - fi - ;; - - obj) - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - func_warning "'-dlopen' is ignored for objects" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "'-l' and '-L' are ignored for objects" ;; - esac - - test -n "$rpath" && \ - func_warning "'-rpath' is ignored for objects" - - test -n "$xrpath" && \ - func_warning "'-R' is ignored for objects" - - test -n "$vinfo" && \ - func_warning "'-version-info' is ignored for objects" - - test -n "$release" && \ - func_warning "'-release' is ignored for objects" - - case $output in - *.lo) - test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object '$output' from non-libtool objects" - - libobj=$output - func_lo2o "$libobj" - obj=$func_lo2o_result - ;; - *) - libobj= - obj=$output - ;; - esac - - # Delete the old objects. - $opt_dry_run || $RM $obj $libobj - - # Objects from convenience libraries. This assumes - # single-version convenience libraries. Whenever we create - # different ones for PIC/non-PIC, this we'll have to duplicate - # the extraction. - reload_conv_objs= - gentop= - # if reload_cmds runs $LD directly, get rid of -Wl from - # whole_archive_flag_spec and hope we can get by with turning comma - # into space. - case $reload_cmds in - *\$LD[\ \$]*) wl= ;; - esac - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` - reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags - else - gentop=$output_objdir/${obj}x - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - reload_conv_objs="$reload_objs $func_extract_archives_result" - fi - fi - - # If we're not building shared, we need to use non_pic_objs - test yes = "$build_libtool_libs" || libobjs=$non_pic_objects - - # Create the old-style object. - reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - - output=$obj - func_execute_cmds "$reload_cmds" 'exit $?' - - # Exit if we aren't doing a library object file. - if test -z "$libobj"; then - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - fi - - test yes = "$build_libtool_libs" || { - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - # Create an invalid libtool object if no PIC, so that we don't - # accidentally link it into a program. - # $show "echo timestamp > $libobj" - # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? - exit $EXIT_SUCCESS - } - - if test -n "$pic_flag" || test default != "$pic_mode"; then - # Only do commands if we really have different PIC objects. - reload_objs="$libobjs $reload_conv_objs" - output=$libobj - func_execute_cmds "$reload_cmds" 'exit $?' - fi - - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - ;; - - prog) - case $host in - *cygwin*) func_stripname '' '.exe' "$output" - output=$func_stripname_result.exe;; - esac - test -n "$vinfo" && \ - func_warning "'-version-info' is ignored for programs" - - test -n "$release" && \ - func_warning "'-release' is ignored for programs" - - $preload \ - && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ - && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - case $host in - *-*-darwin*) - # Don't allow lazy linking, it breaks C++ global constructors - # But is supposedly fixed on 10.4 or later (yay!). - if test CXX = "$tagname"; then - case ${MACOSX_DEPLOYMENT_TARGET-10.0} in - 10.[0123]) - func_append compile_command " $wl-bind_at_load" - func_append finalize_command " $wl-bind_at_load" - ;; - esac - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $compile_deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $compile_deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - compile_deplibs=$new_libs - - - func_append compile_command " $compile_deplibs" - func_append finalize_command " $finalize_deplibs" - - if test -n "$rpath$xrpath"; then - # If the user specified any rpath flags, then add them. - for libdir in $rpath $xrpath; do - # This is the magic to use -rpath. - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - fi - - # Now hardcode the library paths - rpath= - hardcode_libdirs= - for libdir in $compile_rpath $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; - esac - fi - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$libdir:"*) ;; - ::) dllsearchpath=$libdir;; - *) func_append dllsearchpath ":$libdir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - compile_rpath=$rpath - - rpath= - hardcode_libdirs= - for libdir in $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$finalize_perm_rpath " in - *" $libdir "*) ;; - *) func_append finalize_perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - finalize_rpath=$rpath - - if test -n "$libobjs" && test yes = "$build_old_libs"; then - # Transform all the library objects into standard objects. - compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - fi - - func_generate_dlsyms "$outputname" "@PROGRAM@" false - - # template prelinking step - if test -n "$prelink_cmds"; then - func_execute_cmds "$prelink_cmds" 'exit $?' - fi - - wrappers_required=: - case $host in - *cegcc* | *mingw32ce*) - # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=false - ;; - *cygwin* | *mingw* ) - test yes = "$build_libtool_libs" || wrappers_required=false - ;; - *) - if test no = "$need_relink" || test yes != "$build_libtool_libs"; then - wrappers_required=false - fi - ;; - esac - $wrappers_required || { - # Replace the output file specification. - compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command=$compile_command$compile_rpath - - # We have no uninstalled library dependencies, so finalize right now. - exit_status=0 - func_show_eval "$link_command" 'exit_status=$?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Delete the generated files. - if test -f "$output_objdir/${outputname}S.$objext"; then - func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' - fi - - exit $exit_status - } - - if test -n "$compile_shlibpath$finalize_shlibpath"; then - compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" - fi - if test -n "$finalize_shlibpath"; then - finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" - fi - - compile_var= - finalize_var= - if test -n "$runpath_var"; then - if test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - compile_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - if test -n "$finalize_perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $finalize_perm_rpath; do - func_append rpath "$dir:" - done - finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - fi - - if test yes = "$no_install"; then - # We don't need to create a wrapper script. - link_command=$compile_var$compile_command$compile_rpath - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - # Delete the old output file. - $opt_dry_run || $RM $output - # Link the executable and exit - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - exit $EXIT_SUCCESS - fi - - case $hardcode_action,$fast_install in - relink,*) - # Fast installation is not supported - link_command=$compile_var$compile_command$compile_rpath - relink_command=$finalize_var$finalize_command$finalize_rpath - - func_warning "this platform does not like uninstalled shared libraries" - func_warning "'$output' will be relinked during installation" - ;; - *,yes) - link_command=$finalize_var$compile_command$finalize_rpath - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - ;; - *,no) - link_command=$compile_var$compile_command$compile_rpath - relink_command=$finalize_var$finalize_command$finalize_rpath - ;; - *,needless) - link_command=$finalize_var$compile_command$finalize_rpath - relink_command= - ;; - esac - - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` - - # Delete the old output files. - $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname - - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output_objdir/$outputname" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Now create the wrapper script. - func_verbose "creating $output" - - # Quote the relink command for shipping. - if test -n "$relink_command"; then - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - fi - - # Only actually do things if not in dry run mode. - $opt_dry_run || { - # win32 will think the script is a binary if it has - # a .exe suffix, so we strip it off here. - case $output in - *.exe) func_stripname '' '.exe' "$output" - output=$func_stripname_result ;; - esac - # test for cygwin because mv fails w/o .exe extensions - case $host in - *cygwin*) - exeext=.exe - func_stripname '' '.exe' "$outputname" - outputname=$func_stripname_result ;; - *) exeext= ;; - esac - case $host in - *cygwin* | *mingw* ) - func_dirname_and_basename "$output" "" "." - output_name=$func_basename_result - output_path=$func_dirname_result - cwrappersource=$output_path/$objdir/lt-$output_name.c - cwrapper=$output_path/$output_name.exe - $RM $cwrappersource $cwrapper - trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 - - func_emit_cwrapperexe_src > $cwrappersource - - # The wrapper executable is built using the $host compiler, - # because it contains $host paths and files. If cross- - # compiling, it, like the target executable, must be - # executed on the $host or under an emulation environment. - $opt_dry_run || { - $LTCC $LTCFLAGS -o $cwrapper $cwrappersource - $STRIP $cwrapper - } - - # Now, create the wrapper script for func_source use: - func_ltwrapper_scriptname $cwrapper - $RM $func_ltwrapper_scriptname_result - trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 - $opt_dry_run || { - # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host"; then - $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result - else - func_emit_wrapper no > $func_ltwrapper_scriptname_result - fi - } - ;; - * ) - $RM $output - trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 - - func_emit_wrapper no > $output - chmod +x $output - ;; - esac - } - exit $EXIT_SUCCESS - ;; - esac - - # See if we need to build an old-fashioned archive. - for oldlib in $oldlibs; do - - case $build_libtool_libs in - convenience) - oldobjs="$libobjs_save $symfileobj" - addlibs=$convenience - build_libtool_libs=no - ;; - module) - oldobjs=$libobjs_save - addlibs=$old_convenience - build_libtool_libs=no - ;; - *) - oldobjs="$old_deplibs $non_pic_objects" - $preload && test -f "$symfileobj" \ - && func_append oldobjs " $symfileobj" - addlibs=$old_convenience - ;; - esac - - if test -n "$addlibs"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $addlibs - func_append oldobjs " $func_extract_archives_result" - fi - - # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then - cmds=$old_archive_from_new_cmds - else - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append oldobjs " $func_extract_archives_result" - fi - - # POSIX demands no paths to be encoded in archives. We have - # to avoid creating archives with duplicate basenames if we - # might have to extract them afterwards, e.g., when creating a - # static archive out of a convenience library, or when linking - # the entirety of a libtool archive into another (currently - # not supported by libtool). - if (for obj in $oldobjs - do - func_basename "$obj" - $ECHO "$func_basename_result" - done | sort | sort -uc >/dev/null 2>&1); then - : - else - echo "copying selected object files to avoid basename conflicts..." - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - func_mkdir_p "$gentop" - save_oldobjs=$oldobjs - oldobjs= - counter=1 - for obj in $save_oldobjs - do - func_basename "$obj" - objbase=$func_basename_result - case " $oldobjs " in - " ") oldobjs=$obj ;; - *[\ /]"$objbase "*) - while :; do - # Make sure we don't pick an alternate name that also - # overlaps. - newobj=lt$counter-$objbase - func_arith $counter + 1 - counter=$func_arith_result - case " $oldobjs " in - *[\ /]"$newobj "*) ;; - *) if test ! -f "$gentop/$newobj"; then break; fi ;; - esac - done - func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - func_append oldobjs " $gentop/$newobj" - ;; - *) func_append oldobjs " $obj" ;; - esac - done - fi - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result - eval cmds=\"$old_archive_cmds\" - - func_len " $cmds" - len=$func_len_result - if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - cmds=$old_archive_cmds - elif test -n "$archiver_list_spec"; then - func_verbose "using command file archive linking..." - for obj in $oldobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > $output_objdir/$libname.libcmd - func_to_tool_file "$output_objdir/$libname.libcmd" - oldobjs=" $archiver_list_spec$func_to_tool_file_result" - cmds=$old_archive_cmds - else - # the command line is too long to link in one step, link in parts - func_verbose "using piecewise archive linking..." - save_RANLIB=$RANLIB - RANLIB=: - objlist= - concat_cmds= - save_oldobjs=$oldobjs - oldobjs= - # Is there a better way of finding the last object in the list? - for obj in $save_oldobjs - do - last_oldobj=$obj - done - eval test_cmds=\"$old_archive_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - for obj in $save_oldobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - func_append objlist " $obj" - if test "$len" -lt "$max_cmd_len"; then - : - else - # the above command should be used before it gets too long - oldobjs=$objlist - if test "$obj" = "$last_oldobj"; then - RANLIB=$save_RANLIB - fi - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" - objlist= - len=$len0 - fi - done - RANLIB=$save_RANLIB - oldobjs=$objlist - if test -z "$oldobjs"; then - eval cmds=\"\$concat_cmds\" - else - eval cmds=\"\$concat_cmds~\$old_archive_cmds\" - fi - fi - fi - func_execute_cmds "$cmds" 'exit $?' - done - - test -n "$generated" && \ - func_show_eval "${RM}r$generated" - - # Now create the libtool archive. - case $output in - *.la) - old_library= - test yes = "$build_old_libs" && old_library=$libname.$libext - func_verbose "creating $output" - - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test yes = "$hardcode_automatic"; then - relink_command= - fi - - # Only create the output if not a dry run. - $opt_dry_run || { - for installed in no yes; do - if test yes = "$installed"; then - if test -z "$install_libdir"; then - break - fi - output=$output_objdir/${outputname}i - # Replace all uninstalled libtool libraries with the installed ones - newdependency_libs= - for deplib in $dependency_libs; do - case $deplib in - *.la) - func_basename "$deplib" - name=$func_basename_result - func_resolve_sysroot "$deplib" - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` - test -z "$libdir" && \ - func_fatal_error "'$deplib' is not a valid libtool archive" - func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" - ;; - -L*) - func_stripname -L '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -L$func_replace_sysroot_result" - ;; - -R*) - func_stripname -R '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -R$func_replace_sysroot_result" - ;; - *) func_append newdependency_libs " $deplib" ;; - esac - done - dependency_libs=$newdependency_libs - newdlfiles= - - for lib in $dlfiles; do - case $lib in - *.la) - func_basename "$lib" - name=$func_basename_result - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "'$lib' is not a valid libtool archive" - func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" - ;; - *) func_append newdlfiles " $lib" ;; - esac - done - dlfiles=$newdlfiles - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - *.la) - # Only pass preopened files to the pseudo-archive (for - # eventual linking with the app. that links it) if we - # didn't already link the preopened objects directly into - # the library: - func_basename "$lib" - name=$func_basename_result - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "'$lib' is not a valid libtool archive" - func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" - ;; - esac - done - dlprefiles=$newdlprefiles - else - newdlfiles= - for lib in $dlfiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlfiles " $abs" - done - dlfiles=$newdlfiles - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlprefiles " $abs" - done - dlprefiles=$newdlprefiles - fi - $RM $output - # place dlname in correct position for cygwin - # In fact, it would be nice if we could use this code for all target - # systems that can't hard-code library paths into their executables - # and that have no shared library path variable independent of PATH, - # but it turns out we can't easily determine that from inspecting - # libtool variables, so we have to hard-code the OSs to which it - # applies here; at the moment, that means platforms that use the PE - # object format with DLL files. See the long comment at the top of - # tests/bindir.at for full details. - tdlname=$dlname - case $host,$output,$installed,$module,$dlname in - *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) - # If a -bindir argument was supplied, place the dll there. - if test -n "$bindir"; then - func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result/$dlname - else - # Otherwise fall back on heuristic. - tdlname=../bin/$dlname - fi - ;; - esac - $ECHO > $output "\ -# $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE) $VERSION -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='$tdlname' - -# Names of this library. -library_names='$library_names' - -# The name of the static archive. -old_library='$old_library' - -# Linker flags that cannot go in dependency_libs. -inherited_linker_flags='$new_inherited_linker_flags' - -# Libraries that this one depends upon. -dependency_libs='$dependency_libs' - -# Names of additional weak libraries provided by this library -weak_library_names='$weak_libs' - -# Version information for $libname. -current=$current -age=$age -revision=$revision - -# Is this an already installed library? -installed=$installed - -# Should we warn about portability when linking against -modules? -shouldnotlink=$module - -# Files to dlopen/dlpreopen -dlopen='$dlfiles' -dlpreopen='$dlprefiles' - -# Directory that this library needs to be installed in: -libdir='$install_libdir'" - if test no,yes = "$installed,$need_relink"; then - $ECHO >> $output "\ -relink_command=\"$relink_command\"" - fi - done - } - - # Do a symbolic link so that the libtool archive can be found in - # LD_LIBRARY_PATH before the program is installed. - func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' - ;; - esac - exit $EXIT_SUCCESS -} - -if test link = "$opt_mode" || test relink = "$opt_mode"; then - func_mode_link ${1+"$@"} -fi - - -# func_mode_uninstall arg... -func_mode_uninstall () -{ - $debug_cmd - - RM=$nonopt - files= - rmforce=false - exit_status=0 - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic=$magic - - for arg - do - case $arg in - -f) func_append RM " $arg"; rmforce=: ;; - -*) func_append RM " $arg" ;; - *) func_append files " $arg" ;; - esac - done - - test -z "$RM" && \ - func_fatal_help "you must specify an RM program" - - rmdirs= - - for file in $files; do - func_dirname "$file" "" "." - dir=$func_dirname_result - if test . = "$dir"; then - odir=$objdir - else - odir=$dir/$objdir - fi - func_basename "$file" - name=$func_basename_result - test uninstall = "$opt_mode" && odir=$dir - - # Remember odir for removal later, being careful to avoid duplicates - if test clean = "$opt_mode"; then - case " $rmdirs " in - *" $odir "*) ;; - *) func_append rmdirs " $odir" ;; - esac - fi - - # Don't error if the file doesn't exist and rm -f was used. - if { test -L "$file"; } >/dev/null 2>&1 || - { test -h "$file"; } >/dev/null 2>&1 || - test -f "$file"; then - : - elif test -d "$file"; then - exit_status=1 - continue - elif $rmforce; then - continue - fi - - rmfiles=$file - - case $name in - *.la) - # Possibly a libtool archive, so verify it. - if func_lalib_p "$file"; then - func_source $dir/$name - - # Delete the libtool libraries and symlinks. - for n in $library_names; do - func_append rmfiles " $odir/$n" - done - test -n "$old_library" && func_append rmfiles " $odir/$old_library" - - case $opt_mode in - clean) - case " $library_names " in - *" $dlname "*) ;; - *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; - esac - test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" - ;; - uninstall) - if test -n "$library_names"; then - # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' - fi - - if test -n "$old_library"; then - # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' - fi - # FIXME: should reinstall the best remaining shared library. - ;; - esac - fi - ;; - - *.lo) - # Possibly a libtool object, so verify it. - if func_lalib_p "$file"; then - - # Read the .lo file - func_source $dir/$name - - # Add PIC object to the list of files to remove. - if test -n "$pic_object" && test none != "$pic_object"; then - func_append rmfiles " $dir/$pic_object" - fi - - # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && test none != "$non_pic_object"; then - func_append rmfiles " $dir/$non_pic_object" - fi - fi - ;; - - *) - if test clean = "$opt_mode"; then - noexename=$name - case $file in - *.exe) - func_stripname '' '.exe' "$file" - file=$func_stripname_result - func_stripname '' '.exe' "$name" - noexename=$func_stripname_result - # $file with .exe has already been added to rmfiles, - # add $file without .exe - func_append rmfiles " $file" - ;; - esac - # Do a test to see if this is a libtool program. - if func_ltwrapper_p "$file"; then - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - relink_command= - func_source $func_ltwrapper_scriptname_result - func_append rmfiles " $func_ltwrapper_scriptname_result" - else - relink_command= - func_source $dir/$noexename - fi - - # note $name still contains .exe if it was in $file originally - # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.$objext" - if test yes = "$fast_install" && test -n "$relink_command"; then - func_append rmfiles " $odir/lt-$name" - fi - if test "X$noexename" != "X$name"; then - func_append rmfiles " $odir/lt-$noexename.c" - fi - fi - fi - ;; - esac - func_show_eval "$RM $rmfiles" 'exit_status=1' - done - - # Try to remove the $objdir's in the directories where we deleted files - for dir in $rmdirs; do - if test -d "$dir"; then - func_show_eval "rmdir $dir >/dev/null 2>&1" - fi - done - - exit $exit_status -} - -if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then - func_mode_uninstall ${1+"$@"} -fi - -test -z "$opt_mode" && { - help=$generic_help - func_fatal_help "you must specify a MODE" -} - -test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode '$opt_mode'" - -if test -n "$exec_cmd"; then - eval exec "$exec_cmd" - exit $EXIT_FAILURE -fi - -exit $exit_status - - -# The TAGs below are defined such that we never get into a situation -# where we disable both kinds of libraries. Given conflicting -# choices, we go for a static library, that is the most portable, -# since we can't tell whether shared libraries were disabled because -# the user asked for that or because the platform doesn't support -# them. This is particularly important on AIX, because we don't -# support having both static and shared libraries enabled at the same -# time on that platform, so we default to a shared-only configuration. -# If a disable-shared tag is given, we'll fallback to a static-only -# configuration. But we'll never go from static-only to shared-only. - -# ### BEGIN LIBTOOL TAG CONFIG: disable-shared -build_libtool_libs=no -build_old_libs=yes -# ### END LIBTOOL TAG CONFIG: disable-shared - -# ### BEGIN LIBTOOL TAG CONFIG: disable-static -build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` -# ### END LIBTOOL TAG CONFIG: disable-static - -# Local Variables: -# mode:shell-script -# sh-indentation:2 -# End: - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD="" - -# How to create reloadable object files. -reload_flag=" -r" -reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - -# Commands used to build an old-style archive. -old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" - -# A language specific compiler. -CC="" - -# Is the compiler the GNU compiler? -with_gcc= - -# Compiler flag to turn off builtin functions. -no_builtin_flag="" - -# Additional compiler flags for building library objects. -pic_flag="" - -# How to pass a linker flag through the compiler. -wl="" - -# Compiler flag to prevent dynamic linking. -link_static_flag="" - -# Does compiler simultaneously support -c and -o options? -compiler_c_o="" - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=no - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=no - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="" - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="" - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object="no" - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds="" - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds="" - -# Commands used to build a shared archive. -archive_cmds="" -archive_expsym_cmds="" - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds="" -module_expsym_cmds="" - -# Whether we are building with GNU ld or not. -with_gnu_ld="" - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag="" - -# Flag that enforces no undefined symbols. -no_undefined_flag="" - -# Flag to hardcode $libdir into a binary during linking. -# This must work even if $libdir does not exist -hardcode_libdir_flag_spec="" - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator="" - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=no - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting $shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=no - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=no - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=unsupported - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=no - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=no - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown - -# Set to "yes" if exported symbols are required. -always_export_symbols=no - -# The commands to list exported symbols. -export_symbols_cmds="" - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms="" - -# Symbols that must always be exported. -include_expsyms="" - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds="" - -# Commands necessary for finishing linking programs. -postlink_cmds="" - -# Specify filename containing input files. -file_list_spec="" - -# How to hardcode a shared library path into an executable. -hardcode_action= - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="" - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects="" -postdep_objects="" -predeps="" -postdeps="" - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path="" - -# ### END LIBTOOL TAG CONFIG: CXX - -# ### BEGIN LIBTOOL TAG CONFIG: FC - -# The linker used to build libraries. -LD="" - -# How to create reloadable object files. -reload_flag=" -r" -reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - -# Commands used to build an old-style archive. -old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" - -# A language specific compiler. -CC="" - -# Is the compiler the GNU compiler? -with_gcc= - -# Compiler flag to turn off builtin functions. -no_builtin_flag="" - -# Additional compiler flags for building library objects. -pic_flag="" - -# How to pass a linker flag through the compiler. -wl="" - -# Compiler flag to prevent dynamic linking. -link_static_flag="" - -# Does compiler simultaneously support -c and -o options? -compiler_c_o="" - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=no - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=no - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="" - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="" - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object="" - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds="" - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds="" - -# Commands used to build a shared archive. -archive_cmds="" -archive_expsym_cmds="" - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds="" -module_expsym_cmds="" - -# Whether we are building with GNU ld or not. -with_gnu_ld="" - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag="" - -# Flag that enforces no undefined symbols. -no_undefined_flag="" - -# Flag to hardcode $libdir into a binary during linking. -# This must work even if $libdir does not exist -hardcode_libdir_flag_spec="" - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator="" - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=no - -# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting $shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=no - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=no - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var= - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=no - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=no - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=unknown - -# Set to "yes" if exported symbols are required. -always_export_symbols=no - -# The commands to list exported symbols. -export_symbols_cmds="" - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms="" - -# Symbols that must always be exported. -include_expsyms="" - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds="" - -# Commands necessary for finishing linking programs. -postlink_cmds="" - -# Specify filename containing input files. -file_list_spec="" - -# How to hardcode a shared library path into an executable. -hardcode_action= - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="" - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects="" -postdep_objects="" -predeps="" -postdeps="" - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path="" - -# ### END LIBTOOL TAG CONFIG: FC diff --git a/build/makecheck.out b/build/makecheck.out deleted file mode 100644 index 9ad4459..0000000 --- a/build/makecheck.out +++ /dev/null @@ -1,12131 +0,0 @@ -Making check in src -gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[1]: warning: -jN forced in submake: disabling jobserver mode. - CC H5.lo - CC H5system.lo - CC H5trace.lo - CC H5A.lo - CC H5Abtree2.lo - CC H5Adense.lo - CC H5Adeprec.lo - CC H5Aint.lo -../../src/H5trace.c: In function ‘H5_trace’: -../../src/H5trace.c:157:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(HDfabs(first_time.etime) < 0.0000000001F) - ^ -../../src/H5system.c: In function ‘HDfprintf’: -../../src/H5system.c:275:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf (stream, format_templ, x); - ^ -../../src/H5system.c:278:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf (stream, format_templ, x); - ^ -../../src/H5system.c:281:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf (stream, format_templ, x); - ^ -../../src/H5system.c:284:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf (stream, format_templ, x); - ^ -../../src/H5system.c:294:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:297:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:300:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:303:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:314:25: warning: implicit conversion from ‘float’ to ‘double’ when passing argument to function [-Wdouble-promotion] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:314:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] -../../src/H5system.c:317:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:325:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:362:29: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:374:29: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - fprintf(stream, format_templ, "UNDEF"); - ^ -../../src/H5system.c:382:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:390:25: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, x); - ^ -../../src/H5system.c:396:21: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - n = fprintf(stream, format_templ, nout); - ^ -../../src/H5trace.c:2310:29: warning: conversion to ‘hssize_t’ from ‘long unsigned int’ may change the sign of the result [-Wsign-conversion] - asize[argno] = iul; - ^ -../../src/H5trace.c:2334:29: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] - asize[argno] = iull; - ^ -../../src/H5Aint.c: In function ‘H5A_create’: -../../src/H5Aint.c:200:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Aprivate.h:25, - from ../../src/H5Apkg.h:37, - from ../../src/H5Aint.c:37: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Aint.c: In function ‘H5A_write’: -../../src/H5Aint.c:532:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Aprivate.h:25, - from ../../src/H5Apkg.h:37, - from ../../src/H5Aint.c:37: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Aint.c: In function ‘H5A_read’: -../../src/H5Aint.c:649:25: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Aprivate.h:25, - from ../../src/H5Apkg.h:37, - from ../../src/H5Aint.c:37: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -In file included from ../../src/H5Aint.c:36:0: -../../src/H5Aint.c: In function ‘H5A_attr_copy_file’: -../../src/H5Sprivate.h:170:71: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - #define H5S_GET_EXTENT_NPOINTS(S) (H5S_get_simple_extent_npoints(S)) - ^ -../../src/H5private.h:1485:34: note: in definition of macro ‘ASSIGN_TO_SAME_SIZE_SIGNED_TO_UNSIGNED’ - srctype _tmp_src = (srctype)(src); \ - ^ -../../src/H5private.h:2083:28: note: in expansion of macro ‘ASSIGN_hssize_t_TO_size_t’ - #define H5_GLUE4(w,x,y,z) w##x##y##z - ^ -../../src/H5Aint.c:2020:5: note: in expansion of macro ‘H5_CHECKED_ASSIGN’ - H5_CHECKED_ASSIGN(attr_dst->shared->data_size, size_t, H5S_GET_EXTENT_NPOINTS(attr_dst->shared->ds) * H5T_get_size(attr_dst->shared->dt), hssize_t); - ^ -../../src/H5Aint.c:2020:60: note: in expansion of macro ‘H5S_GET_EXTENT_NPOINTS’ - H5_CHECKED_ASSIGN(attr_dst->shared->data_size, size_t, H5S_GET_EXTENT_NPOINTS(attr_dst->shared->ds) * H5T_get_size(attr_dst->shared->dt), hssize_t); - ^ -In file included from ../../src/H5Aint.c:39:0: -../../src/H5Eprivate.h:76:40: warning: assignment makes pointer from integer without a cast [enabled by default] - #define HGOTO_DONE(ret_val) {ret_value = ret_val; goto done;} - ^ -../../src/H5Eprivate.h:67:4: note: in expansion of macro ‘HGOTO_DONE’ - HGOTO_DONE(ret_val) \ - ^ -../../src/H5Aint.c:2102:21: note: in expansion of macro ‘HGOTO_ERROR’ - HGOTO_ERROR(H5E_ATTR, H5E_CANTALLOC, FAIL, "memory allocation failed") - ^ - CC H5Atest.lo - CC H5AC.lo - CC H5B.lo - CC H5Bcache.lo - CC H5Bdbg.lo - CC H5B2.lo - CC H5B2cache.lo - CC H5B2dbg.lo -../../src/H5B.c: In function ‘H5B_shared_new’: -../../src/H5B.c:1749:30: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - shared->nkey = H5FL_SEQ_FREE(size_t, shared->nkey); - ^ -../../src/H5B.c: In function ‘H5B_shared_free’: -../../src/H5B.c:1780:18: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - shared->nkey = H5FL_SEQ_FREE(size_t, shared->nkey); - ^ -../../src/H5B.c: In function ‘H5B_copy’: -../../src/H5B.c:1848:22: warning: request for implicit conversion from ‘void *’ to ‘haddr_t *’ not permitted in C++ [-Wc++-compat] - new_node->child = H5FL_SEQ_FREE(haddr_t, new_node->child); - ^ -../../src/H5B.c: In function ‘H5B_node_dest’: -../../src/H5B.c:2095:15: warning: request for implicit conversion from ‘void *’ to ‘haddr_t *’ not permitted in C++ [-Wc++-compat] - bt->child = H5FL_SEQ_FREE(haddr_t, bt->child); - ^ -../../src/H5B2cache.c: In function ‘H5B2__cache_internal_load’: -../../src/H5B2cache.c:551:27: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] - internal->nrec = udata->nrec; - ^ -../../src/H5B2cache.c:552:28: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] - internal->depth = udata->depth; - ^ -In file included from ../../src/H5B2private.h:32:0, - from ../../src/H5B2pkg.h:30, - from ../../src/H5B2cache.c:36: -../../src/H5Fprivate.h:149:20: warning: conversion to ‘uint16_t’ from ‘int’ may alter its value [-Wconversion] - n = (n << 8) | *(--p); \ - ^ -../../src/H5Fprivate.h:181:41: note: in expansion of macro ‘DECODE_VAR’ - # define UINT64DECODE_VAR(p, n, l) DECODE_VAR(p, n, l) - ^ -../../src/H5B2cache.c:571:9: note: in expansion of macro ‘UINT64DECODE_VAR’ - UINT64DECODE_VAR(p, int_node_ptr->node_nrec, udata->hdr->max_nrec_size); - ^ -../../src/H5B2cache.c: In function ‘H5B2__cache_leaf_load’: -../../src/H5B2cache.c:889:23: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] - leaf->nrec = udata->nrec; - ^ - CC H5B2hdr.lo - CC H5B2int.lo - CC H5B2stat.lo - CC H5B2test.lo - CC H5C.lo - CC H5D.lo - CC H5Dbtree.lo - CC H5Dchunk.lo -../../src/H5B2hdr.c: In function ‘H5B2_hdr_free’: -../../src/H5B2hdr.c:523:22: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - hdr->nat_off = H5FL_SEQ_FREE(size_t, hdr->nat_off); - ^ -../../src/H5B2hdr.c:540:24: warning: request for implicit conversion from ‘void *’ to ‘struct H5B2_node_info_t *’ not permitted in C++ [-Wc++-compat] - hdr->node_info = H5FL_SEQ_FREE(H5B2_node_info_t, hdr->node_info); - ^ -../../src/H5B2test.c: In function ‘H5B2_get_node_depth_test’: -../../src/H5B2test.c:534:22: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - ret_value = ninfo.depth; - ^ -../../src/H5C.c:283:1: warning: ‘H5C_epoch_marker_notify’ defined but not used [-Wunused-function] - H5C_epoch_marker_notify(H5C_notify_action_t H5_ATTR_UNUSED action, - ^ - CC H5Dcompact.lo - CC H5Dcontig.lo - CC H5Ddbg.lo -../../src/H5Dchunk.c: In function ‘H5D__chunk_io_init’: -../../src/H5Dchunk.c:956:60: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if((file_space_normalized = H5S_hyper_normalize_offset((H5S_t *)file_space, old_offset)) < 0) - ^ -../../src/H5Dchunk.c:1194:41: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5S_hyper_denormalize_offset((H5S_t *)file_space, old_offset) < 0) - ^ -../../src/H5Dchunk.c: In function ‘H5D__create_chunk_map_single’: -../../src/H5Dchunk.c:1414:26: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - chunk_info->mspace = (H5S_t *)fm->mem_space; - ^ -../../src/H5Dchunk.c: In function ‘H5D__create_chunk_file_map_hyper’: -../../src/H5Dchunk.c:1481:46: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(TRUE == H5S_hyper_intersect_block((H5S_t *)fm->file_space, coords, end)) { - ^ -../../src/H5Dchunk.c: In function ‘H5D__create_chunk_mem_map_hyper’: -../../src/H5Dchunk.c:1648:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - chunk_info->mspace = (H5S_t *)fm->mem_space; - ^ -../../src/H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../../src/H5Dchunk.c:3563:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - (void *)pline, (H5MM_free_t)H5D__chunk_xfree, (void *)pline, - ^ -../../src/H5Dchunk.c:3563:63: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - (void *)pline, (H5MM_free_t)H5D__chunk_xfree, (void *)pline, - ^ -../../src/H5Dchunk.c: In function ‘H5D__chunk_prune_fill’: -../../src/H5Dchunk.c:4007:20: warning: size of ‘chunk_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t chunk_iter; /* Memory selection iteration info */ - ^ -../../src/H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../../src/H5Dchunk.c:4848:35: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] - H5D_shared_t *shared_fo = udata->cpy_info->shared_fo; - ^ -../../src/H5Dchunk.c: In function ‘H5D__chunk_copy’: -../../src/H5Dchunk.c:5095:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dchunk.c:55: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dchunk.c:5103:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dchunk.c:55: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dchunk.c: In function ‘H5D__chunk_dest’: -../../src/H5Dchunk.c:5460:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_rdcc_ent_t **’ not permitted in C++ [-Wc++-compat] - rdcc->slot = H5FL_SEQ_FREE(H5D_rdcc_ent_ptr_t, rdcc->slot); - ^ -../../src/H5Dcompact.c: In function ‘H5D__compact_copy’: -../../src/H5Dcompact.c:410:34: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] - H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ - ^ - CC H5Ddeprec.lo -../../src/H5Dcontig.c: In function ‘H5D__contig_copy’: -../../src/H5Dcontig.c:1301:34: warning: request for implicit conversion from ‘void *’ to ‘struct H5D_shared_t *’ not permitted in C++ [-Wc++-compat] - H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ - ^ - CC H5Defl.lo - CC H5Dfill.lo - CC H5Dint.lo - CC H5Dio.lo - CC H5Dlayout.lo -In file included from ../../src/H5Cprivate.h:35:0, - from ../../src/H5ACprivate.h:33, - from ../../src/H5Oprivate.h:36, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Defl.c:30: -../../src/H5Defl.c: In function ‘H5D__efl_read’: -../../src/H5Defl.c:291:49: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] - if(H5F_OVERFLOW_HSIZET2OFFT(efl->slot[u].offset + skip)) - ^ -../../src/H5Fprivate.h:344:16: note: in definition of macro ‘H5F_OVERFLOW_HSIZET2OFFT’ - ((hsize_t)(X)>=(hsize_t)((hsize_t)1<<(8*sizeof(off_t)-1))) - ^ -In file included from ../../src/H5Defl.c:29:0: -../../src/H5Defl.c:297:46: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] - if(HDlseek(fd, (HDoff_t)(efl->slot[u].offset + skip), SEEK_SET) < 0) - ^ -../../src/H5private.h:975:37: note: in definition of macro ‘HDlseek’ - #define HDlseek(F,O,W) lseek(F,O,W) - ^ -In file included from ../../src/H5Cprivate.h:35:0, - from ../../src/H5ACprivate.h:33, - from ../../src/H5Oprivate.h:36, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Defl.c:30: -../../src/H5Defl.c: In function ‘H5D__efl_write’: -../../src/H5Defl.c:383:49: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] - if(H5F_OVERFLOW_HSIZET2OFFT(efl->slot[u].offset + skip)) - ^ -../../src/H5Fprivate.h:344:16: note: in definition of macro ‘H5F_OVERFLOW_HSIZET2OFFT’ - ((hsize_t)(X)>=(hsize_t)((hsize_t)1<<(8*sizeof(off_t)-1))) - ^ -In file included from ../../src/H5Defl.c:29:0: -../../src/H5Defl.c:393:46: warning: conversion to ‘long long unsigned int’ from ‘off_t’ may change the sign of the result [-Wsign-conversion] - if(HDlseek(fd, (HDoff_t)(efl->slot[u].offset + skip), SEEK_SET) < 0) - ^ -../../src/H5private.h:975:37: note: in definition of macro ‘HDlseek’ - #define HDlseek(F,O,W) lseek(F,O,W) - ^ - CC H5Dmpio.lo -../../src/H5Dint.c: In function ‘H5D__init_type’: -../../src/H5Dint.c:636:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dint.c:28: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dint.c:664:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - dset->shared->type = (H5T_t *)type; /* (Cast away const OK - QAK) */ - ^ - CC H5Doh.lo -../../src/H5Dfill.c: In function ‘H5D__fill’: -../../src/H5Dfill.c:232:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dfill.c:35: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dfill.c:235:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dfill.c:35: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dfill.c:246:28: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t mem_iter; /* Memory selection iteration info */ - ^ -../../src/H5Dfill.c: In function ‘H5D__fill_init’: -../../src/H5Dfill.c:405:13: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Dpkg.h:30, - from ../../src/H5Dfill.c:35: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Dio.c: In function ‘H5Dread’: -../../src/H5Dio.c:198:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for(u = 0; u < ndims; u++) { - ^ -../../src/H5Dio.c: In function ‘H5D__pre_write’: -../../src/H5Dio.c:381:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for(u = 0; u < ndims; u++) { - ^ -../../src/H5Dio.c: In function ‘H5D__read’: -../../src/H5Dio.c:428:21: warning: size of ‘fm’ is 2864 bytes [-Wlarger-than=] - H5D_chunk_map_t fm; /* Chunk file<->memory mapping */ - ^ -../../src/H5Dio.c:475:5: warning: implicit declaration of function ‘H5T_patch_vlen_file’ [-Wimplicit-function-declaration] - H5T_patch_vlen_file(dataset->shared->type, dataset->oloc.file); - ^ -../../src/H5Dio.c:475:5: warning: nested extern declaration of ‘H5T_patch_vlen_file’ [-Wnested-externs] -../../src/H5Dio.c:532:66: warning: to be safe all intermediate pointers in cast from ‘void **’ to ‘const void **’ must be ‘const’ qualified [-Wcast-qual] - (unsigned)H5S_GET_EXTENT_NDIMS(file_space), buf, (const void **)&adj_buf, type_info.dst_type_size) < 0) - ^ -../../src/H5Dio.c: In function ‘H5D__write’: -../../src/H5Dio.c:647:21: warning: size of ‘fm’ is 2864 bytes [-Wlarger-than=] - H5D_chunk_map_t fm; /* Chunk file<->memory mapping */ - ^ -../../src/H5Dio.c:789:66: warning: to be safe all intermediate pointers in cast from ‘void **’ to ‘const void **’ must be ‘const’ qualified [-Wcast-qual] - (unsigned)H5S_GET_EXTENT_NDIMS(file_space), buf, (const void **)&adj_buf, type_info.src_type_size) < 0) - ^ - CC H5Dscatgath.lo - CC H5Dselect.lo - CC H5Dtest.lo - CC H5E.lo - CC H5Edeprec.lo - CC H5F.lo -../../src/H5Dselect.c: In function ‘H5D__select_io’: -../../src/H5Dselect.c:87:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t mem_iter; /* Memory selection iteration info */ - ^ -../../src/H5Dselect.c:89:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t file_iter; /* File selection iteration info */ - ^ -../../src/H5Dselect.c:91:13: warning: size of ‘_mem_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _mem_off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets in memory */ - ^ -../../src/H5Dselect.c:93:13: warning: size of ‘_file_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _file_off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets in the file */ - ^ -../../src/H5Dselect.c:95:12: warning: size of ‘_mem_len’ is 8192 bytes [-Wlarger-than=] - size_t _mem_len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths in memory */ - ^ -../../src/H5Dselect.c:97:12: warning: size of ‘_file_len’ is 8192 bytes [-Wlarger-than=] - size_t _file_len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths in the file */ - ^ -../../src/H5Dselect.c:240:18: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - file_len = H5FL_SEQ_FREE(size_t, file_len); - ^ -../../src/H5Dselect.c:242:18: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - file_off = H5FL_SEQ_FREE(hsize_t, file_off); - ^ -../../src/H5Dselect.c:244:17: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - mem_len = H5FL_SEQ_FREE(size_t, mem_len); - ^ -../../src/H5Dselect.c:246:17: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - mem_off = H5FL_SEQ_FREE(hsize_t, mem_off); - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatter_file’: -../../src/H5Dscatgath.c:98:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Dscatgath.c:103:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] - size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Dscatgath.c:162:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - len = H5FL_SEQ_FREE(size_t, len); - ^ -../../src/H5Dscatgath.c:164:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - off = H5FL_SEQ_FREE(hsize_t, off); - ^ -../../src/H5Dscatgath.c: In function ‘H5D__gather_file’: -../../src/H5Dscatgath.c:197:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Dscatgath.c:202:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] - size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Dscatgath.c:263:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - len = H5FL_SEQ_FREE(size_t, len); - ^ -../../src/H5Dscatgath.c:265:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - off = H5FL_SEQ_FREE(hsize_t, off); - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatter_mem’: -../../src/H5Dscatgath.c:293:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Dscatgath.c:295:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] - size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Dscatgath.c:348:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - len = H5FL_SEQ_FREE(size_t, len); - ^ -../../src/H5Dscatgath.c:350:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - off = H5FL_SEQ_FREE(hsize_t, off); - ^ -../../src/H5Dscatgath.c: In function ‘H5D__gather_mem’: -../../src/H5Dscatgath.c:380:13: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Dscatgath.c:382:12: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] - size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Dscatgath.c:435:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - len = H5FL_SEQ_FREE(size_t, len); - ^ -../../src/H5Dscatgath.c:437:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - off = H5FL_SEQ_FREE(hsize_t, off); - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatgath_read’: -../../src/H5Dscatgath.c:461:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t mem_iter; /*memory selection iteration info*/ - ^ -../../src/H5Dscatgath.c:463:20: warning: size of ‘bkg_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t bkg_iter; /*background iteration info*/ - ^ -../../src/H5Dscatgath.c:465:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t file_iter; /*file selection iteration info*/ - ^ -../../src/H5Dselect.c:84:1: warning: stack usage is 37424 bytes [-Wstack-usage=] - H5D__select_io(const H5D_io_info_t *io_info, size_t elmt_size, - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatgath_write’: -../../src/H5Dscatgath.c:593:20: warning: size of ‘mem_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t mem_iter; /*memory selection iteration info*/ - ^ -../../src/H5Dscatgath.c:595:20: warning: size of ‘bkg_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t bkg_iter; /*background iteration info*/ - ^ -../../src/H5Dscatgath.c:597:20: warning: size of ‘file_iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t file_iter; /*file selection iteration info*/ - ^ -../../src/H5Dselect.c:249:1: warning: the frame size of 37384 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* end H5D__select_io() */ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__compound_opt_read’: -../../src/H5Dscatgath.c:745:16: warning: size of ‘_off’ is 8192 bytes [-Wlarger-than=] - hsize_t _off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Dscatgath.c:747:16: warning: size of ‘_len’ is 8192 bytes [-Wlarger-than=] - size_t _len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Dscatgath.c:829:13: warning: request for implicit conversion from ‘void *’ to ‘size_t *’ not permitted in C++ [-Wc++-compat] - len = H5FL_SEQ_FREE(size_t, len); - ^ -../../src/H5Dscatgath.c:831:13: warning: request for implicit conversion from ‘void *’ to ‘hsize_t *’ not permitted in C++ [-Wc++-compat] - off = H5FL_SEQ_FREE(hsize_t, off); - ^ -../../src/H5Dscatgath.c: In function ‘H5Dscatter’: -../../src/H5Dscatgath.c:924:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter; /* Selection iteration info*/ - ^ -../../src/H5Dscatgath.c: In function ‘H5Dgather’: -../../src/H5Dscatgath.c:1024:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter; /* Selection iteration info*/ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatter_file’: -../../src/H5Dscatgath.c:93:1: warning: stack usage is 16720 bytes [-Wstack-usage=] - H5D__scatter_file(const H5D_io_info_t *_io_info, - ^ -../../src/H5Dscatgath.c:167:1: warning: the frame size of 16680 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* H5D__scatter_file() */ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__gather_file’: -../../src/H5Dscatgath.c:192:1: warning: stack usage is 16736 bytes [-Wstack-usage=] - H5D__gather_file(const H5D_io_info_t *_io_info, - ^ -../../src/H5Dscatgath.c:268:1: warning: the frame size of 16696 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* H5D__gather_file() */ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__scatter_mem’: -../../src/H5Dscatgath.c:287:1: warning: stack usage is 16560 bytes [-Wstack-usage=] - H5D__scatter_mem (const void *_tscat_buf, const H5S_t *space, - ^ -../../src/H5Dscatgath.c:353:1: warning: the frame size of 16512 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* H5D__scatter_mem() */ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__gather_mem’: -../../src/H5Dscatgath.c:374:1: warning: stack usage is 16560 bytes [-Wstack-usage=] - H5D__gather_mem(const void *_buf, const H5S_t *space, - ^ -../../src/H5Dscatgath.c:440:1: warning: the frame size of 16512 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* H5D__gather_mem() */ - ^ -../../src/H5Dscatgath.c: In function ‘H5D__compound_opt_read’: -../../src/H5Dscatgath.c:739:1: warning: stack usage is 16624 bytes [-Wstack-usage=] - H5D__compound_opt_read(size_t nelmts, const H5S_t *space, - ^ -../../src/H5Dscatgath.c:834:1: warning: the frame size of 16576 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* end H5D__compound_opt_read() */ - ^ - CC H5Fint.lo - CC H5Faccum.lo - CC H5Fcwfs.lo - CC H5Fdbg.lo -../../src/H5E.c: In function ‘H5Epush2’: -../../src/H5E.c:1389:5: warning: function might be possible candidate for ‘gnu_printf’ format attribute [-Wsuggest-attribute=format] - if(HDvasprintf(&tmp, fmt, ap) < 0) - ^ - CC H5Fefc.lo - CC H5Ffake.lo -../../src/H5Fint.c: In function ‘H5F_build_actual_name’: -../../src/H5Fint.c:1581:18: warning: size of ‘realname’ is 4096 bytes [-Wlarger-than=] - char realname[PATH_MAX]; /* Fully resolved path name of file */ - ^ - CC H5Fio.lo - CC H5Fmount.lo - CC H5Fmpi.lo - CC H5Fquery.lo - CC H5Fsfile.lo - CC H5Fsuper.lo - CC H5Fsuper_cache.lo - CC H5Ftest.lo - CC H5FD.lo - CC H5FDcore.lo -../../src/H5Fsuper_cache.c: In function ‘H5F_sblock_load’: -../../src/H5Fsuper_cache.c:280:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->base_addr/*out*/); - ^ -../../src/H5Fsuper_cache.c:281:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->ext_addr/*out*/); - ^ -../../src/H5Fsuper_cache.c:282:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &stored_eoa/*out*/); - ^ -../../src/H5Fsuper_cache.c:283:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->driver_addr/*out*/); - ^ -../../src/H5Fsuper_cache.c:291:30: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - if(H5G_ent_decode(f, (const uint8_t **)&p, sblock->root_ent) < 0) - ^ -../../src/H5Fsuper_cache.c:412:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->base_addr/*out*/); - ^ -../../src/H5Fsuper_cache.c:413:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->ext_addr/*out*/); - ^ -../../src/H5Fsuper_cache.c:414:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &stored_eoa/*out*/); - ^ -../../src/H5Fsuper_cache.c:415:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&p, &sblock->root_addr/*out*/); - ^ - CC H5FDdirect.lo - CC H5FDfamily.lo - CC H5FDint.lo - CC H5FDlog.lo - CC H5FDmpi.lo - CC H5FDmpio.lo -In file included from ../../src/H5FDdirect.c:30:0: -../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] - static int H5_interface_initialize_g = 0; - ^ -../../src/H5FDdirect.c:24:33: warning: ‘H5FD_direct_init_interface’ declared ‘static’ but never defined [-Wunused-function] - #define H5_INTERFACE_INIT_FUNC H5FD_direct_init_interface - ^ -../../src/H5private.h:1820:18: note: in expansion of macro ‘H5_INTERFACE_INIT_FUNC’ - static herr_t H5_INTERFACE_INIT_FUNC(void); - ^ - CC H5FDmulti.lo -../../src/H5FDfamily.c: In function ‘H5FD_family_open’: -../../src/H5FDfamily.c:647:11: warning: size of ‘memb_name’ is 4096 bytes [-Wlarger-than=] - char memb_name[4096], temp[4096]; - ^ -../../src/H5FDfamily.c:647:28: warning: size of ‘temp’ is 4096 bytes [-Wlarger-than=] - char memb_name[4096], temp[4096]; - ^ -../../src/H5FDfamily.c:709:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - HDsnprintf(memb_name, sizeof(memb_name), name, 0); - ^ -../../src/H5FDfamily.c:709:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] -../../src/H5FDfamily.c:710:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - HDsnprintf(temp, sizeof(temp), name, 1); - ^ -../../src/H5FDfamily.c:710:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] -../../src/H5FDfamily.c:716:9: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - HDsnprintf(memb_name, sizeof(memb_name), name, file->nmembs); - ^ -../../src/H5FDfamily.c:716:9: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] -../../src/H5FDfamily.c: In function ‘H5FD_family_cmp’: -../../src/H5FDfamily.c:868:1: warning: label ‘done’ defined but not used [-Wunused-label] - done: - ^ -../../src/H5FDfamily.c: In function ‘H5FD_family_set_eoa’: -../../src/H5FDfamily.c:968:11: warning: size of ‘memb_name’ is 4096 bytes [-Wlarger-than=] - char memb_name[4096]; - ^ -../../src/H5FDfamily.c:991:13: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - HDsnprintf(memb_name, sizeof(memb_name), file->name, u); - ^ -../../src/H5FDfamily.c:991:13: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] -../../src/H5FDlog.c: In function ‘H5Pset_fapl_log’: -../../src/H5FDlog.c:324:18: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - fa.logfile = (char *)logfile; - ^ - CC H5FDsec2.lo - CC H5FDspace.lo -../../src/H5FDfamily.c: In function ‘H5FD_family_open’: -../../src/H5FDfamily.c:642:1: warning: stack usage is 8400 bytes [-Wstack-usage=] - H5FD_family_open(const char *name, unsigned flags, hid_t fapl_id, - ^ - CC H5FDstdio.lo -In file included from ../../src/H5FDmpio.c:26:0: -../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] - static int H5_interface_initialize_g = 0; - ^ -../../src/H5FDmpio.c:23:33: warning: ‘H5FD_mpio_init_interface’ declared ‘static’ but never defined [-Wunused-function] - #define H5_INTERFACE_INIT_FUNC H5FD_mpio_init_interface - ^ -../../src/H5private.h:1820:18: note: in expansion of macro ‘H5_INTERFACE_INIT_FUNC’ - static herr_t H5_INTERFACE_INIT_FUNC(void); - ^ -../../src/H5FDmulti.c: In function ‘H5FD_multi_read’: -../../src/H5FDmulti.c:1620:55: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] - H5FD_multi_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, - ^ -../../src/H5FDmulti.c: In function ‘H5FD_multi_write’: -../../src/H5FDmulti.c:1671:56: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] - H5FD_multi_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, - ^ -../../src/H5FDmulti.c: In function ‘compute_next’: -../../src/H5FDmulti.c:50:16: warning: declaration of ‘_unmapped’ shadows a previous local [-Wshadow] - H5FD_mem_t _unmapped, LOOPVAR; \ - ^ -../../src/H5FDmulti.c:1845:2: note: in expansion of macro ‘UNIQUE_MEMBERS’ - UNIQUE_MEMBERS(file->fa.memb_map, mt2) { - ^ -../../src/H5FDmulti.c:50:16: warning: shadowed declaration is here [-Wshadow] - H5FD_mem_t _unmapped, LOOPVAR; \ - ^ -../../src/H5FDmulti.c:1844:5: note: in expansion of macro ‘UNIQUE_MEMBERS’ - UNIQUE_MEMBERS(file->fa.memb_map, mt1) { - ^ -../../src/H5FDmulti.c:51:13: warning: declaration of ‘_seen’ shadows a previous local [-Wshadow] - hbool_t _seen[H5FD_MEM_NTYPES]; \ - ^ -../../src/H5FDmulti.c:1845:2: note: in expansion of macro ‘UNIQUE_MEMBERS’ - UNIQUE_MEMBERS(file->fa.memb_map, mt2) { - ^ -../../src/H5FDmulti.c:51:13: warning: shadowed declaration is here [-Wshadow] - hbool_t _seen[H5FD_MEM_NTYPES]; \ - ^ -../../src/H5FDmulti.c:1844:5: note: in expansion of macro ‘UNIQUE_MEMBERS’ - UNIQUE_MEMBERS(file->fa.memb_map, mt1) { - ^ -../../src/H5FDmulti.c: In function ‘open_members’: -../../src/H5FDmulti.c:1894:2: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] - sprintf(tmp, file->fa.memb_name[mt], file->name); - ^ - CC H5FL.lo - CC H5FO.lo - CC H5FS.lo - CC H5FScache.lo - CC H5FSdbg.lo - CC H5FSsection.lo -../../src/H5FS.c: In function ‘H5FS_new’: -../../src/H5FS.c:538:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - fspace->nclasses = nclasses; - ^ -In file included from ../../src/H5FS.c:36:0: -../../src/H5FSpkg.h:77:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + H5F_SIZEOF_SIZE(f) /* Allocated size of serialized free space sections */ \ - ^ -../../src/H5FS.c:564:24: note: in expansion of macro ‘H5FS_HEADER_SIZE’ - fspace->hdr_size = H5FS_HEADER_SIZE(f); - ^ -../../src/H5FS.c: In function ‘H5FS_sinfo_dest’: -../../src/H5FS.c:890:17: warning: request for implicit conversion from ‘void *’ to ‘struct H5FS_bin_t *’ not permitted in C++ [-Wc++-compat] - sinfo->bins = H5FL_SEQ_FREE(H5FS_bin_t, sinfo->bins); - ^ - CC H5FSstat.lo - CC H5FStest.lo - CC H5G.lo -../../src/H5FSsection.c: In function ‘H5FS_sinfo_new’: -../../src/H5FSsection.c:145:31: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - sinfo->sect_prefix_size = (size_t)H5FS_SINFO_PREFIX_SIZE(f); - ^ -../../src/H5FSsection.c:176:25: warning: request for implicit conversion from ‘void *’ to ‘struct H5FS_bin_t *’ not permitted in C++ [-Wc++-compat] - sinfo->bins = H5FL_SEQ_FREE(H5FS_bin_t, sinfo->bins); - ^ -../../src/H5FSsection.c: In function ‘H5FS_sect_try_shrink_eoa’: -../../src/H5FSsection.c:2336:5: warning: passing argument 1 of ‘H5FS_sinfo_lock’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(H5FS_sinfo_lock(f, dxpl_id, fspace, H5AC_WRITE) < 0) - ^ -../../src/H5FSsection.c:205:1: note: expected ‘struct H5F_t *’ but argument is of type ‘const struct H5F_t *’ - H5FS_sinfo_lock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, H5AC_protect_t accmode) - ^ -../../src/H5FSsection.c:2336:5: warning: passing argument 3 of ‘H5FS_sinfo_lock’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(H5FS_sinfo_lock(f, dxpl_id, fspace, H5AC_WRITE) < 0) - ^ -../../src/H5FSsection.c:205:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ - H5FS_sinfo_lock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, H5AC_protect_t accmode) - ^ -../../src/H5FSsection.c:2360:7: warning: passing argument 1 of ‘H5FS_sect_remove_real’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(H5FS_sect_remove_real(fspace, tmp_sect) < 0) - ^ -../../src/H5FSsection.c:857:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ - H5FS_sect_remove_real(H5FS_t *fspace, H5FS_section_info_t *sect) - ^ -../../src/H5FSsection.c:2374:5: warning: passing argument 1 of ‘H5FS_sinfo_unlock’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(sinfo_valid && H5FS_sinfo_unlock(f, dxpl_id, fspace, section_removed) < 0) - ^ -../../src/H5FSsection.c:311:1: note: expected ‘struct H5F_t *’ but argument is of type ‘const struct H5F_t *’ - H5FS_sinfo_unlock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, hbool_t modified) - ^ -../../src/H5FSsection.c:2374:5: warning: passing argument 3 of ‘H5FS_sinfo_unlock’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(sinfo_valid && H5FS_sinfo_unlock(f, dxpl_id, fspace, section_removed) < 0) - ^ -../../src/H5FSsection.c:311:1: note: expected ‘struct H5FS_t *’ but argument is of type ‘const struct H5FS_t *’ - H5FS_sinfo_unlock(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace, hbool_t modified) - ^ - CC H5Gbtree2.lo -../../src/H5FSstat.c: In function ‘H5FS_stat_info’: -../../src/H5FSstat.c:97:23: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - stats->hdr_size = (size_t)H5FS_HEADER_SIZE(f); - ^ - CC H5Gcache.lo - CC H5Gcompact.lo - CC H5Gdense.lo - CC H5Gdeprec.lo - CC H5Gent.lo - CC H5Gint.lo -../../src/H5Gdense.c: In function ‘H5G__dense_create’: -../../src/H5Gdense.c:323:30: warning: conversion to ‘uint32_t’ from ‘size_t’ may alter its value [-Wconversion] - bt2_cparam.rrec_size = 4 + /* Name's hash value */ - ^ -../../src/H5Gdense.c:343:34: warning: conversion to ‘uint32_t’ from ‘size_t’ may alter its value [-Wconversion] - bt2_cparam.rrec_size = 8 + /* Creation order value */ - ^ -In file included from ../../src/H5Gpkg.h:30:0, - from ../../src/H5Gcache.c:37: -../../src/H5Gcache.c: In function ‘H5G_node_load’: -../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - 4 + /*reserved */ \ - ^ -../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ - + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ - ^ -../../src/H5Gcache.c:140:22: note: in expansion of macro ‘H5G_NODE_SIZE’ - sym->node_size = H5G_NODE_SIZE(f); - ^ -../../src/H5Gent.c: In function ‘H5G__ent_copy’: -../../src/H5Gent.c:343:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - H5G__ent_reset((H5G_entry_t *)src); - ^ - CC H5Glink.lo - CC H5Gloc.lo - CC H5Gname.lo - CC H5Gnode.lo - CC H5Gobj.lo - CC H5Goh.lo - CC H5Groot.lo -../../src/H5Gname.c: In function ‘H5G_name_copy’: -../../src/H5Gname.c:535:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - H5G_name_reset((H5G_name_t *)src); - ^ -../../src/H5Gloc.c: In function ‘H5G__loc_insert’: -../../src/H5Gloc.c:578:16: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - lnk.name = (char *)name; - ^ -../../src/H5Gloc.c: In function ‘H5G_loc_set_comment_cb’: -../../src/H5Gloc.c:791:14: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - comment.s = (char *)udata->comment; - ^ -../../src/H5Gnode.c: In function ‘H5G__node_free’: -../../src/H5Gnode.c:292:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5G_entry_t *’ not permitted in C++ [-Wc++-compat] - sym->entry = H5FL_SEQ_FREE(H5G_entry_t, sym->entry); - ^ -In file included from ../../src/H5Gpkg.h:30:0, - from ../../src/H5Gnode.c:43: -../../src/H5Gnode.c: In function ‘H5G_node_create’: -../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - 4 + /*reserved */ \ - ^ -../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ - + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ - ^ -../../src/H5Gnode.c:337:22: note: in expansion of macro ‘H5G_NODE_SIZE’ - sym->node_size = H5G_NODE_SIZE(f); - ^ -../../src/H5Gnode.c:360:28: warning: request for implicit conversion from ‘void *’ to ‘struct H5G_entry_t *’ not permitted in C++ [-Wc++-compat] - sym->entry = H5FL_SEQ_FREE(H5G_entry_t, sym->entry); - ^ -../../src/H5Gnode.c: In function ‘H5G_node_insert’: -../../src/H5Gnode.c:643:13: warning: enum conversion in assignment is invalid in C++ [-Wc++-compat] - HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name") - ^ -../../src/H5Gnode.c:698:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - idx -= H5F_SYM_LEAF_K(f); - ^ -../../src/H5Gnode.c:698:17: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - idx -= H5F_SYM_LEAF_K(f); - ^ -../../src/H5Gnode.c: In function ‘H5G_node_remove’: -../../src/H5Gnode.c:805:19: warning: request for implicit conversion from ‘void *’ to ‘const char *’ not permitted in C++ [-Wc++-compat] - if((s = H5HL_offset_into(udata->common.heap, sn->entry[idx].name_off)) == NULL) - ^ -../../src/H5Gnode.c:806:17: warning: enum conversion in assignment is invalid in C++ [-Wc++-compat] - HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name") - ^ -../../src/H5Gnode.c: In function ‘H5G__node_copy’: -../../src/H5Gnode.c:1271:28: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - grp_loc.oloc = (H5O_loc_t *)src_oloc; - ^ -In file included from ../../src/H5Gpkg.h:30:0, - from ../../src/H5Gnode.c:43: -../../src/H5Gnode.c: In function ‘H5G__node_iterate_size’: -../../src/H5Gprivate.h:52:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - 4 + /*reserved */ \ - ^ -../../src/H5Gpkg.h:56:34: note: in expansion of macro ‘H5G_SIZEOF_ENTRY’ - + ((2 * H5F_SYM_LEAF_K(f)) * H5G_SIZEOF_ENTRY(f)) \ - ^ -../../src/H5Gnode.c:1460:19: note: in expansion of macro ‘H5G_NODE_SIZE’ - *stab_size += H5G_NODE_SIZE(f); - ^ -../../src/H5Gobj.c: In function ‘H5G__obj_create_real’: -../../src/H5Gobj.c:270:67: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_create(oloc, H5O_LINFO_ID, 0, H5O_UPDATE_TIME, (void *)linfo, dxpl_id) < 0) - ^ -../../src/H5Gobj.c:275:73: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_create(oloc, H5O_GINFO_ID, H5O_MSG_FLAG_CONSTANT, 0, (void *)ginfo, dxpl_id) < 0) - ^ -../../src/H5Gobj.c:281:77: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_create(oloc, H5O_PLINE_ID, H5O_MSG_FLAG_CONSTANT, 0, (void *)pline, dxpl_id) < 0) - ^ -../../src/H5Gobj.c: In function ‘H5G_obj_stab_to_new_cb’: -../../src/H5Gobj.c:431:51: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5G_obj_insert(udata->grp_oloc, lnk->name, (H5O_link_t *)lnk, FALSE, - ^ - CC H5Gstab.lo - CC H5Gtest.lo - CC H5Gtraverse.lo - CC H5HF.lo - CC H5HFbtree2.lo - CC H5HFcache.lo - CC H5HFdbg.lo - CC H5HFdblock.lo -../../src/H5Gtraverse.c: In function ‘H5G_traverse_real’: -../../src/H5Gtraverse.c:741:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_reset(H5O_GINFO_ID, (void *)ginfo) < 0) - ^ -../../src/H5Gtraverse.c:745:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_reset(H5O_LINFO_ID, (void *)linfo) < 0) - ^ -../../src/H5Gtraverse.c:749:52: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_reset(H5O_PLINE_ID, (void *)pline) < 0) - ^ -In file included from ../../src/H5HF.c:39:0: -../../src/H5HF.c: In function ‘H5HF_op_write’: -../../src/H5HF.c:128:14: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - HDmemcpy((void *)obj, op_data, obj_len); /* Casting away const OK -QAK */ - ^ -../../src/H5private.h:1003:47: note: in definition of macro ‘HDmemcpy’ - #define HDmemcpy(X,Y,Z) memcpy((char*)(X),(const char*)(Y),Z) - ^ -../../src/H5HF.c: In function ‘H5HF_insert’: -../../src/H5HF.c:373:49: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5HF_huge_insert(hdr, dxpl_id, size, (void *)obj, id) < 0) - ^ -../../src/H5HFcache.c: In function ‘H5HF_cache_hdr_flush’: -../../src/H5HFcache.c:501:20: warning: conversion to ‘uint8_t’ from ‘int’ may alter its value [-Wconversion] - heap_flags |= (hdr->huge_ids_wrapped ? H5HF_HDR_FLAGS_HUGE_ID_WRAPPED : 0); - ^ -../../src/H5HFcache.c:502:20: warning: conversion to ‘uint8_t’ from ‘int’ may alter its value [-Wconversion] - heap_flags |= (hdr->checksum_dblocks ? H5HF_HDR_FLAGS_CHECKSUM_DBLOCKS : 0); - ^ -../../src/H5HFcache.c: In function ‘H5HF_cache_iblock_load’: -../../src/H5HFcache.c:706:25: warning: size of ‘iblock_buf’ is 4096 bytes [-Wlarger-than=] - uint8_t iblock_buf[H5HF_IBLOCK_BUF_SIZE]; /* Buffer for indirect block */ - ^ -In file included from ../../src/H5HFcache.c:38:0: -../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ - ^ -../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ - + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ - ^ -../../src/H5HFcache.c:747:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFcache.c:747:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFcache.c: In function ‘H5HF_cache_iblock_flush’: -../../src/H5HFcache.c:904:17: warning: size of ‘iblock_buf’ is 4096 bytes [-Wlarger-than=] - uint8_t iblock_buf[H5HF_IBLOCK_BUF_SIZE]; /* Buffer for indirect block */ - ^ -../../src/H5HFcache.c:987:21: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - max_child = u; - ^ -In file included from ../../src/H5HFcache.c:35:0: -../../src/H5HFcache.c: In function ‘H5HF_cache_dblock_load’: -../../src/H5HFcache.c:1347:18: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - HDmemset((uint8_t *)p - H5HF_SIZEOF_CHKSUM, 0, (size_t)H5HF_SIZEOF_CHKSUM); - ^ -../../src/H5private.h:1009:39: note: in definition of macro ‘HDmemset’ - #define HDmemset(X,C,Z) memset(X,C,Z) - ^ -In file included from ../../src/H5HFdblock.c:37:0: -../../src/H5HFdblock.c: In function ‘H5HF_man_dblock_create’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFdblock.c:141:33: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - free_space = dblock->size - H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFpkg.h:113:5: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFdblock.c:169:70: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - if(NULL == (sec_node = H5HF_sect_single_new((dblock->block_off + H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr)), - ^ -../../src/H5HFdblock.c: In function ‘H5HF_man_dblock_new’: -../../src/H5HFdblock.c:361:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if((min_dblock_size - request) < H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr)) - ^ -In file included from ../../src/H5HFdbg.c:38:0: -../../src/H5HFdbg.c: In function ‘H5HF_dblock_debug’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFdbg.c:481:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - blk_prefix_size = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ - CC H5HFdtable.lo - CC H5HFhdr.lo - CC H5HFhuge.lo - CC H5HFiblock.lo - CC H5HFiter.lo - CC H5HFman.lo - CC H5HFsection.lo - CC H5HFspace.lo -../../src/H5HFsection.c: In function ‘H5HF_sect_single_dblock_info’: -../../src/H5HFsection.c:649:53: warning: unused parameter ‘dxpl_id’ [-Wunused-parameter] - H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr, hid_t dxpl_id, - ^ -In file included from ../../src/H5HFsection.c:33:0: -../../src/H5HFsection.c: In function ‘H5HF_sect_single_full_dblock’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFsection.c:772:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFsection.c: In function ‘H5HF_sect_single_can_shrink’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFsection.c:1032:27: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../../src/H5HFsection.c:1198:78: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - status = H5HF_sect_single_dblock_info(iblock->hdr, H5AC_dxpl_id, (H5HF_free_section_t *)sect, &dblock_addr, &dblock_size); - ^ -In file included from ../../src/H5HFsection.c:33:0: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFsection.c:1207:31: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(iblock->hdr); - ^ -../../src/H5HFsection.c: In function ‘H5HF_sect_row_init_cls’: -../../src/H5HFsection.c:46:9: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + 2 /* # of entries */ \ - ^ -../../src/H5HFsection.c:1567:28: note: in expansion of macro ‘H5HF_SECT_INDIRECT_SERIAL_SIZE’ - cls->serial_size = H5HF_SECT_INDIRECT_SERIAL_SIZE(hdr); - ^ -../../src/H5HFsection.c: In function ‘H5HF_sect_indirect_init_cls’: -../../src/H5HFsection.c:46:9: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + 2 /* # of entries */ \ - ^ -../../src/H5HFsection.c:2183:24: note: in expansion of macro ‘H5HF_SECT_INDIRECT_SERIAL_SIZE’ - cls->serial_size = H5HF_SECT_INDIRECT_SERIAL_SIZE(hdr); - ^ -In file included from ../../src/H5HFsection.c:33:0: -../../src/H5HFsection.c: In function ‘H5HF_sect_indirect_init_rows’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFsection.c:2476:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFman.c: In function ‘H5HF_man_write’: -../../src/H5HFman.c:430:58: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5HF_man_op_real(hdr, dxpl_id, id, H5HF_op_write, (void *)obj, H5HF_OP_MODIFY) < 0) - ^ -../../src/H5HFiblock.c: In function ‘H5HF_iblock_unpin’: -../../src/H5HFiblock.c:214:13: warning: negative integer implicitly converted to unsigned type [-Wsign-conversion] - iblock->hdr->root_iblock_flags &= ~(H5HF_ROOT_IBLOCK_PINNED); - ^ -In file included from ../../src/H5HFiblock.c:37:0: -../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_root_double’: -../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ - ^ -../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ - + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ - ^ -../../src/H5HFiblock.c:590:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFiblock.c:590:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFhuge.c: In function ‘H5HF_huge_bt2_create’: -../../src/H5HFhuge.c:125:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ - ^ -../../src/H5HFhuge.c:132:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ - ^ -../../src/H5HFhuge.c:139:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of filtered object */ - ^ -../../src/H5HFhuge.c:147:36: warning: conversion to ‘uint32_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - bt2_cparam.rrec_size = (size_t)(hdr->sizeof_addr /* Address of object */ - ^ -../../src/H5HFiblock.c:629:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - unsigned row = u / hdr->man_dtable.cparam.width; /* Row for current entry */ - ^ -../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_root_halve’: -../../src/H5HFiblock.c:731:19: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - new_nrows = 1 << (1 + H5VM_log2_gen((uint64_t)max_child_row)); - ^ -In file included from ../../src/H5HFiblock.c:37:0: -../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ - ^ -../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ - + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ - ^ -../../src/H5HFiblock.c:759:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFiblock.c:759:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -In file included from ../../src/H5HFhdr.c:34:0: -../../src/H5HFhdr.c: In function ‘H5HF_hdr_finish_init_phase1’: -../../src/H5HFhdr.c:224:45: warning: conversion to ‘uint8_t’ from ‘unsigned int’ may alter its value [-Wconversion] - hdr->heap_len_size = MIN(hdr->man_dtable.max_dir_blk_off_size, - ^ -../../src/H5private.h:319:35: note: in definition of macro ‘MIN’ - #define MIN(a,b) (((a)<(b)) ? (a) : (b)) - ^ -../../src/H5HFhdr.c:225:32: warning: conversion to ‘uint8_t’ from ‘unsigned int’ may alter its value [-Wconversion] - H5VM_limit_enc_size((uint64_t)hdr->max_man_size)); - ^ -../../src/H5private.h:319:41: note: in definition of macro ‘MIN’ - #define MIN(a,b) (((a)<(b)) ? (a) : (b)) - ^ -In file included from ../../src/H5HFhdr.c:36:0: -../../src/H5HFhdr.c: In function ‘H5HF_hdr_finish_init_phase2’: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘hsize_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFhdr.c:262:21: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_create’: -../../src/H5HFpkg.h:119:46: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - ((h)->sizeof_addr + (h)->sizeof_size + 4) : /* Size of entries for filtered direct blocks */ \ - ^ -../../src/H5HFpkg.h:131:81: note: in expansion of macro ‘H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE’ - + (MIN(r, (h)->man_dtable.max_direct_rows) * (h)->man_dtable.cparam.width * H5HF_MAN_INDIRECT_CHILD_DIR_ENTRY_SIZE(h)) /* Size of entries for direct blocks */ \ - ^ -../../src/H5HFiblock.c:1028:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFpkg.h:130:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFiblock.c:1028:20: note: in expansion of macro ‘H5HF_MAN_INDIRECT_SIZE’ - iblock->size = H5HF_MAN_INDIRECT_SIZE(hdr, iblock->nrows); - ^ -../../src/H5HFhdr.c: In function ‘H5HF_hdr_create’: -../../src/H5HFhdr.c:433:52: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - if(0 == (hdr->filter_len = H5O_msg_raw_size(hdr->f, H5O_PLINE_ID, FALSE, &(hdr->pline)))) - ^ -../../src/H5HFhdr.c:439:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + 4 /* Size of filter mask for filtered root direct block */ - ^ -In file included from ../../src/H5HFhdr.c:36:0: -../../src/H5HFpkg.h:103:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + H5HF_DTABLE_INFO_SIZE(h) /* Size of managed obj. doubling-table info */ \ - ^ -../../src/H5HFhdr.c:444:26: note: in expansion of macro ‘H5HF_HEADER_SIZE’ - hdr->heap_size = H5HF_HEADER_SIZE(hdr); - ^ -../../src/H5HFhdr.c:466:21: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + hdr->sizeof_size; /* Size of de-filtered object in memory */ - ^ -../../src/H5HFhdr.c:470:21: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + hdr->sizeof_size; /* Length of object */ - ^ -../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_unprotect’: -../../src/H5HFiblock.c:1281:13: warning: negative integer implicitly converted to unsigned type [-Wsign-conversion] - iblock->hdr->root_iblock_flags &= ~(H5HF_ROOT_IBLOCK_PROTECTED); - ^ -In file included from ../../src/H5HFhdr.c:36:0: -../../src/H5HFpkg.h:113:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - + (h)->heap_off_size /* Offset of the block in the heap */ \ - ^ -../../src/H5HFhdr.c:492:23: note: in expansion of macro ‘H5HF_MAN_ABS_DIRECT_OVERHEAD’ - dblock_overhead = H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr); - ^ -../../src/H5HFhdr.c: In function ‘H5HF_hdr_adj_free’: -../../src/H5HFhdr.c:761:5: warning: conversion to ‘long long unsigned int’ from ‘ssize_t’ may change the sign of the result [-Wsign-conversion] - hdr->total_man_free += amt; - ^ -../../src/H5HFhdr.c: In function ‘H5HF_hdr_adjust_heap’: -../../src/H5HFhdr.c:801:5: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - hdr->total_man_free += extra_free; - ^ -../../src/H5HFiblock.c: In function ‘H5HF_man_iblock_dest’: -../../src/H5HFiblock.c:1723:22: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_ent_t *’ not permitted in C++ [-Wc++-compat] - iblock->ents = H5FL_SEQ_FREE(H5HF_indirect_ent_t, iblock->ents); - ^ -../../src/H5HFiblock.c:1725:27: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_filt_ent_t *’ not permitted in C++ [-Wc++-compat] - iblock->filt_ents = H5FL_SEQ_FREE(H5HF_indirect_filt_ent_t, iblock->filt_ents); - ^ -../../src/H5HFiblock.c:1727:31: warning: request for implicit conversion from ‘void *’ to ‘struct H5HF_indirect_t **’ not permitted in C++ [-Wc++-compat] - iblock->child_iblocks = H5FL_SEQ_FREE(H5HF_indirect_ptr_t, iblock->child_iblocks); - ^ -../../src/H5HFhdr.c: In function ‘H5HF_hdr_reverse_iter’: -../../src/H5HFhdr.c:1243:9: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - tmp_entry = curr_entry; - ^ -../../src/H5HFhdr.c:1278:13: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - curr_entry = tmp_entry; - ^ - CC H5HFstat.lo - CC H5HFtest.lo - CC H5HFtiny.lo - CC H5HG.lo - CC H5HGcache.lo - CC H5HGdbg.lo - CC H5HGquery.lo -../../src/H5HGcache.c: In function ‘H5HG_load’: -../../src/H5HGcache.c:184:70: warning: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Wsign-conversion] - heap->obj[0].size = ((const uint8_t *)heap->chunk + heap->size) - p; - ^ -In file included from ../../src/H5HG.c:51:0: -../../src/H5HG.c: In function ‘H5HG_create’: -../../src/H5HGpkg.h:78:38: warning: conversion to ‘long unsigned int’ from ‘long int’ may change the sign of the result [-Wsign-conversion] - #define H5HG_ALIGN(X) (H5HG_ALIGNMENT*(((X)+H5HG_ALIGNMENT-1)/H5HG_ALIGNMENT)) - ^ -../../src/H5HG.c:183:9: note: in expansion of macro ‘H5HG_ALIGN’ - n = H5HG_ALIGN(p - heap->chunk) - (size_t)(p - heap->chunk); - ^ -../../src/H5HG.c: In function ‘H5HG_free’: -../../src/H5HG.c:842:19: warning: request for implicit conversion from ‘void *’ to ‘struct H5HG_obj_t *’ not permitted in C++ [-Wc++-compat] - heap->obj = H5FL_SEQ_FREE(H5HG_obj_t, heap->obj); - ^ -../../src/H5HFtiny.c: In function ‘H5HF_tiny_insert’: -../../src/H5HFtiny.c:170:55: warning: conversion to ‘uint8_t’ from ‘size_t’ may alter its value [-Wconversion] - *id++ = H5HF_ID_VERS_CURR | H5HF_ID_TYPE_TINY | - ^ -../../src/H5HFtiny.c:174:55: warning: conversion to ‘uint8_t’ from ‘size_t’ may alter its value [-Wconversion] - *id++ = H5HF_ID_VERS_CURR | H5HF_ID_TYPE_TINY | - ^ -../../src/H5HFtiny.c: In function ‘H5HF_tiny_get_obj_len’: -../../src/H5HFtiny.c:230:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); - ^ -../../src/H5HFtiny.c: In function ‘H5HF_tiny_op_real’: -../../src/H5HFtiny.c:281:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); - ^ -../../src/H5HFtest.c: In function ‘H5HF_get_cparam_test’: -../../src/H5HFtest.c:97:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - else if(fh->hdr->id_len == (1 + fh->hdr->sizeof_size + fh->hdr->sizeof_addr)) - ^ -../../src/H5HFtest.c:100:33: warning: conversion to ‘uint16_t’ from ‘unsigned int’ may alter its value [-Wconversion] - cparam->id_len = fh->hdr->id_len; - ^ -../../src/H5HFtiny.c: In function ‘H5HF_tiny_remove’: -../../src/H5HFtiny.c:406:34: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - enc_obj_size = *(id + 1) | ((*id & H5HF_TINY_MASK_EXT_1) << 8); - ^ - CC H5HL.lo - CC H5HLcache.lo - CC H5HLdbg.lo - CC H5HLint.lo - CC H5HP.lo - CC H5I.lo - CC H5Itest.lo - CC H5L.lo -../../src/H5HP.c: In function ‘H5HP_create’: -../../src/H5HP.c:382:32: warning: request for implicit conversion from ‘void *’ to ‘struct H5HP_ent_t *’ not permitted in C++ [-Wc++-compat] - new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); - ^ -../../src/H5HP.c: In function ‘H5HP_decr’: -../../src/H5HP.c:849:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - heap->heap[obj_loc].val-=amt; - ^ -../../src/H5HP.c:849:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - heap->heap[obj_loc].val-=amt; - ^ -../../src/H5HP.c: In function ‘H5HP_close’: -../../src/H5HP.c:911:16: warning: request for implicit conversion from ‘void *’ to ‘struct H5HP_ent_t *’ not permitted in C++ [-Wc++-compat] - heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, heap->heap); - ^ -In file included from ../../src/H5private.h:48:0, - from ../../src/H5I.c:42: -../../src/H5I.c: In function ‘H5Inmembers’: -../../src/H5private.h:1467:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - assert(_tmp_src == _tmp_dst); \ - ^ -../../src/H5overflow.h:286:9: note: in expansion of macro ‘ASSIGN_TO_LARGER_SIZE_SIGNED_TO_UNSIGNED’ - ASSIGN_TO_LARGER_SIZE_SIGNED_TO_UNSIGNED(dst, dsttype, src, srctype) - ^ -../../src/H5private.h:2083:28: note: in expansion of macro ‘ASSIGN_int_TO_hsize_t’ - #define H5_GLUE4(w,x,y,z) w##x##y##z - ^ -../../src/H5private.h:1502:5: note: in expansion of macro ‘H5_GLUE4’ - H5_GLUE4(ASSIGN_,srctype,_TO_,dsttype)(dst,dsttype,src,srctype)\ - ^ -../../src/H5I.c:463:9: note: in expansion of macro ‘H5_CHECKED_ASSIGN’ - H5_CHECKED_ASSIGN(*num_members, hsize_t, members, int); - ^ -../../src/H5I.c: In function ‘H5I__clear_type_cb’: -../../src/H5I.c:653:81: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(udata->type_ptr->cls->free_func && (udata->type_ptr->cls->free_func)((void *)id->obj_ptr) < 0) { - ^ -In file included from ../../src/H5I.c:45:0: -../../src/H5I.c: In function ‘H5I__destroy_type’: -../../src/H5I.c:758:48: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - type_ptr->cls = H5FL_FREE(H5I_class_t, (void *)type_ptr->cls); - ^ -../../src/H5FLprivate.h:130:65: note: in definition of macro ‘H5FL_FREE’ - #define H5FL_FREE(t,obj) (t *)H5FL_reg_free(&(H5FL_REG_NAME(t)),obj) - ^ -../../src/H5I.c: In function ‘H5I_subst’: -../../src/H5I.c:985:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - ret_value = (void *)id_ptr->obj_ptr; - ^ -../../src/H5I.c: In function ‘H5I_object’: -../../src/H5I.c:1020:21: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - ret_value = (void *)id_ptr->obj_ptr; - ^ -../../src/H5I.c: In function ‘H5I_object_verify’: -../../src/H5I.c:1095:21: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - ret_value = (void *)id_ptr->obj_ptr; - ^ -../../src/H5I.c: In function ‘H5I__remove_common’: -../../src/H5I.c:1269:17: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - ret_value = (void *)curr_id->obj_ptr; - ^ -../../src/H5I.c: In function ‘H5I_dec_ref’: -../../src/H5I.c:1443:68: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(!type_ptr->cls->free_func || (type_ptr->cls->free_func)((void *)id_ptr->obj_ptr) >= 0) { - ^ -../../src/H5I.c: In function ‘H5I__iterate_cb’: -../../src/H5I.c:2102:42: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - cb_ret_val = (*udata->user_func)((void *)item->obj_ptr, item->id, udata->user_udata); - ^ - CC H5Lexternal.lo - CC H5MF.lo - CC H5MFaggr.lo - CC H5MFdbg.lo -../../src/H5L.c: In function ‘H5L_link_cb’: -../../src/H5L.c:1716:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - udata->lnk->name = (char *)name; - ^ -../../src/H5L.c: In function ‘H5L_move_dest_cb’: -../../src/H5L.c:2437:24: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - udata->lnk->name = (char *)name; - ^ -../../src/H5L.c: In function ‘H5L_move_cb’: -../../src/H5L.c:2580:13: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [enabled by default] - dst_name_r = H5RS_wrap(udata->dst_name); - ^ -In file included from ../../src/H5Gprivate.h:35:0, - from ../../src/H5Tprivate.h:28, - from ../../src/H5Oprivate.h:39, - from ../../src/H5Dprivate.h:25, - from ../../src/H5L.c:28: -../../src/H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - H5_DLL H5RS_str_t *H5RS_wrap(char *s); - ^ -../../src/H5L.c: In function ‘H5L_link_copy_file’: -../../src/H5L.c:3015:28: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - lnk_grp_loc.oloc = (H5O_loc_t *)src_oloc; /* Casting away const OK -QAK */ - ^ - CC H5MFsection.lo - CC H5MM.lo -../../src/H5MFaggr.c: In function ‘H5MF_aggr_try_extend’: -../../src/H5MFaggr.c:431:49: warning: conversion to ‘float’ from ‘hsize_t’ may alter its value [-Wconversion] - if(extra_requested <= (EXTEND_THRESHOLD * aggr->size)) { - ^ - CC H5MP.lo - CC H5MPtest.lo - CC H5O.lo - CC H5Oainfo.lo - CC H5Oalloc.lo - CC H5Oattr.lo - CC H5Oattribute.lo - CC H5Obogus.lo -../../src/H5Oalloc.c: In function ‘H5O_alloc_new_chunk’: -../../src/H5Oalloc.c:953:75: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - if(NULL == (chk_proxy = H5O_chunk_protect(f, dxpl_id, oh, chunkno - 1))) - ^ -../../src/H5Oalloc.c:971:21: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - curr_msg->chunkno = chunkno; - ^ -../../src/H5Oalloc.c:992:37: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - null_msg->chunkno = chunkno - 1; - ^ -../../src/H5Oalloc.c:1027:9: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - oh->mesg[found_other.msgno].chunkno = chunkno; - ^ -../../src/H5Oalloc.c:1079:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - oh->mesg[idx].chunkno = chunkno; - ^ -../../src/H5Oalloc.c:1082:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - if(H5O_chunk_add(f, dxpl_id, oh, chunkno) < 0) - ^ -../../src/H5Oalloc.c:1090:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cont->chunkno = chunkno; - ^ - CC H5Obtreek.lo - CC H5Ocache.lo - CC H5Ochunk.lo - CC H5Ocont.lo -../../src/H5Ocache.c: In function ‘H5O_cache_chk_load’: -../../src/H5Ocache.c:726:49: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - chk_proxy->chunkno = udata->oh->nchunks - 1; - ^ - CC H5Ocopy.lo -../../src/H5Ocache.c: In function ‘H5O_chunk_deserialize’: -../../src/H5Ocache.c:1062:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - chunkno = oh->nchunks++; - ^ -../../src/H5Ocache.c:1184:36: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - oh->mesg[mesgno].raw = (uint8_t *)p; /* Casting away const OK - QAK */ - ^ -../../src/H5Ocache.c:1292:57: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cont->chunkno = udata->cont_msg_info->nmsgs + 1; /*the next continuation message/chunk */ - ^ -../../src/H5Ocache.c: In function ‘H5O_chunk_serialize’: -../../src/H5Ocache.c:1388:30: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if(H5O_msg_flush((H5F_t *)f, oh, curr_msg) < 0) - ^ - CC H5Odbg.lo - CC H5Odrvinfo.lo - CC H5Odtype.lo - CC H5Oefl.lo - CC H5Ofill.lo - CC H5Oginfo.lo - CC H5Olayout.lo -../../src/H5Odtype.c: In function ‘H5O_dtype_copy’: -../../src/H5Odtype.c:1191:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Odtype.c:18: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../../src/H5Odtype.c:1536:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Odtype.c:18: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Oefl.c: In function ‘H5O_efl_decode’: -../../src/H5Oefl.c:155:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - if(*s == (char)NULL) - ^ -In file included from ../../src/H5Cprivate.h:35:0, - from ../../src/H5ACprivate.h:33, - from ../../src/H5Oprivate.h:36, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Ofill.c:24: -../../src/H5Ofill.c: In function ‘H5O_fill_new_decode’: -../../src/H5Fprivate.h:130:37: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - (i) |= ((int32_t)(((*(p) & 0xff) << 24) | \ - ^ -../../src/H5Ofill.c:218:13: note: in expansion of macro ‘INT32DECODE’ - INT32DECODE(p, fill->size); - ^ - CC H5Olinfo.lo - CC H5Olink.lo - CC H5Omessage.lo - CC H5Omtime.lo - CC H5Oname.lo - CC H5Opline.lo - CC H5Orefcount.lo - CC H5Osdspace.lo -../../src/H5Omtime.c: In function ‘H5O_mtime_decode’: -../../src/H5Omtime.c:182:5: warning: "_MSC_VER" is not defined [-Wundef] - #if _MSC_VER >= 1900 /* VS 2015 */ - ^ - CC H5Oshared.lo - CC H5Ostab.lo - CC H5Oshmesg.lo - CC H5Otest.lo - CC H5Ounknown.lo - CC H5P.lo - CC H5Pacpl.lo - CC H5Pdapl.lo - CC H5Pdcpl.lo - CC H5Pdeprec.lo - CC H5Pdxpl.lo - CC H5Pfapl.lo - CC H5Pfcpl.lo - CC H5Pfmpl.lo -../../src/H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../../src/H5Pdcpl.c:1563:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Pdcpl.c:37: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ - CC H5Pgcpl.lo - CC H5Pint.lo - CC H5Plapl.lo - CC H5Plcpl.lo - CC H5Pocpl.lo - CC H5Pocpypl.lo - CC H5Pstrcpl.lo - CC H5Ptest.lo - CC H5PL.lo - CC H5R.lo -../../src/H5Pocpl.c: In function ‘H5Pget_filter_by_id2’: -../../src/H5Pocpl.c:1060:30: warning: unused variable ‘filter’ [-Wunused-variable] - const H5Z_filter_info_t *filter; /* Pointer to filter information */ - ^ -../../src/H5Pocpl.c:1059:21: warning: unused variable ‘pline’ [-Wunused-variable] - H5O_pline_t pline; /* Filter pipeline */ - ^ - CC H5Rdeprec.lo - CC H5RC.lo -../../src/H5PL.c: In function ‘H5PL__open’: -../../src/H5PL.c:878:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] - if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC(handle, "H5PLget_plugin_info"))) { - ^ -../../src/H5PL.c: In function ‘H5PL__search_table’: -../../src/H5PL.c:961:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] - if(NULL == (get_plugin_info = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PLget_plugin_info"))) - ^ - CC H5RS.lo - CC H5S.lo - CC H5Sall.lo - CC H5Sdbg.lo - CC H5Shyper.lo - CC H5Smpio.lo - CC H5Snone.lo - CC H5Spoint.lo - CC H5Sselect.lo -../../src/H5Shyper.c: In function ‘H5S_hyper_serialize’: -../../src/H5Shyper.c:2134:18: warning: declaration of ‘u’ shadows a previous local [-Wshadow] - unsigned u; /* Local counting variable */ - ^ -../../src/H5Shyper.c:2086:14: warning: shadowed declaration is here [-Wshadow] - unsigned u; /* Local index variable */ - ^ -../../src/H5Shyper.c:2220:13: warning: conversion to ‘uint32_t’ from ‘long unsigned int’ may alter its value [-Wconversion] - len += (size_t)(8 * space->extent.rank * block_count); - ^ - CC H5Stest.lo - CC H5SL.lo -../../src/H5Spoint.c: In function ‘H5S_point_bounds’: -../../src/H5Spoint.c:1122:63: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - if(start[u] > (node->pnt[u] + space->select.offset[u])) - ^ -../../src/H5Spoint.c:1123:63: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - start[u] = node->pnt[u] + space->select.offset[u]; - ^ -../../src/H5Spoint.c:1124:61: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - if(end[u] < (node->pnt[u] + space->select.offset[u])) - ^ -../../src/H5Spoint.c:1125:61: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - end[u] = node->pnt[u] + space->select.offset[u]; - ^ -../../src/H5Spoint.c: In function ‘H5S_point_get_seq_list’: -../../src/H5Spoint.c:1671:56: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - loc += (node->pnt[i] + space->select.offset[i]) * acc; - ^ - CC H5SM.lo - CC H5SMbtree2.lo -../../src/H5Sselect.c: In function ‘H5S_select_iterate’: -../../src/H5Sselect.c:1215:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter; /* Selection iteration info */ - ^ -../../src/H5Sselect.c:1261:17: warning: size of ‘off’ is 8192 bytes [-Wlarger-than=] - hsize_t off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Sselect.c:1262:16: warning: size of ‘len’ is 8192 bytes [-Wlarger-than=] - size_t len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ -../../src/H5Sselect.c: In function ‘H5S_select_shape_same’: -../../src/H5Sselect.c:1434:20: warning: size of ‘iter_a’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter_a; /* Selection a iteration info */ - ^ -../../src/H5Sselect.c:1435:20: warning: size of ‘iter_b’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter_b; /* Selection b iteration info */ - ^ -../../src/H5Sselect.c: In function ‘H5S_select_fill’: -../../src/H5Sselect.c:2003:20: warning: size of ‘iter’ is 2232 bytes [-Wlarger-than=] - H5S_sel_iter_t iter; /* Selection iteration info */ - ^ -../../src/H5Sselect.c:2031:17: warning: size of ‘off’ is 8192 bytes [-Wlarger-than=] - hsize_t off[H5D_IO_VECTOR_SIZE]; /* Array to store sequence offsets */ - ^ -../../src/H5Sselect.c:2032:16: warning: size of ‘len’ is 8192 bytes [-Wlarger-than=] - size_t len[H5D_IO_VECTOR_SIZE]; /* Array to store sequence lengths */ - ^ - CC H5SMcache.lo -../../src/H5SL.c: In function ‘H5SL_release_common’: -../../src/H5SL.c:838:36: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - (void)(op)(node->item, (void *)node->key, op_data); - ^ -../../src/H5Sselect.c: In function ‘H5S_select_iterate’: -../../src/H5Sselect.c:1212:1: warning: stack usage is 19392 bytes [-Wstack-usage=] - H5S_select_iterate(void *buf, const H5T_t *type, const H5S_t *space, - ^ -../../src/H5Sselect.c:1333:1: warning: the frame size of 19336 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* end H5S_select_iterate() */ - ^ -../../src/H5SL.c: In function ‘H5SL_remove_first’: -../../src/H5SL.c:1233:30: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - size_t level = slist->curr_level; /* Skip list level */ - ^ -../../src/H5Sselect.c: In function ‘H5S_select_fill’: -../../src/H5Sselect.c:2001:1: warning: stack usage is 18784 bytes [-Wstack-usage=] - H5S_select_fill(const void *fill, size_t fill_size, const H5S_t *space, void *_buf) - ^ -../../src/H5Sselect.c:2063:1: warning: the frame size of 18736 bytes is larger than 16384 bytes [-Wframe-larger-than=] - } /* H5S_select_fill() */ - ^ - CC H5SMmessage.lo -../../src/H5SL.c: In function ‘H5SL_iterate’: -../../src/H5SL.c:2148:46: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if((ret_value = (op)(node->item, (void *)node->key, op_data)) != 0) - ^ -../../src/H5SL.c: In function ‘H5SL_try_free_safe’: -../../src/H5SL.c:2307:44: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] - if((op_ret = (op)(node->item , (void *)node->key, op_data)) < 0) - ^ - CC H5SMtest.lo - CC H5ST.lo - CC H5T.lo - CC H5Tarray.lo - CC H5Tbit.lo - CC H5Tcommit.lo - CC H5Tcompound.lo - CC H5Tconv.lo -../../src/H5T.c: In function ‘H5T_path_find’: -../../src/H5T.c:4456:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - ^ -../../src/H5T.c:3097:1: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5T_copy(H5T_t *old_dt, H5T_copy_t method) - ^ -../../src/H5T.c:4458:9: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - ^ -../../src/H5T.c:3097:1: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5T_copy(H5T_t *old_dt, H5T_copy_t method) - ^ -../../src/H5T.c: At top level: -../../src/H5T.c:5460:1: warning: no previous prototype for ‘H5T_patch_vlen_file’ [-Wmissing-prototypes] - H5T_patch_vlen_file(H5T_t *dt, H5F_t *f) - ^ - CC H5Tcset.lo -../../src/H5Tcompound.c: In function ‘H5T__insert’: -../../src/H5Tcompound.c:482:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - ^ -In file included from ../../src/H5Tpkg.h:37:0, - from ../../src/H5Tcompound.c:36: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ - CC H5Tdbg.lo - CC H5Tdeprec.lo - CC H5Tenum.lo - CC H5Tfields.lo - CC H5Tfixed.lo - CC H5Tfloat.lo -../../src/H5Tdbg.c: In function ‘H5T_debug’: -../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dt->shared->type) { - ^ -../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:173:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:247:2: warning: enumeration value ‘H5T_ORDER_ERROR’ not handled in switch [-Wswitch-enum] - switch(dt->shared->u.atomic.order) { - ^ -../../src/H5Tdbg.c:247:2: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:279:17: warning: enumeration value ‘H5T_SGN_ERROR’ not handled in switch [-Wswitch-enum] - switch(dt->shared->u.atomic.u.i.sign) { - ^ -../../src/H5Tdbg.c:279:17: warning: enumeration value ‘H5T_NSGN’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:298:17: warning: enumeration value ‘H5T_NORM_ERROR’ not handled in switch [-Wswitch-enum] - switch(dt->shared->u.atomic.u.f.norm) { - ^ -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dt->shared->type) { - ^ -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_COMPOUND’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:277:2: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Tdbg.c:351:9: warning: enumeration value ‘H5T_LOC_BADLOC’ not handled in switch [-Wswitch-enum] - switch(dt->shared->u.vlen.loc) { - ^ -../../src/H5Tdbg.c:351:9: warning: enumeration value ‘H5T_LOC_MAXLOC’ not handled in switch [-Wswitch-enum] -../../src/H5Tconv.c: In function ‘H5T__conv_float_ullong’: -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8690:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(FLOAT, ULLONG, float, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c: In function ‘H5T__conv_double_ullong’: -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8742:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(DOUBLE, ULLONG, double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c: In function ‘H5T__conv_ldouble_ullong’: -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:719:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DALIGN,POST_SALIGN,POST_DALIGN,GUTS,s,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:723:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SALIGN,PRE_DNOALIGN,POST_SALIGN,POST_DNOALIGN,GUTS,s,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:726:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DALIGN,POST_SNOALIGN,POST_DALIGN,GUTS,src,d,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:549:53: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - if(*(S) > (ST)(D_MAX) || (sprec < dprec && *(S) == (ST)(D_MAX))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c:567:21: warning: comparing floating point with == or != is unsafe [-Wfloat-equal] - } else if (*(S) != (ST)((DT)(*(S)))) { \ - ^ -../../src/H5private.h:2081:28: note: in expansion of macro ‘H5T_CONV_Fx_CORE’ - #define H5_GLUE(x,y) x##y - ^ -../../src/H5Tconv.c:850:9: note: in expansion of macro ‘H5_GLUE’ - H5_GLUE(GUTS,_CORE)(S,D,ST,DT,D_MIN,D_MAX) - ^ -../../src/H5Tconv.c:831:9: note: in expansion of macro ‘H5T_CONV_LOOP_GUTS’ - H5T_CONV_LOOP_GUTS(GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:815:9: note: in expansion of macro ‘H5T_CONV_LOOP’ - H5T_CONV_LOOP(PRE_SALIGN_GUTS,PRE_DALIGN_GUTS,POST_SALIGN_GUTS,POST_DALIGN_GUTS,GUTS,S,D,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:729:17: note: in expansion of macro ‘H5T_CONV_LOOP_OUTER’ - H5T_CONV_LOOP_OUTER(PRE_SNOALIGN,PRE_DNOALIGN,POST_SNOALIGN,POST_DNOALIGN,GUTS,src,dst,ST,DT,D_MIN,D_MAX) \ - ^ -../../src/H5Tconv.c:590:5: note: in expansion of macro ‘H5T_CONV’ - H5T_CONV(H5T_CONV_Fx, STYPE, DTYPE, ST, DT, D_MIN, D_MAX, Y) \ - ^ -../../src/H5Tconv.c:8797:5: note: in expansion of macro ‘H5T_CONV_Fx’ - H5T_CONV_Fx(LDOUBLE, ULLONG, long double, unsigned long long, 0, ULLONG_MAX); - ^ -../../src/H5Tconv.c: In function ‘H5T__conv_f_i’: -../../src/H5Tconv.c:8915:24: warning: cast from function call of type ‘double’ to non-matching type ‘long unsigned int’ [-Wbad-function-cast] - buf_size = (size_t)HDpow((double)2.0f, (double)src.u.f.esize) / 8 + 1; - ^ -../../src/H5Tconv.c:8991:38: warning: conversion to ‘hssize_t’ from ‘uint64_t’ may change the sign of the result [-Wsign-conversion] - sign = H5T__bit_get_d(s, src.u.f.sign, (size_t)1); - ^ -../../src/H5Tconv.c:9118:38: warning: conversion to ‘hssize_t’ from ‘uint64_t’ may change the sign of the result [-Wsign-conversion] - expo = H5T__bit_get_d(s, src.u.f.epos, src.u.f.esize); - ^ -../../src/H5Tconv.c:9125:21: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - expo -= (src.u.f.ebias-1); - ^ -../../src/H5Tconv.c:9125:26: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] - expo -= (src.u.f.ebias-1); - ^ -../../src/H5Tconv.c:9127:21: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - expo -= src.u.f.ebias; - ^ -../../src/H5Tconv.c:9127:26: warning: conversion to ‘hssize_t’ from ‘long long unsigned int’ may change the sign of the result [-Wsign-conversion] - expo -= src.u.f.ebias; - ^ -../../src/H5Tconv.c:9157:17: warning: conversion to ‘long long unsigned int’ from ‘hssize_t’ may change the sign of the result [-Wsign-conversion] - H5T__bit_shift(int_buf, (ssize_t)(expo-src.u.f.msize), (size_t)0, buf_size * 8); - ^ -../../src/H5Tconv.c:9362:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - sp += direction * buf_stride; - ^ -../../src/H5Tconv.c:9363:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dp += direction * buf_stride; - ^ -../../src/H5Tconv.c:9365:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - sp += direction * src_p->shared->size; - ^ -../../src/H5Tconv.c:9366:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dp += direction * dst_p->shared->size; - ^ -../../src/H5Tconv.c: In function ‘H5T__conv_i_f’: -../../src/H5Tconv.c:9712:28: warning: cast from function call of type ‘double’ to non-matching type ‘long long unsigned int’ [-Wbad-function-cast] - expo_max = (hsize_t)HDpow((double)2.0f, (double)dst.u.f.esize) - 1; - ^ -../../src/H5Tconv.c:9791:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - sp += direction * buf_stride; - ^ -../../src/H5Tconv.c:9792:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dp += direction * buf_stride; - ^ -../../src/H5Tconv.c:9794:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - sp += direction * src_p->shared->size; - ^ -../../src/H5Tconv.c:9795:21: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dp += direction * dst_p->shared->size; - ^ -In file included from ../../src/H5Tconv.c:31:0: -../../src/H5Tconv.c: At top level: -../../src/H5private.h:1819:15: warning: ‘H5_interface_initialize_g’ defined but not used [-Wunused-variable] - static int H5_interface_initialize_g = 0; - ^ -../../src/H5Tconv.c:983:1: warning: ‘H5T_init_conv_interface’ defined but not used [-Wunused-function] - H5T_init_conv_interface(void) - ^ -../../src/H5Tenum.c: In function ‘H5T__enum_create’: -../../src/H5Tenum.c:134:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - ^ -In file included from ../../src/H5Tpkg.h:37:0, - from ../../src/H5Tenum.c:29: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Tenum.c: In function ‘H5T_enum_nameof’: -../../src/H5Tenum.c:435:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - ^ -In file included from ../../src/H5Tpkg.h:37:0, - from ../../src/H5Tenum.c:29: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Tenum.c: In function ‘H5T_enum_valueof’: -../../src/H5Tenum.c:574:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - ^ -In file included from ../../src/H5Tpkg.h:37:0, - from ../../src/H5Tenum.c:29: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Tfixed.c: In function ‘H5Tget_sign’: -../../src/H5Tfixed.c:80:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tfixed.c: In function ‘H5Tset_sign’: -../../src/H5Tfixed.c:159:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ - CC H5Tinit.lo - CC H5Tnative.lo - CC H5Toffset.lo - CC H5Toh.lo - CC H5Topaque.lo - CC H5Torder.lo - CC H5Tpad.lo -../../src/H5Topaque.c: In function ‘H5Tset_tag’: -../../src/H5Topaque.c:78:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Topaque.c: In function ‘H5Tget_tag’: -../../src/H5Topaque.c:125:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tpad.c: In function ‘H5Tget_pad’: -../../src/H5Tpad.c:81:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tpad.c: In function ‘H5Tset_pad’: -../../src/H5Tpad.c:125:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ - CC H5Tprecis.lo - CC H5Tstrpad.lo - CC H5Tvisit.lo - CC H5Tvlen.lo - CC H5TS.lo - CC H5VM.lo - CC H5WB.lo -../../src/H5Tstrpad.c: In function ‘H5Tget_strpad’: -../../src/H5Tstrpad.c:84:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tstrpad.c: In function ‘H5Tset_strpad’: -../../src/H5Tstrpad.c:141:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tvlen.c: In function ‘H5Tvlen_create’: -../../src/H5Tvlen.c:114:22: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if(NULL == (base = H5I_object_verify(base_id, H5I_DATATYPE))) - ^ -../../src/H5Tvlen.c: In function ‘H5T__vlen_create’: -../../src/H5Tvlen.c:166:5: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [enabled by default] - if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - ^ -In file included from ../../src/H5Oprivate.h:39:0, - from ../../src/H5Dprivate.h:25, - from ../../src/H5Tvlen.c:26: -../../src/H5Tprivate.h:107:15: note: expected ‘struct H5T_t *’ but argument is of type ‘const struct H5T_t *’ - H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - ^ -../../src/H5Tvlen.c: In function ‘H5T__vlen_set_loc’: -../../src/H5Tvlen.c:268:59: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dt->shared->size = 4 + H5F_SIZEOF_ADDR(f) + 4; - ^ -../../src/H5Tvlen.c:220:9: warning: enumeration value ‘H5T_LOC_MAXLOC’ not handled in switch [-Wswitch-enum] - switch(loc) { - ^ -../../src/H5Tprecis.c: In function ‘H5Tget_precision’: -../../src/H5Tprecis.c:88:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tprecis.c: In function ‘H5Tset_precision’: -../../src/H5Tprecis.c:177:21: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) - ^ -../../src/H5Tvlen.c: In function ‘H5T_vlen_str_mem_write’: -../../src/H5Tvlen.c:717:20: warning: request for implicit conversion from ‘void *’ to ‘char *’ not permitted in C++ [-Wc++-compat] - if(NULL==(t=(vl_alloc_info->alloc_func)((seq_len+1)*base_size,vl_alloc_info->alloc_info))) - ^ -../../src/H5Tvlen.c:721:20: warning: request for implicit conversion from ‘void *’ to ‘char *’ not permitted in C++ [-Wc++-compat] - if(NULL==(t=H5MM_malloc((seq_len+1)*base_size))) - ^ -../../src/H5Tprecis.c: In function ‘H5T_set_precision’: -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch (dt->shared->type) { - ^ -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_COMPOUND’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_ARRAY’ not handled in switch [-Wswitch-enum] -../../src/H5Tprecis.c:266:6: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_isnull’: -../../src/H5Tvlen.c:845:23: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f,(const uint8_t **)&vl,&addr); - ^ -../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_read’: -../../src/H5Tvlen.c:882:23: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f,(const uint8_t **)&vl,&(hobjid.addr)); - ^ -../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_write’: -../../src/H5Tvlen.c:935:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&bg, &(bg_hobjid.addr)); - ^ -../../src/H5Tvlen.c: In function ‘H5T_vlen_disk_setnull’: -../../src/H5Tvlen.c:997:28: warning: to be safe all intermediate pointers in cast from ‘uint8_t **’ to ‘const uint8_t **’ must be ‘const’ qualified [-Wcast-qual] - H5F_addr_decode(f, (const uint8_t **)&bg, &(bg_hobjid.addr)); - ^ -../../src/H5Tvlen.c: In function ‘H5T_vlen_reclaim_recurse’: -../../src/H5Tvisit.c: In function ‘H5T__visit’: -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dt->shared->type) { - ^ -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dt->shared->type) { - ^ -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_INTEGER’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_FLOAT’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_INTEGER’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_FLOAT’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c:1053:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Tvisit.c:117:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Tvlen.c: In function ‘H5T_vlen_reclaim’: -../../src/H5Tvlen.c:1168:20: warning: request for implicit conversion from ‘void *’ to ‘struct H5T_t *’ not permitted in C++ [-Wc++-compat] - if(NULL == (dt = H5I_object_verify(type_id, H5I_DATATYPE))) - ^ -In file included from ../../src/H5private.h:48:0, - from ../../src/H5VM.c:20: -../../src/H5VM.c: In function ‘H5VM_hyper_disjointp’: -../../src/H5VM.c:419:23: warning: comparison is always true due to limited range of data type [-Wtype-limits] - HDassert(size1[u] < HSIZET_MAX); - ^ -../../src/H5VM.c:419:9: note: in expansion of macro ‘HDassert’ - HDassert(size1[u] < HSIZET_MAX); - ^ -../../src/H5VM.c:420:23: warning: comparison is always true due to limited range of data type [-Wtype-limits] - HDassert(size2[u] < HSIZET_MAX); - ^ -../../src/H5VM.c:420:9: note: in expansion of macro ‘HDassert’ - HDassert(size2[u] < HSIZET_MAX); - ^ - CC H5Z.lo - CC H5Zdeflate.lo - CC H5Zfletcher32.lo - CC H5Znbit.lo - CC H5Zshuffle.lo - CC H5Zszip.lo - CC H5Zscaleoffset.lo -../../src/H5Znbit.c: In function ‘H5Z_calc_parms_array’: -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_base_class) { - ^ -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:251:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c: In function ‘H5Z_calc_parms_compound’: -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_member_class) { - ^ -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:336:9: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c: In function ‘H5Z_set_parms_nooptype’: -../../src/H5Znbit.c:406:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_size; - ^ -../../src/H5Znbit.c: In function ‘H5Z_set_parms_atomic’: -../../src/H5Znbit.c:448:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_size; - ^ -../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_ERROR’ not handled in switch [-Wswitch-enum] - switch(dtype_order) { - ^ -../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_VAX’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:455:5: warning: enumeration value ‘H5T_ORDER_NONE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:477:5: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - if(dtype_precision > dtype_size * 8 || (dtype_precision + dtype_offset) > dtype_size * 8 - ^ -../../src/H5Znbit.c:482:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_precision; - ^ -../../src/H5Znbit.c:485:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - cd_values[cd_values_index++] = dtype_offset; - ^ -../../src/H5Znbit.c: In function ‘H5Z_set_parms_array’: -../../src/H5Znbit.c:534:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++]=dtype_size; - ^ -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_base_class) { - ^ -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:545:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c: In function ‘H5Z_set_parms_compound’: -../../src/H5Znbit.c:624:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_size; - ^ -../../src/H5Znbit.c:631:5: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - cd_values[cd_values_index++] = nmembers; - ^ -../../src/H5Znbit.c:647:9: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_member_offset; - ^ -../../src/H5Znbit.c:688:77: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[cd_values_index++] = dtype_next_member_offset - dtype_member_offset; - ^ -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_member_class) { - ^ -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:650:9: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c: In function ‘H5Z_set_local_nbit’: -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_class) { - ^ -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:755:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_NO_CLASS’ not handled in switch [-Wswitch-enum] - switch(dtype_class) { - ^ -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_TIME’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_STRING’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_BITFIELD’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_OPAQUE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_REFERENCE’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_ENUM’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_VLEN’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:810:5: warning: enumeration value ‘H5T_NCLASSES’ not handled in switch [-Wswitch-enum] -../../src/H5Znbit.c:835:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[0] = cd_values_actual_nparms; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_byte’: -../../src/H5Znbit.c:970:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - data[data_offset + k] = - ^ -../../src/H5Znbit.c:971:58: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)) << uchar_offset; - ^ -../../src/H5Znbit.c:974:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - data[data_offset + k] = - ^ -../../src/H5Znbit.c:975:59: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)) << uchar_offset; - ^ -../../src/H5Znbit.c:981:7: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - data[data_offset + k] |= - ^ -../../src/H5Znbit.c:981:29: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - data[data_offset + k] |= - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_nooptype’: -../../src/H5Znbit.c:1000:72: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - data[data_offset + i] = ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)); - ^ -../../src/H5Znbit.c:1000:58: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - data[data_offset + i] = ((val & ~(~0 << *buf_len)) << (dat_len - *buf_len)); - ^ -../../src/H5Znbit.c:1001:18: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dat_len -= *buf_len; - ^ -../../src/H5Znbit.c:1006:42: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - data[data_offset + i] |= ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)); - ^ -../../src/H5Znbit.c:1006:29: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - data[data_offset + i] |= ((val >> (*buf_len - dat_len)) & ~(~0 << dat_len)); - ^ -../../src/H5Znbit.c:1007:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - *buf_len -= dat_len; - ^ -../../src/H5Znbit.c:1007:16: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - *buf_len -= dat_len; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_decompress_one_atomic’: -../../src/H5Znbit.c:1019:26: warning: conversion to ‘int’ from ‘size_t’ may alter its value [-Wconversion] - datatype_len = p.size * 8; - ^ -../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress_one_array’: -../../src/H5Znbit.c:1064:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1065:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1066:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1069:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c:1069:68: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c:1072:27: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - n = total_size / p.size; - ^ -../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress_one_compound’: -../../src/H5Znbit.c:1138:30: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1139:34: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1140:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1143:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c:1143:71: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c: In function ‘H5Z__nbit_decompress’: -../../src/H5Znbit.c:1198:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[5]; - ^ -../../src/H5Znbit.c:1199:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[6]; - ^ -../../src/H5Znbit.c:1200:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[7]; - ^ -../../src/H5Znbit.c:1203:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c:1203:68: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - if(p.precision > p.size * 8 || (p.precision + p.offset) > p.size * 8) - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_byte’: -../../src/H5Znbit.c:1243:4: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Wsign-conversion] - val = data[data_offset + k]; - ^ -../../src/H5Znbit.c:1249:14: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - val >>= 8 - dat_len; - ^ -../../src/H5Znbit.c:1254:11: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - val >>= p.offset % 8; - ^ -../../src/H5Znbit.c:1259:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - buffer[*j] |= (val & ~(~0 << dat_len)) << (*buf_len - dat_len); - ^ -../../src/H5Znbit.c:1262:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); - ^ -../../src/H5Znbit.c:1267:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_nooptype’: -../../src/H5Znbit.c:1284:40: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); - ^ -../../src/H5Znbit.c:1284:18: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - buffer[*j] |= (val >> (dat_len - *buf_len)) & ~(~0 << *buf_len); - ^ -../../src/H5Znbit.c:1285:18: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - dat_len -= *buf_len; - ^ -../../src/H5Znbit.c:1289:49: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); - ^ -../../src/H5Znbit.c:1289:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - buffer[*j] = (val & ~(~0 << dat_len)) << (*buf_len - dat_len); - ^ -../../src/H5Znbit.c:1290:7: warning: conversion to ‘unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] - *buf_len -= dat_len; - ^ -../../src/H5Znbit.c:1290:16: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - *buf_len -= dat_len; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_atomic’: -../../src/H5Znbit.c:1301:26: warning: conversion to ‘int’ from ‘size_t’ may alter its value [-Wconversion] - datatype_len = p.size * 8; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_array’: -../../src/H5Znbit.c:1342:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1343:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1344:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1345:26: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - n = total_size/p.size; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress_one_compound’: -../../src/H5Znbit.c:1395:30: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1396:34: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[parms_index++]; - ^ -../../src/H5Znbit.c:1397:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[parms_index++]; - ^ -../../src/H5Znbit.c: In function ‘H5Z_nbit_compress’: -../../src/H5Znbit.c:1440:27: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.order = parms[5]; - ^ -../../src/H5Znbit.c:1441:31: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.precision = parms[6]; - ^ -../../src/H5Znbit.c:1442:28: warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion] - p.offset = parms[7]; - ^ - CC H5Ztrans.lo -../../src/H5Zscaleoffset.c: In function ‘H5Z_set_local_scaleoffset’: -../../src/H5Zscaleoffset.c:938:5: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - cd_values[H5Z_SCALEOFFSET_PARM_SIZE] = dtype_size; - ^ -../../src/H5Zscaleoffset.c:967:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] - switch(dtype_order) { - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_filter_scaleoffset’: -../../src/H5Zscaleoffset.c:1063:5: warning: enumeration value ‘H5T_ORDER_MIXED’ not handled in switch [-Wswitch-enum] - switch(H5T_native_order_g) { - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_convert’: -../../src/H5Zscaleoffset.c:1326:48: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - for(i = 0; i < d_nelmts * dtype_size; i += dtype_size) - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_precompress_fd’: -../../src/H5Zscaleoffset.c:393:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:393:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:398:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:398:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:403:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:403:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:558:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:559:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:559:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:559:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:486:37: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:486:63: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:485:50: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:494:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:494:64: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:493:51: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:502:43: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:502:69: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:501:56: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:393:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:393:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:398:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:398:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:403:33: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:403:59: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - if(H5Z_scaleoffset_rnd(max*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)) \ - ^ -../../src/H5Zscaleoffset.c:565:7: note: in expansion of macro ‘H5Z_scaleoffset_check_3’ - H5Z_scaleoffset_check_3(i, type, max, min, minbits, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:566:38: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:566:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:566:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:514:34: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:514:60: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:513:47: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:518:35: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:518:61: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:517:48: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:522:40: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:522:66: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i]*HDpow(10.0f, D_val) - min*HDpow(10.0f, D_val)); \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:521:53: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1515:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(float, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:559:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:485:50: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:493:51: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:501:56: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:562:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_1’ - H5Z_scaleoffset_modify_1(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:566:89: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - span = H5Z_scaleoffset_rnd(max * HDpow(10.0f, D_val) - min * HDpow(10.0f, D_val)) + 1; \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:513:47: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - *(int *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:517:48: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - *(long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c:521:53: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - *(long long *)&buf[i] = H5Z_scaleoffset_rnd( \ - ^ -../../src/H5Zscaleoffset.c:569:10: note: in expansion of macro ‘H5Z_scaleoffset_modify_2’ - H5Z_scaleoffset_modify_2(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1518:7: note: in expansion of macro ‘H5Z_scaleoffset_precompress_3’ - H5Z_scaleoffset_precompress_3(double, data, d_nelmts, - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_postdecompress_fd’: -../../src/H5Zscaleoffset.c:627:76: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - filval : (double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:627:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] - filval : (double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:631:77: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - filval : (double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:631:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] - filval : (double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:635:82: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - filval : (double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:635:26: warning: implicit conversion from ‘float’ to ‘double’ to match other result of conditional [-Wdouble-promotion] - filval : (double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:667:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_3’ - H5Z_scaleoffset_modify_3(i, type, buf, d_nelmts, filval, minbits, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:645:74: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i] = (type)((double)(*(int *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ - H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:648:75: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i] = (type)((double)(*(long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ - H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c:651:80: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - buf[i] = (type)((double)(*(long long *)&buf[i]) / HDpow(10.0f, D_val) + min); \ - ^ -../../src/H5Zscaleoffset.c:669:7: note: in expansion of macro ‘H5Z_scaleoffset_modify_4’ - H5Z_scaleoffset_modify_4(i, type, buf, d_nelmts, min, D_val) \ - ^ -../../src/H5Zscaleoffset.c:1538:7: note: in expansion of macro ‘H5Z_scaleoffset_postdecompress_3’ - H5Z_scaleoffset_postdecompress_3(float, data, d_nelmts, filavail, - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_decompress_one_atomic’: -../../src/H5Zscaleoffset.c:1598:23: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - dtype_len = p.size * 8; - ^ -../../src/H5Zscaleoffset.c:1601:28: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - begin_i = p.size - 1 - (dtype_len - p.minbits) / 8; - ^ -../../src/H5Zscaleoffset.c: In function ‘H5Z_scaleoffset_compress_one_atomic’: -../../src/H5Zscaleoffset.c:1681:23: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - dtype_len = p.size * 8; - ^ -../../src/H5Zscaleoffset.c:1684:28: warning: conversion to ‘unsigned int’ from ‘size_t’ may alter its value [-Wconversion] - begin_i = p.size - 1 - (dtype_len - p.minbits) / 8; - ^ -../../src/H5Ztrans.c: In function ‘H5Z_parse_term’: -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] - switch (current->tok_type) { - ^ -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_INTEGER’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_FLOAT’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_SYMBOL’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_PLUS’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_MINUS’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:687:9: warning: enumeration value ‘H5Z_XFORM_LPAREN’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c: In function ‘H5Z_parse_factor’: -../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] - switch (current->tok_type) { - ^ -../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_MULT’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:773:5: warning: enumeration value ‘H5Z_XFORM_DIVIDE’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c: In function ‘H5Z_xform_eval_full’: -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1092:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1092:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, +, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1096:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1096:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, -, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘short unsigned int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1100:45: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1100:3: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, *, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘signed char’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short int’ from ‘int’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:153:16: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *pl = *pl OP *pr; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘short unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:179:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:181:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:183:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:11: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:23: warning: conversion to ‘double’ from ‘long long unsigned int’ may alter its value [-Wconversion] - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:185:2: note: in expansion of macro ‘H5Z_XFORM_DO_OP1’ - H5Z_XFORM_DO_OP1((RESL), (RESR), unsigned long long, OP, (SIZE)) \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘long long unsigned int’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:126:14: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = *p OP tree_val; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: implicit conversion from ‘float’ to ‘double’ to match other operand of binary expression [-Wdouble-promotion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1104:46: warning: conversion to ‘float’ from ‘double’ may alter its value [-Wconversion] - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:143:20: note: in definition of macro ‘H5Z_XFORM_DO_OP1’ - *p = tree_val OP *p; \ - ^ -../../src/H5Ztrans.c:1104:4: note: in expansion of macro ‘H5Z_XFORM_TYPE_OP’ - H5Z_XFORM_TYPE_OP(resl, resr, array_type, /, array_size) - ^ -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_ERROR’ not handled in switch [-Wswitch-enum] - switch (tree->type) { - ^ -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_INTEGER’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_FLOAT’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_SYMBOL’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_LPAREN’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_RPAREN’ not handled in switch [-Wswitch-enum] -../../src/H5Ztrans.c:1090:2: warning: enumeration value ‘H5Z_XFORM_END’ not handled in switch [-Wswitch-enum] - CCLD libhdf5.la -gmake -j 8 check-TESTS -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Nothing to be done for `_exec_check-s'. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -gmake[1]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/src' -Making check in test -gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[1]: warning: -jN forced in submake: disabling jobserver mode. - CCLD testhdf5 - CCLD lheap - CCLD ohdr - CCLD stab - CCLD gheap - CCLD cache - CCLD cache_api - CCLD pool - CCLD accum - CCLD hyperslab - CCLD istore - CCLD bittests - CCLD dt_arith - CCLD dtypes - CCLD dsets - CCLD cmpd_dset - CCLD filter_fail - CCLD extend - CCLD external - CCLD efc - CCLD objcopy - CCLD links - CCLD unlink - CCLD big - CCLD mtime - CCLD fillval - CCLD mount - CCLD flush1 - CCLD flush2 - CCLD app_ref - CCLD enum - CCLD set_extent - CCLD ttsafe - CCLD getname - CCLD vfd - CCLD ntypes - CCLD dangle - CCLD dtransform - CCLD reserved - CCLD cross_read - CCLD freespace - CCLD mf - CCLD btree2 - CCLD fheap - CCLD file_image - CCLD unregister - CCLD error_test - CCLD err_compat - CCLD tcheck_version - CCLD testmeta - CCLD links_env - CCLD plugin -gmake -j 8 testhdf5 lheap ohdr stab gheap cache cache_api pool accum hyperslab istore bittests dt_arith dtypes dsets cmpd_dset filter_fail extend external efc objcopy links unlink big mtime fillval mount flush1 flush2 app_ref enum set_extent ttsafe getname vfd ntypes dangle dtransform reserved cross_read freespace mf btree2 fheap file_image unregister error_test err_compat tcheck_version testmeta links_env plugin testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_plugin.sh -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. -gmake[2]: `testhdf5' is up to date. -gmake[2]: `lheap' is up to date. -gmake[2]: `ohdr' is up to date. -gmake[2]: `stab' is up to date. -gmake[2]: `gheap' is up to date. -gmake[2]: `cache' is up to date. -gmake[2]: `cache_api' is up to date. -gmake[2]: `pool' is up to date. -gmake[2]: `accum' is up to date. -gmake[2]: `hyperslab' is up to date. -gmake[2]: `istore' is up to date. -gmake[2]: `bittests' is up to date. -gmake[2]: `dt_arith' is up to date. -gmake[2]: `dtypes' is up to date. -gmake[2]: `dsets' is up to date. -gmake[2]: `cmpd_dset' is up to date. -gmake[2]: `filter_fail' is up to date. -gmake[2]: `extend' is up to date. -gmake[2]: `external' is up to date. -gmake[2]: `efc' is up to date. -gmake[2]: `objcopy' is up to date. -gmake[2]: `links' is up to date. -gmake[2]: `unlink' is up to date. -gmake[2]: `big' is up to date. -gmake[2]: `mtime' is up to date. -gmake[2]: `fillval' is up to date. -gmake[2]: `mount' is up to date. -gmake[2]: `flush1' is up to date. -gmake[2]: `flush2' is up to date. -gmake[2]: `app_ref' is up to date. -gmake[2]: `enum' is up to date. -gmake[2]: `set_extent' is up to date. -gmake[2]: `ttsafe' is up to date. -gmake[2]: `getname' is up to date. -gmake[2]: `vfd' is up to date. -gmake[2]: `ntypes' is up to date. -gmake[2]: `dangle' is up to date. -gmake[2]: `dtransform' is up to date. -gmake[2]: `reserved' is up to date. -gmake[2]: `cross_read' is up to date. -gmake[2]: `freespace' is up to date. -gmake[2]: `mf' is up to date. -gmake[2]: `btree2' is up to date. -gmake[2]: `fheap' is up to date. -gmake[2]: `file_image' is up to date. -gmake[2]: `unregister' is up to date. -gmake[2]: `error_test' is up to date. -gmake[2]: `err_compat' is up to date. -gmake[2]: `tcheck_version' is up to date. -gmake[2]: `testmeta' is up to date. -gmake[2]: `links_env' is up to date. -gmake[2]: `plugin' is up to date. -gmake[2]: `testerror.sh' is up to date. -gmake[2]: `testlibinfo.sh' is up to date. -gmake[2]: `testcheck_version.sh' is up to date. -gmake[2]: `testlinks_env.sh' is up to date. -gmake[2]: `test_plugin.sh' is up to date. -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake -j 8 check-TESTS -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in test begin Mon May 14 21:09:20 CDT 2018=== -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing testhdf5 -============================ -============================ -============================ -============================ -Testing lheap -============================ -============================ -Testing ohdr -============================ -Testing stab -Testing gheap -Testing cache -Testing cache_api -Testing pool -============================ - lheap Test Log -============================ -Testing local heap write PASSED -Testing local heap read PASSED -Testing opening pre-created file with non-default sizes PASSED -All local heap tests passed. -0.04user 0.02system 0:00.12elapsed 60%CPU (0avgtext+0avgdata 7008maxresident)k -0inputs+144outputs (0major+8917minor)pagefaults 0swaps - -Finished testing lheap -============================ -============================ - cache_api Test Log -============================ -Testing MDC/FAPL related API calls PASSED -Testing MDC/FILE related API calls PASSED -Testing MDC API smoke check -SKIP- - Long tests disabled. -Testing MDC/FAPL related API input errors PASSED -Testing MDC/FILE related API input errors PASSED -0.04user 0.03system 0:00.12elapsed 65%CPU (0avgtext+0avgdata 7164maxresident)k -0inputs+584outputs (0major+8767minor)pagefaults 0swaps - -Finished testing cache_api -============================ -============================ -============================ -Testing accum -Testing hyperslab -============================ - ohdr Test Log -============================ -Using default file format: -Testing object header continuation block PASSED -Testing object header creation PASSED -Testing message creation PASSED -Testing message modification PASSED -Testing object header overflow in memory PASSED -Testing close & re-open object header PASSED -Testing object header overflow on disk PASSED -Testing message deletion PASSED -Testing constant message handling PASSED -Testing object header closing PASSED -Testing locking messages PASSED -Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID -Testing object with unknown header message and no flags set PASSED -Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED -Testing object with unknown header message & 'mark if unknown' flag set PASSED -Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED - PASSED -Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID -Testing object with unknown header message and no flags set PASSED -Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED -Testing object with unknown header message & 'mark if unknown' flag set PASSED -Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED - PASSED -Testing object header creation in cache PASSED -Using new file format: -Testing object header continuation block PASSED -Testing object header creation PASSED -Testing message creation PASSED -Testing message modification PASSED -Testing object header overflow in memory PASSED -Testing close & re-open object header PASSED -Testing object header overflow on disk PASSED -Testing message deletion PASSED -Testing constant message handling PASSED -Testing object header closing PASSED -Testing locking messages PASSED -Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID -Testing object with unknown header message and no flags set PASSED -Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED -Testing object with unknown header message & 'mark if unknown' flag set PASSED -Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED - PASSED -Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID -Testing object with unknown header message and no flags set PASSED -Testing object in r/o file with unknown header message & 'fail if unknown and open for write' flag set PASSED -Testing object with unknown header message & 'mark if unknown' flag set PASSED -Testing object in r/w file with unknown header message & 'fail if unknown and open for write' flag set PASSED - PASSED -Testing object header creation in cache PASSED -All object header tests passed. -0.09user 0.03system 0:00.17elapsed 72%CPU (0avgtext+0avgdata 7056maxresident)k -0inputs+872outputs (0major+9191minor)pagefaults 0swaps - -Finished testing ohdr -============================ -============================ -Testing istore -============================ - accum Test Log -============================ -Testing the metadata accumulator -Testing simple write/read to/from metadata accumulator PASSED -Testing simple write/read to/from before metadata accumulator PASSED -Testing simple write/read to/from after metadata accumulator PASSED -Testing overlapping write to metadata accumulator PASSED -Testing overlapping write to partially clean metadata accumulator PASSED -Testing overlapping write to accumulator larger then accum_size PASSED -Testing non-overlapping write to accumulator larger then accum_size PASSED -Testing accumulator adjustments after append/prepend of data PASSED -Testing reading data from both accumulator and disk PASSED -Testing simple freeing metadata accumulator PASSED -Testing large metadata I/O operations PASSED -Testing random writes to accumulator PASSED -All metadata accumulator tests passed. -0.10user 0.08system 0:00.23elapsed 83%CPU (0avgtext+0avgdata 24972maxresident)k -0inputs+13488outputs (0major+16017minor)pagefaults 0swaps - -Finished testing accum -============================ -============================ -Testing bittests -============================ - bittests Test Log -============================ -Testing bit search operations PASSED -Testing bit set operations PASSED -Testing bit clear operations PASSED -Testing bit copy operations PASSED -Testing bit shift operations PASSED -Testing bit increment operations PASSED -Testing bit decrement operations PASSED -Testing bit negate operations PASSED -All bit tests passed. -0.26user 0.02system 0:00.28elapsed 101%CPU (0avgtext+0avgdata 6908maxresident)k -0inputs+64outputs (0major+8248minor)pagefaults 0swaps - -Finished testing bittests -============================ -============================ -Testing dt_arith -============================ - stab Test Log -============================ -Testing miscellaneous group tests PASSED -Testing long names PASSED -Testing large directories PASSED -Testing miscellaneous group tests (w/new group format) PASSED -Testing long names (w/new group format) PASSED -Testing large directories (w/new group format) PASSED -Testing group lifecycle PASSED -Testing long link names in compact groups PASSED -Testing reading old groups PASSED -Testing group without compact form PASSED -Testing setting root group creation properties PASSED -Testing old API routines PASSED -Testing corrupt symbol table message PASSED -All symbol table tests passed. -0.48user 0.05system 0:00.72elapsed 74%CPU (0avgtext+0avgdata 15068maxresident)k -0inputs+11496outputs (0major+11872minor)pagefaults 0swaps - -Finished testing stab -============================ -============================ -Testing dtypes -============================ - dtypes Test Log -============================ -Testing non-aligned conversions (ALIGNMENT=1).... -Testing H5Tget_class() PASSED -Testing H5Tcopy() PASSED -Testing H5Tdetect_class() PASSED -Testing compound datatypes PASSED -Testing query functions of compound and enumeration types PASSED -Testing transient datatypes PASSED -Testing named datatypes PASSED -Testing functions of encoding and decoding datatypes PASSED -Testing encoding datatypes with the 'use the latest format' flag PASSED -Testing exceptions for int <-> float conversions PASSED -Testing indirectly reopening committed datatypes PASSED -Testing indirectly reopening recursively committed datatypes including file reopening PASSED -Testing deleting objects that use named datatypes PASSED -Testing deleting objects that use named datatypes PASSED -Testing H5Tset/get_order for compound type PASSED -Testing string type creation using H5Tcreate PASSED -Testing deprected API routines for datatypes PASSED -Testing string conversions PASSED -Testing random string conversion speed PASSED -Testing some type functions for string PASSED -Testing compound element reordering PASSED -Testing compound subset conversions PASSED -Testing compound element shrinking & reordering PASSED -Testing optimized struct converter PASSED -Testing compound element growing PASSED -Testing compound element insertion PASSED -Testing packing compound datatypes PASSED -Testing compound datatype with VL string PASSED -Testing array datatype of compound type with VL string PASSED -Testing registering type conversion routine with compound conversions PASSED -Testing adjust size of compound datatypes PASSED -Testing compound datatypes of boundary size with latest format PASSED -Testing unaligned VL strings in compound PASSED -Testing compound subset conversion with extra space in source PASSED -Testing visibility of internally registered type ids PASSED -Testing that H5Tpack removes trailing bytes PASSED -Testing accessing objects with compound datatypes that have no fields PASSED -Testing random enum conversion O(N) PASSED -Testing random enum conversion O(N log N) PASSED -Testing non-native enumeration type conversion PASSED -Testing bitfield conversions PASSED -Testing some type functions for bitfield PASSED -Testing opaque datatypes PASSED -Testing H5Tset/get_order PASSED -Testing string conversion between ASCII and UTF PASSED -All datatype tests passed. -0.40user 0.06system 0:00.56elapsed 82%CPU (0avgtext+0avgdata 25384maxresident)k -0inputs+1096outputs (0major+20170minor)pagefaults 0swaps - -Finished testing dtypes -============================ -============================ -Testing dsets -============================ - hyperslab Test Log -============================ -Test sizes: SMALL MEDIUM -Testing hyperslab fill 11 variable hyperslab PASSED -Testing hyperslab fill 11x10 variable hyperslab PASSED -Testing hyperslab fill 3x5x5 variable hyperslab PASSED -Testing hyperslab fill 113 variable hyperslab PASSED -Testing hyperslab fill 15x11 variable hyperslab PASSED -Testing hyperslab fill 5x7x7 variable hyperslab PASSED -Testing hyperslab copy 11 variable source PASSED -Testing hyperslab copy 11 variable destination PASSED -Testing hyperslab copy 11 sync source & dest PASSED -Testing hyperslab copy 179 variable source PASSED -Testing hyperslab copy 179 variable destination PASSED -Testing hyperslab copy 179 sync source & dest PASSED -Testing hyperslab copy 11x10 variable source PASSED -Testing hyperslab copy 11x10 variable destination PASSED -Testing hyperslab copy 11x10 sync source & dest PASSED -Testing hyperslab copy 13x19 variable source PASSED -Testing hyperslab copy 13x19 variable destination PASSED -Testing hyperslab copy 13x19 sync source & dest PASSED -Testing hyperslab copy 73x67 variable source PASSED -Testing hyperslab copy 73x67 variable destination PASSED -Testing hyperslab copy 73x67 sync source & dest PASSED -Testing hyperslab copy 3x5x5 variable source PASSED -Testing hyperslab copy 3x5x5 variable destination PASSED -Testing hyperslab copy 3x5x5 sync source & dest PASSED -Testing hyperslab copy 7x9x5 variable source PASSED -Testing hyperslab copy 7x9x5 variable destination PASSED -Testing hyperslab copy 7x9x5 sync source & dest PASSED -Testing multi-byte fill value PASSED -Testing multi-byte fill value PASSED -Testing endian conversion by stride PASSED -Testing 2d transpose by stride 9x9d PASSED -Testing 2d transpose by stride 3x11d PASSED -Testing endian conversion by stride PASSED -Testing 2d transpose by stride 1200x1200d PASSED -Testing 2d transpose by stride 800x1800d PASSED -Testing image sampling 10x20 to 5x10 PASSED -Testing image sampling 5x10 to 10x20 PASSED -Testing image sampling 960x1280 to 480x640 PASSED -Testing image sampling 480x640 to 960x1280 PASSED -Testing array filling 1-9 elements PASSED -Testing array filling 9-257 elements PASSED -Testing array offset 13x 11x 7 elements PASSED -Testing array offset 347x 193x 71 elements PASSED -All hyperslab tests passed. -0.95user 0.23system 0:01.18elapsed 100%CPU (0avgtext+0avgdata 49280maxresident)k -0inputs+45072outputs (0major+24810minor)pagefaults 0swaps - -Finished testing hyperslab -============================ -============================ -Testing cmpd_dset -============================ - istore Test Log -============================ -Test sizes: SMALL MEDIUM LARGE -Testing istore create PASSED -Testing istore extend: 10 PASSED -Testing istore extend: 10x10 PASSED -Testing istore extend: 10x10x10 PASSED -Testing istore extend: 10000 PASSED -Testing istore extend: 2500x10 PASSED -Testing istore extend: 10x400x10 PASSED -Testing istore sparse: 5 PASSED -Testing istore sparse: 3x4 PASSED -Testing istore sparse: 2x3x4 PASSED -Testing istore sparse: 30 PASSED -Testing istore sparse: 7x3 PASSED -Testing istore sparse: 4x2x3 PASSED -Testing istore sparse: 50x50x50 PASSED -All i-store tests passed. -0.47user 0.69system 0:01.16elapsed 100%CPU (0avgtext+0avgdata 11660maxresident)k -0inputs+2093024outputs (0major+10754minor)pagefaults 0swaps - -Finished testing istore -============================ -============================ -Testing filter_fail -============================ - filter_fail Test Log -============================ -Testing data writing when a mandatory filter fails and chunk cache is enabled PASSED -Testing data reading when a mandatory filter fails PASSED -Testing data writing when a mandatory filter fails and chunk cache is disabled PASSED -Testing data reading when a mandatory filter fails PASSED -0.03user 0.02system 0:00.05elapsed 105%CPU (0avgtext+0avgdata 7016maxresident)k -0inputs+152outputs (0major+8904minor)pagefaults 0swaps - -Finished testing filter_fail -============================ -============================ -Testing extend -============================ - extend Test Log -============================ -Testing extendible dataset with incr. allocation PASSED -Testing extendible dataset with incr. allocation w/deprec. symbols PASSED -Testing extendible dataset with early allocation PASSED -Testing extendible dataset with early allocation w/deprec. symbols PASSED -All extend tests passed. -0.06user 0.02system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k -0inputs+8016outputs (0major+9214minor)pagefaults 0swaps - -Finished testing extend -============================ -============================ -Testing external -============================ - external Test Log -============================ -Testing with the default file format: -Testing fixed-size data space, exact storage PASSED -Testing external storage is too small PASSED -Testing extendible dataspace, exact external size PASSED -Testing extendible dataspace, external storage is too small PASSED -Testing unlimited dataspace, unlimited external storage PASSED -Testing multiple external files PASSED -Testing external file following unlimited file PASSED -Testing address overflow in external files PASSED -Testing read external dataset PASSED -Testing write external dataset PASSED -Testing absolute filenames for external file PASSED -Testing filenames relative to current directory for external file PASSED -Testing filenames relative to HDF5 file for external file PASSED -Testing prefix in HDF5_EXTFILE_PREFIX PASSED - -Testing with the latest file format: -Testing fixed-size data space, exact storage PASSED -Testing external storage is too small PASSED -Testing extendible dataspace, exact external size PASSED -Testing extendible dataspace, external storage is too small PASSED -Testing unlimited dataspace, unlimited external storage PASSED -Testing multiple external files PASSED -Testing external file following unlimited file PASSED -Testing address overflow in external files PASSED -Testing read external dataset PASSED -Testing write external dataset PASSED -Testing absolute filenames for external file PASSED -Testing filenames relative to current directory for external file PASSED -Testing filenames relative to HDF5 file for external file PASSED -Testing prefix in HDF5_EXTFILE_PREFIX PASSED -All external storage tests passed. -0.06user 0.04system 0:00.27elapsed 39%CPU (0avgtext+0avgdata 7076maxresident)k -0inputs+1168outputs (0major+9179minor)pagefaults 0swaps - -Finished testing external -============================ -============================ -Testing efc -============================ - pool Test Log -============================ -Testing memory pool creation PASSED -Testing closing pool with blocks still allocated in one page PASSED -Testing allocating first block in pool PASSED -Testing allocating large first block in pool PASSED -Testing splitting block in pool PASSED -Testing allocating many small blocks PASSED -Testing allocate normal-sized block in new page PASSED -Testing allocate large-sized block in new page PASSED -Testing allocate many random sized blocks PASSED -All memory pool tests passed. -2.16user 0.04system 0:02.21elapsed 100%CPU (0avgtext+0avgdata 37032maxresident)k -0inputs+136outputs (0major+25585minor)pagefaults 0swaps - -Finished testing pool -============================ -============================ -Testing objcopy -============================ - cmpd_dset Test Log -============================ -Testing compound dataset: -Testing basic compound write PASSED -Testing basic compound read PASSED -Testing reversal of struct members PASSED -Testing subset struct read PASSED -Testing partially initialized superset read PASSED -Testing partially initialized superset optimized read PASSED -Testing partially initialized superset write PASSED -Testing explicit data space PASSED -Testing hyperslab partial read to array PASSED -Testing hyperslab partial read to another hyperslab PASSED -Testing hyperslab to hyperslab part initialized read PASSED -Testing hyperslab part initialized write PASSED -Testing the optimization of when the source type is a subset of the dest: -Testing writing data to contiguous and chunked datasets PASSED -Testing rewriting data with a subset of original data type PASSED -Testing reading data with a subset of original data type PASSED -Testing the optimization of when the dest type is a subset of the source: -Testing writing data to contiguous and chunked datasets PASSED -Testing rewriting data with a subset of original data type PASSED -Testing reading data with a subset of original data type PASSED -Testing that compound types can be packed out of order: -Without extra space at the end of compound... -Testing random member insertion with empty compound subtype PASSED -Testing random member insertion with full compound subtype PASSED -Testing reverse member insertion with empty compound subtype PASSED -Testing reverse member insertion with full compound subtype PASSED -Testing forward member insertion with empty compound subtype PASSED -Testing forward member insertion with full compound subtype PASSED -With extra space at the end of compound... -Testing random member insertion with empty compound subtype PASSED -Testing random member insertion with full compound subtype PASSED -Testing reverse member insertion with empty compound subtype PASSED -Testing reverse member insertion with full compound subtype PASSED -Testing forward member insertion with empty compound subtype PASSED -Testing forward member insertion with full compound subtype PASSED -Testing compound member ordering: -Testing that compound member insertion order is preserved PASSED -All compound dataset tests passed. -0.28user 0.71system 0:01.04elapsed 96%CPU (0avgtext+0avgdata 156292maxresident)k -0inputs+329472outputs (0major+71472minor)pagefaults 0swaps - -Finished testing cmpd_dset -============================ -============================ -Testing links -============================ - dt_arith Test Log -============================ -Testing non-aligned conversions (ALIGNMENT=1).... -Testing query functions of compiler conversion PASSED -Testing user-define and query functions of floating-point types PASSED -Testing user-define and query functions of integer types PASSED -Floating-point overflow cases will be tested. -Testing noop float -> float conversions PASSED -Testing noop double -> double conversions PASSED -Testing noop long double -> long double conversions PASSED -Testing hard normalized float -> double conversions PASSED -Testing hard normalized double -> float conversions PASSED -Testing hard normalized float -> long double conversions PASSED -Testing hard normalized double -> long double conversions PASSED -Testing hard normalized long double -> float conversions PASSED -Testing hard normalized long double -> double conversions PASSED -Testing hard denormalized float -> double conversions PASSED -Testing hard denormalized double -> float conversions PASSED -Testing hard denormalized float -> long double conversions PASSED -Testing hard denormalized double -> long double conversions PASSED -Testing hard denormalized long double -> float conversions PASSED -Testing hard denormalized long double -> double conversions PASSED -Testing hard special float -> double conversions PASSED -Testing hard special double -> float conversions PASSED -Testing hard special float -> long double conversions PASSED -Testing hard special double -> long double conversions PASSED -Testing hard special long double -> float conversions PASSED -Testing hard special long double -> double conversions PASSED -Testing hard signed char -> unsigned char conversions PASSED -Testing hard signed char -> short conversions PASSED -Testing hard signed char -> unsigned short conversions PASSED -Testing hard signed char -> int conversions PASSED -Testing hard signed char -> unsigned int conversions PASSED -Testing hard signed char -> long conversions PASSED -Testing hard signed char -> unsigned long conversions PASSED -Testing hard unsigned char -> signed char conversions PASSED -Testing hard unsigned char -> short conversions PASSED -Testing hard unsigned char -> unsigned short conversions PASSED -Testing hard unsigned char -> int conversions PASSED -Testing hard unsigned char -> unsigned int conversions PASSED -Testing hard unsigned char -> long conversions PASSED -Testing hard unsigned char -> unsigned long conversions PASSED -Testing hard short -> signed char conversions PASSED -Testing hard short -> unsigned char conversions PASSED -Testing hard short -> unsigned short conversions PASSED -Testing hard short -> int conversions PASSED -Testing hard short -> unsigned int conversions PASSED -Testing hard short -> long conversions PASSED -Testing hard short -> unsigned long conversions PASSED -Testing hard unsigned short -> signed char conversions PASSED -Testing hard unsigned short -> unsigned char conversions PASSED -Testing hard unsigned short -> short conversions PASSED -Testing hard unsigned short -> int conversions PASSED -Testing hard unsigned short -> unsigned int conversions PASSED -Testing hard unsigned short -> long conversions PASSED -Testing hard unsigned short -> unsigned long conversions PASSED -Testing hard int -> signed char conversions PASSED -Testing hard int -> unsigned char conversions PASSED -Testing hard int -> short conversions PASSED -Testing hard int -> unsigned short conversions PASSED -Testing hard int -> unsigned int conversions PASSED -Testing hard int -> long conversions PASSED -Testing hard int -> unsigned long conversions PASSED -Testing hard unsigned int -> signed char conversions PASSED -Testing hard unsigned int -> unsigned char conversions PASSED -Testing hard unsigned int -> short conversions PASSED -Testing hard unsigned int -> unsigned short conversions PASSED -Testing hard unsigned int -> int conversions PASSED -Testing hard unsigned int -> long conversions PASSED -Testing hard unsigned int -> unsigned long conversions PASSED -Testing hard long -> signed char conversions PASSED -Testing hard long -> unsigned char conversions PASSED -Testing hard long -> short conversions PASSED -Testing hard long -> unsigned short conversions PASSED -Testing hard long -> int conversions PASSED -Testing hard long -> unsigned int conversions PASSED -Testing hard long -> unsigned long conversions PASSED -Testing hard unsigned long -> signed char conversions PASSED -Testing hard unsigned long -> unsigned char conversions PASSED -Testing hard unsigned long -> short conversions PASSED -Testing hard unsigned long -> unsigned short conversions PASSED -Testing hard unsigned long -> int conversions PASSED -Testing hard unsigned long -> unsigned int conversions PASSED -Testing hard unsigned long -> long conversions PASSED -Testing hard signed char -> float conversions PASSED -Testing hard signed char -> double conversions PASSED -Testing hard unsigned char -> float conversions PASSED -Testing hard unsigned char -> double conversions PASSED -Testing hard short -> float conversions PASSED -Testing hard short -> double conversions PASSED -Testing hard unsigned short -> float conversions PASSED -Testing hard unsigned short -> double conversions PASSED -Testing hard int -> float conversions PASSED -Testing hard int -> double conversions PASSED -Testing hard unsigned int -> float conversions PASSED -Testing hard unsigned int -> double conversions PASSED -Testing hard long -> float conversions PASSED -Testing hard long -> double conversions PASSED -Testing hard unsigned long -> float conversions PASSED -Testing hard unsigned long -> double conversions PASSED -Testing hard signed char -> long double conversions PASSED -Testing hard unsigned char -> long double conversions PASSED -Testing hard short -> long double conversions PASSED -Testing hard unsigned short -> long double conversions PASSED -Testing hard int -> long double conversions PASSED -Testing hard unsigned int -> long double conversions PASSED -Testing hard long -> long double conversions PASSED -Testing hard unsigned long -> long double conversions PASSED -Testing hard normalized float -> signed char conversions PASSED -Testing hard normalized double -> signed char conversions PASSED -Testing hard normalized float -> unsigned char conversions PASSED -Testing hard normalized double -> unsigned char conversions PASSED -Testing hard normalized float -> short conversions PASSED -Testing hard normalized double -> short conversions PASSED -Testing hard normalized float -> unsigned short conversions PASSED -Testing hard normalized double -> unsigned short conversions PASSED -Testing hard normalized float -> int conversions PASSED -Testing hard normalized double -> int conversions PASSED -Testing hard normalized float -> unsigned int conversions PASSED -Testing hard normalized double -> unsigned int conversions PASSED -Testing hard normalized float -> long conversions PASSED -Testing hard normalized double -> long conversions PASSED -Testing hard normalized float -> unsigned long conversions PASSED -Testing hard normalized double -> unsigned long conversions PASSED -Testing hard normalized long double -> signed char conversions PASSED -Testing hard normalized long double -> unsigned char conversions PASSED -Testing hard normalized long double -> short conversions PASSED -Testing hard normalized long double -> unsigned short conversions PASSED -Testing hard normalized long double -> int conversions PASSED -Testing hard normalized long double -> unsigned int conversions PASSED -Testing hard normalized long double -> long conversions PASSED -Testing hard normalized long double -> unsigned long conversions PASSED -Testing hard denormalized float -> signed char conversions PASSED -Testing hard denormalized double -> signed char conversions PASSED -Testing hard denormalized float -> unsigned char conversions PASSED -Testing hard denormalized double -> unsigned char conversions PASSED -Testing hard denormalized float -> short conversions PASSED -Testing hard denormalized double -> short conversions PASSED -Testing hard denormalized float -> unsigned short conversions PASSED -Testing hard denormalized double -> unsigned short conversions PASSED -Testing hard denormalized float -> int conversions PASSED -Testing hard denormalized double -> int conversions PASSED -Testing hard denormalized float -> unsigned int conversions PASSED -Testing hard denormalized double -> unsigned int conversions PASSED -Testing hard denormalized float -> long conversions PASSED -Testing hard denormalized double -> long conversions PASSED -Testing hard denormalized float -> unsigned long conversions PASSED -Testing hard denormalized double -> unsigned long conversions PASSED -Testing hard denormalized long double -> signed char conversions PASSED -Testing hard denormalized long double -> unsigned char conversions PASSED -Testing hard denormalized long double -> short conversions PASSED -Testing hard denormalized long double -> unsigned short conversions PASSED -Testing hard denormalized long double -> int conversions PASSED -Testing hard denormalized long double -> unsigned int conversions PASSED -Testing hard denormalized long double -> long conversions PASSED -Testing hard denormalized long double -> unsigned long conversions PASSED -Testing hard special float -> signed char conversions PASSED -Testing hard special double -> signed char conversions PASSED -Testing hard special float -> unsigned char conversions PASSED -Testing hard special double -> unsigned char conversions PASSED -Testing hard special float -> short conversions PASSED -Testing hard special double -> short conversions PASSED -Testing hard special float -> unsigned short conversions PASSED -Testing hard special double -> unsigned short conversions PASSED -Testing hard special float -> int conversions PASSED -Testing hard special double -> int conversions PASSED -Testing hard special float -> unsigned int conversions PASSED -Testing hard special double -> unsigned int conversions PASSED -Testing hard special float -> long conversions PASSED -Testing hard special double -> long conversions PASSED -Testing hard special float -> unsigned long conversions PASSED -Testing hard special double -> unsigned long conversions PASSED -Testing hard special long double -> signed char conversions PASSED -Testing hard special long double -> unsigned char conversions PASSED -Testing hard special long double -> short conversions PASSED -Testing hard special long double -> unsigned short conversions PASSED -Testing hard special long double -> int conversions PASSED -Testing hard special long double -> unsigned int conversions PASSED -Testing hard special long double -> long conversions PASSED -Testing hard special long double -> unsigned long conversions PASSED -Testing hard particular floating number -> integer conversions PASSED -Testing soft normalized float -> double conversions PASSED -Testing soft normalized double -> float conversions PASSED -Testing soft normalized float -> long double conversions PASSED -Testing soft normalized double -> long double conversions PASSED -Testing soft normalized long double -> float conversions PASSED -Testing soft normalized long double -> double conversions PASSED -Testing soft denormalized float -> double conversions PASSED -Testing soft denormalized double -> float conversions PASSED -Testing soft denormalized float -> long double conversions PASSED -Testing soft denormalized double -> long double conversions PASSED -Testing soft denormalized long double -> float conversions PASSED -Testing soft denormalized long double -> double conversions PASSED -Testing soft special float -> double conversions PASSED -Testing soft special double -> float conversions PASSED -Testing soft special float -> long double conversions PASSED -Testing soft special double -> long double conversions PASSED -Testing soft special long double -> float conversions PASSED -Testing soft special long double -> double conversions PASSED -Testing overlap calculations PASSED -Testing soft signed char -> unsigned char conversions PASSED -Testing soft signed char -> short conversions PASSED -Testing soft signed char -> unsigned short conversions PASSED -Testing soft signed char -> int conversions PASSED -Testing soft signed char -> unsigned int conversions PASSED -Testing soft signed char -> long conversions PASSED -Testing soft signed char -> unsigned long conversions PASSED -Testing soft unsigned char -> signed char conversions PASSED -Testing soft unsigned char -> short conversions PASSED -Testing soft unsigned char -> unsigned short conversions PASSED -Testing soft unsigned char -> int conversions PASSED -Testing soft unsigned char -> unsigned int conversions PASSED -Testing soft unsigned char -> long conversions PASSED -Testing soft unsigned char -> unsigned long conversions PASSED -Testing soft short -> signed char conversions PASSED -Testing soft short -> unsigned char conversions PASSED -Testing soft short -> unsigned short conversions PASSED -Testing soft short -> int conversions PASSED -Testing soft short -> unsigned int conversions PASSED -Testing soft short -> long conversions PASSED -Testing soft short -> unsigned long conversions PASSED -Testing soft unsigned short -> signed char conversions PASSED -Testing soft unsigned short -> unsigned char conversions PASSED -Testing soft unsigned short -> short conversions PASSED -Testing soft unsigned short -> int conversions PASSED -Testing soft unsigned short -> unsigned int conversions PASSED -Testing soft unsigned short -> long conversions PASSED -Testing soft unsigned short -> unsigned long conversions PASSED -Testing soft int -> signed char conversions PASSED -Testing soft int -> unsigned char conversions PASSED -Testing soft int -> short conversions PASSED -Testing soft int -> unsigned short conversions PASSED -Testing soft int -> unsigned int conversions PASSED -Testing soft int -> long conversions PASSED -Testing soft int -> unsigned long conversions PASSED -Testing soft unsigned int -> signed char conversions PASSED -Testing soft unsigned int -> unsigned char conversions PASSED -Testing soft unsigned int -> short conversions PASSED -Testing soft unsigned int -> unsigned short conversions PASSED -Testing soft unsigned int -> int conversions PASSED -Testing soft unsigned int -> long conversions PASSED -Testing soft unsigned int -> unsigned long conversions PASSED -Testing soft long -> signed char conversions PASSED -Testing soft long -> unsigned char conversions PASSED -Testing soft long -> short conversions PASSED -Testing soft long -> unsigned short conversions PASSED -Testing soft long -> int conversions PASSED -Testing soft long -> unsigned int conversions PASSED -Testing soft long -> unsigned long conversions PASSED -Testing soft unsigned long -> signed char conversions PASSED -Testing soft unsigned long -> unsigned char conversions PASSED -Testing soft unsigned long -> short conversions PASSED -Testing soft unsigned long -> unsigned short conversions PASSED -Testing soft unsigned long -> int conversions PASSED -Testing soft unsigned long -> unsigned int conversions PASSED -Testing soft unsigned long -> long conversions PASSED -Testing soft normalized float -> signed char conversions PASSED -Testing soft normalized double -> signed char conversions PASSED -Testing soft normalized float -> unsigned char conversions PASSED -Testing soft normalized double -> unsigned char conversions PASSED -Testing soft normalized float -> short conversions PASSED -Testing soft normalized double -> short conversions PASSED -Testing soft normalized float -> unsigned short conversions PASSED -Testing soft normalized double -> unsigned short conversions PASSED -Testing soft normalized float -> int conversions PASSED -Testing soft normalized double -> int conversions PASSED -Testing soft normalized float -> unsigned int conversions PASSED -Testing soft normalized double -> unsigned int conversions PASSED -Testing soft normalized float -> long conversions PASSED -Testing soft normalized double -> long conversions PASSED -Testing soft normalized float -> unsigned long conversions PASSED -Testing soft normalized double -> unsigned long conversions PASSED -Testing soft normalized long double -> signed char conversions PASSED -Testing soft normalized long double -> unsigned char conversions PASSED -Testing soft normalized long double -> short conversions PASSED -Testing soft normalized long double -> unsigned short conversions PASSED -Testing soft normalized long double -> int conversions PASSED -Testing soft normalized long double -> unsigned int conversions PASSED -Testing soft normalized long double -> long conversions PASSED -Testing soft normalized long double -> unsigned long conversions PASSED -Testing soft denormalized float -> signed char conversions PASSED -Testing soft denormalized double -> signed char conversions PASSED -Testing soft denormalized float -> unsigned char conversions PASSED -Testing soft denormalized double -> unsigned char conversions PASSED -Testing soft denormalized float -> short conversions PASSED -Testing soft denormalized double -> short conversions PASSED -Testing soft denormalized float -> unsigned short conversions PASSED -Testing soft denormalized double -> unsigned short conversions PASSED -Testing soft denormalized float -> int conversions PASSED -Testing soft denormalized double -> int conversions PASSED -Testing soft denormalized float -> unsigned int conversions PASSED -Testing soft denormalized double -> unsigned int conversions PASSED -Testing soft denormalized float -> long conversions PASSED -Testing soft denormalized double -> long conversions PASSED -Testing soft denormalized float -> unsigned long conversions PASSED -Testing soft denormalized double -> unsigned long conversions PASSED -Testing soft denormalized long double -> signed char conversions PASSED -Testing soft denormalized long double -> unsigned char conversions PASSED -Testing soft denormalized long double -> short conversions PASSED -Testing soft denormalized long double -> unsigned short conversions PASSED -Testing soft denormalized long double -> int conversions PASSED -Testing soft denormalized long double -> unsigned int conversions PASSED -Testing soft denormalized long double -> long conversions PASSED -Testing soft denormalized long double -> unsigned long conversions PASSED -Testing soft special float -> signed char conversions PASSED -Testing soft special double -> signed char conversions PASSED -Testing soft special float -> unsigned char conversions PASSED -Testing soft special double -> unsigned char conversions PASSED -Testing soft special float -> short conversions PASSED -Testing soft special double -> short conversions PASSED -Testing soft special float -> unsigned short conversions PASSED -Testing soft special double -> unsigned short conversions PASSED -Testing soft special float -> int conversions PASSED -Testing soft special double -> int conversions PASSED -Testing soft special float -> unsigned int conversions PASSED -Testing soft special double -> unsigned int conversions PASSED -Testing soft special float -> long conversions PASSED -Testing soft special double -> long conversions PASSED -Testing soft special float -> unsigned long conversions PASSED -Testing soft special double -> unsigned long conversions PASSED -Testing soft special long double -> signed char conversions PASSED -Testing soft special long double -> unsigned char conversions PASSED -Testing soft special long double -> short conversions PASSED -Testing soft special long double -> unsigned short conversions PASSED -Testing soft special long double -> int conversions PASSED -Testing soft special long double -> unsigned int conversions PASSED -Testing soft special long double -> long conversions PASSED -Testing soft special long double -> unsigned long conversions PASSED -Testing soft signed char -> float conversions PASSED -Testing soft signed char -> double conversions PASSED -Testing soft unsigned char -> float conversions PASSED -Testing soft unsigned char -> double conversions PASSED -Testing soft short -> float conversions PASSED -Testing soft short -> double conversions PASSED -Testing soft unsigned short -> float conversions PASSED -Testing soft unsigned short -> double conversions PASSED -Testing soft int -> float conversions PASSED -Testing soft int -> double conversions PASSED -Testing soft unsigned int -> float conversions PASSED -Testing soft unsigned int -> double conversions PASSED -Testing soft long -> float conversions PASSED -Testing soft long -> double conversions PASSED -Testing soft unsigned long -> float conversions PASSED -Testing soft unsigned long -> double conversions PASSED -Testing soft signed char -> long double conversions PASSED -Testing soft unsigned char -> long double conversions PASSED -Testing soft short -> long double conversions PASSED -Testing soft unsigned short -> long double conversions PASSED -Testing soft int -> long double conversions PASSED -Testing soft unsigned int -> long double conversions PASSED -Testing soft long -> long double conversions PASSED -Testing soft unsigned long -> long double conversions PASSED -All data type tests passed. -1.63user 0.06system 0:01.73elapsed 98%CPU (0avgtext+0avgdata 7116maxresident)k -0inputs+528outputs (0major+25485minor)pagefaults 0swaps - -Finished testing dt_arith -============================ -============================ -Testing unlink -============================ - efc Test Log -============================ -Testing the external file cache -Testing single EFC PASSED -Testing graph of EFCs without cycles PASSED -Testing graph of EFCs with cycles PASSED -All external file cache tests passed. -0.17user 0.06system 0:01.20elapsed 19%CPU (0avgtext+0avgdata 7320maxresident)k -0inputs+3632outputs (0major+10534minor)pagefaults 0swaps - -Finished testing efc -============================ -============================ -Testing big -============================ - big Test Log -============================ -Testing big file with the SEC2 Driver -Testing Huge dataset write PASSED -#000 0x0000000178020bcc PASSED -#001 0x00000001f33ce9ab PASSED -#002 0x000000003ad87e13 PASSED -#003 0x00000001d92205ec PASSED -#004 0x00000000b8cd62b8 PASSED -#005 0x00000000a486b06c PASSED -#006 0x000000000cd2f556 PASSED -#007 0x000000004f69ceec PASSED -#008 0x0000000029367eae PASSED -#009 0x000000016d5d0374 PASSED -#010 0x00000001b8e174dd PASSED -#011 0x00000000a92a0650 PASSED -#012 0x000000011aa20743 PASSED -#013 0x00000000dc408e84 PASSED -#014 0x00000001017a0312 PASSED -#015 0x00000001ad32fbba PASSED -#016 0x00000000194e381b PASSED -#017 0x00000001ac13c2af PASSED -#018 0x000000015176bb6e PASSED -#019 0x00000001d9271f50 PASSED -#020 0x00000000985f16dc PASSED -#021 0x00000000cde4a1c0 PASSED -#022 0x000000015a3b8d30 PASSED -#023 0x000000005a81e900 PASSED -#024 0x000000011b40a53c PASSED -#025 0x000000016b7c1388 PASSED -#026 0x000000006d8f3b5c PASSED -#027 0x00000001e2e45943 PASSED -#028 0x0000000082d95723 PASSED -#029 0x00000001e1bfd2ec PASSED -#030 0x00000001eb56041c PASSED -#031 0x00000001d2ec019c PASSED -#032 0x000000009b5331a2 PASSED -#033 0x00000001b82bc2ac PASSED -#034 0x0000000008b5c0a8 PASSED -#035 0x00000000424a94b0 PASSED -#036 0x000000019c4e493c PASSED -#037 0x00000001236967f7 PASSED -#038 0x00000000f8a18c5c PASSED -#039 0x00000001d6decdb3 PASSED -#040 0x00000000639a5de2 PASSED -#041 0x00000000727f8ca0 PASSED -#042 0x0000000017a9b3bc PASSED -#043 0x0000000162229fe0 PASSED -#044 0x000000008e15ebb4 PASSED -#045 0x00000001244b45d8 PASSED -#046 0x0000000118af5ff0 PASSED -#047 0x000000001ff424d3 PASSED -#048 0x00000001b4a8cc84 PASSED -#049 0x000000014cab9a70 PASSED -Test passed with the SEC2 Driver. -0.05user 0.04system 0:00.11elapsed 77%CPU (0avgtext+0avgdata 7020maxresident)k -0inputs+9320outputs (0major+8896minor)pagefaults 0swaps - -Finished testing big -============================ -============================ -Testing mtime -============================ - mtime Test Log -============================ -Testing modification time messages PASSED -Testing accessing old modification time messages PASSED -Testing accessing new modification time messages PASSED -All modification time tests passed. -0.04user 0.03system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 7012maxresident)k -0inputs+144outputs (0major+8816minor)pagefaults 0swaps - -Finished testing mtime -============================ -============================ -Testing fillval -============================ - dsets Test Log -============================ -Testing with old file format: -Testing create, open, close PASSED -Testing simple I/O PASSED -Testing compact dataset I/O PASSED -Testing compact dataset of maximal size PASSED -Testing compact dataset repeated open/close and dirty flag PASSED -Testing data type conversion buffer size PASSED -Testing data type conversion PASSED -Testing H5Zget_filter_info PASSED -Testing 'null' filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(enabled for read) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(disabled for read) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(when data is corrupted) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing deflate filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing szip filter -SKIP- - Szip filter not enabled -Testing shuffle filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+deflate+checksum filters(checksum first) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+deflate+checksum filters(checksum last) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+szip+fletcher32 filters -SKIP- - szip filter not enabled -Testing 8-bit shuffling (setup) PASSED -Testing 8-bit shuffling (write) PASSED -Testing 8-bit shuffling (read) PASSED -Testing nbit filter -Testing nbit int (setup) PASSED -Testing nbit int (write) PASSED -Testing nbit int (read) PASSED -Testing nbit float (setup) PASSED -Testing nbit float (write) PASSED -Testing nbit float (read) PASSED -Testing nbit double (setup) PASSED -Testing nbit double (write) PASSED -Testing nbit double (read) PASSED -Testing nbit array (setup) PASSED -Testing nbit array (write) PASSED -Testing nbit array (read) PASSED -Testing nbit compound (setup) PASSED -Testing nbit compound (write) PASSED -Testing nbit compound (read) PASSED -Testing nbit compound complex (setup) PASSED -Testing nbit compound complex (write) PASSED -Testing nbit compound complex (read) PASSED -Testing nbit compound with no-op type (setup) PASSED -Testing nbit compound with no-op type (write) PASSED -Testing nbit compound with no-op type (read) PASSED -Testing nbit integer dataset size PASSED -Testing nbit floating-number dataset size PASSED -Testing scaleoffset filter -Testing scaleoffset int without fill value (setup) PASSED -Testing scaleoffset int without fill value (write) PASSED -Testing scaleoffset int without fill value (read) PASSED -Testing scaleoffset int with fill value (setup) PASSED -Testing scaleoffset int with fill value (write) PASSED -Testing scaleoffset int with fill value (read) PASSED -Testing scaleoffset float without fill value, D-scaling (setup) PASSED -Testing scaleoffset float without fill value, D-scaling (write) PASSED -Testing scaleoffset float without fill value, D-scaling (read) PASSED -Testing scaleoffset float with fill value, D-scaling (setup) PASSED -Testing scaleoffset float with fill value, D-scaling (write) PASSED -Testing scaleoffset float with fill value, D-scaling (read) PASSED -Testing scaleoffset double without fill value, D-scaling (setup) PASSED -Testing scaleoffset double without fill value, D-scaling (write) PASSED -Testing scaleoffset double without fill value, D-scaling (read) PASSED -Testing scaleoffset double with fill value, D-scaling (setup) PASSED -Testing scaleoffset double with fill value, D-scaling (write) PASSED -Testing scaleoffset double with fill value, D-scaling (read) PASSED -Testing multi-open with extending PASSED -Testing various datatypes PASSED -Testing dataset offset with user block PASSED -Testing dataset access with missing filter PASSED -Testing dataset filter 'can apply' callback PASSED -Testing dataset filter 'can apply' callback second PASSED -Testing dataset filter 'set local' callback PASSED -Testing dataset szip filter 'can apply' callback -SKIP- - Szip filter is not enabled. -Testing comparing dataset creation property lists PASSED -Testing copying dataset creation property lists PASSED -Testing filter deletion PASSED -Testing filters with big-endian/little-endian data PASSED -Testing I/O on datasets with zero-sized dims PASSED -Testing Read dataset with unwritten chunk & undefined fill value PASSED -Testing Write/read on randomly selected chunks PASSED -Testing deprecated API routines -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing creating dataset with >4GB chunks PASSED -Testing dataset chunk cache configuration PASSED -Testing big chunks bypassing the cache PASSED -Testing filter expanding chunks too much PASSED -Testing Compatibility for datasets that use Fixed Array indexing - PASSED -Testing extendible dataset with various layout PASSED -Testing shrinking large chunk PASSED -Testing shrinking large chunk PASSED - -Testing with new file format: -Testing create, open, close PASSED -Testing simple I/O PASSED -Testing compact dataset I/O PASSED -Testing compact dataset of maximal size PASSED -Testing compact dataset repeated open/close and dirty flag PASSED -Testing data type conversion buffer size PASSED -Testing data type conversion PASSED -Testing H5Zget_filter_info PASSED -Testing 'null' filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(enabled for read) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(disabled for read) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing Fletcher32 checksum(when data is corrupted) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing deflate filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing szip filter -SKIP- - Szip filter not enabled -Testing shuffle filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+deflate+checksum filters(checksum first) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+deflate+checksum filters(checksum last) -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing shuffle+szip+fletcher32 filters -SKIP- - szip filter not enabled -Testing 8-bit shuffling (setup) PASSED -Testing 8-bit shuffling (write) PASSED -Testing 8-bit shuffling (read) PASSED -Testing nbit filter -Testing nbit int (setup) PASSED -Testing nbit int (write) PASSED -Testing nbit int (read) PASSED -Testing nbit float (setup) PASSED -Testing nbit float (write) PASSED -Testing nbit float (read) PASSED -Testing nbit double (setup) PASSED -Testing nbit double (write) PASSED -Testing nbit double (read) PASSED -Testing nbit array (setup) PASSED -Testing nbit array (write) PASSED -Testing nbit array (read) PASSED -Testing nbit compound (setup) PASSED -Testing nbit compound (write) PASSED -Testing nbit compound (read) PASSED -Testing nbit compound complex (setup) PASSED -Testing nbit compound complex (write) PASSED -Testing nbit compound complex (read) PASSED -Testing nbit compound with no-op type (setup) PASSED -Testing nbit compound with no-op type (write) PASSED -Testing nbit compound with no-op type (read) PASSED -Testing nbit integer dataset size PASSED -Testing nbit floating-number dataset size PASSED -Testing scaleoffset filter -Testing scaleoffset int without fill value (setup) PASSED -Testing scaleoffset int without fill value (write) PASSED -Testing scaleoffset int without fill value (read) PASSED -Testing scaleoffset int with fill value (setup) PASSED -Testing scaleoffset int with fill value (write) PASSED -Testing scaleoffset int with fill value (read) PASSED -Testing scaleoffset float without fill value, D-scaling (setup) PASSED -Testing scaleoffset float without fill value, D-scaling (write) PASSED -Testing scaleoffset float without fill value, D-scaling (read) PASSED -Testing scaleoffset float with fill value, D-scaling (setup) PASSED -Testing scaleoffset float with fill value, D-scaling (write) PASSED -Testing scaleoffset float with fill value, D-scaling (read) PASSED -Testing scaleoffset double without fill value, D-scaling (setup) PASSED -Testing scaleoffset double without fill value, D-scaling (write) PASSED -Testing scaleoffset double without fill value, D-scaling (read) PASSED -Testing scaleoffset double with fill value, D-scaling (setup) PASSED -Testing scaleoffset double with fill value, D-scaling (write) PASSED -Testing scaleoffset double with fill value, D-scaling (read) PASSED -Testing multi-open with extending PASSED -Testing various datatypes PASSED -Testing dataset offset with user block PASSED -Testing dataset access with missing filter PASSED -Testing dataset filter 'can apply' callback PASSED -Testing dataset filter 'can apply' callback second PASSED -Testing dataset filter 'set local' callback PASSED -Testing dataset szip filter 'can apply' callback -SKIP- - Szip filter is not enabled. -Testing comparing dataset creation property lists PASSED -Testing copying dataset creation property lists PASSED -Testing filter deletion PASSED -Testing filters with big-endian/little-endian data PASSED -Testing I/O on datasets with zero-sized dims PASSED -Testing Read dataset with unwritten chunk & undefined fill value PASSED -Testing Write/read on randomly selected chunks PASSED -Testing deprecated API routines -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing creating dataset with >4GB chunks PASSED -Testing dataset chunk cache configuration PASSED -Testing big chunks bypassing the cache PASSED -Testing filter expanding chunks too much PASSED -Testing Compatibility for datasets that use Fixed Array indexing - PASSED -Testing extendible dataset with various layout PASSED -Testing shrinking large chunk PASSED -Testing shrinking large chunk PASSED -Testing H5Dscatter() PASSED -Testing H5Dgather() PASSED -Testing H5Dscatter() error conditions PASSED -Testing H5Dgather() error conditions PASSED -All dataset tests passed. -0.95user 0.59system 0:02.02elapsed 76%CPU (0avgtext+0avgdata 70832maxresident)k -0inputs+112992outputs (0major+45676minor)pagefaults 0swaps - -Finished testing dsets -============================ -============================ -Testing mount -============================ - mount Test Log -============================ -Testing basic functionality PASSED -Testing illegal mount operations PASSED -Testing same file mount operations PASSED -Testing name hiding under mount point PASSED -Testing mount point open PASSED -Testing multi-linked mount point PASSED -Testing mount point unlinking PASSED -Testing object renaming PASSED -Testing mount point renaming PASSED -Testing preopening objects under the mount point PASSED -Testing open object access after unmount PASSED -Testing interfile hard links -SKIP- - Test skipped due file pointer sharing issue (Jira 7638). - PASSED -Testing file handle uniformity PASSED -Testing file handle close PASSED -Testing mounting on group after file is closed PASSED -Testing mounting after file is unmounted PASSED -Testing missing unmount PASSED -Testing hold open w/file PASSED -Testing hold open w/group PASSED -Testing file close degrees must be same PASSED -Testing 'semi' file close degree PASSED -Testing 'strong' file close degree PASSED -Testing access permissions PASSED -Testing multiple mounts PASSED -Testing nested mounts survive PASSED -Testing close parent PASSED -Testing cutting mount graph PASSED -Testing symlinks PASSED -Testing shared mount access PASSED -Testing closing shared mounts PASSED -Testing closing multiple shared mounts PASSED -All mount tests passed. -0.16user 0.05system 0:00.28elapsed 77%CPU (0avgtext+0avgdata 7960maxresident)k -0inputs+1280outputs (0major+12301minor)pagefaults 0swaps - -Finished testing mount -============================ -============================ -Testing flush1 -============================ - flush1 Test Log -============================ -Testing H5Fflush (part1) PASSED -0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7000maxresident)k -0inputs+616outputs (0major+9226minor)pagefaults 0swaps - -Finished testing flush1 -============================ -============================ -Testing app_ref -============================ - app_ref Test Log -============================ -Testing library shutdown with reference count > 1 PASSED -0.05user 0.02system 0:00.07elapsed 103%CPU (0avgtext+0avgdata 7012maxresident)k -0inputs+144outputs (0major+8660minor)pagefaults 0swaps - -Finished testing app_ref -============================ -============================ -Testing enum -============================ - enum Test Log -============================ -Testing named enumeration types PASSED -Testing enumeration conversions PASSED -Testing O(1) conversions PASSED -Testing O(log N) converions PASSED -Testing for non-existing name and value PASSED -Testing some functions with enumeration types PASSED -All enum tests passed. -0.05user 0.02system 0:00.07elapsed 100%CPU (0avgtext+0avgdata 7040maxresident)k -0inputs+192outputs (0major+8910minor)pagefaults 0swaps - -Finished testing enum -============================ -============================ -Testing set_extent -============================ - links Test Log -============================ -Testing link creation PASSED -Testing link queries PASSED -Testing H5Lcreate functions PASSED -Testing new link queries PASSED -Testing long names for objects & links PASSED -Testing too many links PASSED -Testing link creation property lists PASSED -Testing H5Lmove PASSED -Testing H5Lcopy PASSED -Testing moving and copying links preserves their properties PASSED -Testing backwards compatibility PASSED -Testing external file cache with external links PASSED -Testing external links across multiple files PASSED -Testing H5Pset/get_elink_acc_flags() PASSED - ----Testing without external file cache--- -Testing external link to root PASSED -Testing external link to object on path PASSED -Testing external link to self PASSED -Testing external links back and forth PASSED -Testing too many external links PASSED -Testing dangling external links PASSED -Testing recursive external links PASSED -Testing query aspects of external link PASSED -Testing unlinking external link in compact group PASSED -Testing unlinking external link in dense group PASSED -Testing move external link PASSED -Testing external link along for the ride PASSED -Testing that external files are closed during traversal PASSED -Testing endianness of external links PASSED -Testing that external files work with strong file close degree PASSED -Testing external links via H5Pset_elink_prefix() PASSED -Testing external links via main file's absolute path PASSED -Testing external links via main file's CWD + relative path PASSED -Testing external links via current working directory PASSED -Testing external links via target's absolute path PASSED -Testing external links via main file's CWD PASSED -Testing external links via main file's CWD + target's relative path PASSED -Testing external links via chdir and found in current working directory PASSED -Testing H5Pset/get_elink_fapl() with different physical layouts PASSED -Testing H5Pset/get_elink_fapl() with same physical layout PASSED -Testing H5Pset/get_fapl() PASSED -Testing H5Pset/get_elink_cb() PASSED -Testing external links w/symlink files PASSED -Testing copying invalid external links to the source file PASSED -Testing that invalid external links don't open the source file PASSED -Testing opening object twice through elink PASSED -Testing attach committed datatype to external group's attribute/dataset PASSED - ----Testing with external file cache--- -Testing external link to root PASSED -Testing external link to object on path PASSED -Testing external link to self PASSED -Testing external links back and forth PASSED -Testing too many external links PASSED -Testing dangling external links PASSED -Testing recursive external links PASSED -Testing query aspects of external link PASSED -Testing unlinking external link in compact group PASSED -Testing unlinking external link in dense group PASSED -Testing move external link PASSED -Testing external link along for the ride PASSED -Testing that external files are closed during traversal PASSED -Testing endianness of external links PASSED -Testing that external files work with strong file close degree PASSED -Testing external links via H5Pset_elink_prefix() PASSED -Testing external links via main file's absolute path PASSED -Testing external links via main file's CWD + relative path PASSED -Testing external links via current working directory PASSED -Testing external links via target's absolute path PASSED -Testing external links via main file's CWD PASSED -Testing external links via main file's CWD + target's relative path PASSED -Testing external links via chdir and found in current working directory PASSED -Testing H5Pset/get_elink_fapl() with different physical layouts PASSED -Testing H5Pset/get_elink_fapl() with same physical layout PASSED -Testing H5Pset/get_fapl() PASSED -Testing H5Pset/get_elink_cb() PASSED -Testing external links w/symlink files PASSED -Testing copying invalid external links to the source file PASSED -Testing that invalid external links don't open the source file PASSED -Testing opening object twice through elink PASSED -Testing attach committed datatype to external group's attribute/dataset PASSED -Testing user-defined link callbacks PASSED -Testing user-defined link error conditions PASSED -Testing user data passed through lapl PASSED -Testing adjusting nlinks with LAPL PASSED -Testing link type field in H5Lget_info PASSED -Testing link visiting PASSED -Testing link visiting by name PASSED -Testing object visiting PASSED -Testing object visiting by name PASSED -Testing stopping object iteration PASSED -Testing group link filters PASSED -Testing object exists PASSED -Testing that all files were closed correctly PASSED -Testing link creation (w/new group format) PASSED -Testing link queries (w/new group format) PASSED -Testing H5Lcreate functions (w/new group format) PASSED -Testing new link queries (w/new group format) PASSED -Testing long names for objects & links (w/new group format) PASSED -Testing too many links (w/new group format) PASSED -Testing link creation property lists (w/new group format) PASSED -Testing H5Lmove (w/new group format) PASSED -Testing H5Lcopy (w/new group format) PASSED -Testing moving and copying links preserves their properties (w/new group format) PASSED -Testing backwards compatibility (w/new group format) PASSED -Testing external file cache with external links (w/new group format) PASSED -Testing external links across multiple files (w/new group format) PASSED -Testing H5Pset/get_elink_acc_flags() (w/new group format) PASSED - ----Testing without external file cache--- -Testing external link to root (w/new group format) PASSED -Testing external link to object on path (w/new group format) PASSED -Testing external link to self (w/new group format) PASSED -Testing external links back and forth (w/new group format) PASSED -Testing too many external links (w/new group format) PASSED -Testing dangling external links (w/new group format) PASSED -Testing recursive external links (w/new group format) PASSED -Testing query aspects of external link (w/new group format) PASSED -Testing unlinking external link in compact group (w/new group format) PASSED -Testing unlinking external link in dense group (w/new group format) PASSED -Testing move external link (w/new group format) PASSED -Testing external link along for the ride (w/new group format) PASSED -Testing that external files are closed during traversal (w/new group format) PASSED -Testing endianness of external links (w/new group format) PASSED -Testing that external files work with strong file close degree (w/new group format) PASSED -Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED -Testing external links via main file's absolute path (w/new group format) PASSED -Testing external links via main file's CWD + relative path(w/new group format) PASSED -Testing external links via current working directory(w/new group format) PASSED -Testing external links via target's absolute path (w/new group format) PASSED -Testing external links via main file's CWD (w/new group format) PASSED -Testing external links via main file's CWD + target's relative path(w/new group format) PASSED -Testing external links via chdir and found in current working directory (w/new group format) PASSED -Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED -Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED -Testing H5Pset/get_fapl() (w/new group format) PASSED -Testing H5Pset/get_elink_cb() (w/new group format) PASSED -Testing external links w/symlink files (w/new group format) PASSED -Testing copying invalid external links to the source file (w/new group format) PASSED -Testing that invalid external links don't open the source file (w/new group format) PASSED -Testing opening object twice through elink (w/new group format) PASSED -Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED - ----Testing with external file cache--- -Testing external link to root (w/new group format) PASSED -Testing external link to object on path (w/new group format) PASSED -Testing external link to self (w/new group format) PASSED -Testing external links back and forth (w/new group format) PASSED -Testing too many external links (w/new group format) PASSED -Testing dangling external links (w/new group format) PASSED -Testing recursive external links (w/new group format) PASSED -Testing query aspects of external link (w/new group format) PASSED -Testing unlinking external link in compact group (w/new group format) PASSED -Testing unlinking external link in dense group (w/new group format) PASSED -Testing move external link (w/new group format) PASSED -Testing external link along for the ride (w/new group format) PASSED -Testing that external files are closed during traversal (w/new group format) PASSED -Testing endianness of external links (w/new group format) PASSED -Testing that external files work with strong file close degree (w/new group format) PASSED -Testing external links via H5Pset_elink_prefix()(w/new group format) PASSED -Testing external links via main file's absolute path (w/new group format) PASSED -Testing external links via main file's CWD + relative path(w/new group format) PASSED -Testing external links via current working directory(w/new group format) PASSED -Testing external links via target's absolute path (w/new group format) PASSED -Testing external links via main file's CWD (w/new group format) PASSED -Testing external links via main file's CWD + target's relative path(w/new group format) PASSED -Testing external links via chdir and found in current working directory (w/new group format) PASSED -Testing H5Pset/get_elink_fapl() with different physical layouts (w/new group format) PASSED -Testing H5Pset/get_elink_fapl() with same physical layout (w/new group format) PASSED -Testing H5Pset/get_fapl() (w/new group format) PASSED -Testing H5Pset/get_elink_cb() (w/new group format) PASSED -Testing external links w/symlink files (w/new group format) PASSED -Testing copying invalid external links to the source file (w/new group format) PASSED -Testing that invalid external links don't open the source file (w/new group format) PASSED -Testing opening object twice through elink (w/new group format) PASSED -Testing attach committed datatype to external group's attribute/dataset(w/new group format) PASSED -Testing user-defined hard link (w/new group format) PASSED -Testing registering a new class for existing UD links (w/new group format) PASSED -Testing user-defined link callbacks (w/new group format) PASSED -Testing user-defined link error conditions (w/new group format) PASSED -Testing user data passed through lapl (w/new group format) PASSED -Testing adjusting nlinks with LAPL (w/new group format) PASSED -Testing link type field in H5Lget_info (w/new group format) PASSED -Testing link visiting (w/new group format) PASSED -Testing link visiting by name (w/new group format) PASSED -Testing object visiting (w/new group format) PASSED -Testing object visiting by name (w/new group format) PASSED -Testing stopping object iteration (w/new group format) PASSED -Testing group link filters (w/new group format) PASSED -Testing object exists (w/new group format) PASSED -Testing that all files were closed correctly (w/new group format) PASSED -Testing creating empty group with creation order indexing PASSED -Testing creating compact group with creation order indexing PASSED -Testing creating dense group with creation order indexing PASSED -Testing transitioning group with creation order indexing between dense & compact forms PASSED -Testing deleting group with creation order indexing in dense form PASSED -Testing querying info by index w/o creation order index, using soft links PASSED -Testing querying info by index w/creation order index, using soft links PASSED -Testing querying info by index w/o creation order index, using hard links PASSED -Testing querying info by index w/creation order index, using hard links PASSED -Testing deleting links by name index in increasing order w/o creation order index PASSED -Testing deleting links by name index in increasing order w/creation order index PASSED -Testing deleting links by name index in decreasing order w/o creation order index PASSED -Testing deleting links by name index in decreasing order w/creation order index PASSED -Testing deleting links by creation order index in increasing order w/o creation order index PASSED -Testing deleting links by creation order index in increasing order w/creation order index PASSED -Testing deleting links by creation order index in decreasing order w/o creation order index PASSED -Testing deleting links by creation order index in decreasing order w/creation order index PASSED -Testing iterating over links by name index in increasing order w/o creation order index PASSED -Testing iterating over links by name index in increasing order w/creation order index PASSED -Testing iterating over links by name index in decreasing order w/o creation order index PASSED -Testing iterating over links by name index in decreasing order w/creation order index PASSED -Testing iterating over links by name index in native order w/o creation order index PASSED -Testing iterating over links by name index in native order w/creation order index PASSED -Testing iterating over links by creation order index in increasing order w/o creation order index PASSED -Testing iterating over links by creation order index in increasing order w/creation order index PASSED -Testing iterating over links by creation order index in decreasing order w/o creation order index PASSED -Testing iterating over links by creation order index in decreasing order w/creation order index PASSED -Testing iterating over links by creation order index in native order w/o creation order index PASSED -Testing iterating over links by creation order index in native order w/creation order index PASSED -Testing open object by name index in increasing order w/o creation order index PASSED -Testing open object by name index in increasing order w/creation order index PASSED -Testing open object by name index in decreasing order w/o creation order index PASSED -Testing open object by name index in decreasing order w/creation order index PASSED -Testing open object by name index in native order w/o creation order index PASSED -Testing open object by name index in native order w/creation order index PASSED -Testing open object by creation order index in increasing order w/o creation order index PASSED -Testing open object by creation order index in increasing order w/creation order index PASSED -Testing open object by creation order index in decreasing order w/o creation order index PASSED -Testing open object by creation order index in decreasing order w/creation order index PASSED -Testing open object by creation order index in native order w/o creation order index PASSED -Testing open object by creation order index in native order w/creation order index PASSED -Testing query object info by name index in increasing order w/o creation order index PASSED -Testing query object info by name index in increasing order w/creation order index PASSED -Testing query object info by name index in decreasing order w/o creation order index PASSED -Testing query object info by name index in decreasing order w/creation order index PASSED -Testing query object info by name index in native order w/o creation order index PASSED -Testing query object info by name index in native order w/creation order index PASSED -Testing query object info by creation order index in increasing order w/o creation order index PASSED -Testing query object info by creation order index in increasing order w/creation order index PASSED -Testing query object info by creation order index in decreasing order w/o creation order index PASSED -Testing query object info by creation order index in decreasing order w/creation order index PASSED -Testing query object info by creation order index in native order w/o creation order index PASSED -Testing query object info by creation order index in native order w/creation order index PASSED -Testing query group info by name index in increasing order w/o creation order index PASSED -Testing query group info by name index in increasing order w/creation order index PASSED -Testing query group info by name index in decreasing order w/o creation order index PASSED -Testing query group info by name index in decreasing order w/creation order index PASSED -Testing query group info by name index in native order w/o creation order index PASSED -Testing query group info by name index in native order w/creation order index PASSED -Testing query group info by creation order index in increasing order w/o creation order index PASSED -Testing query group info by creation order index in increasing order w/creation order index PASSED -Testing query group info by creation order index in decreasing order w/o creation order index PASSED -Testing query group info by creation order index in decreasing order w/creation order index PASSED -Testing query group info by creation order index in native order w/o creation order index PASSED -Testing query group info by creation order index in native order w/creation order index PASSED -Testing timestamps on objects PASSED -Testing querying info by index in old-style group, using soft links PASSED -Testing querying info by index in old-style group, using hard links PASSED -Testing deleting links by index in increasing order in old-style group PASSED -Testing deleting links by index in decreasing order in old-style group PASSED -Testing iterating over links by name index in increasing order in old-style group PASSED -Testing iterating over links by name index in decreasing order in old-style group PASSED -Testing iterating over links by name index in native order in old-style group PASSED -Testing open object by name index in increasing order in old-style group PASSED -Testing open object by name index in decreasing order in old-style group PASSED -Testing open object by name index in native order in old-style group PASSED -Testing query object info by name index in increasing order in old-style group PASSED -Testing query object info by name index in decreasing order in old-style group PASSED -Testing query object info by name index in native order in old-style group PASSED -Testing query group info by name index in increasing order in old-style group PASSED -Testing query group info by name index in decreasing order in old-style group PASSED -Testing query group info by name index in native order in old-style group PASSED -Testing external links are registered after reset PASSED -All link tests passed. -2.45user 0.15system 0:03.61elapsed 72%CPU (0avgtext+0avgdata 9052maxresident)k -0inputs+15048outputs (0major+24157minor)pagefaults 0swaps - -Finished testing links -============================ -============================ -Testing ttsafe -============================ - ttsafe Test Log -============================ -Most thread-safety tests skipped because THREADSAFE not enabled - -For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-ttsafe -help -Linked with hdf5 version 1.8 release 21 -Testing -- library threadsafe status (is_threadsafe) - - -All tests were successful. - - -Cleaning Up temp files... - -0.04user 0.02system 0:00.07elapsed 102%CPU (0avgtext+0avgdata 7072maxresident)k -0inputs+104outputs (0major+8293minor)pagefaults 0swaps - -Finished testing ttsafe -============================ -============================ -Testing getname -============================ - getname Test Log -============================ -Testing H5Iget_name with one group PASSED -Testing H5Iget_name with more than one group PASSED -Testing H5Iget_name with H5Gopen2 PASSED -Testing H5Iget_name with H5Dcreate2 PASSED -Testing H5Iget_name with H5Dopen2 PASSED -Testing H5Iget_name with a long path PASSED -Testing H5Iget_name with H5Tcommit2 PASSED -Testing H5Iget_name with H5Topen2 PASSED -Testing H5Iget_name with H5Lmove and H5Gopen2 PASSED -Testing H5Iget_name with H5Lmove and H5Dopen2 PASSED -Testing H5Iget_name with H5Lmove and H5Topen2 PASSED -Testing H5Iget_name with H5Lmove and relative names PASSED -Testing H5Iget_name with H5Lmove and a long path PASSED -Testing H5Iget_name with H5Lmove and a long path #2 PASSED -Testing H5Iget_name with H5Ldelete PASSED -Testing H5Iget_name with H5Ldelete and a long path PASSED -Testing H5Iget_name with H5Ldelete, same names PASSED -Testing H5Iget_name with H5Fmount; with IDs on the list PASSED -Testing H5Iget_name with H5Fmount; long name PASSED -Testing H5Iget_name with H5Funmount PASSED -Testing H5Iget_name with a defined type dataset PASSED -Testing H5Iget_name with datasets that have two names PASSED -Testing H5Iget_name with different files PASSED -Testing H5Iget_name with different files #2 PASSED -Testing H5Iget_name with a small buffer for name PASSED -Testing H5Iget_name with a dynamic buffer for name PASSED -Testing H5Iget_name with invalid IDs PASSED -Testing H5Iget_name with added names with mounting PASSED -Testing H5Iget_name with H5Fclose PASSED -Testing H5Iget_name with H5Fmount and H5Ldelete PASSED -Testing H5Iget_name with H5Fmount and H5Lmove PASSED -Testing H5Iget_name with H5Lcreate_hard PASSED -Testing H5Iget_name with H5Lcreate_soft PASSED -Testing H5Iget_name with H5Lcreate_soft and move target PASSED -Testing H5Iget_name with H5Lcreate_soft and move source PASSED -Testing H5Iget_name with H5Lcreate_soft and unlink target PASSED -Testing H5Iget_name with H5Lcreate_soft and unlink source PASSED -Testing H5Iget_name with several nested mounted files PASSED -Testing H5Iget_name and H5Lmove with repeated path components PASSED -Testing H5Iget_name with higher mounted file PASSED -Testing H5Iget_name with multiple hard links and mounted files PASSED -Testing H5Iget_name with mounted files and unlinking PASSED -Testing H5Iget_name with mounting already mounted files PASSED -Testing H5Iget_name with opening object in unmounted file PASSED -Testing H5Iget_name with anonymous datatypes PASSED -Testing getting path to normal dataset in root group PASSED -Testing getting path to dataset in /Group1 PASSED -Testing getting path to /Group1 PASSED -Testing getting path to datatype in /Group1 PASSED -Testing getting path to dataset in nested group PASSED -Testing getting path to nested group PASSED -Testing getting path to dataset created via hard link PASSED -Testing getting path to root group PASSED -Testing getting path to dataset hidden by a mounted file PASSED -Testing getting path to dataset that has been unlinked PASSED -Testing H5Rget_name to get name from region reference(hyperslab) PASSED -Testing H5Iget_name to get name from region reference(hyperslab) PASSED -Testing H5Rget_name to get name from region reference(pnt selec) PASSED -Testing H5Iget_name to get name from region reference(pnt selec) PASSED -All getname tests passed. -0.10user 0.03system 0:00.16elapsed 86%CPU (0avgtext+0avgdata 7264maxresident)k -0inputs+984outputs (0major+11881minor)pagefaults 0swaps - -Finished testing getname -============================ -============================ -Testing vfd -============================ - vfd Test Log -============================ -Testing basic Virtual File Driver functionality. -Testing SEC2 file driver PASSED -Testing CORE file driver PASSED -Testing FAMILY file driver PASSED -Testing FAMILY file driver backward compatibility PASSED -Testing MULTI file driver PASSED -Testing MULTI file driver backward compatibility PASSED -Testing DIRECT I/O file driver -SKIP- -Testing LOG file driver PASSED -Testing STDIO file driver PASSED -Testing WINDOWS file driver -SKIP- -All Virtual File Driver tests passed. -0.07user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7060maxresident)k -0inputs+1152outputs (0major+9322minor)pagefaults 0swaps - -Finished testing vfd -============================ -============================ -Testing ntypes -============================ - ntypes Test Log -============================ -Testing atomic datatype PASSED -Testing compound datatype PASSED -Testing nested compound datatype PASSED -Testing compound datatype with array as field PASSED -Testing compound datatype with opaque field PASSED -Testing enum datatype PASSED -Testing array of compound datatype PASSED -Testing array of atomic datatype PASSED -Testing variable length datatype PASSED -Testing variable length string datatype PASSED -Testing fixed-length string datatype PASSED -Testing reference datatype PASSED -Testing dataset region reference PASSED -Testing opaque datatype PASSED -Testing bitfield datatype PASSED -Testing native integer PASSED -All native datatype tests passed. -0.11user 0.03system 0:00.16elapsed 98%CPU (0avgtext+0avgdata 11600maxresident)k -0inputs+7416outputs (0major+13350minor)pagefaults 0swaps - -Finished testing ntypes -============================ -============================ -Testing dangle -============================ - dangle Test Log -============================ -Testing dangling objects with weak file close: -Testing dangling dataset IDs PASSED -Testing dangling group IDs PASSED -Testing dangling named datatype IDs PASSED -Testing dangling named datatype ID used by dataset PASSED -Testing dangling attribute IDs PASSED -Testing dangling objects with semi file close: -Testing dangling dataset IDs PASSED -Testing dangling group IDs PASSED -Testing dangling named datatype IDs PASSED -Testing dangling named datatype ID used by dataset PASSED -Testing dangling attribute IDs PASSED -Testing dangling objects with strong file close: -Testing dangling dataset IDs PASSED -Testing dangling group IDs PASSED -Testing dangling named datatype IDs PASSED -Testing dangling named datatype ID used by dataset PASSED -Testing dangling attribute IDs PASSED -All dangling ID tests passed. -0.33user 0.03system 0:00.46elapsed 80%CPU (0avgtext+0avgdata 7024maxresident)k -0inputs+376outputs (0major+8913minor)pagefaults 0swaps - -Finished testing dangle -============================ -============================ -Testing dtransform -============================ - gheap Test Log -============================ -Testing monotonically increasing lengths PASSED -Testing monotonically decreasing lengths PASSED -Testing complete object removal PASSED -Testing partial object removal PASSED -Testing out of order indices PASSED -All global heap tests passed. -7.03user 0.02system 0:07.10elapsed 99%CPU (0avgtext+0avgdata 9492maxresident)k -0inputs+2680outputs (0major+12357minor)pagefaults 0swaps - -Finished testing gheap -============================ -============================ -Testing reserved -============================ - dtransform Test Log -============================ -Testing Intializing test... PASSED -Testing H5Pget_data_transform (get before set) PASSED -Testing H5Pset_data_transform (set with NULL transform) PASSED -Testing H5Pset_data_transform (set with invalid transform 1) PASSED -Testing H5Pset_data_transform (set with invalid transform 2) PASSED -Testing H5Pset_data_transform (set with invalid transform 3) PASSED -Testing H5Pset_data_transform (set with invalid transform 4) PASSED -Testing H5Pset_data_transform (set with invalid transform 5) PASSED -Testing H5Pset_data_transform (set with invalid transform 6) PASSED -Testing H5Pset_data_transform (set with invalid transform 7) PASSED -Testing H5Pset_data_transform (set with invalid transform 8) PASSED -Testing contiguous, no data type conversion (char->char) PASSED -Testing contiguous, byte order conversion (char->char) PASSED -Testing contiguous, no data type conversion (uchar->uchar) PASSED -Testing contiguous, byte order conversion (uchar->uchar) PASSED -Testing contiguous, no data type conversion (schar->schar) PASSED -Testing contiguous, byte order conversion (schar->schar) PASSED -Testing contiguous, with type conversion (float->schar) PASSED -Testing contiguous, no data type conversion (short->short) PASSED -Testing contiguous, byte order conversion (short->short) PASSED -Testing contiguous, with type conversion (float->short) PASSED -Testing contiguous, no data type conversion (ushort->ushort) PASSED -Testing contiguous, byte order conversion (ushort->ushort) PASSED -Testing contiguous, no data type conversion (int->int) PASSED -Testing contiguous, byte order conversion (int->int) PASSED -Testing contiguous, with type conversion (float->int) PASSED -Testing contiguous, no data type conversion (uint->uint) PASSED -Testing contiguous, byte order conversion (uint->uint) PASSED -Testing contiguous, no data type conversion (long->long) PASSED -Testing contiguous, byte order conversion (long->long) PASSED -Testing contiguous, with type conversion (float->long) PASSED -Testing contiguous, no data type conversion (ulong->ulong) PASSED -Testing contiguous, byte order conversion (ulong->ulong) PASSED -Testing contiguous, no data type conversion (llong->llong) PASSED -Testing contiguous, byte order conversion (llong->llong) PASSED -Testing contiguous, with type conversion (float->llong) PASSED -Testing contiguous, no data type conversion (ullong->ullong) PASSED -Testing contiguous, byte order conversion (ullong->ullong) PASSED -Testing contiguous, no data type conversion (float->float) PASSED -Testing contiguous, byte order conversion (float->float) PASSED -Testing contiguous, with type conversion (float->float) PASSED -Testing contiguous, no data type conversion (double->double) PASSED -Testing contiguous, byte order conversion (double->double) PASSED -Testing contiguous, with type conversion (float->double) PASSED -Testing contiguous, no data type conversion (ldouble->ldouble) PASSED -Testing contiguous, byte order conversion (ldouble->ldouble) PASSED -Testing contiguous, with type conversion (float->ldouble) PASSED -Testing chunked, no data type conversion (char->char) PASSED -Testing chunked, no data type conversion (uchar->uchar) PASSED -Testing chunked, no data type conversion (schar->schar) PASSED -Testing chunked, with type conversion (float->schar) PASSED -Testing chunked, no data type conversion (short->short) PASSED -Testing chunked, with type conversion (float->short) PASSED -Testing chunked, no data type conversion (ushort->ushort) PASSED -Testing chunked, no data type conversion (int->int) PASSED -Testing chunked, with type conversion (float->int) PASSED -Testing chunked, no data type conversion (uint->uint) PASSED -Testing chunked, no data type conversion (long->long) PASSED -Testing chunked, with type conversion (float->long) PASSED -Testing chunked, no data type conversion (ulong->ulong) PASSED -Testing chunked, no data type conversion (llong->llong) PASSED -Testing chunked, with type conversion (float->llong) PASSED -Testing chunked, no data type conversion (ullong->ullong) PASSED -Testing chunked, no data type conversion (float->float) PASSED -Testing chunked, with type conversion (float->float) PASSED -Testing chunked, no data type conversion (double->double) PASSED -Testing chunked, with type conversion (float->double) PASSED -Testing chunked, no data type conversion (ldouble->ldouble) PASSED -Testing chunked, with type conversion (float->ldouble) PASSED -Testing data transform, linear transform w/ copied property PASSED -Testing data transform, polynomial transform w/ copied property PASSED -Testing data transform, trivial transform, without type conversion PASSED -Testing data transform, trivial transform, with type conversion PASSED -Testing data transform, polynomial transform (int->float) PASSED -Testing data transform, polynomial transform (float->int) PASSED -Testing H5Pget_data_transform PASSED -Testing data transform, read after reseting of transform property PASSED -Testing H5Pget_data_transform, after resetting transform property PASSED -Testing data transform of some special cases PASSED -0.06user 0.03system 0:00.09elapsed 103%CPU (0avgtext+0avgdata 7088maxresident)k -0inputs+536outputs (0major+9003minor)pagefaults 0swaps - -Finished testing dtransform -============================ -============================ -Testing cross_read -============================ - reserved Test Log -============================ - -SKIP- -0.03user 0.03system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6896maxresident)k -0inputs+24outputs (0major+7808minor)pagefaults 0swaps - -Finished testing reserved -============================ -============================ -Testing freespace -============================ - cross_read Test Log -============================ -Testing reading data created on Linux -Testing regular dataset of LE DOUBLE PASSED -Testing regular dataset of BE DOUBLE PASSED -Testing dataset of LE FLOAT with scale-offset filter PASSED -Testing dataset of BE FLOAT with scale-offset filter PASSED -Testing dataset of LE DOUBLE with scale-offset filter PASSED -Testing dataset of BE DOUBLE with scale-offset filter PASSED -Testing dataset of LE CHAR with scale-offset filter PASSED -Testing dataset of BE CHAR with scale-offset filter PASSED -Testing dataset of LE SHORT with scale-offset filter PASSED -Testing dataset of BE SHORT with scale-offset filter PASSED -Testing dataset of LE INT with scale-offset filter PASSED -Testing dataset of BE INT with scale-offset filter PASSED -Testing dataset of LE LONG LONG with scale-offset filter PASSED -Testing dataset of BE LONG LONG with scale-offset filter PASSED -Testing dataset of LE FLOAT with Fletcher32 filter PASSED -Testing dataset of BE FLOAT with Fletcher32 filter PASSED -Testing dataset of LE FLOAT with Deflate filter PASSED -Testing dataset of BE FLOAT with Deflate filter PASSED -Testing dataset of LE FLOAT with Szip filter -SKIP- - filter is not enabled. -Testing dataset of BE FLOAT with Szip filter -SKIP- - filter is not enabled. -Testing dataset of LE FLOAT with Shuffle filter PASSED -Testing dataset of BE FLOAT with Shuffle filter PASSED -Testing dataset of LE FLOAT with Nbit filter PASSED -Testing dataset of BE FLOAT with Nbit filter PASSED -Testing reading data created on Solaris -Testing regular dataset of LE DOUBLE PASSED -Testing regular dataset of BE DOUBLE PASSED -Testing dataset of LE FLOAT with scale-offset filter PASSED -Testing dataset of BE FLOAT with scale-offset filter PASSED -Testing dataset of LE DOUBLE with scale-offset filter PASSED -Testing dataset of BE DOUBLE with scale-offset filter PASSED -Testing dataset of LE CHAR with scale-offset filter PASSED -Testing dataset of BE CHAR with scale-offset filter PASSED -Testing dataset of LE SHORT with scale-offset filter PASSED -Testing dataset of BE SHORT with scale-offset filter PASSED -Testing dataset of LE INT with scale-offset filter PASSED -Testing dataset of BE INT with scale-offset filter PASSED -Testing dataset of LE LONG LONG with scale-offset filter PASSED -Testing dataset of BE LONG LONG with scale-offset filter PASSED -Testing dataset of LE FLOAT with Fletcher32 filter PASSED -Testing dataset of BE FLOAT with Fletcher32 filter PASSED -Testing dataset of LE FLOAT with Deflate filter PASSED -Testing dataset of BE FLOAT with Deflate filter PASSED -Testing dataset of LE FLOAT with Szip filter -SKIP- - filter is not enabled. -Testing dataset of BE FLOAT with Szip filter -SKIP- - filter is not enabled. -Testing dataset of LE FLOAT with Shuffle filter PASSED -Testing dataset of BE FLOAT with Shuffle filter PASSED -Testing dataset of LE FLOAT with Nbit filter PASSED -Testing dataset of BE FLOAT with Nbit filter PASSED -All data type tests passed. -0.05user 0.03system 0:00.08elapsed 102%CPU (0avgtext+0avgdata 7008maxresident)k -0inputs+128outputs (0major+8914minor)pagefaults 0swaps - -Finished testing cross_read -============================ -============================ -Testing mf -============================ - freespace Test Log -============================ -Testing the creation/close/reopen/deletion of the free-space manager PASSED -Testing adding a section via H5FS_sect_add() to free-space: test 1 PASSED -Testing adding a section via H5FS_sect_add() to free-space with H5FS_CLS_GHOST_OBJ: test 2 PASSED -Testing adding a section via H5FS_sect_add() to free-space: test 3 PASSED -Testing adding a section via H5FS_sect_add() to free-space: test 4 PASSED -Testing the merge of sections when H5FS_sect_add() to free-space: test 1 PASSED -Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED -Testing the merge of sections when H5FS_sect_add() to free-space: test 3 PASSED -Testing shrinking of sections when H5FS_sect_add() to free-space: test 1 PASSED -Testing shrinking of sections when H5FS_sect_add() to free-space: test 2 PASSED -Testing shrinking of sections when H5FS_sect_add() to free-space: test 3 PASSED -Testing H5FS_sect_find(): free-space is empty PASSED -Testing H5FS_sect_find() a section equal to requested-size from free-space PASSED -Testing H5FS_sect_find() a section greater than requested-size from free-space PASSED -Testing H5FS_sect_find(): cannot find a section with requested-size from free-space PASSED -Testing the change of section class via H5FS_sect_change_class() in free-space: Test 1 PASSED -Testing the merge of sections when H5FS_sect_add() to free-space: test 2 PASSED -Testing a block's extension by requested-size which is = adjoining free section's size: Test 1 PASSED -Testing a block's extension by requested-size which is > adjoining free section's size: Test 2 PASSED -Testing a block's extension by requested-size which is < adjoining free section's size: Test 3 PASSED -Testing a block's extension by requested-size which does not adjoin any free section: Test 4 PASSED -Testing iteration of sections in the free-space manager PASSED -All free-space tests passed. -0.06user 0.03system 0:00.15elapsed 66%CPU (0avgtext+0avgdata 7124maxresident)k -0inputs+456outputs (0major+8926minor)pagefaults 0swaps - -Finished testing freespace -============================ -============================ -Testing btree2 -============================ - mf Test Log -============================ -Testing H5MM_alloc() of file allocation PASSED -Testing H5MF_try_shrink() of file allocation: test 1 PASSED -Testing H5MF_try_shrink() of file allocation: test 2 PASSED -Testing H5MF_try_shrink() of file allocation: test 3 PASSED -Testing H5MF_try_shrink() of file allocation: test 4 PASSED -Testing H5MF_try_extend() of file allocation: test 1 PASSED -Testing H5MF_try_extend() of file allocation: test 2 PASSED -Testing 'temporary' file space allocation PASSED -Testing H5MF_alloc_create()/H5MF_alloc_open() of free-space manager PASSED -Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 1 PASSED -Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 2 PASSED -Testing H5MF_alloc()/H5MF_xfree() of free-space manager:test 3 PASSED -Testing H5MF_try_extend() of free-space manager:test 1 PASSED -Testing H5MF_try_extend() of free-space manager:test 2 PASSED -Testing H5MF_try_extend() of free-space manager:test 3 PASSED -Testing H5MF_try_extend() of free-space manager:test 4 PASSED -Testing A free-space section absorbs an aggregator: test 1 PASSED -Testing A free-space section absorbs an aggregator: test 2 PASSED -Testing Allocation from raw or metadata free-space manager PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 1 PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 2 PASSED -Testing H5MF_alloc() of meta/sdata aggregator: test 3 PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 4 PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 5 PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 6 PASSED -Testing H5MF_alloc() of meta/sdata aggregator:test 7 PASSED -Testing H5MF_try_extend() of meta/sdata aggregator: test 1 PASSED -Testing H5MF_try_extend() of meta/sdata aggregator: test 2 PASSED -Testing H5MF_try_extend() of meta/sdata aggregator: test 3 PASSED -Testing H5MF_try_shrink() of meta/sdata aggregator: test 1 PASSED -Testing H5MF_try_shrink() of meta/sdata aggregator: test 2 PASSED -Testing H5MF_try_shrink() of meta/sdata aggregator: test 3 PASSED -Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED -Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED -Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED -Testing H5MM_alloc() of file allocation with alignment: test 1 PASSED -Testing H5MF_try_shrink() of file allocation with alignment: test 2 PASSED -Testing H5MF_try_extend() of file allocation with alignment: test 3 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 1 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 2 PASSED -Testing H5MF_alloc() of free-space manager with alignment: test 3 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 1 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 2 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 3 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 4 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 5 PASSED -Testing H5MF_alloc() of meta/sdata aggregator with alignment: test 6 PASSED -Testing H5MF_alloc() bug 1 PASSED -All free-space manager tests for file memory passed. -0.13user 0.03system 0:00.49elapsed 34%CPU (0avgtext+0avgdata 7228maxresident)k -0inputs+1120outputs (0major+9016minor)pagefaults 0swaps - -Finished testing mf -============================ -============================ -Testing fheap -============================ - fillval Test Log -============================ -Testing property lists PASSED -Testing property lists, with variable-length datatype PASSED -Testing with old file format: -Testing chunked dataset creation PASSED -Testing chunked dataset I/O PASSED -Testing chunked dataset extend PASSED -Testing chunked dataset partially allocated I/O PASSED -Testing contiguous dataset creation PASSED -Testing contiguous dataset I/O PASSED -Testing contiguous dataset extend -SKIP- - Not implemented yet -- needs H5S_SELECT_DIFF operator -Testing contiguous dataset compatibility with v. 1.4 PASSED -Testing compact dataset creation PASSED -Testing compact dataset I/O PASSED - -Testing with new file format: -Testing chunked dataset creation PASSED -Testing chunked dataset I/O PASSED -Testing chunked dataset extend PASSED -Testing chunked dataset partially allocated I/O PASSED -Testing contiguous dataset creation PASSED -Testing contiguous dataset I/O PASSED -Testing contiguous dataset extend -SKIP- - Not implemented yet -- needs H5S_SELECT_DIFF operator -Testing contiguous dataset compatibility with v. 1.4 PASSED -Testing compact dataset creation PASSED -Testing compact dataset I/O PASSED -All fill value tests passed. -4.10user 0.17system 0:04.55elapsed 94%CPU (0avgtext+0avgdata 16352maxresident)k -0inputs+310328outputs (0major+17930minor)pagefaults 0swaps - -Finished testing fillval -============================ -============================ -Testing file_image -============================ - file_image Test Log -============================ -Testing File Image Functionality. -Testing File image property list functions PASSED -Testing Callback use in property list operations PASSED -Testing Initial file image and callbacks in Core VFD PASSED -Testing H5Fget_file_image() with sec2 driver PASSED -Testing H5Fget_file_image() with stdio driver PASSED -Testing H5Fget_file_image() with core driver PASSED -Testing H5Fget_file_image() error rejection PASSED -All File Image tests passed. -0.06user 0.02system 0:00.12elapsed 70%CPU (0avgtext+0avgdata 7072maxresident)k -0inputs+472outputs (0major+8985minor)pagefaults 0swaps - -Finished testing file_image -============================ -============================ -Testing unregister -============================ - unlink Test Log -============================ -Testing with old group format: -Testing unlink by absolute name PASSED -Testing unlink by local name PASSED -Testing unlink without a name PASSED -Testing forward unlink PASSED -Testing backward unlink PASSED -Testing inward unlink PASSED -Testing outward unlink PASSED -Testing symlink removal PASSED -Testing object renaming PASSED -Testing symlink renaming PASSED -Testing new move PASSED -Testing check new move function PASSED -Testing file space gets reused: -Testing contiguous dataset with late allocation PASSED -Testing contiguous dataset with early allocation PASSED -Testing chunked dataset with late allocation PASSED -Testing chunked dataset with early allocation PASSED -Testing compressed, chunked dataset PASSED -Testing re-writing compressed, chunked dataset PASSED -Testing compact dataset PASSED -Testing object header continuations PASSED -Testing named datatype PASSED -Testing single group PASSED -Testing multiple groups PASSED -Testing simple group hierarchy PASSED -Testing complex group hierarchy PASSED -Testing duplicate dataset PASSED -Testing duplicate group PASSED -Testing duplicate named datatype PASSED -Testing duplicate attribute PASSED -Testing create and unlink large number of objects PASSED -Testing create and unlink large number of objects with small cache PASSED -Testing creating links with multiple slashes PASSED -Testing deleting links with multiple slashes PASSED -Testing deleting right-most child in non-leaf B-tree node PASSED -Testing deleting right-most child in non-leaf B-tree node PASSED -Testing deleting right-most child in non-leaf B-tree node PASSED -Testing resurrecting dataset after deletion PASSED -Testing resurrecting datatype after deletion PASSED -Testing resurrecting group after deletion PASSED -Testing unlinking chunked dataset PASSED - -Testing with new group format: -Testing unlink by absolute name PASSED -Testing unlink by local name PASSED -Testing unlink without a name PASSED -Testing forward unlink PASSED -Testing backward unlink PASSED -Testing inward unlink PASSED -Testing outward unlink PASSED -Testing symlink removal PASSED -Testing object renaming PASSED -Testing symlink renaming PASSED -Testing new move PASSED -Testing check new move function PASSED -Testing file space gets reused: -Testing contiguous dataset with late allocation PASSED -Testing contiguous dataset with early allocation PASSED -Testing chunked dataset with late allocation PASSED -Testing chunked dataset with early allocation PASSED -Testing compressed, chunked dataset PASSED -Testing re-writing compressed, chunked dataset PASSED -Testing compact dataset PASSED -Testing object header continuations PASSED -Testing named datatype PASSED -Testing single group PASSED -Testing multiple groups PASSED -Testing simple group hierarchy PASSED -Testing complex group hierarchy PASSED -Testing duplicate dataset PASSED -Testing duplicate group PASSED -Testing duplicate named datatype PASSED -Testing duplicate attribute PASSED -Testing create and unlink large number of objects PASSED -Testing create and unlink large number of objects with small cache PASSED -Testing creating links with multiple slashes PASSED -Testing deleting links with multiple slashes PASSED -Testing resurrecting dataset after deletion PASSED -Testing resurrecting datatype after deletion PASSED -Testing resurrecting group after deletion PASSED -Testing unlinking chunked dataset PASSED -Testing unlinking non-empty compact group PASSED -Testing unlinking non-empty dense group PASSED -All unlink tests passed. -4.35user 0.18system 0:05.59elapsed 81%CPU (0avgtext+0avgdata 27912maxresident)k -0inputs+36392outputs (0major+25383minor)pagefaults 0swaps - -Finished testing unlink -============================ -============================ -Testing testerror.sh -============================ - unregister Test Log -============================ -Testing Unregistering filter PASSED -All filter unregistration tests passed. -0.11user 0.03system 0:00.17elapsed 88%CPU (0avgtext+0avgdata 10652maxresident)k -0inputs+2000outputs (0major+10375minor)pagefaults 0swaps - -Finished testing unregister -============================ -============================ -Testing testlibinfo.sh -Finished testing testerror.sh -============================ -testerror.sh Test Log -============================ -Testing err_compat PASSED -Testing error_test PASSED -All Error API tests passed. -0.10user 0.09system 0:00.20elapsed 95%CPU (0avgtext+0avgdata 7036maxresident)k -0inputs+360outputs (0major+25599minor)pagefaults 0swaps - -Finished testing testerror.sh -============================ -============================ -============================ -Testing testcheck_version.sh -Finished testing testlibinfo.sh -============================ -testlibinfo.sh Test Log -============================ -Check file ../src/.libs/libhdf5.so.10 PASSED -Check file ../src/.libs/libhdf5.a PASSED -Check file testhdf5 -SKIP- -No error encountered -0.27user 0.04system 0:00.29elapsed 109%CPU (0avgtext+0avgdata 1492maxresident)k -0inputs+0outputs (0major+6132minor)pagefaults 0swaps - -Finished testing testlibinfo.sh -============================ -============================ -============================ -Testing testlinks_env.sh -Finished testing testlinks_env.sh -============================ -testlinks_env.sh Test Log -============================ -Testing external link with HDF5_EXT_PREFIX -Testing external links via environment variable PASSED -Testing external links via environment variable (w/new group format) PASSED -All external Link (HDF5_EXT_PREFIX) tests passed. -Test for HDF5_EXT_PREFIX PASSED -0.05user 0.03system 0:00.09elapsed 94%CPU (0avgtext+0avgdata 7000maxresident)k -0inputs+184outputs (0major+9907minor)pagefaults 0swaps - -Finished testing testlinks_env.sh -============================ -============================ -============================ -Testing test_plugin.sh -Finished testing test_plugin.sh -============================ -test_plugin.sh Test Log -============================ -Testing with old file format: -Testing deflate filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB1 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB2 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB4 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing DYNLIB3 filter for group PASSED - -Testing with new file format: -Testing deflate filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB1 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB2 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED - DYNLIB4 filter -Testing filters (setup) PASSED -Testing filters (uninitialized read) PASSED -Testing filters (write) PASSED -Testing filters (read) PASSED -Testing filters (modify) PASSED -Testing filters (re-open) PASSED -Testing filters (partial I/O) PASSED -Testing DYNLIB3 filter for group PASSED - -Testing reading data with with dynamic plugin filters: -Testing deflate filter PASSED -Testing DYNLIB1 filter PASSED -Testing DYNLIB2 filter PASSED -Testing DYNLIB4 filter PASSED -Testing opening groups with DYNLIB3 filter PASSED -Testing DYNLIB1 filter with plugins disabled PASSED -Testing access to the filter path table -Testing initialize PASSED -Testing remove PASSED -Testing remove (exceed min) PASSED -Testing append PASSED -Testing append (exceed) PASSED -Testing remove (exceed max) PASSED -Testing get (path name) PASSED -Testing get (bounds) PASSED -Testing get (bounds exceed) PASSED -Testing remove (verify for prepend) PASSED -Testing prepend PASSED -Testing prepend (exceed) PASSED -Testing replace PASSED -Testing remove (verify for insert) PASSED -Testing insert PASSED -Testing insert (exceed) PASSED -All plugin tests passed. -All Plugin API tests passed. -0.32user 0.09system 0:00.43elapsed 95%CPU (0avgtext+0avgdata 11296maxresident)k -0inputs+3720outputs (0major+29904minor)pagefaults 0swaps - -Finished testing test_plugin.sh -============================ -============================ -============================ -Testing flush2 -============================ - flush2 Test Log -============================ -Testing H5Fflush (part2 with flush) PASSED -Testing H5Fflush (part2 without flush) PASSED -Testing H5Fflush (part2 with flush and later addition) PASSED -0.04user 0.02system 0:00.07elapsed 104%CPU (0avgtext+0avgdata 6996maxresident)k -0inputs+128outputs (0major+8823minor)pagefaults 0swaps - -Finished testing flush2 -============================ -Finished testing testcheck_version.sh -============================ -testcheck_version.sh Test Log -============================ -Tests for the H5check_version function. -Note that abort messages may appear due to the expected termination -of the program when it is tested with mis-matched version numnbers. -tcheck_version PASSED -tcheck_version -tM PASSED -tcheck_version -tm PASSED -tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK= tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK= tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK=-1 tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK=0 tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK=1 tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK=2 tcheck_version -tr PASSED -env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version PASSED -env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tM PASSED -env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tm PASSED -env HDF5_DISABLE_VERSION_CHECK=3 tcheck_version -tr PASSED -No error encountered -0.35user 0.74system 0:00.89elapsed 122%CPU (0avgtext+0avgdata 6900maxresident)k -0inputs+480outputs (0major+219470minor)pagefaults 0swaps - -Finished testing testcheck_version.sh -============================ -============================ -============================ - set_extent Test Log -============================ -Testing with old file format and chunk cache disabled: - Testing datasets with ranks 1 to 4 (all configurations) PASSED -Testing with old file format and chunk cache enabled: - Testing datasets with ranks 1 to 4 (all configurations) PASSED -Testing external file use PASSED -Testing storage layout use PASSED -Testing with new file format and chunk cache disabled: - Testing datasets with ranks 1 to 4 (all configurations) PASSED -Testing with new file format and chunk cache enabled: - Testing datasets with ranks 1 to 4 (all configurations) PASSED -Testing external file use PASSED -Testing storage layout use PASSED -All H5Dset_extent tests passed. -5.71user 0.73system 0:08.25elapsed 78%CPU (0avgtext+0avgdata 7900maxresident)k -0inputs+12008outputs (0major+13438minor)pagefaults 0swaps - -Finished testing set_extent -============================ -============================ - cache Test Log -============================ -Testing smoke check #1 -- all clean, ins, dest, ren, 4/2 MB cache PASSED -Testing smoke check #2 -- ~1/2 dirty, ins, dest, ren, 4/2 MB cache PASSED -Testing smoke check #3 -- all clean, ins, dest, ren, 2/1 KB cache PASSED -Testing smoke check #4 -- ~1/2 dirty, ins, dest, ren, 2/1 KB cache PASSED -Testing smoke check #5 -- all clean, ins, prot, unprot, AR cache 1 PASSED -Testing smoke check #6 -- ~1/2 dirty, ins, prot, unprot, AR cache 1 PASSED -Testing smoke check #7 -- all clean, ins, prot, unprot, AR cache 2 PASSED -Testing smoke check #8 -- ~1/2 dirty, ins, prot, unprot, AR cache 2 PASSED -Testing smoke check #9 -- all clean, ins, dest, ren, 4/2 MB, corked PASSED -Testing smoke check #10 -- ~1/2 dirty, ins, dest, ren, 4/2 MB, corked PASSED -Testing write permitted check -- 1/0 MB cache -SKIP- - Clean and dirty LRU lists disabled. -Testing H5C_insert_entry() functionality PASSED -Testing H5C_flush_cache() functionality PASSED -Testing H5C_get_entry_status() functionality PASSED -Testing H5C_expunge_entry() functionality PASSED -Testing multiple read only protects on a single entry PASSED -Testing H5C_move_entry() functionality PASSED -Testing H5C_pin_protected_entry() functionality PASSED -Testing entry resize functionality PASSED -Testing evictions enabled/disabled functionality PASSED -Testing flush cache with protected entry error PASSED -Testing destroy cache with permanently pinned entry error PASSED -Testing destroy cache with protected entry error PASSED -Testing duplicate entry insertion error PASSED -Testing move to existing entry errors PASSED -Testing pin a pinned entry error PASSED -Testing unpin an unpinned entry error PASSED -Testing pin entry related errors PASSED -Testing protect a protected entry error PASSED -Testing unprotect an unprotected entry error PASSED -Testing mark entry dirty related errors PASSED -Testing expunge entry related errors PASSED -Testing resize entry related errors PASSED -Testing unprotect a read only entry dirty error PASSED -Testing protect a read only entry rw error PASSED -Testing get/set evictions enabled errors PASSED -Testing automatic cache resizing PASSED -Testing automatic cache resize disable PASSED -Testing automatic cache resize epoch marker management PASSED -Testing automatic cache resize input errors PASSED -Testing automatic cache resize auxilary functions PASSED -Testing to ensure metadata blizzard absence when inserting PASSED -Testing to ensure metadata blizzard absence on protect/unprotect PASSED -12.18user 0.16system 0:13.18elapsed 93%CPU (0avgtext+0avgdata 128752maxresident)k -0inputs+1600outputs (0major+76670minor)pagefaults 0swaps - -Finished testing cache -============================ -============================ - btree2 Test Log -============================ -Testing without reopening B-tree: -Testing B-tree creation PASSED -Testing B-tree iteration: empty B-tree PASSED -Testing B-tree insert: first record PASSED -Testing B-tree insert: several records PASSED -Testing B-tree insert: split root PASSED -Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED -Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED -Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED -Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED -Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED -Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED -Testing B-tree insert: make level 2 B-tree PASSED -Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED -Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED -Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED -Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED -Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED -Testing B-tree insert: split middle leaf in level 2 B-tree PASSED -Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED -Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED -Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED -Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED -Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED -Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED -Testing B-tree insert: create random level 4 B-tree PASSED -Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED -Testing B-tree remove: record from empty B-tree PASSED -Testing B-tree remove: non-existant record from 1 record B-tree PASSED -Testing B-tree remove: existant record from 1 record B-tree PASSED -Testing B-tree remove: adding records to B-tree after removal PASSED -Testing B-tree remove: non-existant record from level-0 B-tree PASSED -Testing B-tree remove: mult. existant records from level-0 B-tree PASSED -Testing B-tree remove: non-existant record from level-1 B-tree PASSED -Testing B-tree remove: record from right leaf of level-1 B-tree PASSED -Testing B-tree remove: record from left leaf of level-1 B-tree PASSED -Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED -Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED -Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED -Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED -Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED -Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED -Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED -Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED -Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree PASSED -Testing B-tree remove: promote from left internal of level-2 B-tree PASSED -Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED -Testing B-tree remove: promote record from root of level-2 B-tree PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED -Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED -Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED -Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED -Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED -Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED -Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED -Testing B-tree find: nearest neighbor less than a value PASSED -Testing B-tree find: nearest neighbor greater than a value PASSED -Testing B-tree delete: delete empty B-tree PASSED -Testing B-tree delete: delete level-0 B-tree PASSED -Testing B-tree delete: delete level-1 B-tree PASSED -Testing B-tree delete: delete level-2 B-tree PASSED -Testing B-tree modify: attempt to modify non-existant record PASSED -Testing B-tree modify: modify record in leaf node PASSED -Testing B-tree modify: modify record in internal node PASSED -Testing B-tree modify: modify record in root node PASSED -Testing with reopening B-tree: -Testing B-tree creation PASSED -Testing B-tree iteration: empty B-tree PASSED -Testing B-tree insert: first record PASSED -Testing B-tree insert: several records PASSED -Testing B-tree insert: split root PASSED -Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (l->r) PASSED -Testing B-tree insert: redistribute 2 leaves in level 1 B-tree (r->l) PASSED -Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (l->r) PASSED -Testing B-tree insert: split side leaf into 2 leaves in level 1 B-tree (r->l) PASSED -Testing B-tree insert: redistribute 3 leaves in level 1 B-tree PASSED -Testing B-tree insert: split middle leaf into 2 leaves in level 1 B-tree PASSED -Testing B-tree insert: make level 2 B-tree PASSED -Testing B-tree insert: redistrib right-most leaf in level 2 B-tree PASSED -Testing B-tree insert: redistrib left-most leaf in level 2 B-tree PASSED -Testing B-tree insert: redistrib middle leaf in level 2 B-tree PASSED -Testing B-tree insert: split right-most leaf in level 2 B-tree PASSED -Testing B-tree insert: split left-most leaf in level 2 B-tree PASSED -Testing B-tree insert: split middle leaf in level 2 B-tree PASSED -Testing B-tree insert: redist. 2 internal (r->l) in level 2 B-tree PASSED -Testing B-tree insert: redist. 2 internal (l->r) in level 2 B-tree PASSED -Testing B-tree insert: split side internal node to 2 in level 2 B-tree (r->l) PASSED -Testing B-tree insert: split side internal node to 2 in level 2 B-tree (l->2) PASSED -Testing B-tree insert: redistrib 3 internals in level 2 B-tree PASSED -Testing B-tree insert: split 3 internals to 4 in level 2 B-tree PASSED -Testing B-tree insert: create random level 4 B-tree PASSED -Testing B-tree insert: attempt duplicate record in level 4 B-tree PASSED -Testing B-tree remove: record from empty B-tree PASSED -Testing B-tree remove: non-existant record from 1 record B-tree PASSED -Testing B-tree remove: existant record from 1 record B-tree PASSED -Testing B-tree remove: adding records to B-tree after removal PASSED -Testing B-tree remove: non-existant record from level-0 B-tree PASSED -Testing B-tree remove: mult. existant records from level-0 B-tree PASSED -Testing B-tree remove: non-existant record from level-1 B-tree PASSED -Testing B-tree remove: record from right leaf of level-1 B-tree PASSED -Testing B-tree remove: record from left leaf of level-1 B-tree PASSED -Testing B-tree remove: record from middle leaf of level-1 B-tree PASSED -Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (r->l) PASSED -Testing B-tree remove: redistribute 2 leaves in level-1 B-tree (l->r) PASSED -Testing B-tree remove: redistribute 3 leaves in level-1 B-tree PASSED -Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (r->l) PASSED -Testing B-tree remove: merge 2 leaves to 1 in level-1 B-tree (l->r) PASSED -Testing B-tree remove: merge 3 leaves to 2 in level-1 B-tree PASSED -Testing B-tree remove: promote from right leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from left leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from middle leaf of level-1 B-tree PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/2 node redistrib PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/3 node redistrib PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/2->1 merge PASSED -Testing B-tree remove: promote from leaf of level-1 B-tree w/3->2 merge PASSED -Testing B-tree remove: collapse level-1 B-tree back to level-0 PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree PASSED -Testing B-tree remove: promote from left internal of level-2 B-tree PASSED -Testing B-tree remove: promote from middle internal of level-2 B-tree PASSED -Testing B-tree remove: promote record from root of level-2 B-tree PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree w/redistrib PASSED -Testing B-tree remove: promote from left internal of level-2 B-tree w/redistrib PASSED -Testing B-tree remove: promote from right internal of level-2 B-tree w/merge PASSED -Testing B-tree remove: promote from middle internal of level-2 B-tree w/merge PASSED -Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (l->r) PASSED -Testing B-tree remove: merge 2 internal nodes to 1 in level-2 B-tree (r->l) PASSED -Testing B-tree remove: merge 3 internal nodes to 2 in level-2 B-tree PASSED -Testing B-tree remove: collapse level-2 B-tree back to level-1 (r->l) PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records in random order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in random order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in increasing order PASSED -Testing B-tree remove: create random level 4 B-tree and delete all records by index, in decreasing order PASSED -Testing B-tree find: nearest neighbor less than a value PASSED -Testing B-tree find: nearest neighbor greater than a value PASSED -Testing B-tree delete: delete empty B-tree PASSED -Testing B-tree delete: delete level-0 B-tree PASSED -Testing B-tree delete: delete level-1 B-tree PASSED -Testing B-tree delete: delete level-2 B-tree PASSED -Testing B-tree modify: attempt to modify non-existant record PASSED -Testing B-tree modify: modify record in leaf node PASSED -Testing B-tree modify: modify record in internal node PASSED -Testing B-tree modify: modify record in root node PASSED -All v2 B-tree tests passed. -33.39user 3.04system 0:37.72elapsed 96%CPU (0avgtext+0avgdata 35680maxresident)k -0inputs+285336outputs (0major+45071minor)pagefaults 0swaps - -Finished testing btree2 -============================ -============================ - objcopy Test Log -============================ - -Testing without shared src messages: -Testing without shared dst messages: -Testing with oldest file format for source file: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes to the source file PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with oldest file format for source file: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes to the source file PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with oldest file format for source file: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with oldest file format for source file: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes to the source file PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes to the source file PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes to the source file with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing without shared dst messages: -Testing with oldest file format for source file: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with oldest file format for source file: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with oldest file format for source file: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with oldest file format for source file: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing without dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -Testing H5Ocopy(): named datatype PASSED -Testing H5Ocopy(): named vlen datatype PASSED -Testing H5Ocopy(): named nested vlen datatype PASSED -Testing H5Ocopy(): merging committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes with attributes PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging PASSED -Testing H5Ocopy(): merging various committed datatypes PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb PASSED -Testing H5Ocopy(): merging committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes with attributes and reopen PASSED -Testing H5Ocopy(): hier. of committed datatypes and merging with reopen PASSED -Testing H5Ocopy(): merging various committed datatypes with reopen PASSED -Testing H5Ocopy(): merging committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): merging committed datatypes of datasets with suggestions and reopen PASSED -Testing H5Ocopy(): merging different committed datatypes with suggestions and reopen PASSED -Testing H5Ocopy(): H5Pset_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): H5Pset/get_mcdt_search_cb and reopen PASSED -Testing H5Ocopy(): external dataset PASSED -Testing H5Ocopy(): dataset that uses named datatype PASSED -Testing H5Ocopy(): hier. of datasets using named datatype inside hier. PASSED -Testing H5Ocopy(): hier. of datasets using named datatype outside hier. PASSED -Testing H5Ocopy(): contiguous dataset with VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with VLEN datatype PASSED -Testing H5Ocopy(): variable length attribute PASSED -Testing H5Ocopy(): attribute with compound datatype consisting of variable length string PASSED -Testing H5Ocopy(): compact dataset with named VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with named VLEN datatype PASSED -Testing H5Ocopy(): chunked and opened dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with named VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contigous and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): compressed and opened dataset with nested VLEN datatype PASSED -Testing H5Ocopy(): contiguous dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): chunked dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): compact dataset with compound VLEN datatype PASSED -Testing H5Ocopy(): named datatype in same file PASSED -Testing H5Ocopy(): dataset with old layout format PASSED -Testing H5Ocopy(): opened dataset with old layout format PASSED -Testing H5Ocopy(): NULL references PASSED -Testing H5Ocopy(): NULL references for opened datasets PASSED -Testing H5Ocopy(): inside H5Literate() callback PASSED - -Testing without shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with oldest file format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing without shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing with shared src messages: -Testing without shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing without shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED - -Testing with shared src messages: -Testing with shared dst messages: -Testing with latest format for source file: -Testing with dense attributes: -Testing with latest format for destination file: -Testing H5Ocopy(): simple dataset PASSED -Testing H5Ocopy(): simple dataset within the same file PASSED -Testing H5Ocopy(): empty contiguous dataset PASSED -Testing H5Ocopy(): empty and opened contiguous dataset PASSED -Testing H5Ocopy(): compound dataset PASSED -Testing H5Ocopy(): chunked dataset PASSED -Testing H5Ocopy(): empty chunked dataset PASSED -Testing H5Ocopy(): sparse dataset PASSED -Testing H5Ocopy(): compressed dataset PASSED -Testing H5Ocopy(): compact dataset PASSED -Testing H5Ocopy(): compact and opened dataset PASSED -Testing H5Ocopy(): datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): openend datasets that have multiple ohdr chunks PASSED -Testing H5Ocopy(): objects with attributes using named datatypes PASSED -Testing H5Ocopy(): empty group PASSED -Testing H5Ocopy(): root group PASSED -Testing H5Ocopy(): simple nested groups PASSED -Testing H5Ocopy(): deep nested groups PASSED -Testing H5Ocopy(): nested groups with loop PASSED -Testing H5Ocopy(): wide nested groups with loop PASSED -Testing H5Ocopy(): group with links PASSED -Testing H5Ocopy(): object through soft link PASSED -Testing H5Ocopy(): opened object through soft link PASSED -Testing H5Ocopy(): object through external link PASSED -Testing H5Ocopy(): existing object PASSED -Testing H5Ocopy(): full path PASSED -Testing H5Ocopy(): named datatype with self-referential attribute PASSED -Testing H5Ocopy(): attributes with creation order PASSED -Testing H5Ocopy(): without attributes PASSED -Testing H5Ocopy(): with missing groups PASSED -Testing H5Ocopy(): expand soft link PASSED -Testing H5Ocopy: expand external link PASSED -Testing H5Ocopy: expand soft and external links PASSED -Testing H5Ocopy(): shallow group copy PASSED -Testing H5Ocopy(): expand object reference PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): preserve NULL messages PASSED -Testing H5Ocopy(): copying objects while opened PASSED -All object copying tests passed. -34.50user 2.12system 0:43.99elapsed 83%CPU (0avgtext+0avgdata 38932maxresident)k -0inputs+342256outputs (0major+209520minor)pagefaults 0swaps - -Finished testing objcopy -============================ -============================ - testhdf5 Test Log -============================ - -For help use: /mnt/wrk/lrknox/hdf5_hdf5/build/test/.libs/lt-testhdf5 -help -Linked with hdf5 version 1.8 release 21 -Testing -- Configure definitions (config) -Testing -- Encoding/decoding metadata (metadata) -Testing -- Checksum algorithm (checksum) -Testing -- Ternary Search Trees (tst) -Testing -- Memory Heaps (heap) -Testing -- Skip Lists (skiplist) -Testing -- Reference Counted Strings (refstr) -Testing -- Low-Level File I/O (file) -Testing -- Generic Object Functions (objects) -Testing -- Dataspaces (h5s) -Testing -- Dataspace coordinates (coords) -Testing -- Shared Object Header Messages (sohm) -Testing -- Attributes (attr) -Testing -- Selections (select) -Testing -- Time Datatypes (time) -Testing -- References (reference) -Testing -- Variable-Length Datatypes (vltypes) -Testing -- Variable-Length Strings (vlstrings) -Testing -- Group & Attribute Iteration (iterate) -Testing -- Array Datatypes (array) -Testing -- Generic Properties (genprop) -Testing -- UTF-8 Encoding (unicode) -Testing -- User-Created Identifiers (id) -Testing -- Miscellaneous (misc) -Testing -- Version Bounds (verbounds18) - - -All tests were successful. - - -Cleaning Up temp files... - -86.48user 0.58system 1:34.41elapsed 92%CPU (0avgtext+0avgdata 103160maxresident)k -0inputs+150264outputs (0major+58425minor)pagefaults 0swaps - -Finished testing testhdf5 -============================ -============================ - fheap Test Log -============================ -Testing with normal parameters -Testing fractal heap creation PASSED -Testing query heap creation parameters PASSED -Testing create, close & reopen fractal heap PASSED -Testing open fractal heap twice PASSED -Testing deleting open fractal heap PASSED -Testing limits of heap ID lengths PASSED -Testing creating heaps with I/O filters PASSED -Testing querying heap statistics PASSED -Testing reopening header through different file PASSED -Bulk-filling blocks w/large objects -Testing inserting 'weird' sized objects into absolute heap PASSED -Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED -Testing removing bad heap IDs from absolute heap PASSED -Testing removing single object from absolute heap PASSED -Testing removing two objects from absolute heap PASSED -Testing removing single larger object from absolute heap PASSED -Testing removing two larger objects from absolute heap (forward) PASSED -Testing removing two larger objects from absolute heap (reverse) PASSED -Testing removing three larger objects from absolute heap (forward) PASSED -Testing removing three larger objects from absolute heap (reverse) PASSED -Testing incremental object insertion and removal PASSED -Testing removing all objects from root direct block of absolute heap (all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Bulk-filling blocks w/single object -Testing inserting 'weird' sized objects into absolute heap PASSED -Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED -Testing removing bad heap IDs from absolute heap PASSED -Testing removing single object from absolute heap PASSED -Testing removing two objects from absolute heap PASSED -Testing removing single larger object from absolute heap PASSED -Testing removing two larger objects from absolute heap (forward) PASSED -Testing removing two larger objects from absolute heap (reverse) PASSED -Testing removing three larger objects from absolute heap (forward) PASSED -Testing removing three larger objects from absolute heap (reverse) PASSED -Testing incremental object insertion and removal PASSED -Testing removing all objects from root direct block of absolute heap (all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Using 'normal' heap ID format for 'huge' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Using 'direct' heap ID format for 'huge' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED -Using 'small' heap creation parameters -Testing inserting random-sized objects, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED -Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED -Using 'large' heap creation parameters -Testing inserting random-sized objects, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED -Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED -Testing writing objects in heap PASSED -Testing writing objects in heap with compressed blocks PASSED -Testing with reopen heap flag set -Testing fractal heap creation PASSED -Testing query heap creation parameters PASSED -Testing create, close & reopen fractal heap PASSED -Testing open fractal heap twice PASSED -Testing deleting open fractal heap PASSED -Testing limits of heap ID lengths PASSED -Testing creating heaps with I/O filters PASSED -Testing querying heap statistics PASSED -Testing reopening header through different file PASSED -Bulk-filling blocks w/large objects -Testing inserting 'weird' sized objects into absolute heap PASSED -Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED -Testing removing bad heap IDs from absolute heap PASSED -Testing removing single object from absolute heap PASSED -Testing removing two objects from absolute heap PASSED -Testing removing single larger object from absolute heap PASSED -Testing removing two larger objects from absolute heap (forward) PASSED -Testing removing two larger objects from absolute heap (reverse) PASSED -Testing removing three larger objects from absolute heap (forward) PASSED -Testing removing three larger objects from absolute heap (reverse) PASSED -Testing incremental object insertion and removal PASSED -Testing removing all objects from root direct block of absolute heap (all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Bulk-filling blocks w/single object -Testing inserting 'weird' sized objects into absolute heap PASSED -Testing inserting objects to create first direct block in recursive indirect blocks five levels deep PASSED -Testing removing bad heap IDs from absolute heap PASSED -Testing removing single object from absolute heap PASSED -Testing removing two objects from absolute heap PASSED -Testing removing single larger object from absolute heap PASSED -Testing removing two larger objects from absolute heap (forward) PASSED -Testing removing two larger objects from absolute heap (reverse) PASSED -Testing removing three larger objects from absolute heap (forward) PASSED -Testing removing three larger objects from absolute heap (reverse) PASSED -Testing incremental object insertion and removal PASSED -Testing removing all objects from root direct block of absolute heap (all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - forward) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - forward) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - forward) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - forward) PASSED -Testing removing all objects from root direct block of absolute heap (all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from two direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (half, refill, all - reverse) PASSED -Testing inserting object that is too large for starting block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (half, refill, all - reverse) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (half, refill, all - reverse) PASSED -Testing removing all objects from root direct block of absolute heap (all - deleting heap) PASSED -Testing removing all objects from two direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first row of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first two rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from first four rows of direct blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from all direct blocks of root group in absolute heap (all - deleting heap) PASSED -Testing removing all objects from 2nd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing removing all objects from 3rd level indirect blocks of absolute heap (all - deleting heap) PASSED -Testing inserting object that is too large for starting block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding object back to first block, then remove all objects (all - deleting heap) PASSED -Testing skipping starting block, then adding objects to backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then remove all objects (all - deleting heap) PASSED -Testing insert object to initial block, then add object too large for starting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping blocks with indirect root, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling first row, then skipping rows, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing skipping direct blocks to last row and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping blocks in non-root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping row of non-root indirect blocks, then skip row of direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks and skipping two rows of root indirect block, skip one row of root indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, and skip first rows of direct blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first rows of direct blocks of 3rd level indirect block's 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first row of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect block's direct blocks, and skip first two rows of indirect blocks of 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, except last one, fill all direct blocks in last 3rd level indirect block, and insert object too large for it's 2nd level indirect blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling first row of 3rd level indirect blocks, fill all direct blocks in next 3rd level indirect block, fill all 1st row of 2nd level indirect blocks, except last one, and insert object too large for 2nd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct blocks, and skip first row of 2nd indirect blocks of 4th level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill 4th level indirect block's direct, 2nd level indirect blocks and 3rd level direct block, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, fill 2nd row 4th level indirect block's direct, 2nd level indirect blocks, first row of 3rd level indirect blocks, 3rd level direct block in 2nd row, and skip first row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 3rd level indirect blocks in 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing filling direct blocks, filling 2nd level indirect blocks, filling 3rd level indirect blocks, fill first row of 4th level indirect blocks, except last one, fill first row of 3rd level indirect blocks in last 4th level indirect block except last 3rd level block, fill direct blocks in 3rd level block, and skip row of 2nd indirect blocks of 4th level indirect block's 3rd level indirect block, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting small blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fragmenting direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks, then fragment 2nd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Testing fill root direct blocks and 2nd level indirect blocks, then fragment 3rd level indirect block's direct blocks, then backfill and extend, then remove all objects (all - deleting heap) PASSED -Using 'normal' heap ID format for 'huge' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Using 'direct' heap ID format for 'huge' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Using 'direct' heap ID format for 'huge' objects and larger IDs for 'tiny' objects -Testing insert one huge object, then remove (all - forward) PASSED -Testing insert two huge objects, then remove (all - forward) PASSED -Testing insert three huge objects, then remove (all - forward) PASSED -Testing insert mix of normal & huge objects, then remove (all - forward) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert one tiny object, then remove (all - forward) PASSED -Testing insert two tiny objects, then remove (all - forward) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - forward) PASSED -Testing insert one huge object, then remove (all - reverse) PASSED -Testing insert two huge objects, then remove (all - reverse) PASSED -Testing insert three huge objects, then remove (all - reverse) PASSED -Testing insert mix of normal & huge objects, then remove (all - reverse) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert one tiny object, then remove (all - reverse) PASSED -Testing insert two tiny objects, then remove (all - reverse) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - reverse) PASSED -Testing insert one huge object, then remove (all - deleting heap) PASSED -Testing insert two huge objects, then remove (all - deleting heap) PASSED -Testing insert three huge objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal & huge objects, then remove (all - deleting heap) PASSED -Testing insert 'huge' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert one tiny object, then remove (all - deleting heap) PASSED -Testing insert two tiny objects, then remove (all - deleting heap) PASSED -Testing insert mix of normal, huge & tiny objects, then remove (all - deleting heap) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - forward) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - forward) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - reverse) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - reverse) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - random) PASSED -Testing insert one 'managed' object into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing insert two 'managed' objects into heap with I/O filters, then remove (all - deleting heap) PASSED -Testing inserting random-sized objects in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution in heap with compressed blocks, then remove all objects (all - deleting heap) PASSED -Using 'small' heap creation parameters -Testing inserting random-sized objects, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED -Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED -Using 'large' heap creation parameters -Testing inserting random-sized objects, then remove all objects (all - random) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - random) PASSED -Testing inserting random-sized objects, then remove all objects (all - deleting heap) PASSED -Testing inserting random-sized objects with power of 2 distribution, then remove all objects (all - deleting heap) PASSED -Testing writing objects in heap PASSED -Testing writing objects in heap with compressed blocks PASSED -Testing bug1: inserting several objects & removing one, then re-inserting PASSED -All fractal heap tests passed. -102.77user 8.19system 2:02.41elapsed 90%CPU (0avgtext+0avgdata 70504maxresident)k -0inputs+17255304outputs (0major+93268minor)pagefaults 0swaps - -Finished testing fheap -============================ -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -===Serial tests in test ended Mon May 14 21:11:30 CDT 2018=== -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -gmake[1]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/test' -Making check in tools -gmake[1]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools' -gmake[1]: warning: -jN forced in submake: disabling jobserver mode. -Making check in lib -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. -gmake -j 8 -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: Nothing to be done for `all'. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -gmake[5]: Nothing to be done for `_exec_check-s'. -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/lib' -Making check in h5diff -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5diffgentest - CCLD h5diff -gmake -j 8 h5diffgentest testh5diff.sh h5diff_plugin.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5diffgentest' is up to date. -gmake[3]: `testh5diff.sh' is up to date. -gmake[3]: `h5diff_plugin.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5diff begin Mon May 14 21:11:31 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5diffgentest -============================ -============================ -Testing testh5diff.sh -Testing h5diff_plugin.sh -Finished testing h5diff_plugin.sh -============================ -h5diff_plugin.sh Test Log -============================ -Testing h5diff -v tudfilter.h5 tudfilter2.h5 PASSED -All Plugin API tests passed. -0.07user 0.10system 0:00.16elapsed 106%CPU (0avgtext+0avgdata 7572maxresident)k -0inputs+1064outputs (0major+36113minor)pagefaults 0swaps - -Finished testing h5diff_plugin.sh -============================ -============================ -============================ - h5diffgentest Test Log -============================ -HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: - #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset - major: Invalid arguments to routine - minor: Inappropriate type -HDF5-DIAG: Error detected in HDF5 (1.8.21-pre1) thread 0: - #000: ../../src/H5D.c line 413 in H5Dclose(): not a dataset - major: Invalid arguments to routine - minor: Inappropriate type -0.53user 0.27system 0:00.99elapsed 81%CPU (0avgtext+0avgdata 136480maxresident)k -0inputs+6560outputs (0major+52630minor)pagefaults 0swaps - -Finished testing h5diffgentest -============================ -Finished testing testh5diff.sh -============================ -testh5diff.sh Test Log -============================ -Testing h5diff -h PASSED -Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED -Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff -r h5diff_basic1.h5 h5diff_basic2.h5 g1/dset1 g1/dset2 PASSED -Testing h5diff --report --delta=5 h5diff_basic1.h5 h5diff_basic2.h5 g1 PASSED -Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset5 g PASSED -Testing h5diff --verbose --relative=0.02 h5diff_basic1.h5 h5diff_basic PASSED -Testing h5diff -v -p 0.02 h5diff_basic1.h5 h5diff_basic1.h5 g1/dset9 g PASSED -Testing h5diff -v h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp19 /g1/fp19_ PASSED -Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp20 /g1/fp20_ PASSED -Testing h5diff -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff -v -q h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset g1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset l1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 dset t1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l1 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 g1 g2 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 t1 t2 PASSED -Testing h5diff -v h5diff_types.h5 h5diff_types.h5 l1 l2 PASSED -Testing h5diff -v h5diff_enum_invalid_values.h5 h5diff_enum_invalid_va PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset0a dset0b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset1a dset1b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset2a dset2b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset3a dset4b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset4a dset4b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset5a dset5b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset6a dset6b PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset7a dset7b PASSED -Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 refreg PASSED -Testing h5diff -v h5diff_dtypes.h5 h5diff_dtypes.h5 dset11a dset11b PASSED -Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string1 string1 PASSED -Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string2 string2 PASSED -Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string3 string3 PASSED -Testing h5diff -v diff_strings1.h5 diff_strings2.h5 string4 string4 PASSED -Testing h5diff h5diff_basic1.h5 PASSED -Testing h5diff h5diff_basic1.h5 h5diff_basic1.h5 nono_obj PASSED -Testing h5diff -d -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED -Testing h5diff -d 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -d u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -d 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED -Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff --use-system-epsilon h5diff_basic1.h5 h5diff_basic2.h5 PASSED -Testing h5diff -d 200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED -Testing h5diff -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -p -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED -Testing h5diff -p 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -p u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -p 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED -Testing h5diff -p 0.21 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/d PASSED -Testing h5diff -p 0.21 -p 0.22 h5diff_basic1.h5 h5diff_basic2.h5 g1/ds PASSED -Testing h5diff -p 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -p 0.005 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ PASSED -Testing h5diff -n -4 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse PASSED -Testing h5diff -n 0 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -n u h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -n 0x1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/ds PASSED -Testing h5diff -n 2 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -n 2 -n 3 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1 PASSED -Testing h5diff --count=200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 PASSED -Testing h5diff -n 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset PASSED -Testing h5diff -v -d 0.0001 h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 PASSED -Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED -Testing h5diff -v h5diff_attr1.h5 h5diff_attr2.h5 PASSED -Testing h5diff -v1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED -Testing h5diff -v2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED -Testing h5diff --verbose=1 h5diff_attr1.h5 h5diff_attr2.h5 PASSED -Testing h5diff --verbose=2 h5diff_attr1.h5 h5diff_attr2.h5 PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /ds PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /nt PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g2 PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g3 PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 /g4 PASSED -Testing h5diff -v2 h5diff_attr_v_level1.h5 h5diff_attr_v_level2.h5 PASSED -Testing h5diff -v h5diff_dset1.h5 h5diff_dset2.h5 PASSED -Testing h5diff -v h5diff_basic2.h5 h5diff_basic2.h5 PASSED -Testing h5diff -v h5diff_hyper1.h5 h5diff_hyper2.h5 PASSED -Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 PASSED -Testing h5diff -v h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 PASSED -Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED -Testing h5diff -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1. PASSED -Testing h5diff h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset1 g2/dset2 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset2 g2/dset3 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset3 g2/dset4 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset4 g2/dset5 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset5 g2/dset6 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset7 g2/dset8 PASSED -Testing h5diff -c h5diff_basic2.h5 h5diff_basic2.h5 g2/dset8 g2/dset9 PASSED -Testing h5diff -c h5diff_dset_zero_dim_size1.h5 h5diff_dset_zero_dim_s PASSED -Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g1 PASSED -Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /g2 PASSED -Testing h5diff -c non_comparables1.h5 non_comparables2.h5 PASSED -Testing h5diff -c non_comparables1.h5 non_comparables2.h5 /diffobjtype PASSED -Testing h5diff -c non_comparables2.h5 non_comparables1.h5 /diffobjtype PASSED -Testing h5diff -v h5diff_links.h5 h5diff_links.h5 /link_g1 /link_g2 PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_trg.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_extlink PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_softl PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_linked_softlink.h5 h5diff_l PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_softlinks.h5 h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_extlink_src.h5 h5diff_extli PASSED -Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED -Testing h5diff --follow-symlinks -v h5diff_ext2softlink_trg.h5 h5diff_ PASSED -Testing h5diff --follow-symlinks -v h5diff_ext2softlink_src.h5 h5diff_ PASSED -Testing h5diff --follow-symlinks -v h5diff_danglelinks1.h5 h5diff_dang PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_danglel PASSED -Testing h5diff --no-dangling-links h5diff_softlinks.h5 h5diff_softlink PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_softlin PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED -Testing h5diff --follow-symlinks -v --no-dangling-links h5diff_extlink PASSED -Testing h5diff --follow-symlinks h5diff_danglelinks1.h5 h5diff_danglel PASSED -Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED -Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED -Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED -Testing h5diff -v --follow-symlinks h5diff_danglelinks1.h5 h5diff_dang PASSED -Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 PASSED -Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED -Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /soft_ PASSED -Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED -Testing h5diff -v h5diff_danglelinks1.h5 h5diff_danglelinks2.h5 /ext_l PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / / PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 / /grp PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1/ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp1 PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /grp10 PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse1.h5 h5diff_grp_recurse2.h5 /slink PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse1.h5 h5diff_grp_ PASSED -Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED -Testing h5diff -v h5diff_grp_recurse_ext1.h5 h5diff_grp_recurse_ext2-1 PASSED -Testing h5diff -v --follow-symlinks h5diff_grp_recurse_ext1.h5 h5diff_ PASSED -Testing h5diff -v --exclude-path /group1/dset3 h5diff_exclude1-1.h5 h5 PASSED -Testing h5diff -v h5diff_exclude1-1.h5 h5diff_exclude1-2.h5 PASSED -Testing h5diff -v --exclude-path /group1 --exclude-path /dset1 h5diff_ PASSED -Testing h5diff -v --exclude-path /group1 h5diff_exclude2-1.h5 h5diff_e PASSED -Testing h5diff -v --exclude-path /dset3 h5diff_exclude1-1.h5 h5diff_ex PASSED -Testing h5diff -v --exclude-path /group1 h5diff_exclude3-1.h5 h5diff_e PASSED -Testing h5diff -v --exclude-path /group1 h5diff_exclude3-2.h5 h5diff_e PASSED -Testing h5diff -v --exclude-path /group1/dset h5diff_exclude3-1.h5 h5d PASSED -Testing h5diff -v h5diff_comp_vl_strs.h5 h5diff_comp_vl_strs.h5 /group PASSED -Testing h5diff -v --enable-error-stack h5diff_comp_vl_strs.h5 h5diff_c PASSED -Testing h5diff -v h5diff_attr3.h5 h5diff_attr2.h5 /g1 PASSED -Testing h5diff -v tvlstr.h5 tvlstr2.h5 PASSED -Testing h5diff -v compounds_array_vlen1.h5 compounds_array_vlen2.h5 PASSED -Testing h5diff -v -d 5 -p 0.05 --use-system-epsilon h5diff_basic1.h5 h PASSED -Testing h5diff -v -d 5 -p 0.05 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED -Testing h5diff -v -p 0.05 -d 5 h5diff_basic1.h5 h5diff_basic2.h5 /g1/d PASSED -Testing h5diff -v -d 5 --use-system-epsilon h5diff_basic1.h5 h5diff_ba PASSED -Testing h5diff -v --use-system-epsilon -d 5 h5diff_basic1.h5 h5diff_ba PASSED -Testing h5diff -v -p 0.05 --use-system-epsilon h5diff_basic1.h5 h5diff PASSED -Testing h5diff -v --use-system-epsilon -p 0.05 h5diff_basic1.h5 h5diff PASSED -All h5diff tests passed. -6.66user 10.90system 0:15.69elapsed 111%CPU (0avgtext+0avgdata 73448maxresident)k -0inputs+27952outputs (0major+3294459minor)pagefaults 0swaps - -Finished testing testh5diff.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -===Serial tests in h5diff ended Mon May 14 21:11:47 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5diff' -Making check in h5ls -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5ls -gmake -j 8 testh5ls.sh h5ls_plugin.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `testh5ls.sh' is up to date. -gmake[3]: `h5ls_plugin.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5ls begin Mon May 14 21:11:47 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -============================ -Testing testh5ls.sh -Testing h5ls_plugin.sh -Finished testing h5ls_plugin.sh -============================ -h5ls_plugin.sh Test Log -============================ -Testing h5ls -w80 -d tudfilter.h5 PASSED -All Plugin API tests passed. -0.07user 0.10system 0:00.21elapsed 82%CPU (0avgtext+0avgdata 7348maxresident)k -0inputs+704outputs (0major+28072minor)pagefaults 0swaps - -Finished testing h5ls_plugin.sh -============================ -============================ -Finished testing testh5ls.sh -============================ -testh5ls.sh Test Log -============================ -Testing h5ls -w80 -h PASSED -Testing h5ls -w80 -help PASSED -Testing h5ls -w80 -? PASSED -Testing h5ls -w80 tall.h5 PASSED -Testing h5ls -w80 -r -d tall.h5 PASSED -Testing h5ls -w80 tgroup.h5 PASSED -Testing h5ls -w80 tgroup.h5/g1 PASSED -Testing h5ls -w80 -r -g tgroup.h5 PASSED -Testing h5ls -w80 -g tgroup.h5/g1 PASSED -Testing h5ls -w80 -v -g tgrp_comments.h5/glongcomment PASSED -Testing h5ls -w80 -r -d tdset.h5 PASSED -Testing h5ls -w80 -r tslink.h5 PASSED -Testing h5ls --follow-symlinks tsoftlinks.h5 PASSED -Testing h5ls --follow-symlinks -r tsoftlinks.h5 PASSED -Testing h5ls --follow-symlinks tsoftlinks.h5/group1 PASSED -Testing h5ls --follow-symlinks -r tsoftlinks.h5/group1 PASSED -Testing h5ls --follow-symlinks tsoftlinks.h5/soft_dset1 PASSED -Testing h5ls -w80 -r textlink.h5 PASSED -Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5 PASSED -Testing h5ls -w80 --follow-symlinks -rv textlinksrc.h5/ext_link5 PASSED -Testing h5ls -w80 --follow-symlinks -r textlinksrc.h5/ext_link1 PASSED -Testing h5ls -w80 -r textlinksrc.h5 PASSED -Testing h5ls -w80 -r textlinksrc.h5/ext_link1 PASSED -Testing h5ls -w80 --follow-symlinks textlinksrc.h5 PASSED -Testing h5ls -w80 --follow-symlinks textlinksrc.h5/ext_link1 PASSED -Testing h5ls -w80 -r tudlink.h5 PASSED -Testing h5ls -w80 -Er textlinksrc.h5 PASSED -Testing h5ls -w80 -Erv textlinksrc.h5/ext_link5 PASSED -Testing h5ls -w80 -Er textlinksrc.h5/ext_link1 PASSED -Testing h5ls -w80 -E textlinksrc.h5 PASSED -Testing h5ls -w80 -E textlinksrc.h5/ext_link1 PASSED -Testing h5ls -w80 --no-dangling-links textlinksrc.h5 PASSED -Testing h5ls -w80 --follow-symlinks --no-dangling-links textlinksrc.h5 PASSED -Testing h5ls -w80 --follow-symlinks --no-dangling-links tsoftlinks.h5 PASSED -Testing h5ls -w80 --follow-symlinks --no-dangling-links thlink.h5 PASSED -Testing h5ls -w80 thlink.h5 tslink.h5 PASSED -Testing h5ls -w80 thlink.h5 PASSED -Testing h5ls -w80 -r -d tcompound.h5 PASSED -Testing h5ls -w80 -r -d tnestedcomp.h5 PASSED -Testing h5ls -w80 -r -d -S tnestedcomp.h5 PASSED -Testing h5ls -w80 -r -d -l tnestedcomp.h5 PASSED -Testing h5ls -w80 -r -d -l -S tnestedcomp.h5 PASSED -Testing h5ls -w80 -r -d tloop.h5 PASSED -Testing h5ls -w80 -r -d tstr.h5 PASSED -Testing h5ls -w80 -r -d tsaf.h5 PASSED -Testing h5ls -w80 -r -d tvldtypes1.h5 PASSED -Testing h5ls -w80 -r -d tarray1.h5 PASSED -Testing h5ls -w80 -d tempty.h5 PASSED -Testing h5ls -w80 -v -S tgrpnullspace.h5 PASSED -Testing h5ls -w80 -v -S tattr2.h5 PASSED -Testing h5ls -w80 -v -d tattrreg.h5 PASSED -Testing h5ls nosuchfile.h5 PASSED -Testing h5ls -v tvldtypes1.h5 PASSED -Testing h5ls -v tdatareg.h5 PASSED -All h5ls tests passed. -1.77user 3.37system 0:04.56elapsed 112%CPU (0avgtext+0avgdata 7796maxresident)k -0inputs+5792outputs (0major+981108minor)pagefaults 0swaps - -Finished testing testh5ls.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -===Serial tests in h5ls ended Mon May 14 21:11:52 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5ls' -Making check in h5dump -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5dump - CCLD h5dumpgentest - CCLD binread -gmake -j 8 h5dumpgentest binread testh5dump.sh testh5dumppbits.sh testh5dumpxml.sh h5dump_plugin.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5dumpgentest' is up to date. -gmake[3]: `binread' is up to date. -gmake[3]: `testh5dump.sh' is up to date. -gmake[3]: `testh5dumppbits.sh' is up to date. -gmake[3]: `testh5dumpxml.sh' is up to date. -gmake[3]: `h5dump_plugin.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5dump begin Mon May 14 21:11:52 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5dumpgentest -============================ -============================ -============================ -============================ -Testing testh5dump.sh -Testing testh5dumpxml.sh -Testing testh5dumppbits.sh -Testing h5dump_plugin.sh -Finished testing h5dump_plugin.sh -============================ -h5dump_plugin.sh Test Log -============================ -Testing h5dump --enable-error-stack tudfilter.h5 PASSED -All Plugin API tests passed. -0.08user 0.08system 0:00.20elapsed 83%CPU (0avgtext+0avgdata 7536maxresident)k -0inputs+928outputs (0major+28146minor)pagefaults 0swaps - -Finished testing h5dump_plugin.sh -============================ -============================ -============================ - h5dumpgentest Test Log -============================ -0.20user 0.06system 0:00.53elapsed 49%CPU (0avgtext+0avgdata 14756maxresident)k -0inputs+20824outputs (0major+11539minor)pagefaults 0swaps - -Finished testing h5dumpgentest -============================ -Finished testing testh5dumpxml.sh -============================ -testh5dumpxml.sh Test Log -============================ -Testing h5dump --xml tall.h5 PASSED -Testing h5dump --xml tattr.h5 PASSED -Testing h5dump --xml tbitfields.h5 PASSED -Testing h5dump --xml tcompound.h5 PASSED -Testing h5dump --xml tcompound2.h5 PASSED -Testing h5dump --xml tdatareg.h5 PASSED -Testing h5dump --xml tdset.h5 PASSED -Testing h5dump --xml tdset2.h5 PASSED -Testing h5dump --xml tenum.h5 PASSED -Testing h5dump --xml tgroup.h5 PASSED -Testing h5dump --xml thlink.h5 PASSED -Testing h5dump --xml tloop.h5 PASSED -Testing h5dump --xml tloop2.h5 PASSED -Testing h5dump --xml tmany.h5 PASSED -Testing h5dump --xml tnestedcomp.h5 PASSED -Testing h5dump --xml tcompound_complex.h5 PASSED -Testing h5dump --xml tobjref.h5 PASSED -Testing h5dump --xml topaque.h5 PASSED -Testing h5dump --xml tslink.h5 PASSED -Testing h5dump --xml tudlink.h5 PASSED -Testing h5dump --xml textlink.h5 PASSED -Testing h5dump --xml tstr.h5 PASSED -Testing h5dump --xml tstr2.h5 PASSED -Testing h5dump --xml tref.h5 PASSED -Testing h5dump --xml tname-amp.h5 PASSED -Testing h5dump --xml tname-apos.h5 PASSED -Testing h5dump --xml tname-gt.h5 PASSED -Testing h5dump --xml tname-lt.h5 PASSED -Testing h5dump --xml tname-quot.h5 PASSED -Testing h5dump --xml tname-sp.h5 PASSED -Testing h5dump --xml tstring.h5 PASSED -Testing h5dump --xml tstring-at.h5 PASSED -Testing h5dump --xml tref-escapes.h5 PASSED -Testing h5dump --xml tref-escapes-at.h5 PASSED -Testing h5dump --xml tnodata.h5 PASSED -Testing h5dump --xml tarray1.h5 PASSED -Testing h5dump --xml tarray2.h5 PASSED -Testing h5dump --xml tarray3.h5 PASSED -Testing h5dump --xml tarray6.h5 PASSED -Testing h5dump --xml tarray7.h5 PASSED -Testing h5dump --xml tvldtypes1.h5 PASSED -Testing h5dump --xml tvldtypes2.h5 PASSED -Testing h5dump --xml tvldtypes3.h5 PASSED -Testing h5dump --xml tvldtypes4.h5 PASSED -Testing h5dump --xml tvldtypes5.h5 PASSED -Testing h5dump --xml tvlstr.h5 PASSED -Testing h5dump --xml tsaf.h5 PASSED -Testing h5dump --xml tempty.h5 PASSED -Testing h5dump --xml tnamed_dtype_attr.h5 PASSED -Testing h5dump --xml tnullspace.h5 PASSED -Testing h5dump --xml --use-dtd tempty.h5 PASSED -Testing h5dump --xml -u tempty.h5 PASSED -Testing h5dump --xml -X : tempty.h5 PASSED -Testing h5dump --xml --xml-ns=: tempty.h5 PASSED -Testing h5dump --xml -X thing: tempty.h5 PASSED -Testing h5dump --xml --xml-ns=thing: tempty.h5 PASSED -Testing h5dump --xml --xml-ns=: --xml-dtd=http://somewhere.net tempty. PASSED -Testing h5dump --xml --use-dtd --xml-dtd=http://somewhere.net tempty.h PASSED -Testing h5dump --xml -A tall.h5 PASSED -Testing h5dump --xml -H --sort_by=name --sort_order=ascending torderat PASSED -Testing h5dump --xml -H --sort_by=name --sort_order=descending tordera PASSED -Testing h5dump --xml -H --sort_by=creation_order --sort_order=ascendin PASSED -Testing h5dump --xml -H --sort_by=creation_order --sort_order=descendi PASSED -Testing h5dump -u -m %.7f tfpformat.h5 PASSED -Testing h5dump --xml test35.nc PASSED -All h5dumpxml tests passed. -1.17user 2.44system 0:02.73elapsed 131%CPU (0avgtext+0avgdata 7188maxresident)k -0inputs+4312outputs (0major+957317minor)pagefaults 0swaps - -Finished testing testh5dumpxml.sh -============================ -============================ -Finished testing testh5dumppbits.sh -============================ -testh5dumppbits.sh Test Log -============================ -Testing h5dump --enable-error-stack PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,8 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU08BITS -M 0,8 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 0,16 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU16BITS -M 0,16 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 0,32 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU32BITS -M 0,32 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 0,64 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 0,64 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 0,63 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 0,63 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 1,63 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 1,63 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,4,4,4 packedbits PASSED -Testing h5dump --enable-error-stack -d /DU08BITS -M 0,4,4,4 packedbits PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 0,8,8,8 packedbits PASSED -Testing h5dump --enable-error-stack -d /DU16BITS -M 0,8,8,8 packedbits PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 0,16,16,16 packedb PASSED -Testing h5dump --enable-error-stack -d /DU32BITS -M 0,16,16,16 packedb PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 0,32,32,32 packedb PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 0,32,32,32 packedb PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,2,4,2,6,2 pa PASSED -Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,2,4,2,6,2 pa PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 0,4,4,4,8,4,12,4 p PASSED -Testing h5dump --enable-error-stack -d /DU16BITS -M 0,4,4,4,8,4,12,4 p PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 0,8,8,8,16,8,24,8 PASSED -Testing h5dump --enable-error-stack -d /DU32BITS -M 0,8,8,8,16,8,24,8 PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 0,16,16,16,32,16,4 PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 0,16,16,16,32,16,4 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,6 packedbits PASSED -Testing h5dump --enable-error-stack -d /DU08BITS -M 0,2,2,6 packedbits PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 0,2,10,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DU16BITS -M 0,2,10,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 0,2,26,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DU32BITS -M 0,2,26,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DS64BITS -M 0,2,58,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DU64BITS -M 0,2,58,6 packedbit PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,0,3 pa PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,1,1,2,1,3,1,4, PASSED -Testing h5dump --enable-error-stack -d /dset1 -M 0,1,1,1 tcompound.h5 PASSED -Testing h5dump --enable-error-stack -d /Dataset1 -M 0,1,1,1 tarray1.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,1,0,1,1,1,2,1,3, PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 64,1 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 8,1 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 16,1 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 32,1 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M -1,1 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 4,0 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 37,28 packedbits.h PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 2,7 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS16BITS -M 10,7 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS32BITS -M 26,7 packedbits.h5 PASSED -Testing h5dump --enable-error-stack -d /DS08BITS -M 0,2,2,1,0,2,2, pac PASSED -All h5dump tests passed. -1.08user 2.44system 0:02.95elapsed 119%CPU (0avgtext+0avgdata 5324maxresident)k -0inputs+6080outputs (0major+921638minor)pagefaults 0swaps - -Finished testing testh5dumppbits.sh -============================ -============================ -Finished testing testh5dump.sh -============================ -testh5dump.sh Test Log -============================ -Testing h5dump -h PASSED -Testing h5dump --enable-error-stack --ddl -y packedbits.h5 PASSED -Testing h5dump --enable-error-stack --output packedbits.h5 PASSED -Testing h5dump --enable-error-stack -O -y tattr.h5 PASSED -Testing h5dump --enable-error-stack -A -o tattr.h5 PASSED -Testing h5dump --enable-error-stack -y -o trawdatafile.txt packedbits. PASSED -Testing h5dump --enable-error-stack -O -y -o tnoddlfile.txt packedbits PASSED -Testing h5dump --enable-error-stack --ddl=twithddl.txt -y -o twithddlf PASSED -Testing h5dump --enable-error-stack -d /dset1[1,1;;;] -y -o trawssetfi PASSED -Testing h5dump --enable-error-stack -w0 packedbits.h5 PASSED -Testing h5dump --enable-error-stack packedbits.h5 PASSED -Testing h5dump --enable-error-stack tcmpdintsize.h5 PASSED -Testing h5dump --enable-error-stack tscalarintsize.h5 PASSED -Testing h5dump --enable-error-stack tattrintsize.h5 PASSED -Testing h5dump --enable-error-stack tcmpdattrintsize.h5 PASSED -Testing h5dump --enable-error-stack tscalarattrintsize.h5 PASSED -Testing h5dump --enable-error-stack tscalarintattrsize.h5 PASSED -Testing h5dump --enable-error-stack tintsattrs.h5 PASSED -Testing h5dump --enable-error-stack tscalarstring.h5 PASSED -Testing h5dump --enable-error-stack tgroup.h5 PASSED -Testing h5dump --enable-error-stack --group=/g2 --group / -g /y tgroup PASSED -Testing h5dump --enable-error-stack tdset.h5 PASSED -Testing h5dump --enable-error-stack -H -d dset1 -d /dset2 --dataset=ds PASSED -Testing h5dump --enable-error-stack tattr.h5 PASSED -Testing h5dump --enable-error-stack -a /\/attr1 --attribute /attr4 --a PASSED -Testing h5dump --enable-error-stack -N /\/attr1 --any_path /attr4 --an PASSED -Testing h5dump --enable-error-stack --header -a /attr2 --attribute=/at PASSED -Testing h5dump --enable-error-stack tattr4_be.h5 PASSED -Testing h5dump --enable-error-stack tnamed_dtype_attr.h5 PASSED -Testing h5dump --enable-error-stack tslink.h5 PASSED -Testing h5dump --enable-error-stack tudlink.h5 PASSED -Testing h5dump --enable-error-stack -l slink2 tslink.h5 PASSED -Testing h5dump --enable-error-stack -N slink2 tslink.h5 PASSED -Testing h5dump --enable-error-stack -l udlink2 tudlink.h5 PASSED -Testing h5dump --enable-error-stack -d /slink1 tslink.h5 PASSED -Testing h5dump --enable-error-stack thlink.h5 PASSED -Testing h5dump --enable-error-stack -d /g1/dset2 --dataset /dset1 --da PASSED -Testing h5dump --enable-error-stack -d /g1/g1.1/dset3 --dataset /g1/ds PASSED -Testing h5dump --enable-error-stack -g /g1 thlink.h5 PASSED -Testing h5dump --enable-error-stack -N /g1 thlink.h5 PASSED -Testing h5dump --enable-error-stack -d /dset1 -g /g2 -d /g1/dset2 thli PASSED -Testing h5dump --enable-error-stack -N /dset1 -N /g2 -N /g1/dset2 thli PASSED -Testing h5dump --enable-error-stack tcompound.h5 PASSED -Testing h5dump --enable-error-stack -t /type1 --datatype /type2 --data PASSED -Testing h5dump --enable-error-stack -N /type1 --any_path /type2 --any_ PASSED -Testing h5dump --enable-error-stack -t /#6632 -g /group2 tcompound.h5 PASSED -Testing h5dump --enable-error-stack tcompound_complex.h5 PASSED -Testing h5dump --enable-error-stack tcompound_complex2.h5 PASSED -Testing h5dump --enable-error-stack tbitnopaque.h5 PASSED -Testing h5dump --enable-error-stack tnestedcomp.h5 PASSED -Testing h5dump --enable-error-stack tnestedcmpddt.h5 PASSED -Testing h5dump --enable-error-stack tall.h5 PASSED -Testing h5dump --enable-error-stack --header -g /g1/g1.1 -a attr2 tall PASSED -Testing h5dump --enable-error-stack -d /g2/dset2.1 -l /g1/g1.2/g1.2.1/ PASSED -Testing h5dump --enable-error-stack -N /g2/dset2.1 -N /g1/g1.2/g1.2.1/ PASSED -Testing h5dump --enable-error-stack -a attr1 tall.h5 PASSED -Testing h5dump --enable-error-stack -N attr1 tall.h5 PASSED -Testing h5dump --enable-error-stack tloop.h5 PASSED -Testing h5dump --enable-error-stack tstr.h5 PASSED -Testing h5dump --enable-error-stack tstr2.h5 PASSED -Testing h5dump --enable-error-stack tsaf.h5 PASSED -Testing h5dump --enable-error-stack tvldtypes1.h5 PASSED -Testing h5dump --enable-error-stack tvldtypes2.h5 PASSED -Testing h5dump --enable-error-stack tvldtypes3.h5 PASSED -Testing h5dump --enable-error-stack tvldtypes4.h5 PASSED -Testing h5dump --enable-error-stack tvldtypes5.h5 PASSED -Testing h5dump --enable-error-stack tvlstr.h5 PASSED -Testing h5dump --enable-error-stack tvlenstr_array.h5 PASSED -Testing h5dump --enable-error-stack tarray1.h5 PASSED -Testing h5dump --enable-error-stack -R tarray1_big.h5 PASSED -Testing h5dump --enable-error-stack tarray2.h5 PASSED -Testing h5dump --enable-error-stack tarray3.h5 PASSED -Testing h5dump --enable-error-stack tarray4.h5 PASSED -Testing h5dump --enable-error-stack tarray5.h5 PASSED -Testing h5dump --enable-error-stack tarray6.h5 PASSED -Testing h5dump --enable-error-stack tarray7.h5 PASSED -Testing h5dump --enable-error-stack tarray8.h5 PASSED -Testing h5dump --enable-error-stack -H -d Dataset1 tarray2.h5 tarray3. PASSED -Testing h5dump --enable-error-stack tempty.h5 PASSED -Testing h5dump --enable-error-stack tgrp_comments.h5 PASSED -Testing h5dump --enable-error-stack --filedriver=split tsplit_file PASSED -Testing h5dump --enable-error-stack --filedriver=family tfamily%05d.h5 PASSED -Testing h5dump --enable-error-stack --filedriver=multi tmulti PASSED -Testing h5dump --enable-error-stack -w157 tlarge_objname.h5 PASSED -Testing h5dump --enable-error-stack -A tall.h5 PASSED -Testing h5dump --enable-error-stack -A 0 tall.h5 PASSED -Testing h5dump --enable-error-stack -A -r tall.h5 PASSED -Testing h5dump --enable-error-stack --dataset=/g1/g1.1/dset1.1.1 --sta PASSED -Testing h5dump --enable-error-stack -d /g1/g1.1/dset1.1.2[0;2;10;] tal PASSED -Testing h5dump --enable-error-stack -d /dset1[1,1;;;] tdset.h5 PASSED -Testing h5dump --enable-error-stack --no-compact-subset -d AHFINDERDIR PASSED -Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 2,2,2 PASSED -Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -c 1,1,1 PASSED -Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,2 PASSED -Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED -Testing h5dump --enable-error-stack -d FourDimInts -s 0,0,0,0 -S 2,2,1 PASSED -Testing h5dump --enable-error-stack -r tchar.h5 PASSED -Testing h5dump --enable-error-stack charsets.h5 PASSED -Testing h5dump --enable-error-stack -H -B -d dset tfcontents1.h5 PASSED -Testing h5dump --enable-error-stack -B tfcontents2.h5 PASSED -Testing h5dump --enable-error-stack --boot-block tfcontents2.h5 PASSED -Testing h5dump --enable-error-stack --superblock tfcontents2.h5 PASSED -Testing h5dump --enable-error-stack -p -d bogus tfcontents1.h5 PASSED -Testing h5dump --enable-error-stack -n tfcontents1.h5 PASSED -Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=asc PASSED -Testing h5dump --enable-error-stack -n --sort_by=name --sort_order=des PASSED -Testing h5dump --enable-error-stack -n 1 --sort_order=ascending tall.h PASSED -Testing h5dump --enable-error-stack -n 1 --sort_order=descending tall. PASSED -Testing h5dump --enable-error-stack -H -p -d compact tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d contiguous tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d chunked tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d external tfilters.h5 PASSED -Testing h5dump --enable-error-stack -p tfvalues.h5 PASSED -Testing h5dump --enable-error-stack tattr2.h5 PASSED -Testing h5dump --enable-error-stack -e tstr3.h5 PASSED -Testing h5dump --enable-error-stack tstr3.h5 PASSED -Testing h5dump --enable-error-stack -r -d str4 tstr3.h5 PASSED -Testing h5dump --enable-error-stack taindices.h5 PASSED -Testing h5dump --enable-error-stack -y taindices.h5 PASSED -Testing h5dump --enable-error-stack -d 1d -s 1 -S 10 -c 2 -k 3 taindic PASSED -Testing h5dump --enable-error-stack -d 2d -s 1,2 -S 3,3 -c 3,2 -k 2,2 PASSED -Testing h5dump --enable-error-stack -d 3d -s 0,1,2 -S 1,3,3 -c 2,2,2 - PASSED -Testing h5dump --enable-error-stack -d 4d -s 0,0,1,2 -c 2,2,3,2 -S 1,1 PASSED -Testing h5dump --enable-error-stack -d 1d -s 1,3 taindices.h5 PASSED -Testing h5dump --enable-error-stack -d 1d -c 1,3 taindices.h5 PASSED -Testing h5dump --enable-error-stack -d 1d -S 1,3 taindices.h5 PASSED -Testing h5dump --enable-error-stack -d 1d -k 1,3 taindices.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d szip tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d deflate tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d shuffle tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d fletcher32 tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d nbit tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d scaleoffset tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d all tfilters.h5 PASSED -Testing h5dump --enable-error-stack -H -p -d myfilter tfilters.h5 PASSED -Testing h5dump --enable-error-stack -d deflate -d shuffle -d fletcher3 PASSED -Testing h5dump --enable-error-stack tlonglinks.h5 PASSED -Testing h5dump --enable-error-stack -d dset4gb -s 4294967284 -c 22 tbi PASSED -Testing h5dump --enable-error-stack thyperslab.h5 PASSED -Testing h5dump --enable-error-stack tnullspace.h5 PASSED -Testing h5dump -p --enable-error-stack tgrpnullspace.h5 PASSED -Testing h5dump --enable-error-stack zerodim.h5 PASSED -Testing h5dump --enable-error-stack tvms.h5 PASSED -Testing h5dump --enable-error-stack -d integer -o out1.bin -b LE tbina PASSED -Testing h5dump --enable-error-stack -d /g2/dset2 -b -o tstr2bin2.txt t PASSED -Testing h5dump --enable-error-stack -d /g6/dset6 -b -o tstr2bin6.txt t PASSED -Testing h5dump --enable-error-stack -d integer -o out1.bin -b tbinary. PASSED - Running h5import out1.bin -c out3.h5import -o out1.h5 PASSED - Running h5diff tbinary.h5 out1.h5 /integer /integer PASSED - Running h5import out1.bin -c tbin1.ddl -o out1D.h5 PASSED - Running h5diff tbinary.h5 out1D.h5 /integer /integer PASSED -Testing h5dump --enable-error-stack -b BE -d float -o out2.bin tbinary PASSED -Testing h5dump --enable-error-stack -d integer -o out3.bin -b NATIVE t PASSED - Running h5import out3.bin -c out3.h5import -o out3.h5 PASSED - Running h5diff tbinary.h5 out3.h5 /integer /integer PASSED - Running h5import out3.bin -c tbin3.ddl -o out3D.h5 PASSED - Running h5diff tbinary.h5 out3D.h5 /integer /integer PASSED -Testing h5dump --enable-error-stack -d double -b FILE -o out4.bin tbin PASSED -Testing h5dump --enable-error-stack tdatareg.h5 PASSED -Testing h5dump --enable-error-stack -R tdatareg.h5 PASSED -Testing h5dump --enable-error-stack tattrreg.h5 PASSED -Testing h5dump --enable-error-stack -R tattrreg.h5 PASSED -Testing h5dump --enable-error-stack -d /Dataset1 -s 0 -R -y -o tbinreg PASSED -Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED -Testing h5dump --enable-error-stack --group=1 --sort_by=creation_order PASSED -Testing h5dump --enable-error-stack -g 2 -q name -z ascending tordergr PASSED -Testing h5dump --enable-error-stack -g 2 -q name -z descending torderg PASSED -Testing h5dump --enable-error-stack -q creation_order tordergr.h5 PASSED -Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=asc PASSED -Testing h5dump --enable-error-stack -H --sort_by=name --sort_order=des PASSED -Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED -Testing h5dump --enable-error-stack -H --sort_by=creation_order --sort PASSED -Testing h5dump --enable-error-stack --sort_by=name --sort_order=ascend PASSED -Testing h5dump --enable-error-stack --sort_by=name --sort_order=descen PASSED -Testing h5dump --enable-error-stack -m %.7f tfpformat.h5 PASSED -Testing h5dump --enable-error-stack textlinksrc.h5 PASSED -Testing h5dump --enable-error-stack textlinkfar.h5 PASSED -Testing h5dump --enable-error-stack textlink.h5 PASSED -Testing h5dump --enable-error-stack filter_fail.h5 PASSED -Testing h5dump --enable-error-stack -y -o tall-6.txt -d /g1/g1.1/dset1 PASSED -Testing h5dump --enable-error-stack tgroup.h5 non_existing.h5 PASSED -All h5dump tests passed. -7.70user 10.66system 0:16.28elapsed 112%CPU (0avgtext+0avgdata 11872maxresident)k -0inputs+271072outputs (0major+3390203minor)pagefaults 0swaps - -Finished testing testh5dump.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -===Serial tests in h5dump ended Mon May 14 21:12:08 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5dump' -Making check in misc -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5debug - CCLD h5repart - CCLD h5mkgrp - CCLD h5repart_gentest - CCLD repart_test - CCLD talign -gmake -j 8 h5repart_gentest talign repart_test testh5repart.sh testh5mkgrp.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5repart_gentest' is up to date. -gmake[3]: `talign' is up to date. -gmake[3]: `repart_test' is up to date. -gmake[3]: `testh5repart.sh' is up to date. -gmake[3]: `testh5mkgrp.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in misc begin Mon May 14 21:12:09 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -============================ -Testing h5repart_gentest -Testing talign -============================ -============================ -Testing testh5mkgrp.sh -Testing testh5repart.sh -============================ - talign Test Log -============================ -Testing alignment in compound datatypes PASSED -0.04user 0.02system 0:00.06elapsed 103%CPU (0avgtext+0avgdata 6908maxresident)k -0inputs+56outputs (0major+9712minor)pagefaults 0swaps - -Finished testing talign -============================ -============================ - h5repart_gentest Test Log -============================ - PASSED -0.04user 0.02system 0:00.06elapsed 102%CPU (0avgtext+0avgdata 6904maxresident)k -0inputs+200outputs (0major+8682minor)pagefaults 0swaps - -Finished testing h5repart_gentest -============================ -Finished testing testh5repart.sh -============================ -testh5repart.sh Test Log -============================ -Testing ./h5repart -m 20000 family_file%05d.h5 fst_family%05d.h5 PASSED -Testing ./h5repart -m 5k family_file%05d.h5 scd_family%05d.h5 PASSED -Testing ./h5repart -m 20000 -family_to_sec2 family_file%05d.h5 family_ PASSED -Testing repart_test PASSED - -All h5repart tests passed. -0.18user 0.31system 0:00.39elapsed 128%CPU (0avgtext+0avgdata 6928maxresident)k -0inputs+400outputs (0major+102046minor)pagefaults 0swaps - -Finished testing testh5repart.sh -============================ -============================ -Finished testing testh5mkgrp.sh -============================ -testh5mkgrp.sh Test Log -============================ -Testing h5mkgrp -h PASSED -Testing h5mkgrp h5mkgrp_single.h5 single PASSED -Verifying h5ls file structure h5mkgrp_single.h5 PASSED -Testing h5mkgrp -v h5mkgrp_single_v.h5 single PASSED -Verifying h5ls file structure h5mkgrp_single_v.h5 PASSED -Testing h5mkgrp -p h5mkgrp_single_p.h5 single PASSED -Verifying h5ls file structure h5mkgrp_single_p.h5 PASSED -Testing h5mkgrp -l h5mkgrp_single_l.h5 latest PASSED -Verifying h5ls file structure h5mkgrp_single_l.h5 PASSED -Testing h5mkgrp h5mkgrp_several.h5 one two PASSED -Verifying h5ls file structure h5mkgrp_several.h5 PASSED -Testing h5mkgrp -v h5mkgrp_several_v.h5 one two PASSED -Verifying h5ls file structure h5mkgrp_several_v.h5 PASSED -Testing h5mkgrp -p h5mkgrp_several_p.h5 one two PASSED -Verifying h5ls file structure h5mkgrp_several_p.h5 PASSED -Testing h5mkgrp -l h5mkgrp_several_l.h5 one two PASSED -Verifying h5ls file structure h5mkgrp_several_l.h5 PASSED -Testing h5mkgrp -p h5mkgrp_nested_p.h5 /one/two PASSED -Verifying h5ls file structure h5mkgrp_nested_p.h5 PASSED -Testing h5mkgrp -lp h5mkgrp_nested_lp.h5 /one/two PASSED -Verifying h5ls file structure h5mkgrp_nested_lp.h5 PASSED -Testing h5mkgrp -p h5mkgrp_nested_mult_p.h5 /one/two /three/four PASSED -Verifying h5ls file structure h5mkgrp_nested_mult_p.h5 PASSED -Testing h5mkgrp -lp h5mkgrp_nested_mult_lp.h5 /one/two /three/four PASSED -Verifying h5ls file structure h5mkgrp_nested_mult_lp.h5 PASSED -All h5mkgrp tests passed. -0.51user 0.97system 0:01.23elapsed 120%CPU (0avgtext+0avgdata 7296maxresident)k -0inputs+1888outputs (0major+294489minor)pagefaults 0swaps - -Finished testing testh5mkgrp.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -===Serial tests in misc ended Mon May 14 21:12:10 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/misc' -Making check in h5import -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5import - CCLD h5importtest -gmake -j 8 h5importtest -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5importtest' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5import begin Mon May 14 21:12:11 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5importtest -============================ -Testing h5importtestutil.sh -============================ - h5importtest Test Log -============================ -0.03user 0.02system 0:00.06elapsed 104%CPU (0avgtext+0avgdata 6912maxresident)k -0inputs+168outputs (0major+7853minor)pagefaults 0swaps - -Finished testing h5importtest -============================ -Finished testing h5importtestutil.sh -============================ -h5importtestutil.sh Test Log -============================ - -============================== -H5IMPORT tests started -============================== -Testing ASCII I32 rank 3 - Output BE PASSED -Testing ASCII I16 rank 3 - Output LE - CHUNKED - extended PASSED -Testing ASCII I8 - rank 3 - Output I8 LE-Chunked+Extended+Compressed PASSED -Testing ASCII UI16 - rank 2 - Output LE+Chunked+Compressed PASSED -Testing ASCII UI32 - rank 3 - Output BE PASSED -Testing ASCII F32 - rank 3 - Output LE PASSED -Testing ASCII F64 - rank 3 - Output BE + CHUNKED+Extended+Compressed PASSED -Testing BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compressed PASSED -Testing H5DUMP-BINARY F64 - rank 3 - Output LE+CHUNKED+Extended+Compre PASSED -Testing BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Compresse PASSED -Testing H5DUMP-BINARY I8 - rank 3 - Output I16LE + Chunked+Extended+Co PASSED -Testing BINARY I16 - rank 3 - Output order LE + CHUNKED + extended PASSED -Testing H5DUMP-BINARY I16 - rank 3 - Output order LE + CHUNKED + exten PASSED -Testing BINARY I32 - rank 3 - Output BE + CHUNKED PASSED -Testing H5DUMP-BINARY I32 - rank 3 - Output BE + CHUNKED PASSED -Testing BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED -Testing H5DUMP-BINARY UI16 - rank 3 - Output byte BE + CHUNKED PASSED -Testing BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED -Testing H5DUMP-BINARY UI32 - rank 3 - Output LE + CHUNKED PASSED -Testing STR PASSED -Testing H5DUMP-STR PASSED -Testing BINARY I8 CR LF EOF PASSED -Testing H5DUMP-BINARY I8 CR LF EOF PASSED -Testing ASCII F64 - rank 1 - INPUT-CLASS TEXTFPE PASSED -Testing Binary Subset FP PASSED -Testing Binary Subset INT PASSED -Testing Binary Subset UINT PASSED -All h5import tests passed. -1.22user 2.10system 0:02.75elapsed 121%CPU (0avgtext+0avgdata 7384maxresident)k -0inputs+2992outputs (0major+675526minor)pagefaults 0swaps - -Finished testing h5importtestutil.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -===Serial tests in h5import ended Mon May 14 21:12:13 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5import' -Making check in h5repack -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5repack - CCLD h5repacktst - CCLD testh5repack_detect_szip -gmake -j 8 h5repacktst h5repack.sh h5repack_plugin.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5repacktst' is up to date. -gmake[3]: `h5repack.sh' is up to date. -gmake[3]: `h5repack_plugin.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5repack begin Mon May 14 21:12:14 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5repacktst -============================ -Testing h5repack_plugin.sh -Finished testing h5repack_plugin.sh -============================ -h5repack_plugin.sh Test Log -============================ -plugin_version_test h5repack_layout.h5 -v -f UD=260,0,4,9,1,8,21 -Testing h5repack -v -f UD=260,0,4,9,1,8,21 PASSED - PASSED -Verifying h5dump output -pH out-plugin_version_test.h5repack_layout.h5 PASSED -plugin_test h5repack_layout.h5 -v -f UD=257,0,1,9 -Testing h5repack -v -f UD=257,0,1,9 PASSED - PASSED -Verifying h5dump output -pH out-plugin_test.h5repack_layout.h5 PASSED -All Plugin API tests passed. -0.13user 0.20system 0:00.34elapsed 100%CPU (0avgtext+0avgdata 7636maxresident)k -0inputs+1192outputs (0major+61150minor)pagefaults 0swaps - -Finished testing h5repack_plugin.sh -============================ -============================ -============================ - h5repacktst Test Log -============================ -Testing h5repack: -Testing generating files for testing PASSED -Testing copy of datasets (fill values) PASSED -Testing copy of datasets (all datatypes) PASSED -Testing copy of datasets (attributes) PASSED -Testing copy of datasets (hardlinks) PASSED -Testing copy of allocation early file PASSED -Testing adding deflate filter PASSED -Testing adding deflate filter to all PASSED -Testing adding szip filter -SKIP- -Testing adding szip filter to all -SKIP- -Testing addding shuffle filter PASSED -Testing addding shuffle filter to all PASSED -Testing adding checksum filter PASSED -Testing adding checksum filter to all PASSED -Testing filter queue fletcher, shuffle, deflate, szip PASSED -Testing adding layout chunked PASSED -Testing adding layout chunked to all PASSED -Testing adding layout contiguous PASSED -Testing adding layout contiguous to all PASSED -Testing adding layout compact PASSED -Testing adding layout compact to all PASSED -Testing layout compact to contiguous conversion PASSED -Testing layout compact to chunk conversion PASSED -Testing layout compact to compact conversion PASSED -Testing layout contiguous to compact conversion PASSED -Testing layout contiguous to chunk conversion PASSED -Testing layout contiguous to contiguous conversion PASSED -Testing layout chunked to compact conversion PASSED -Testing layout chunked to contiguous conversion PASSED -Testing layout chunked to chunk conversion PASSED -Testing copy of szip filter -SKIP- -Testing removing szip filter -SKIP- -Testing copy of deflate filter PASSED -Testing removing deflate filter PASSED -Testing copy of shuffle filter PASSED -Testing removing shuffle filter PASSED -Testing copy of fletcher filter PASSED -Testing removing fletcher filter PASSED -Testing copy of nbit filter PASSED -Testing removing nbit filter PASSED -Testing adding nbit filter PASSED -Testing copy of scaleoffset filter PASSED -Testing removing scaleoffset filter PASSED -Testing adding scaleoffset filter PASSED -Testing filter conversion from deflate to szip -SKIP- -Testing filter conversion from szip to deflate -SKIP- -Testing removing all filters -SKIP- -Testing big file PASSED -Testing external datasets PASSED -Testing file with userblock PASSED -Testing latest file format options PASSED -Testing several global filters PASSED -Testing file with added userblock PASSED -Testing file with aligment PASSED -Testing file with committed datatypes PASSED -Testing metadata block size option PASSED -All h5repack tests passed. -4.51user 0.38system 0:05.24elapsed 93%CPU (0avgtext+0avgdata 255920maxresident)k -0inputs+12328outputs (0major+164570minor)pagefaults 0swaps - -Finished testing h5repacktst -============================ -============================ -Testing h5repack.sh -Finished testing h5repack.sh -============================ -h5repack.sh Test Log -============================ -Testing h5repack -h PASSED -fill h5repack_fill.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_fill.h5 out-fill.h5repack_fill.h5 PASSED -objs h5repack_objs.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_objs.h5 out-objs.h5repack_objs.h5 PASSED -attr h5repack_attr.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_attr.h5 out-attr.h5repack_attr.h5 PASSED -hlink h5repack_hlink.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_hlink.h5 out-hlink.h5repack_hlink.h5 PASSED -layout h5repack_layout.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_layout.h5 out-layout.h5repack_layout. PASSED -early h5repack_early.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_early.h5 out-early.h5repack_early.h5 PASSED -nested_8bit_enum h5repack_nested_8bit_enum_deflated.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_nested_8bit_enum_deflated.h5 out-nest PASSED -gzip_individual h5repack_layout.h5 -f dset1:GZIP=1 -l dset1:CHUNK=20x10 -Testing h5repack -f dset1:GZIP=1 -l dset1:CHUNK=20x10 PASSED -Verifying h5diff output h5repack_layout.h5 out-gzip_individual.h5repac PASSED -gzip_all h5repack_layout.h5 -f GZIP=1 -Testing h5repack -f GZIP=1 PASSED -Verifying h5diff output h5repack_layout.h5 out-gzip_all.h5repack_layou PASSED -Testing h5repack h5repack_layout.h5 -f dset2:SZIP=8,EC -l dset2:CHUNK= -SKIP- -Testing h5repack h5repack_layout.h5 -f SZIP=8,NN -SKIP- -shuffle_individual h5repack_layout.h5 -f dset2:SHUF -l dset2:CHUNK=20x10 -Testing h5repack -f dset2:SHUF -l dset2:CHUNK=20x10 PASSED -Verifying h5diff output h5repack_layout.h5 out-shuffle_individual.h5re PASSED -shuffle_all h5repack_layout.h5 -f SHUF -Testing h5repack -f SHUF PASSED -Verifying h5diff output h5repack_layout.h5 out-shuffle_all.h5repack_la PASSED -fletcher_individual h5repack_layout.h5 -f dset2:FLET -l dset2:CHUNK=20x10 -Testing h5repack -f dset2:FLET -l dset2:CHUNK=20x10 PASSED -Verifying h5diff output h5repack_layout.h5 out-fletcher_individual.h5r PASSED -fletcher_all h5repack_layout.h5 -f FLET -Testing h5repack -f FLET PASSED -Verifying h5diff output h5repack_layout.h5 out-fletcher_all.h5repack_l PASSED -Testing h5repack h5repack_layout.h5 -f dset2:SHUF -f dset2:FLET -f dse -SKIP- -Testing h5repack -v -f /dset_deflate:GZIP=9 PASSED -Verifying h5diff output h5repack_filters.h5 out-gzip_verbose_filters.h PASSED -Verifying output from h5repack -v -f /dset_deflate:GZIP=9 PASSED -Testing h5repack h5repack_szip.h5 -SKIP- -Testing h5repack h5repack_szip.h5 --filter=dset_szip:NONE -SKIP- -deflate_copy h5repack_deflate.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_deflate.h5 out-deflate_copy.h5repack_ PASSED -deflate_remove h5repack_deflate.h5 -f dset_deflate:NONE -Testing h5repack -f dset_deflate:NONE PASSED -Verifying h5diff output h5repack_deflate.h5 out-deflate_remove.h5repac PASSED -shuffle_copy h5repack_shuffle.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_shuffle.h5 out-shuffle_copy.h5repack_ PASSED -shuffle_remove h5repack_shuffle.h5 -f dset_shuffle:NONE -Testing h5repack -f dset_shuffle:NONE PASSED -Verifying h5diff output h5repack_shuffle.h5 out-shuffle_remove.h5repac PASSED -fletcher_copy h5repack_fletcher.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_fletcher.h5 out-fletcher_copy.h5repac PASSED -fletcher_remove h5repack_fletcher.h5 -f dset_fletcher32:NONE -Testing h5repack -f dset_fletcher32:NONE PASSED -Verifying h5diff output h5repack_fletcher.h5 out-fletcher_remove.h5rep PASSED -nbit_copy h5repack_nbit.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_nbit.h5 out-nbit_copy.h5repack_nbit.h PASSED -nbit_remove h5repack_nbit.h5 -f dset_nbit:NONE -Testing h5repack -f dset_nbit:NONE PASSED -Verifying h5diff output h5repack_nbit.h5 out-nbit_remove.h5repack_nbit PASSED -nbit_add h5repack_nbit.h5 -f dset_int31:NBIT -Testing h5repack -f dset_int31:NBIT PASSED -Verifying h5diff output h5repack_nbit.h5 out-nbit_add.h5repack_nbit.h5 PASSED -scale_copy h5repack_soffset.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_soffset.h5 out-scale_copy.h5repack_so PASSED -scale_add h5repack_soffset.h5 -f dset_none:SOFF=31,IN -Testing h5repack -f dset_none:SOFF=31,IN PASSED -Verifying h5diff output h5repack_soffset.h5 out-scale_add.h5repack_sof PASSED -scale_remove h5repack_soffset.h5 -f dset_scaleoffset:NONE -Testing h5repack -f dset_scaleoffset:NONE PASSED -Verifying h5diff output h5repack_soffset.h5 out-scale_remove.h5repack_ PASSED -Testing h5repack h5repack_filters.h5 -f NONE -SKIP- -Testing h5repack h5repack_deflate.h5 -f dset_deflate:SZIP=8,NN -SKIP- -Testing h5repack h5repack_szip.h5 -f dset_szip:GZIP=1 -SKIP- -Testing h5repack -f GZIP=1 -m 1024 PASSED -Verifying h5dump output -f GZIP=1 -m 1024 PASSED -deflate_file h5repack_layout.h5 -e h5repack.info -Testing h5repack -e h5repack.info PASSED -Verifying h5diff output h5repack_layout.h5 out-deflate_file.h5repack_l PASSED -Testing h5repack -L PASSED -Verifying h5dump output -L PASSED -Testing h5repack --layout dset2:CHUNK=20x10 PASSED -Verifying h5diff output h5repack_layout.h5 out-dset2_chunk_20x10.h5rep PASSED -Verifying a dataset layout PASSED -Testing h5repack -l CHUNK=20x10 PASSED -Verifying h5diff output h5repack_layout.h5 out-chunk_20x10.h5repack_la PASSED -Verifying layouts -Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED -Testing h5repack -l dset2:CONTI PASSED -Verifying h5diff output h5repack_layout.h5 out-dset2_conti.h5repack_la PASSED -Verifying a dataset layout PASSED -Testing h5repack -l CONTI PASSED -Verifying h5diff output h5repack_layout.h5 out-conti.h5repack_layout.h PASSED -Verifying layouts -Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED -Testing h5repack -l dset2:COMPA PASSED -Verifying h5diff output h5repack_layout.h5 out-dset2_compa.h5repack_la PASSED -Verifying a dataset layout PASSED -Testing h5repack -l COMPA PASSED -Verifying h5diff output h5repack_layout.h5 out-compa.h5repack_layout.h PASSED -Verifying layouts -Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED -Testing h5repack -l dset_compact:CONTI PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_compa_conti.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_compact:CHUNK=2x5 PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_compa_chunk.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_compact:COMPA PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_compa_compa.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_contiguous:COMPA PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_conti_compa.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_contiguous:CHUNK=3x6 PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_conti_chunk.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_contiguous:CONTI PASSED -Verifying h5diff output h5repack_layout.h5 out-dset_conti_conti.h5repa PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_chunk:COMPA PASSED -Verifying h5diff output h5repack_layout.h5 out-chunk_compa.h5repack_la PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_chunk:CONTI PASSED -Verifying h5diff output h5repack_layout.h5 out-chunk_conti.h5repack_la PASSED -Verifying a dataset layout PASSED -Testing h5repack -l dset_chunk:CHUNK=18x13 PASSED -Verifying h5diff output h5repack_layout.h5 out-chunk_18x13.h5repack_la PASSED -Verifying a dataset layout PASSED -Testing h5repack -l contig_small:COMPA PASSED -Verifying h5diff output h5repack_layout2.h5 out-contig_small_compa.h5r PASSED -Verifying a dataset layout PASSED -Testing h5repack -l chunked_small_fixed:COMPA PASSED -Verifying h5diff output h5repack_layout2.h5 out-contig_small_fixed_com PASSED -Verifying a dataset layout PASSED -Testing h5repack -l chunk_unlimit1:CHUNK=100x300 PASSED -Verifying h5diff output h5repack_layout3.h5 out-chunk2chunk.h5repack_l PASSED -Verifying a dataset layout PASSED -Testing h5repack -l chunk_unlimit1:CONTI PASSED -Verifying h5diff output h5repack_layout3.h5 out-chunk2conti.h5repack_l PASSED -Verifying a dataset layout PASSED -Testing h5repack -l chunk_unlimit1:COMPA PASSED -Verifying h5diff output h5repack_layout3.h5 out-chunk2compa.h5repack_l PASSED -Verifying a dataset layout PASSED -Testing h5repack -f chunk_unlimit1:NONE PASSED -Verifying h5diff output h5repack_layout3.h5 out-error1.h5repack_layout PASSED -Verifying a dataset layout PASSED -Testing h5repack -f chunk_unlimit2:NONE PASSED -Verifying h5diff output h5repack_layout3.h5 out-error2.h5repack_layout PASSED -Verifying a dataset layout PASSED -Testing h5repack -f chunk_unlimit3:NONE PASSED -Verifying h5diff output h5repack_layout3.h5 out-error3.h5repack_layout PASSED -Verifying a dataset layout PASSED -error4 h5repack_layout3.h5 -f NONE -Testing h5repack -f NONE PASSED -Verifying h5diff output h5repack_layout3.h5 out-error4.h5repack_layout PASSED -Testing h5repack -l chunk_unlimit2:CONTI PASSED -Verifying h5diff output h5repack_layout3.h5 out-ckdim_biger.h5repack_l PASSED -Verifying a dataset layout PASSED -Testing h5repack -l chunk_unlimit3:CONTI PASSED -Verifying h5diff output h5repack_layout3.h5 out-ckdim_smaller.h5repack PASSED -Verifying a dataset layout PASSED -native_fill h5repack_fill.h5 -n -Testing h5repack -n PASSED -Verifying h5diff output h5repack_fill.h5 out-native_fill.h5repack_fill PASSED -native_attr h5repack_attr.h5 -n -Testing h5repack -n PASSED -Verifying h5diff output h5repack_attr.h5 out-native_attr.h5repack_attr PASSED -Testing h5repack --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --n PASSED -Verifying h5diff output h5repack_layout.h5 out-layout_long_switches.h5 PASSED -Verifying layouts -Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED -Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED -Verifying h5diff output h5repack_layout.h5 out-layout_short_switches.h PASSED -Verifying layouts -Testing /mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack/../h5dump/h5dum PASSED -global_filters h5repack_layout.h5 --filter GZIP=1 --filter SHUF -Testing h5repack --filter GZIP=1 --filter SHUF PASSED -Verifying h5diff output h5repack_layout.h5 out-global_filters.h5repack PASSED -Testing h5repack -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[: PASSED -Verifying h5diff output h5repack_layout.h5 out-old_style_layout_short_ PASSED -add_userblock h5repack_objs.h5 -u ublock.bin -b 2048 -Testing h5repack -u ublock.bin -b 2048 PASSED -Verifying h5diff output h5repack_objs.h5 out-add_userblock.h5repack_ob PASSED -add_alignment h5repack_objs.h5 -t 1 -a 1 -Testing h5repack -t 1 -a 1 PASSED -Verifying h5diff output h5repack_objs.h5 out-add_alignment.h5repack_ob PASSED -upgrade_layout h5repack_layouto.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_layouto.h5 out-upgrade_layout.h5repac PASSED -gt_mallocsize h5repack_objs.h5 -f GZIP=1 -Testing h5repack -f GZIP=1 PASSED -Verifying h5diff output h5repack_objs.h5 out-gt_mallocsize.h5repack_ob PASSED -committed_dt h5repack_named_dtypes.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_named_dtypes.h5 out-committed_dt.h5re PASSED -Testing h5repack PASSED -Verifying h5diff output tfamily%05d.h5 out-family.tfamily%05d.h5 PASSED -bug1814 h5repack_refs.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_refs.h5 out-bug1814.h5repack_refs.h5 PASSED -HDFFV-5932 h5repack_attr_refs.h5 -Testing h5repack PASSED -Verifying h5diff output h5repack_attr_refs.h5 out-HDFFV-5932.h5repack_ PASSED -HDFFV-7840 h5diff_attr1.h5 -Testing h5repack PASSED -Verifying h5diff output h5diff_attr1.h5 out-HDFFV-7840.h5diff_attr1.h5 PASSED -Testing h5repack -M 8192 PASSED -Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED -Testing h5repack -M 8192 PASSED -Verifying h5diff output h5repack_layout.h5 out-meta_short.h5repack_lay PASSED -Verify the sizes of both output files (27280 vs 27488) PASSED -Testing h5repack --metadata_block_size=8192 PASSED -Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED -Testing h5repack --metadata_block_size=8192 PASSED -Verifying h5diff output h5repack_layout.h5 out-meta_long.h5repack_layo PASSED -Verify the sizes of both output files (27280 vs 27488) PASSED -All h5repack tests passed. -3.64user 4.64system 0:07.26elapsed 114%CPU (0avgtext+0avgdata 11664maxresident)k -0inputs+18840outputs (0major+1441505minor)pagefaults 0swaps - -Finished testing h5repack.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -===Serial tests in h5repack ended Mon May 14 21:12:26 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5repack' -Making check in h5jam -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5jam - CCLD h5unjam - CCLD tellub - CCLD h5jamgentest - CCLD getub -gmake -j 8 tellub h5jamgentest getub testh5jam.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `tellub' is up to date. -gmake[3]: `h5jamgentest' is up to date. -gmake[3]: `getub' is up to date. -gmake[3]: `testh5jam.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5jam begin Mon May 14 21:12:27 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing testh5jam.sh -Finished testing testh5jam.sh -============================ -testh5jam.sh Test Log -============================ -Testing h5jam -h PASSED -Testing h5jam -i tall.h5 -u tall.h5 -o tall-tmp.h5 PASSED -Testing h5jam -u u10.txt -i tall.h5 -o ta2.h5 PASSED -Compare ta2.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u511.txt -i tall.h5 -o ta3.h5 PASSED -Compare ta3.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u512.txt -i tall.h5 -o ta4.h5 PASSED -Compare ta4.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u513.txt -i tall.h5 -o ta5.h5 PASSED -Compare ta5.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u10.txt -i ta6.h5 PASSED -Compare ta6.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u511.txt -i ta7.h5 PASSED -Compare ta7.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u512.txt -i ta8.h5 PASSED -Compare ta8.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u513.txt -i ta9.h5 PASSED -Compare ta9.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u10.txt -i twithub.h5 -o tax2.h5 PASSED -Compare tax2.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u511.txt -i twithub.h5 -o tax3.h5 PASSED -Compare tax3.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u512.txt -i twithub.h5 -o tax4.h5 PASSED -Compare tax4.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u513.txt -i twithub.h5 -o tax5.h5 PASSED -Compare tax5.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u10.txt -i twithub513.h5 -o tax6.h5 PASSED -Compare tax6.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u511.txt -i twithub513.h5 -o tax7.h5 PASSED -Compare tax7.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u512.txt -i twithub513.h5 -o tax8.h5 PASSED -Compare tax8.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u513.txt -i twithub513.h5 -o tax9.h5 PASSED -Compare tax9.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u10.txt -i twithub.h5 -o taz2.h5 --clobber PASSED -Compare taz2.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u511.txt -i twithub.h5 -o taz3.h5 --clobber PASSED -Compare taz3.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u512.txt -i twithub.h5 -o taz4.h5 --clobber PASSED -Compare taz4.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u513.txt -i twithub.h5 -o taz5.h5 --clobber PASSED -Compare taz5.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u10.txt -i twithub513.h5 -o taz6.h5 --clobber PASSED -Compare taz6.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u511.txt -i twithub513.h5 -o taz7.h5 --clobber PASSED -Compare taz7.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u512.txt -i twithub513.h5 -o taz8.h5 --clobber PASSED -Compare taz8.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -u u513.txt -i twithub513.h5 -o taz9.h5 --clobber PASSED -Compare taz9.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u10.txt -i tay2.h5 --clobber PASSED -Compare tay2.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u511.txt -i tay3.h5 --clobber PASSED -Compare tay3.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u512.txt -i tay4.h5 --clobber PASSED -Compare tay4.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u513.txt -i tay5.h5 --clobber PASSED -Compare tay5.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u10.txt -i tay6.h5 --clobber PASSED -Compare tay6.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u511.txt -i tay7.h5 --clobber PASSED -Compare tay7.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u512.txt -i tay8.h5 --clobber PASSED -Compare tay8.h5 to ./testfiles/tall.h5 PASSED -Testing jam -u u513.txt -i tay9.h5 --clobber PASSED -Compare tay9.h5 to ./testfiles/tall.h5 PASSED -Testing h5jam -h PASSED -Testing h5unjam -i tai1.h5 -u o10.txt -o taa1.h5 PASSED -Compare taa1.h5 to ./testfiles/tall.h5 PASSED -Testing h5unjam -i tai2.h5 -u o512.txt -o taa2.h5 PASSED -Compare taa2.h5 to ./testfiles/tall.h5 PASSED -Testing h5unjam -i tai3.h5 -o taa3.h5 > uofile PASSED -Compare taa3.h5 to ./testfiles/tall.h5 PASSED -Testing h5unjam -i tai4.h5 -o taa4.h5 > uofile PASSED -Compare taa4.h5 to ./testfiles/tall.h5 PASSED -Testing h5unjam -i taj2.h5 -o tac2.h5 --delete PASSED -Compare tac2.h5 to ./testfiles/tall.h5 PASSED -Testing h5unjam -i taj3.h5 -o tac3.h5 --delete PASSED -Compare tac3.h5 to ./testfiles/tall.h5 PASSED -All h5jam/h5unjam tests passed. -3.01user 4.61system 0:06.54elapsed 116%CPU (0avgtext+0avgdata 7316maxresident)k -0inputs+5448outputs (0major+1433222minor)pagefaults 0swaps - -Finished testing testh5jam.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -===Serial tests in h5jam ended Mon May 14 21:12:33 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5jam' -Making check in h5copy -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5copy - CCLD h5copygentest -gmake -j 8 h5copygentest testh5copy.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5copygentest' is up to date. -gmake[3]: `testh5copy.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5copy begin Mon May 14 21:12:34 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5copygentest -============================ -Testing testh5copy.sh -============================ - h5copygentest Test Log -============================ -0.05user 0.02system 0:00.12elapsed 66%CPU (0avgtext+0avgdata 6924maxresident)k -0inputs+184outputs (0major+9711minor)pagefaults 0swaps - -Finished testing h5copygentest -============================ -Finished testing testh5copy.sh -============================ -testh5copy.sh Test Log -============================ -Test copying various forms of datasets -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple.out.h PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple.ou PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/chunk.out.h5 PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/chunk.out PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compact.out. PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compact.o PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compound.out PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compound. PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/compressed.o PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/compresse PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/named_vl.out PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/named_vl. PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/nested_vl.ou PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/nested_vl PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dset_attr.ou PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dset_attr PASSED -Test copying dataset within group in source file to root of destination -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_top.o PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_to PASSED -Test copying & renaming dataset -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/dsrename.out PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/dsrename. PASSED -Test copying empty, 'full' & 'nested' groups -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_empty.ou PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_empty PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets.ou PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_nested.o PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_neste PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_attr.out PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_attr. PASSED -Test copying dataset within group in source file to group in destination -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_groupTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/simple_group PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/simple_gr PASSED -Test copying & renaming group -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_rename.o PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_renam PASSED -Test copying 'full' group hierarchy into group in destination file -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_reTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/grp_dsets_re PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/grp_dsets PASSED -Test copying objects into group hier. that doesn't exist yet in destination file -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B1_simple. PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B1_simp PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/A_B2_simple2 PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/A_B2_simp PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/C_D_simple.o PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/C_D_simpl PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/E_F_grp_dset PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/E_F_grp_d PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/G_H_grp_nest PASSED -Verifying h5diff output ./testfiles/h5copytst.h5 ./testfiles/G_H_grp_n PASSED -Test copying object and region references -Testing h5copy -f ref -i ./testfiles/h5copy_ref.h5 -o ./testfiles/regi PASSED -Test copying external link directly without -f ext -Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED -Test copying external link directly with -f ext -Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED -Test copying dangling external link (no obj) directly without -f ext -Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED -Test copying dangling external link (no obj) directly with -f ext -Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED -Test copying dangling external link (no file) directly without -f ext -Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED -Test copying dangling external link (no file) directly with -f ext -Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED -Test copying a group contains external links without -f ext -Testing h5copy -v -i ./testfiles/h5copy_extlinks_src.h5 -o ./testfiles PASSED -Test copying a group contains external links with -f ext -Testing h5copy -f ext -i ./testfiles/h5copy_extlinks_src.h5 -o ./testf PASSED -Test copying object into group which doesn't exist, without -p -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/h5copy_misc1 PASSED -Verifying output files ./testfiles/h5copy_misc1.out ./testfiles/h5copy PASSED -Test copying objects to the same file -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile1.ou PASSED -Verifying h5diff output ./testfiles/samefile1.out.h5 ./testfiles/samef PASSED -Testing h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ouTesting h5copy -i ./testfiles/h5copytst.h5 -o ./testfiles/samefile2.ou PASSED -Verifying h5diff output ./testfiles/samefile2.out.h5 ./testfiles/samef PASSED -All h5copy tests passed. -1.04user 1.45system 0:02.15elapsed 115%CPU (0avgtext+0avgdata 7300maxresident)k -0inputs+1992outputs (0major+445647minor)pagefaults 0swaps - -Finished testing testh5copy.sh -============================ -============================ -gmake[5]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -===Serial tests in h5copy ended Mon May 14 21:12:36 CDT 2018=== -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -gmake[2]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5copy' -Making check in h5stat -gmake[2]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake[2]: warning: -jN forced in submake: disabling jobserver mode. - CCLD h5stat - CCLD h5stat_gentest -gmake -j 8 h5stat_gentest testh5stat.sh -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[3]: `h5stat_gentest' is up to date. -gmake[3]: `testh5stat.sh' is up to date. -gmake[3]: Leaving directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake -j 8 check-TESTS -gmake[3]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake[3]: warning: -jN forced in submake: disabling jobserver mode. -gmake[4]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake[4]: warning: -jN forced in submake: disabling jobserver mode. -===Serial tests in h5stat begin Mon May 14 21:12:36 CDT 2018=== -gmake[5]: Entering directory `/mnt/wrk/lrknox/hdf5_hdf5/build/tools/h5stat' -gmake[5]: warning: -jN forced in submake: disabling jobserver mode. -============================ -Testing h5stat_gentest -============================ -Testing testh5stat.sh -============================ - h5stat_gentest Test Log -============================ -1.17user 0.04system 0:01.27elapsed 96%CPU (0avgtext+0avgdata 17172maxresident)k -0inputs+12552outputs (0major+12044minor)pagefaults 0swaps - -Finished testing h5stat_gentest -============================ -gmake[1]: *** [check-recursive] Hangup -gmake[5]: *** [testh5stat.sh.chkexe_] Hangup -make: *** [check-recursive] Hangup -gmake[4]: *** [build-check-s] Hangup -gmake[3]: *** [test] Hangup -gmake[2]: *** [check-am] Hangup diff --git a/build/src/.deps/H5.Plo b/build/src/.deps/H5.Plo deleted file mode 100644 index 29490d8..0000000 --- a/build/src/.deps/H5.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5.lo: ../../src/H5.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5A.Plo b/build/src/.deps/H5A.Plo deleted file mode 100644 index 9d96505..0000000 --- a/build/src/.deps/H5A.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5A.lo: ../../src/H5A.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ - ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5AC.Plo b/build/src/.deps/H5AC.Plo deleted file mode 100644 index 1c35feb..0000000 --- a/build/src/.deps/H5AC.Plo +++ /dev/null @@ -1,386 +0,0 @@ -H5AC.lo: ../../src/H5AC.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACpkg.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Cpkg.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ - ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACpkg.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Cpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Abtree2.Plo b/build/src/.deps/H5Abtree2.Plo deleted file mode 100644 index 951b286..0000000 --- a/build/src/.deps/H5Abtree2.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Abtree2.lo: ../../src/H5Abtree2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Adense.Plo b/build/src/.deps/H5Adense.Plo deleted file mode 100644 index 2ff9bbd..0000000 --- a/build/src/.deps/H5Adense.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Adense.lo: ../../src/H5Adense.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5SMprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5SMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Adeprec.Plo b/build/src/.deps/H5Adeprec.Plo deleted file mode 100644 index 0bfe96c..0000000 --- a/build/src/.deps/H5Adeprec.Plo +++ /dev/null @@ -1,388 +0,0 @@ -H5Adeprec.lo: ../../src/H5Adeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Aint.Plo b/build/src/.deps/H5Aint.Plo deleted file mode 100644 index 505da6e..0000000 --- a/build/src/.deps/H5Aint.Plo +++ /dev/null @@ -1,393 +0,0 @@ -H5Aint.lo: ../../src/H5Aint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Opkg.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Atest.Plo b/build/src/.deps/H5Atest.Plo deleted file mode 100644 index b605e50..0000000 --- a/build/src/.deps/H5Atest.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Atest.lo: ../../src/H5Atest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5B.Plo b/build/src/.deps/H5B.Plo deleted file mode 100644 index f195ffd..0000000 --- a/build/src/.deps/H5B.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5B.lo: ../../src/H5B.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Bpkg.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MFprivate.h: diff --git a/build/src/.deps/H5B2.Plo b/build/src/.deps/H5B2.Plo deleted file mode 100644 index 9f5b27c..0000000 --- a/build/src/.deps/H5B2.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5B2.lo: ../../src/H5B2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2cache.Plo b/build/src/.deps/H5B2cache.Plo deleted file mode 100644 index 0758bda..0000000 --- a/build/src/.deps/H5B2cache.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5B2cache.lo: ../../src/H5B2cache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5B2dbg.Plo b/build/src/.deps/H5B2dbg.Plo deleted file mode 100644 index 8d15f8d..0000000 --- a/build/src/.deps/H5B2dbg.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5B2dbg.lo: ../../src/H5B2dbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2hdr.Plo b/build/src/.deps/H5B2hdr.Plo deleted file mode 100644 index adec0ad..0000000 --- a/build/src/.deps/H5B2hdr.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5B2hdr.lo: ../../src/H5B2hdr.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5B2int.Plo b/build/src/.deps/H5B2int.Plo deleted file mode 100644 index 69f6aa6..0000000 --- a/build/src/.deps/H5B2int.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5B2int.lo: ../../src/H5B2int.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5B2stat.Plo b/build/src/.deps/H5B2stat.Plo deleted file mode 100644 index edf1ba8..0000000 --- a/build/src/.deps/H5B2stat.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5B2stat.lo: ../../src/H5B2stat.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5B2test.Plo b/build/src/.deps/H5B2test.Plo deleted file mode 100644 index c621059..0000000 --- a/build/src/.deps/H5B2test.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5B2test.lo: ../../src/H5B2test.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5B2pkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5B2pkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5Bcache.Plo b/build/src/.deps/H5Bcache.Plo deleted file mode 100644 index 5f3728f..0000000 --- a/build/src/.deps/H5Bcache.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5Bcache.lo: ../../src/H5Bcache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Bpkg.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Bdbg.Plo b/build/src/.deps/H5Bdbg.Plo deleted file mode 100644 index 47ee824..0000000 --- a/build/src/.deps/H5Bdbg.Plo +++ /dev/null @@ -1,337 +0,0 @@ -H5Bdbg.lo: ../../src/H5Bdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Bpkg.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Bpkg.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5C.Plo b/build/src/.deps/H5C.Plo deleted file mode 100644 index 6176445..0000000 --- a/build/src/.deps/H5C.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5C.lo: ../../src/H5C.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Cpkg.h ../../src/H5Cprivate.h \ - ../../src/H5Cpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Fpkg.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Cpkg.h: - -../../src/H5Cprivate.h: - -../../src/H5Cpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5CS.Plo b/build/src/.deps/H5CS.Plo deleted file mode 100644 index c2b6716..0000000 --- a/build/src/.deps/H5CS.Plo +++ /dev/null @@ -1,286 +0,0 @@ -H5CS.lo: ../../src/H5CS.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5CSprivate.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5CSprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5D.Plo b/build/src/.deps/H5D.Plo deleted file mode 100644 index 7149d26..0000000 --- a/build/src/.deps/H5D.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5D.lo: ../../src/H5D.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Dbtree.Plo b/build/src/.deps/H5Dbtree.Plo deleted file mode 100644 index fadfe53..0000000 --- a/build/src/.deps/H5Dbtree.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Dbtree.lo: ../../src/H5Dbtree.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dchunk.Plo b/build/src/.deps/H5Dchunk.Plo deleted file mode 100644 index 8a50b33..0000000 --- a/build/src/.deps/H5Dchunk.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Dchunk.lo: ../../src/H5Dchunk.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dcompact.Plo b/build/src/.deps/H5Dcompact.Plo deleted file mode 100644 index f55c825..0000000 --- a/build/src/.deps/H5Dcompact.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Dcompact.lo: ../../src/H5Dcompact.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dcontig.Plo b/build/src/.deps/H5Dcontig.Plo deleted file mode 100644 index 00e4758..0000000 --- a/build/src/.deps/H5Dcontig.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Dcontig.lo: ../../src/H5Dcontig.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MFprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Ddbg.Plo b/build/src/.deps/H5Ddbg.Plo deleted file mode 100644 index 66572af..0000000 --- a/build/src/.deps/H5Ddbg.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Ddbg.lo: ../../src/H5Ddbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Ddeprec.Plo b/build/src/.deps/H5Ddeprec.Plo deleted file mode 100644 index 0069e3f..0000000 --- a/build/src/.deps/H5Ddeprec.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Ddeprec.lo: ../../src/H5Ddeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Defl.Plo b/build/src/.deps/H5Defl.Plo deleted file mode 100644 index e8af7d7..0000000 --- a/build/src/.deps/H5Defl.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Defl.lo: ../../src/H5Defl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Dfill.Plo b/build/src/.deps/H5Dfill.Plo deleted file mode 100644 index a1620cf..0000000 --- a/build/src/.deps/H5Dfill.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Dfill.lo: ../../src/H5Dfill.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5VMprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5VMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Dint.Plo b/build/src/.deps/H5Dint.Plo deleted file mode 100644 index 7e20ceb..0000000 --- a/build/src/.deps/H5Dint.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Dint.lo: ../../src/H5Dint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Dio.Plo b/build/src/.deps/H5Dio.Plo deleted file mode 100644 index e3a9fd5..0000000 --- a/build/src/.deps/H5Dio.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Dio.lo: ../../src/H5Dio.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Dlayout.Plo b/build/src/.deps/H5Dlayout.Plo deleted file mode 100644 index fa5014bb..0000000 --- a/build/src/.deps/H5Dlayout.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Dlayout.lo: ../../src/H5Dlayout.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Dmpio.Plo b/build/src/.deps/H5Dmpio.Plo deleted file mode 100644 index 4ee6f87..0000000 --- a/build/src/.deps/H5Dmpio.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Dmpio.lo: ../../src/H5Dmpio.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Doh.Plo b/build/src/.deps/H5Doh.Plo deleted file mode 100644 index bdf46df..0000000 --- a/build/src/.deps/H5Doh.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Doh.lo: ../../src/H5Doh.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Dscatgath.Plo b/build/src/.deps/H5Dscatgath.Plo deleted file mode 100644 index 7365830..0000000 --- a/build/src/.deps/H5Dscatgath.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Dscatgath.lo: ../../src/H5Dscatgath.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Dselect.Plo b/build/src/.deps/H5Dselect.Plo deleted file mode 100644 index 885cb4f..0000000 --- a/build/src/.deps/H5Dselect.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Dselect.lo: ../../src/H5Dselect.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Dtest.Plo b/build/src/.deps/H5Dtest.Plo deleted file mode 100644 index 7ddedc9..0000000 --- a/build/src/.deps/H5Dtest.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Dtest.lo: ../../src/H5Dtest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5E.Plo b/build/src/.deps/H5E.Plo deleted file mode 100644 index 7e21cb4..0000000 --- a/build/src/.deps/H5E.Plo +++ /dev/null @@ -1,304 +0,0 @@ -H5E.lo: ../../src/H5E.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Iprivate.h ../../src/H5Ipublic.h \ - ../../src/H5Epkg.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Einit.h ../../src/H5Eterm.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Iprivate.h: - -../../src/H5Ipublic.h: - -../../src/H5Epkg.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Einit.h: - -../../src/H5Eterm.h: diff --git a/build/src/.deps/H5Edeprec.Plo b/build/src/.deps/H5Edeprec.Plo deleted file mode 100644 index bdb81ab..0000000 --- a/build/src/.deps/H5Edeprec.Plo +++ /dev/null @@ -1,300 +0,0 @@ -H5Edeprec.lo: ../../src/H5Edeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Iprivate.h ../../src/H5Ipublic.h \ - ../../src/H5Epkg.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Iprivate.h: - -../../src/H5Ipublic.h: - -../../src/H5Epkg.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5Eint.Plo b/build/src/.deps/H5Eint.Plo deleted file mode 100644 index 3b3355d..0000000 --- a/build/src/.deps/H5Eint.Plo +++ /dev/null @@ -1,300 +0,0 @@ -H5Eint.lo: ../../src/H5Eint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Epkg.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Edefin.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Epkg.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Edefin.h: diff --git a/build/src/.deps/H5F.Plo b/build/src/.deps/H5F.Plo deleted file mode 100644 index cce5efc..0000000 --- a/build/src/.deps/H5F.Plo +++ /dev/null @@ -1,391 +0,0 @@ -H5F.lo: ../../src/H5F.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ - ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ - ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Iprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ - ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5FD.Plo b/build/src/.deps/H5FD.Plo deleted file mode 100644 index 2ea3395..0000000 --- a/build/src/.deps/H5FD.Plo +++ /dev/null @@ -1,400 +0,0 @@ -H5FD.lo: ../../src/H5FD.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5FSprivate.h \ - ../../src/H5FSpublic.h ../../src/H5FDpkg.h ../../src/H5FDcore.h \ - ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmulti.h \ - ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5FDpkg.h: - -../../src/H5FDcore.h: - -../../src/H5FDfamily.h: - -../../src/H5FDlog.h: - -../../src/H5FDmulti.h: - -../../src/H5FDsec2.h: - -../../src/H5FDstdio.h: - -../../src/H5FDdirect.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDcore.Plo b/build/src/.deps/H5FDcore.Plo deleted file mode 100644 index 8f0824c..0000000 --- a/build/src/.deps/H5FDcore.Plo +++ /dev/null @@ -1,337 +0,0 @@ -H5FDcore.lo: ../../src/H5FDcore.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5FDcore.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDcore.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5FDdirect.Plo b/build/src/.deps/H5FDdirect.Plo deleted file mode 100644 index 9241367..0000000 --- a/build/src/.deps/H5FDdirect.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5FDdirect.lo: ../../src/H5FDdirect.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5FDdirect.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDdirect.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDfamily.Plo b/build/src/.deps/H5FDfamily.Plo deleted file mode 100644 index 14ce03a..0000000 --- a/build/src/.deps/H5FDfamily.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5FDfamily.lo: ../../src/H5FDfamily.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5FDfamily.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDfamily.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDint.Plo b/build/src/.deps/H5FDint.Plo deleted file mode 100644 index 3e551d6..0000000 --- a/build/src/.deps/H5FDint.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5FDint.lo: ../../src/H5FDint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDpkg.h ../../src/H5FDprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDpkg.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5FDlog.Plo b/build/src/.deps/H5FDlog.Plo deleted file mode 100644 index 0c5a1b4..0000000 --- a/build/src/.deps/H5FDlog.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5FDlog.lo: ../../src/H5FDlog.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5FDlog.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDlog.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDmpi.Plo b/build/src/.deps/H5FDmpi.Plo deleted file mode 100644 index 49e1279..0000000 --- a/build/src/.deps/H5FDmpi.Plo +++ /dev/null @@ -1,325 +0,0 @@ -H5FDmpi.lo: ../../src/H5FDmpi.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FDmpio.Plo b/build/src/.deps/H5FDmpio.Plo deleted file mode 100644 index b66a22c..0000000 --- a/build/src/.deps/H5FDmpio.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5FDmpio.lo: ../../src/H5FDmpio.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDmulti.Plo b/build/src/.deps/H5FDmulti.Plo deleted file mode 100644 index 48290e5..0000000 --- a/build/src/.deps/H5FDmulti.Plo +++ /dev/null @@ -1,199 +0,0 @@ -H5FDmulti.lo: ../../src/H5FDmulti.c /usr/include/stdc-predef.h \ - /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/stdlib.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \ - /usr/include/xlocale.h /usr/include/sys/types.h /usr/include/time.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ - /usr/include/string.h ../../src/hdf5.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Epublic.h /usr/include/stdio.h /usr/include/libio.h \ - /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/sys_errlist.h ../../src/H5Epubgen.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Gpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5PLpublic.h ../../src/H5Rpublic.h ../../src/H5Spublic.h \ - ../../src/H5FDcore.h ../../src/H5FDfamily.h ../../src/H5FDlog.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5FDmulti.h \ - ../../src/H5FDsec2.h ../../src/H5FDstdio.h ../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -/usr/include/assert.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/stdlib.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -../../src/hdf5.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5PLpublic.h: - -../../src/H5Rpublic.h: - -../../src/H5Spublic.h: - -../../src/H5FDcore.h: - -../../src/H5FDfamily.h: - -../../src/H5FDlog.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDmulti.h: - -../../src/H5FDsec2.h: - -../../src/H5FDstdio.h: - -../../src/H5FDdirect.h: diff --git a/build/src/.deps/H5FDsec2.Plo b/build/src/.deps/H5FDsec2.Plo deleted file mode 100644 index bca908d..0000000 --- a/build/src/.deps/H5FDsec2.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5FDsec2.lo: ../../src/H5FDsec2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5FDsec2.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDsec2.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5FDspace.Plo b/build/src/.deps/H5FDspace.Plo deleted file mode 100644 index 71265f9..0000000 --- a/build/src/.deps/H5FDspace.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5FDspace.lo: ../../src/H5FDspace.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FDpkg.h ../../src/H5FDprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5FLprivate.h ../../src/H5FDmulti.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDpkg.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FLprivate.h: - -../../src/H5FDmulti.h: diff --git a/build/src/.deps/H5FDstdio.Plo b/build/src/.deps/H5FDstdio.Plo deleted file mode 100644 index 610c35c..0000000 --- a/build/src/.deps/H5FDstdio.Plo +++ /dev/null @@ -1,215 +0,0 @@ -H5FDstdio.lo: ../../src/H5FDstdio.c /usr/include/stdc-predef.h \ - /usr/include/assert.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/xlocale.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/sys/stat.h /usr/include/bits/stat.h ../../src/hdf5.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Apublic.h ../../src/H5Ipublic.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Gpublic.h ../../src/H5MMpublic.h \ - ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5PLpublic.h \ - ../../src/H5Rpublic.h ../../src/H5Spublic.h ../../src/H5FDcore.h \ - ../../src/H5FDfamily.h ../../src/H5FDlog.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ - ../../src/H5FDstdio.h ../../src/H5FDdirect.h /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ - /usr/include/bits/confname.h /usr/include/getopt.h - -/usr/include/stdc-predef.h: - -/usr/include/assert.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/stdio.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/xlocale.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/sys/stat.h: - -/usr/include/bits/stat.h: - -../../src/hdf5.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5PLpublic.h: - -../../src/H5Rpublic.h: - -../../src/H5Spublic.h: - -../../src/H5FDcore.h: - -../../src/H5FDfamily.h: - -../../src/H5FDlog.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5FDmulti.h: - -../../src/H5FDsec2.h: - -../../src/H5FDstdio.h: - -../../src/H5FDdirect.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: diff --git a/build/src/.deps/H5FL.Plo b/build/src/.deps/H5FL.Plo deleted file mode 100644 index d19aed1..0000000 --- a/build/src/.deps/H5FL.Plo +++ /dev/null @@ -1,295 +0,0 @@ -H5FL.lo: ../../src/H5FL.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5FO.Plo b/build/src/.deps/H5FO.Plo deleted file mode 100644 index 48e60fd..0000000 --- a/build/src/.deps/H5FO.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5FO.lo: ../../src/H5FO.c /usr/include/stdc-predef.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Fpkg.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Bpublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FLprivate.h ../../src/H5FOprivate.h ../../src/H5SLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5FS.Plo b/build/src/.deps/H5FS.Plo deleted file mode 100644 index 7f18d53..0000000 --- a/build/src/.deps/H5FS.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5FS.lo: ../../src/H5FS.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5FLprivate.h \ - ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FScache.Plo b/build/src/.deps/H5FScache.Plo deleted file mode 100644 index a5e3d0b..0000000 --- a/build/src/.deps/H5FScache.Plo +++ /dev/null @@ -1,349 +0,0 @@ -H5FScache.lo: ../../src/H5FScache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5FLprivate.h \ - ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5FSdbg.Plo b/build/src/.deps/H5FSdbg.Plo deleted file mode 100644 index 2b2462f..0000000 --- a/build/src/.deps/H5FSdbg.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5FSdbg.lo: ../../src/H5FSdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5FSsection.Plo b/build/src/.deps/H5FSsection.Plo deleted file mode 100644 index 917b5d4..0000000 --- a/build/src/.deps/H5FSsection.Plo +++ /dev/null @@ -1,346 +0,0 @@ -H5FSsection.lo: ../../src/H5FSsection.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5FSstat.Plo b/build/src/.deps/H5FSstat.Plo deleted file mode 100644 index e33e561..0000000 --- a/build/src/.deps/H5FSstat.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5FSstat.lo: ../../src/H5FSstat.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5FStest.Plo b/build/src/.deps/H5FStest.Plo deleted file mode 100644 index beacdfe..0000000 --- a/build/src/.deps/H5FStest.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5FStest.lo: ../../src/H5FStest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FSpkg.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FSpkg.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Faccum.Plo b/build/src/.deps/H5Faccum.Plo deleted file mode 100644 index 5a6d343..0000000 --- a/build/src/.deps/H5Faccum.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Faccum.lo: ../../src/H5Faccum.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Fcwfs.Plo b/build/src/.deps/H5Fcwfs.Plo deleted file mode 100644 index e8848c8..0000000 --- a/build/src/.deps/H5Fcwfs.Plo +++ /dev/null @@ -1,381 +0,0 @@ -H5Fcwfs.lo: ../../src/H5Fcwfs.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Fdbg.Plo b/build/src/.deps/H5Fdbg.Plo deleted file mode 100644 index 71dd7ef..0000000 --- a/build/src/.deps/H5Fdbg.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Fdbg.lo: ../../src/H5Fdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fefc.Plo b/build/src/.deps/H5Fefc.Plo deleted file mode 100644 index 51ac479..0000000 --- a/build/src/.deps/H5Fefc.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Fefc.lo: ../../src/H5Fefc.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ffake.Plo b/build/src/.deps/H5Ffake.Plo deleted file mode 100644 index 39ffa47..0000000 --- a/build/src/.deps/H5Ffake.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5Ffake.lo: ../../src/H5Ffake.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Fint.Plo b/build/src/.deps/H5Fint.Plo deleted file mode 100644 index abc1d38..0000000 --- a/build/src/.deps/H5Fint.Plo +++ /dev/null @@ -1,407 +0,0 @@ -H5Fint.lo: ../../src/H5Fint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ - ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Fpkg.h ../../src/H5FLprivate.h \ - ../../src/H5FOprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Iprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ - ../../src/H5SMprivate.h ../../src/H5FDcore.h ../../src/H5FDfamily.h \ - ../../src/H5FDlog.h ../../src/H5FDmulti.h ../../src/H5FDsec2.h \ - ../../src/H5FDstdio.h ../../src/H5FDdirect.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5SMprivate.h: - -../../src/H5FDcore.h: - -../../src/H5FDfamily.h: - -../../src/H5FDlog.h: - -../../src/H5FDmulti.h: - -../../src/H5FDsec2.h: - -../../src/H5FDstdio.h: - -../../src/H5FDdirect.h: diff --git a/build/src/.deps/H5Fio.Plo b/build/src/.deps/H5Fio.Plo deleted file mode 100644 index 0fd0d69..0000000 --- a/build/src/.deps/H5Fio.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Fio.lo: ../../src/H5Fio.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fmount.Plo b/build/src/.deps/H5Fmount.Plo deleted file mode 100644 index 9466ada..0000000 --- a/build/src/.deps/H5Fmount.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Fmount.lo: ../../src/H5Fmount.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Bpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Bpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Fmpi.Plo b/build/src/.deps/H5Fmpi.Plo deleted file mode 100644 index 15dc539..0000000 --- a/build/src/.deps/H5Fmpi.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Fmpi.lo: ../../src/H5Fmpi.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Fquery.Plo b/build/src/.deps/H5Fquery.Plo deleted file mode 100644 index 623c903..0000000 --- a/build/src/.deps/H5Fquery.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Fquery.lo: ../../src/H5Fquery.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Fsfile.Plo b/build/src/.deps/H5Fsfile.Plo deleted file mode 100644 index d44ede2..0000000 --- a/build/src/.deps/H5Fsfile.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Fsfile.lo: ../../src/H5Fsfile.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Fsuper.Plo b/build/src/.deps/H5Fsuper.Plo deleted file mode 100644 index 94c9de1..0000000 --- a/build/src/.deps/H5Fsuper.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Fsuper.lo: ../../src/H5Fsuper.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Bpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Bpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Fsuper_cache.Plo b/build/src/.deps/H5Fsuper_cache.Plo deleted file mode 100644 index cf5f6c8..0000000 --- a/build/src/.deps/H5Fsuper_cache.Plo +++ /dev/null @@ -1,395 +0,0 @@ -H5Fsuper_cache.lo: ../../src/H5Fsuper_cache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Ftest.Plo b/build/src/.deps/H5Ftest.Plo deleted file mode 100644 index 0508435..0000000 --- a/build/src/.deps/H5Ftest.Plo +++ /dev/null @@ -1,388 +0,0 @@ -H5Ftest.lo: ../../src/H5Ftest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h ../../src/H5SMpkg.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5G.Plo b/build/src/.deps/H5G.Plo deleted file mode 100644 index cd46ff3..0000000 --- a/build/src/.deps/H5G.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5G.lo: ../../src/H5G.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Gbtree2.Plo b/build/src/.deps/H5Gbtree2.Plo deleted file mode 100644 index 88c389e..0000000 --- a/build/src/.deps/H5Gbtree2.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Gbtree2.lo: ../../src/H5Gbtree2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Gcache.Plo b/build/src/.deps/H5Gcache.Plo deleted file mode 100644 index 5d83693..0000000 --- a/build/src/.deps/H5Gcache.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Gcache.lo: ../../src/H5Gcache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Gcompact.Plo b/build/src/.deps/H5Gcompact.Plo deleted file mode 100644 index e1d864f..0000000 --- a/build/src/.deps/H5Gcompact.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Gcompact.lo: ../../src/H5Gcompact.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gdense.Plo b/build/src/.deps/H5Gdense.Plo deleted file mode 100644 index 1925a0a..0000000 --- a/build/src/.deps/H5Gdense.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Gdense.lo: ../../src/H5Gdense.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Gdeprec.Plo b/build/src/.deps/H5Gdeprec.Plo deleted file mode 100644 index a279890..0000000 --- a/build/src/.deps/H5Gdeprec.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Gdeprec.lo: ../../src/H5Gdeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: diff --git a/build/src/.deps/H5Gent.Plo b/build/src/.deps/H5Gent.Plo deleted file mode 100644 index 7b787d1..0000000 --- a/build/src/.deps/H5Gent.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Gent.lo: ../../src/H5Gent.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: diff --git a/build/src/.deps/H5Gint.Plo b/build/src/.deps/H5Gint.Plo deleted file mode 100644 index f3f3891..0000000 --- a/build/src/.deps/H5Gint.Plo +++ /dev/null @@ -1,381 +0,0 @@ -H5Gint.lo: ../../src/H5Gint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FOprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Glink.Plo b/build/src/.deps/H5Glink.Plo deleted file mode 100644 index c44b91e..0000000 --- a/build/src/.deps/H5Glink.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Glink.lo: ../../src/H5Glink.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gloc.Plo b/build/src/.deps/H5Gloc.Plo deleted file mode 100644 index 00a7756..0000000 --- a/build/src/.deps/H5Gloc.Plo +++ /dev/null @@ -1,393 +0,0 @@ -H5Gloc.lo: ../../src/H5Gloc.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ - ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Dprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5Gpkg.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h ../../src/H5Lprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: diff --git a/build/src/.deps/H5Gname.Plo b/build/src/.deps/H5Gname.Plo deleted file mode 100644 index bc59228..0000000 --- a/build/src/.deps/H5Gname.Plo +++ /dev/null @@ -1,391 +0,0 @@ -H5Gname.lo: ../../src/H5Gname.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ - ../../src/H5HLpublic.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gnode.Plo b/build/src/.deps/H5Gnode.Plo deleted file mode 100644 index d42f181..0000000 --- a/build/src/.deps/H5Gnode.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Gnode.lo: ../../src/H5Gnode.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gobj.Plo b/build/src/.deps/H5Gobj.Plo deleted file mode 100644 index 667df6a..0000000 --- a/build/src/.deps/H5Gobj.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Gobj.lo: ../../src/H5Gobj.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Goh.Plo b/build/src/.deps/H5Goh.Plo deleted file mode 100644 index 92ad3bb..0000000 --- a/build/src/.deps/H5Goh.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Goh.lo: ../../src/H5Goh.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Groot.Plo b/build/src/.deps/H5Groot.Plo deleted file mode 100644 index f02931c..0000000 --- a/build/src/.deps/H5Groot.Plo +++ /dev/null @@ -1,386 +0,0 @@ -H5Groot.lo: ../../src/H5Groot.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gstab.Plo b/build/src/.deps/H5Gstab.Plo deleted file mode 100644 index c4b42f1..0000000 --- a/build/src/.deps/H5Gstab.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Gstab.lo: ../../src/H5Gstab.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Gpkg.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5B2private.h \ - ../../src/H5B2public.h ../../src/H5FLprivate.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Gtest.Plo b/build/src/.deps/H5Gtest.Plo deleted file mode 100644 index 3b83747..0000000 --- a/build/src/.deps/H5Gtest.Plo +++ /dev/null @@ -1,386 +0,0 @@ -H5Gtest.lo: ../../src/H5Gtest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ - ../../src/H5HLpublic.h ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Gtraverse.Plo b/build/src/.deps/H5Gtraverse.Plo deleted file mode 100644 index 6d80482..0000000 --- a/build/src/.deps/H5Gtraverse.Plo +++ /dev/null @@ -1,393 +0,0 @@ -H5Gtraverse.lo: ../../src/H5Gtraverse.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5HLprivate.h \ - ../../src/H5HLpublic.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ - ../../src/H5MMprivate.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HF.Plo b/build/src/.deps/H5HF.Plo deleted file mode 100644 index 8d3fd6f..0000000 --- a/build/src/.deps/H5HF.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5HF.lo: ../../src/H5HF.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5SLprivate.h \ - ../../src/H5HFpkg.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FOprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HFbtree2.Plo b/build/src/.deps/H5HFbtree2.Plo deleted file mode 100644 index a9a0091..0000000 --- a/build/src/.deps/H5HFbtree2.Plo +++ /dev/null @@ -1,381 +0,0 @@ -H5HFbtree2.lo: ../../src/H5HFbtree2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HFcache.Plo b/build/src/.deps/H5HFcache.Plo deleted file mode 100644 index 59930e9..0000000 --- a/build/src/.deps/H5HFcache.Plo +++ /dev/null @@ -1,388 +0,0 @@ -H5HFcache.lo: ../../src/H5HFcache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5MMprivate.h ../../src/H5VMprivate.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HFdbg.Plo b/build/src/.deps/H5HFdbg.Plo deleted file mode 100644 index 53fbbfd..0000000 --- a/build/src/.deps/H5HFdbg.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5HFdbg.lo: ../../src/H5HFdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5HFpkg.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFdblock.Plo b/build/src/.deps/H5HFdblock.Plo deleted file mode 100644 index ff427f9..0000000 --- a/build/src/.deps/H5HFdblock.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5HFdblock.lo: ../../src/H5HFdblock.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HFpkg.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFdtable.Plo b/build/src/.deps/H5HFdtable.Plo deleted file mode 100644 index 0355d66..0000000 --- a/build/src/.deps/H5HFdtable.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5HFdtable.lo: ../../src/H5HFdtable.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFhdr.Plo b/build/src/.deps/H5HFhdr.Plo deleted file mode 100644 index fb14a8d..0000000 --- a/build/src/.deps/H5HFhdr.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5HFhdr.lo: ../../src/H5HFhdr.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFhuge.Plo b/build/src/.deps/H5HFhuge.Plo deleted file mode 100644 index 3baaad0..0000000 --- a/build/src/.deps/H5HFhuge.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5HFhuge.lo: ../../src/H5HFhuge.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HFiblock.Plo b/build/src/.deps/H5HFiblock.Plo deleted file mode 100644 index ac82d1b..0000000 --- a/build/src/.deps/H5HFiblock.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5HFiblock.lo: ../../src/H5HFiblock.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HFpkg.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFiter.Plo b/build/src/.deps/H5HFiter.Plo deleted file mode 100644 index 0500efc..0000000 --- a/build/src/.deps/H5HFiter.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5HFiter.lo: ../../src/H5HFiter.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFman.Plo b/build/src/.deps/H5HFman.Plo deleted file mode 100644 index 0984051..0000000 --- a/build/src/.deps/H5HFman.Plo +++ /dev/null @@ -1,386 +0,0 @@ -H5HFman.lo: ../../src/H5HFman.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5MMprivate.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFsection.Plo b/build/src/.deps/H5HFsection.Plo deleted file mode 100644 index 7eb40db..0000000 --- a/build/src/.deps/H5HFsection.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5HFsection.lo: ../../src/H5HFsection.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h ../../src/H5MMprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5HFspace.Plo b/build/src/.deps/H5HFspace.Plo deleted file mode 100644 index 320b421..0000000 --- a/build/src/.deps/H5HFspace.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5HFspace.lo: ../../src/H5HFspace.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFstat.Plo b/build/src/.deps/H5HFstat.Plo deleted file mode 100644 index a0d6faf..0000000 --- a/build/src/.deps/H5HFstat.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5HFstat.lo: ../../src/H5HFstat.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFtest.Plo b/build/src/.deps/H5HFtest.Plo deleted file mode 100644 index 6e14499..0000000 --- a/build/src/.deps/H5HFtest.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5HFtest.lo: ../../src/H5HFtest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HFtiny.Plo b/build/src/.deps/H5HFtiny.Plo deleted file mode 100644 index a6160b3..0000000 --- a/build/src/.deps/H5HFtiny.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5HFtiny.lo: ../../src/H5HFtiny.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HFpkg.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5FSprivate.h ../../src/H5FSpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HFpkg.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: diff --git a/build/src/.deps/H5HG.Plo b/build/src/.deps/H5HG.Plo deleted file mode 100644 index 387d650..0000000 --- a/build/src/.deps/H5HG.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5HG.lo: ../../src/H5HG.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HGpkg.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HGpkg.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HGcache.Plo b/build/src/.deps/H5HGcache.Plo deleted file mode 100644 index df3583d..0000000 --- a/build/src/.deps/H5HGcache.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5HGcache.lo: ../../src/H5HGcache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HGpkg.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HGpkg.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HGdbg.Plo b/build/src/.deps/H5HGdbg.Plo deleted file mode 100644 index 2e35b49..0000000 --- a/build/src/.deps/H5HGdbg.Plo +++ /dev/null @@ -1,335 +0,0 @@ -H5HGdbg.lo: ../../src/H5HGdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGpkg.h \ - ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HGpkg.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5HGquery.Plo b/build/src/.deps/H5HGquery.Plo deleted file mode 100644 index aac9fe1..0000000 --- a/build/src/.deps/H5HGquery.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5HGquery.lo: ../../src/H5HGquery.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HGpkg.h \ - ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HGpkg.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5HL.Plo b/build/src/.deps/H5HL.Plo deleted file mode 100644 index 34b0195..0000000 --- a/build/src/.deps/H5HL.Plo +++ /dev/null @@ -1,342 +0,0 @@ -H5HL.lo: ../../src/H5HL.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HLpkg.h ../../src/H5HLprivate.h \ - ../../src/H5HLpublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HLpkg.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5HLcache.Plo b/build/src/.deps/H5HLcache.Plo deleted file mode 100644 index cdd17ce..0000000 --- a/build/src/.deps/H5HLcache.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5HLcache.lo: ../../src/H5HLcache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HLpkg.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5HLdbg.Plo b/build/src/.deps/H5HLdbg.Plo deleted file mode 100644 index f209aff..0000000 --- a/build/src/.deps/H5HLdbg.Plo +++ /dev/null @@ -1,337 +0,0 @@ -H5HLdbg.lo: ../../src/H5HLdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HLpkg.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5HLint.Plo b/build/src/.deps/H5HLint.Plo deleted file mode 100644 index c69a248..0000000 --- a/build/src/.deps/H5HLint.Plo +++ /dev/null @@ -1,332 +0,0 @@ -H5HLint.lo: ../../src/H5HLint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HLpkg.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HLpkg.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5HP.Plo b/build/src/.deps/H5HP.Plo deleted file mode 100644 index 41cbaf5..0000000 --- a/build/src/.deps/H5HP.Plo +++ /dev/null @@ -1,293 +0,0 @@ -H5HP.lo: ../../src/H5HP.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5HPprivate.h \ - ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HPprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5I.Plo b/build/src/.deps/H5I.Plo deleted file mode 100644 index 0fd24b1..0000000 --- a/build/src/.deps/H5I.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5I.lo: ../../src/H5I.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Ipkg.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Ipkg.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Itest.Plo b/build/src/.deps/H5Itest.Plo deleted file mode 100644 index 7499035..0000000 --- a/build/src/.deps/H5Itest.Plo +++ /dev/null @@ -1,342 +0,0 @@ -H5Itest.lo: ../../src/H5Itest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Ipkg.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Ipkg.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5L.Plo b/build/src/.deps/H5L.Plo deleted file mode 100644 index 4c4dc7c..0000000 --- a/build/src/.deps/H5L.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5L.lo: ../../src/H5L.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Lpkg.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Lexternal.Plo b/build/src/.deps/H5Lexternal.Plo deleted file mode 100644 index 728e733..0000000 --- a/build/src/.deps/H5Lexternal.Plo +++ /dev/null @@ -1,381 +0,0 @@ -H5Lexternal.lo: ../../src/H5Lexternal.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gpkg.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5FLprivate.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lpkg.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5MF.Plo b/build/src/.deps/H5MF.Plo deleted file mode 100644 index 8737296..0000000 --- a/build/src/.deps/H5MF.Plo +++ /dev/null @@ -1,381 +0,0 @@ -H5MF.lo: ../../src/H5MF.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MFpkg.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MFpkg.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5MFaggr.Plo b/build/src/.deps/H5MFaggr.Plo deleted file mode 100644 index 26f7522..0000000 --- a/build/src/.deps/H5MFaggr.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5MFaggr.lo: ../../src/H5MFaggr.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MFpkg.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MFdbg.Plo b/build/src/.deps/H5MFdbg.Plo deleted file mode 100644 index fd5e65f..0000000 --- a/build/src/.deps/H5MFdbg.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5MFdbg.lo: ../../src/H5MFdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MFpkg.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MFsection.Plo b/build/src/.deps/H5MFsection.Plo deleted file mode 100644 index 05a0c1f..0000000 --- a/build/src/.deps/H5MFsection.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5MFsection.lo: ../../src/H5MFsection.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fpkg.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Bpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5FSprivate.h ../../src/H5FSpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MFpkg.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fpkg.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Bpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5FSprivate.h: - -../../src/H5FSpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MFpkg.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5MM.Plo b/build/src/.deps/H5MM.Plo deleted file mode 100644 index 7e37766..0000000 --- a/build/src/.deps/H5MM.Plo +++ /dev/null @@ -1,293 +0,0 @@ -H5MM.lo: ../../src/H5MM.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5MP.Plo b/build/src/.deps/H5MP.Plo deleted file mode 100644 index 0decbff..0000000 --- a/build/src/.deps/H5MP.Plo +++ /dev/null @@ -1,300 +0,0 @@ -H5MP.lo: ../../src/H5MP.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5MPpkg.h ../../src/H5MPprivate.h \ - ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5MPpkg.h: - -../../src/H5MPprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5MPtest.Plo b/build/src/.deps/H5MPtest.Plo deleted file mode 100644 index 17218fc..0000000 --- a/build/src/.deps/H5MPtest.Plo +++ /dev/null @@ -1,295 +0,0 @@ -H5MPtest.lo: ../../src/H5MPtest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5MPpkg.h ../../src/H5MPprivate.h \ - ../../src/H5FLprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5MPpkg.h: - -../../src/H5MPprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5O.Plo b/build/src/.deps/H5O.Plo deleted file mode 100644 index cb2fd72..0000000 --- a/build/src/.deps/H5O.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5O.lo: ../../src/H5O.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ - ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Opkg.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Oainfo.Plo b/build/src/.deps/H5Oainfo.Plo deleted file mode 100644 index 8473977..0000000 --- a/build/src/.deps/H5Oainfo.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Oainfo.lo: ../../src/H5Oainfo.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Oalloc.Plo b/build/src/.deps/H5Oalloc.Plo deleted file mode 100644 index 59ab91c..0000000 --- a/build/src/.deps/H5Oalloc.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Oalloc.lo: ../../src/H5Oalloc.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Oattr.Plo b/build/src/.deps/H5Oattr.Plo deleted file mode 100644 index f83d1ea..0000000 --- a/build/src/.deps/H5Oattr.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Oattr.lo: ../../src/H5Oattr.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Spkg.h \ - ../../src/H5Oshared.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Spkg.h: - -../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oattribute.Plo b/build/src/.deps/H5Oattribute.Plo deleted file mode 100644 index 4065625..0000000 --- a/build/src/.deps/H5Oattribute.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Oattribute.lo: ../../src/H5Oattribute.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5SMprivate.h \ - ../../src/H5Iprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5SMprivate.h: - -../../src/H5Iprivate.h: diff --git a/build/src/.deps/H5Obogus.Plo b/build/src/.deps/H5Obogus.Plo deleted file mode 100644 index 5f162b6..0000000 --- a/build/src/.deps/H5Obogus.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Obogus.lo: ../../src/H5Obogus.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Obtreek.Plo b/build/src/.deps/H5Obtreek.Plo deleted file mode 100644 index 2c67889..0000000 --- a/build/src/.deps/H5Obtreek.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Obtreek.lo: ../../src/H5Obtreek.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ocache.Plo b/build/src/.deps/H5Ocache.Plo deleted file mode 100644 index e664f0a..0000000 --- a/build/src/.deps/H5Ocache.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Ocache.lo: ../../src/H5Ocache.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Ochunk.Plo b/build/src/.deps/H5Ochunk.Plo deleted file mode 100644 index 9458072..0000000 --- a/build/src/.deps/H5Ochunk.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Ochunk.lo: ../../src/H5Ochunk.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Ocont.Plo b/build/src/.deps/H5Ocont.Plo deleted file mode 100644 index 3847cd8..0000000 --- a/build/src/.deps/H5Ocont.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Ocont.lo: ../../src/H5Ocont.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MFprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Ocopy.Plo b/build/src/.deps/H5Ocopy.Plo deleted file mode 100644 index 767afbb..0000000 --- a/build/src/.deps/H5Ocopy.Plo +++ /dev/null @@ -1,388 +0,0 @@ -H5Ocopy.lo: ../../src/H5Ocopy.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ - ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5FOprivate.h ../../src/H5Lprivate.h \ - ../../src/H5MFprivate.h ../../src/H5FDprivate.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5MMprivate.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5FOprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Odbg.Plo b/build/src/.deps/H5Odbg.Plo deleted file mode 100644 index da876be..0000000 --- a/build/src/.deps/H5Odbg.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Odbg.lo: ../../src/H5Odbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Odrvinfo.Plo b/build/src/.deps/H5Odrvinfo.Plo deleted file mode 100644 index 925d972..0000000 --- a/build/src/.deps/H5Odrvinfo.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Odrvinfo.lo: ../../src/H5Odrvinfo.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Odtype.Plo b/build/src/.deps/H5Odtype.Plo deleted file mode 100644 index c689dc3..0000000 --- a/build/src/.deps/H5Odtype.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Odtype.lo: ../../src/H5Odtype.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Tpkg.h \ - ../../src/H5VMprivate.h ../../src/H5Oshared.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Tpkg.h: - -../../src/H5VMprivate.h: - -../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oefl.Plo b/build/src/.deps/H5Oefl.Plo deleted file mode 100644 index 5ef30a3..0000000 --- a/build/src/.deps/H5Oefl.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5Oefl.lo: ../../src/H5Oefl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5HLprivate.h ../../src/H5HLpublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Dpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Ofill.Plo b/build/src/.deps/H5Ofill.Plo deleted file mode 100644 index 22caa81..0000000 --- a/build/src/.deps/H5Ofill.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Ofill.lo: ../../src/H5Ofill.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ - ../../src/H5Oshared.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oginfo.Plo b/build/src/.deps/H5Oginfo.Plo deleted file mode 100644 index c585a97..0000000 --- a/build/src/.deps/H5Oginfo.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Oginfo.lo: ../../src/H5Oginfo.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Olayout.Plo b/build/src/.deps/H5Olayout.Plo deleted file mode 100644 index 3747ef5..0000000 --- a/build/src/.deps/H5Olayout.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Olayout.lo: ../../src/H5Olayout.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dpkg.h ../../src/H5Dprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Ipublic.h ../../src/H5FDprivate.h \ - ../../src/H5FDpublic.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5FLprivate.h ../../src/H5MFprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dpkg.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Olinfo.Plo b/build/src/.deps/H5Olinfo.Plo deleted file mode 100644 index a146360..0000000 --- a/build/src/.deps/H5Olinfo.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Olinfo.lo: ../../src/H5Olinfo.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Lpkg.h \ - ../../src/H5Lprivate.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Lpkg.h: - -../../src/H5Lprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Olink.Plo b/build/src/.deps/H5Olink.Plo deleted file mode 100644 index 512dc0c..0000000 --- a/build/src/.deps/H5Olink.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5Olink.lo: ../../src/H5Olink.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Iprivate.h \ - ../../src/H5Lpkg.h ../../src/H5Lprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Lpkg.h: - -../../src/H5Lprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Omessage.Plo b/build/src/.deps/H5Omessage.Plo deleted file mode 100644 index 0844705..0000000 --- a/build/src/.deps/H5Omessage.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Omessage.lo: ../../src/H5Omessage.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Aprivate.h ../../src/H5Apublic.h \ - ../../src/H5Ipublic.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Opkg.h \ - ../../src/H5FLprivate.h ../../src/H5SMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5FLprivate.h: - -../../src/H5SMprivate.h: diff --git a/build/src/.deps/H5Omtime.Plo b/build/src/.deps/H5Omtime.Plo deleted file mode 100644 index 67a89ef..0000000 --- a/build/src/.deps/H5Omtime.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Omtime.lo: ../../src/H5Omtime.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Oname.Plo b/build/src/.deps/H5Oname.Plo deleted file mode 100644 index aa4b127..0000000 --- a/build/src/.deps/H5Oname.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Oname.lo: ../../src/H5Oname.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Onull.Plo b/build/src/.deps/H5Onull.Plo deleted file mode 100644 index d654e30..0000000 --- a/build/src/.deps/H5Onull.Plo +++ /dev/null @@ -1,351 +0,0 @@ -H5Onull.lo: ../../src/H5Onull.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Opkg.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Ipublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Opline.Plo b/build/src/.deps/H5Opline.Plo deleted file mode 100644 index cc84f11..0000000 --- a/build/src/.deps/H5Opline.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Opline.lo: ../../src/H5Opline.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Zpkg.h \ - ../../src/H5Oshared.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Zpkg.h: - -../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Orefcount.Plo b/build/src/.deps/H5Orefcount.Plo deleted file mode 100644 index 92179d4..0000000 --- a/build/src/.deps/H5Orefcount.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Orefcount.lo: ../../src/H5Orefcount.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Osdspace.Plo b/build/src/.deps/H5Osdspace.Plo deleted file mode 100644 index e503e5b..0000000 --- a/build/src/.deps/H5Osdspace.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Osdspace.lo: ../../src/H5Osdspace.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Opkg.h ../../src/H5Spkg.h \ - ../../src/H5Oshared.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Spkg.h: - -../../src/H5Oshared.h: diff --git a/build/src/.deps/H5Oshared.Plo b/build/src/.deps/H5Oshared.Plo deleted file mode 100644 index 44e68f3..0000000 --- a/build/src/.deps/H5Oshared.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Oshared.lo: ../../src/H5Oshared.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Opkg.h \ - ../../src/H5FLprivate.h ../../src/H5SMprivate.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Opkg.h: - -../../src/H5FLprivate.h: - -../../src/H5SMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Oshmesg.Plo b/build/src/.deps/H5Oshmesg.Plo deleted file mode 100644 index f1cc8b5..0000000 --- a/build/src/.deps/H5Oshmesg.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Oshmesg.lo: ../../src/H5Oshmesg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Ostab.Plo b/build/src/.deps/H5Ostab.Plo deleted file mode 100644 index 595df2c..0000000 --- a/build/src/.deps/H5Ostab.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Ostab.lo: ../../src/H5Ostab.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Gpkg.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5HLprivate.h ../../src/H5HLpublic.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Gpkg.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5HLprivate.h: - -../../src/H5HLpublic.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Otest.Plo b/build/src/.deps/H5Otest.Plo deleted file mode 100644 index ab20983..0000000 --- a/build/src/.deps/H5Otest.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Otest.lo: ../../src/H5Otest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Apkg.h ../../src/H5Aprivate.h \ - ../../src/H5Apublic.h ../../src/H5Ipublic.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5FLprivate.h ../../src/H5HFprivate.h ../../src/H5HFpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h \ - ../../src/H5Iprivate.h ../../src/H5Opkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Apkg.h: - -../../src/H5Aprivate.h: - -../../src/H5Apublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5FLprivate.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: diff --git a/build/src/.deps/H5Ounknown.Plo b/build/src/.deps/H5Ounknown.Plo deleted file mode 100644 index 2014381..0000000 --- a/build/src/.deps/H5Ounknown.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Ounknown.lo: ../../src/H5Ounknown.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5P.Plo b/build/src/.deps/H5P.Plo deleted file mode 100644 index 3bcfbc9..0000000 --- a/build/src/.deps/H5P.Plo +++ /dev/null @@ -1,323 +0,0 @@ -H5P.lo: ../../src/H5P.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5PL.Plo b/build/src/.deps/H5PL.Plo deleted file mode 100644 index 2a3bc10..0000000 --- a/build/src/.deps/H5PL.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5PL.lo: ../../src/H5PL.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5PLpkg.h ../../src/H5PLprivate.h \ - ../../src/H5PLpublic.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5PLpkg.h: - -../../src/H5PLprivate.h: - -../../src/H5PLpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5Pacpl.Plo b/build/src/.deps/H5Pacpl.Plo deleted file mode 100644 index d198e45..0000000 --- a/build/src/.deps/H5Pacpl.Plo +++ /dev/null @@ -1,321 +0,0 @@ -H5Pacpl.lo: ../../src/H5Pacpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Ppkg.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Dpublic.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pdapl.Plo b/build/src/.deps/H5Pdapl.Plo deleted file mode 100644 index 9dc011a..0000000 --- a/build/src/.deps/H5Pdapl.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Pdapl.lo: ../../src/H5Pdapl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Ppkg.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.deps/H5Pdcpl.Plo b/build/src/.deps/H5Pdcpl.Plo deleted file mode 100644 index 7e91949..0000000 --- a/build/src/.deps/H5Pdcpl.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Pdcpl.lo: ../../src/H5Pdcpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Ppkg.h \ - ../../src/H5Zpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Pdeprec.Plo b/build/src/.deps/H5Pdeprec.Plo deleted file mode 100644 index 14ce3ed..0000000 --- a/build/src/.deps/H5Pdeprec.Plo +++ /dev/null @@ -1,325 +0,0 @@ -H5Pdeprec.lo: ../../src/H5Pdeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pdxpl.Plo b/build/src/.deps/H5Pdxpl.Plo deleted file mode 100644 index 8e694b3..0000000 --- a/build/src/.deps/H5Pdxpl.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Pdxpl.lo: ../../src/H5Pdxpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pfapl.Plo b/build/src/.deps/H5Pfapl.Plo deleted file mode 100644 index 3868b9d..0000000 --- a/build/src/.deps/H5Pfapl.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Pfapl.lo: ../../src/H5Pfapl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Ppkg.h ../../src/H5FDsec2.h \ - ../../src/H5FDstdio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5FDsec2.h: - -../../src/H5FDstdio.h: diff --git a/build/src/.deps/H5Pfcpl.Plo b/build/src/.deps/H5Pfcpl.Plo deleted file mode 100644 index 49bcd4f..0000000 --- a/build/src/.deps/H5Pfcpl.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Pfcpl.lo: ../../src/H5Pfcpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Epubgen.h ../../src/H5SMprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5SMprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pfmpl.Plo b/build/src/.deps/H5Pfmpl.Plo deleted file mode 100644 index 34de5d9..0000000 --- a/build/src/.deps/H5Pfmpl.Plo +++ /dev/null @@ -1,325 +0,0 @@ -H5Pfmpl.lo: ../../src/H5Pfmpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Pgcpl.Plo b/build/src/.deps/H5Pgcpl.Plo deleted file mode 100644 index 1dbeeef..0000000 --- a/build/src/.deps/H5Pgcpl.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Pgcpl.lo: ../../src/H5Pgcpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Iprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pint.Plo b/build/src/.deps/H5Pint.Plo deleted file mode 100644 index 27a87a4..0000000 --- a/build/src/.deps/H5Pint.Plo +++ /dev/null @@ -1,328 +0,0 @@ -H5Pint.lo: ../../src/H5Pint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Plapl.Plo b/build/src/.deps/H5Plapl.Plo deleted file mode 100644 index 4ee9388..0000000 --- a/build/src/.deps/H5Plapl.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Plapl.lo: ../../src/H5Plapl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Plcpl.Plo b/build/src/.deps/H5Plcpl.Plo deleted file mode 100644 index 698a350..0000000 --- a/build/src/.deps/H5Plcpl.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Plcpl.lo: ../../src/H5Plcpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Lprivate.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pocpl.Plo b/build/src/.deps/H5Pocpl.Plo deleted file mode 100644 index e9845db..0000000 --- a/build/src/.deps/H5Pocpl.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Pocpl.lo: ../../src/H5Pocpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h \ - ../../src/H5Ppkg.h ../../src/H5PLprivate.h ../../src/H5PLpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5PLprivate.h: - -../../src/H5PLpublic.h: diff --git a/build/src/.deps/H5Pocpypl.Plo b/build/src/.deps/H5Pocpypl.Plo deleted file mode 100644 index bdc58bf..0000000 --- a/build/src/.deps/H5Pocpypl.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Pocpypl.lo: ../../src/H5Pocpypl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Ppkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Ppkg.h: diff --git a/build/src/.deps/H5Pstrcpl.Plo b/build/src/.deps/H5Pstrcpl.Plo deleted file mode 100644 index 00923a0..0000000 --- a/build/src/.deps/H5Pstrcpl.Plo +++ /dev/null @@ -1,325 +0,0 @@ -H5Pstrcpl.lo: ../../src/H5Pstrcpl.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5Ppkg.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: diff --git a/build/src/.deps/H5Ptest.Plo b/build/src/.deps/H5Ptest.Plo deleted file mode 100644 index dfaeb06..0000000 --- a/build/src/.deps/H5Ptest.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5Ptest.lo: ../../src/H5Ptest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Ppkg.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Sprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Ppkg.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: diff --git a/build/src/.deps/H5R.Plo b/build/src/.deps/H5R.Plo deleted file mode 100644 index dabbf5c..0000000 --- a/build/src/.deps/H5R.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5R.lo: ../../src/H5R.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Rpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Rpkg.h: diff --git a/build/src/.deps/H5RC.Plo b/build/src/.deps/H5RC.Plo deleted file mode 100644 index 412b3f5..0000000 --- a/build/src/.deps/H5RC.Plo +++ /dev/null @@ -1,292 +0,0 @@ -H5RC.lo: ../../src/H5RC.c /usr/include/stdc-predef.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5RCprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5FLprivate.h: - -../../src/H5RCprivate.h: diff --git a/build/src/.deps/H5RS.Plo b/build/src/.deps/H5RS.Plo deleted file mode 100644 index ec88df0..0000000 --- a/build/src/.deps/H5RS.Plo +++ /dev/null @@ -1,292 +0,0 @@ -H5RS.lo: ../../src/H5RS.c /usr/include/stdc-predef.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5RSprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5FLprivate.h: - -../../src/H5RSprivate.h: diff --git a/build/src/.deps/H5Rdeprec.Plo b/build/src/.deps/H5Rdeprec.Plo deleted file mode 100644 index fa4e668..0000000 --- a/build/src/.deps/H5Rdeprec.Plo +++ /dev/null @@ -1,356 +0,0 @@ -H5Rdeprec.lo: ../../src/H5Rdeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Rpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Rpkg.h: diff --git a/build/src/.deps/H5S.Plo b/build/src/.deps/H5S.Plo deleted file mode 100644 index db86728..0000000 --- a/build/src/.deps/H5S.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5S.lo: ../../src/H5S.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Spkg.h ../../src/H5Sprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: diff --git a/build/src/.deps/H5SL.Plo b/build/src/.deps/H5SL.Plo deleted file mode 100644 index d2e5c1c..0000000 --- a/build/src/.deps/H5SL.Plo +++ /dev/null @@ -1,297 +0,0 @@ -H5SL.lo: ../../src/H5SL.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5SLprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5SM.Plo b/build/src/.deps/H5SM.Plo deleted file mode 100644 index 2e6ee7e..0000000 --- a/build/src/.deps/H5SM.Plo +++ /dev/null @@ -1,384 +0,0 @@ -H5SM.lo: ../../src/H5SM.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5FLprivate.h ../../src/H5MFprivate.h \ - ../../src/H5FDprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Dpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h ../../src/H5MMprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5SMpkg.h ../../src/H5SMprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMbtree2.Plo b/build/src/.deps/H5SMbtree2.Plo deleted file mode 100644 index 4825b6c..0000000 --- a/build/src/.deps/H5SMbtree2.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5SMbtree2.lo: ../../src/H5SMbtree2.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5SMpkg.h \ - ../../src/H5SMprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMcache.Plo b/build/src/.deps/H5SMcache.Plo deleted file mode 100644 index 963f36a..0000000 --- a/build/src/.deps/H5SMcache.Plo +++ /dev/null @@ -1,383 +0,0 @@ -H5SMcache.lo: ../../src/H5SMcache.c /usr/include/stdc-predef.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5FLprivate.h ../../src/H5MFprivate.h ../../src/H5FDprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5FDmpi.h \ - ../../src/H5FDmpio.h ../../src/H5MMprivate.h ../../src/H5SMpkg.h \ - ../../src/H5SMprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5MFprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5MMprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5SMmessage.Plo b/build/src/.deps/H5SMmessage.Plo deleted file mode 100644 index a06cf1f..0000000 --- a/build/src/.deps/H5SMmessage.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5SMmessage.lo: ../../src/H5SMmessage.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Opkg.h \ - ../../src/H5Oprivate.h ../../src/H5Opublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5FLprivate.h ../../src/H5SMpkg.h \ - ../../src/H5SMprivate.h ../../src/H5B2private.h ../../src/H5B2public.h \ - ../../src/H5HFprivate.h ../../src/H5HFpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5SMtest.Plo b/build/src/.deps/H5SMtest.Plo deleted file mode 100644 index a26aa10..0000000 --- a/build/src/.deps/H5SMtest.Plo +++ /dev/null @@ -1,370 +0,0 @@ -H5SMtest.lo: ../../src/H5SMtest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5SMpkg.h ../../src/H5SMprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Spublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5B2private.h ../../src/H5B2public.h ../../src/H5HFprivate.h \ - ../../src/H5HFpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5SMpkg.h: - -../../src/H5SMprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5B2private.h: - -../../src/H5B2public.h: - -../../src/H5HFprivate.h: - -../../src/H5HFpublic.h: diff --git a/build/src/.deps/H5ST.Plo b/build/src/.deps/H5ST.Plo deleted file mode 100644 index a27e451..0000000 --- a/build/src/.deps/H5ST.Plo +++ /dev/null @@ -1,292 +0,0 @@ -H5ST.lo: ../../src/H5ST.c /usr/include/stdc-predef.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h /usr/include/stdio.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/bits/byteswap-16.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h ../../src/H5Ipublic.h ../../src/H5Epubgen.h \ - ../../src/H5private.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5FLprivate.h ../../src/H5STprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5FLprivate.h: - -../../src/H5STprivate.h: diff --git a/build/src/.deps/H5Sall.Plo b/build/src/.deps/H5Sall.Plo deleted file mode 100644 index 9621fba..0000000 --- a/build/src/.deps/H5Sall.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Sall.lo: ../../src/H5Sall.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ - ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Sdbg.Plo b/build/src/.deps/H5Sdbg.Plo deleted file mode 100644 index 709830e..0000000 --- a/build/src/.deps/H5Sdbg.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Sdbg.lo: ../../src/H5Sdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Spkg.h \ - ../../src/H5Sprivate.h ../../src/H5Spublic.h ../../src/H5Dpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Oprivate.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Shyper.Plo b/build/src/.deps/H5Shyper.Plo deleted file mode 100644 index 6270cc9..0000000 --- a/build/src/.deps/H5Shyper.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5Shyper.lo: ../../src/H5Shyper.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5Spkg.h ../../src/H5Sprivate.h \ - ../../src/H5Spublic.h ../../src/H5Dpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Oprivate.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Smpio.Plo b/build/src/.deps/H5Smpio.Plo deleted file mode 100644 index 9b06cad..0000000 --- a/build/src/.deps/H5Smpio.Plo +++ /dev/null @@ -1,374 +0,0 @@ -H5Smpio.lo: ../../src/H5Smpio.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Spkg.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Spkg.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Snone.Plo b/build/src/.deps/H5Snone.Plo deleted file mode 100644 index 2e056fa..0000000 --- a/build/src/.deps/H5Snone.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5Snone.lo: ../../src/H5Snone.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ - ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5VMprivate.h ../../src/H5Dprivate.h ../../src/H5FDprivate.h \ - ../../src/H5FDmpi.h ../../src/H5FDmpio.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5VMprivate.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: diff --git a/build/src/.deps/H5Spoint.Plo b/build/src/.deps/H5Spoint.Plo deleted file mode 100644 index 8cd98cf..0000000 --- a/build/src/.deps/H5Spoint.Plo +++ /dev/null @@ -1,367 +0,0 @@ -H5Spoint.lo: ../../src/H5Spoint.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ - ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5Sselect.Plo b/build/src/.deps/H5Sselect.Plo deleted file mode 100644 index bdfde3b..0000000 --- a/build/src/.deps/H5Sselect.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Sselect.lo: ../../src/H5Sselect.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h ../../src/H5Spkg.h \ - ../../src/H5VMprivate.h ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Spkg.h: - -../../src/H5VMprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Stest.Plo b/build/src/.deps/H5Stest.Plo deleted file mode 100644 index c82b667..0000000 --- a/build/src/.deps/H5Stest.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Stest.lo: ../../src/H5Stest.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Spkg.h ../../src/H5Sprivate.h ../../src/H5Spublic.h \ - ../../src/H5Dpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Spkg.h: - -../../src/H5Sprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5T.Plo b/build/src/.deps/H5T.Plo deleted file mode 100644 index 508b2a2..0000000 --- a/build/src/.deps/H5T.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5T.lo: ../../src/H5T.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Dprivate.h \ - ../../src/H5FDprivate.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5FOprivate.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Tpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Dprivate.h: - -../../src/H5FDprivate.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5FOprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5TS.Plo b/build/src/.deps/H5TS.Plo deleted file mode 100644 index e6d8456..0000000 --- a/build/src/.deps/H5TS.Plo +++ /dev/null @@ -1,293 +0,0 @@ -H5TS.lo: ../../src/H5TS.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: diff --git a/build/src/.deps/H5Tarray.Plo b/build/src/.deps/H5Tarray.Plo deleted file mode 100644 index c508ef4..0000000 --- a/build/src/.deps/H5Tarray.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tarray.lo: ../../src/H5Tarray.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tbit.Plo b/build/src/.deps/H5Tbit.Plo deleted file mode 100644 index 5d4d771..0000000 --- a/build/src/.deps/H5Tbit.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tbit.lo: ../../src/H5Tbit.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ - ../../src/H5Tpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Tcommit.Plo b/build/src/.deps/H5Tcommit.Plo deleted file mode 100644 index baa37ce..0000000 --- a/build/src/.deps/H5Tcommit.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5Tcommit.lo: ../../src/H5Tcommit.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Lprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5Tprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5Tpkg.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Lprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5Tcompound.Plo b/build/src/.deps/H5Tcompound.Plo deleted file mode 100644 index a56211b..0000000 --- a/build/src/.deps/H5Tcompound.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tcompound.lo: ../../src/H5Tcompound.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tconv.Plo b/build/src/.deps/H5Tconv.Plo deleted file mode 100644 index 435b195..0000000 --- a/build/src/.deps/H5Tconv.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Tconv.lo: ../../src/H5Tconv.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5HGprivate.h ../../src/H5HGpublic.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Tpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5Tcset.Plo b/build/src/.deps/H5Tcset.Plo deleted file mode 100644 index f9f6e31..0000000 --- a/build/src/.deps/H5Tcset.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tcset.lo: ../../src/H5Tcset.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tdbg.Plo b/build/src/.deps/H5Tdbg.Plo deleted file mode 100644 index 28960cf..0000000 --- a/build/src/.deps/H5Tdbg.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Tdbg.lo: ../../src/H5Tdbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tdeprec.Plo b/build/src/.deps/H5Tdeprec.Plo deleted file mode 100644 index 99cdf6c..0000000 --- a/build/src/.deps/H5Tdeprec.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tdeprec.lo: ../../src/H5Tdeprec.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5FOprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Iprivate.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FOprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tenum.Plo b/build/src/.deps/H5Tenum.Plo deleted file mode 100644 index 4cd1dc7..0000000 --- a/build/src/.deps/H5Tenum.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tenum.lo: ../../src/H5Tenum.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfields.Plo b/build/src/.deps/H5Tfields.Plo deleted file mode 100644 index dcd29a7..0000000 --- a/build/src/.deps/H5Tfields.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tfields.lo: ../../src/H5Tfields.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfixed.Plo b/build/src/.deps/H5Tfixed.Plo deleted file mode 100644 index d9cdaec..0000000 --- a/build/src/.deps/H5Tfixed.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tfixed.lo: ../../src/H5Tfixed.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tfloat.Plo b/build/src/.deps/H5Tfloat.Plo deleted file mode 100644 index b1c9d91..0000000 --- a/build/src/.deps/H5Tfloat.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tfloat.lo: ../../src/H5Tfloat.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tinit.Plo b/build/src/.deps/H5Tinit.Plo deleted file mode 100644 index c9a84c9..0000000 --- a/build/src/.deps/H5Tinit.Plo +++ /dev/null @@ -1,365 +0,0 @@ -H5Tinit.lo: H5Tinit.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5private.h \ - ../../src/H5FLprivate.h ../../src/H5Iprivate.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5private.h: - -../../src/H5FLprivate.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tnative.Plo b/build/src/.deps/H5Tnative.Plo deleted file mode 100644 index e0836e2..0000000 --- a/build/src/.deps/H5Tnative.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Tnative.lo: ../../src/H5Tnative.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Dpublic.h ../../src/H5Fpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Opublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5MMprivate.h ../../src/H5Tpkg.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Toffset.Plo b/build/src/.deps/H5Toffset.Plo deleted file mode 100644 index 06eb4bc..0000000 --- a/build/src/.deps/H5Toffset.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Toffset.lo: ../../src/H5Toffset.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Toh.Plo b/build/src/.deps/H5Toh.Plo deleted file mode 100644 index 61bc1ee..0000000 --- a/build/src/.deps/H5Toh.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Toh.lo: ../../src/H5Toh.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Opkg.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5MMpublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5FLprivate.h \ - ../../src/H5Tpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Opkg.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5FLprivate.h: - -../../src/H5Tpkg.h: diff --git a/build/src/.deps/H5Topaque.Plo b/build/src/.deps/H5Topaque.Plo deleted file mode 100644 index 07a0d3c..0000000 --- a/build/src/.deps/H5Topaque.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Topaque.lo: ../../src/H5Topaque.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5FLprivate.h \ - ../../src/H5Oprivate.h ../../src/H5Dpublic.h ../../src/H5Spublic.h \ - ../../src/H5ACprivate.h ../../src/H5Cprivate.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5Zpublic.h ../../src/H5SLprivate.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Torder.Plo b/build/src/.deps/H5Torder.Plo deleted file mode 100644 index df2977d..0000000 --- a/build/src/.deps/H5Torder.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Torder.lo: ../../src/H5Torder.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tpad.Plo b/build/src/.deps/H5Tpad.Plo deleted file mode 100644 index 67c4159..0000000 --- a/build/src/.deps/H5Tpad.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tpad.lo: ../../src/H5Tpad.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tprecis.Plo b/build/src/.deps/H5Tprecis.Plo deleted file mode 100644 index 2a5a90f..0000000 --- a/build/src/.deps/H5Tprecis.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tprecis.lo: ../../src/H5Tprecis.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tstrpad.Plo b/build/src/.deps/H5Tstrpad.Plo deleted file mode 100644 index 3cc6072..0000000 --- a/build/src/.deps/H5Tstrpad.Plo +++ /dev/null @@ -1,360 +0,0 @@ -H5Tstrpad.lo: ../../src/H5Tstrpad.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5Tpkg.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5MMpublic.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Opublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5FDpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5FLprivate.h ../../src/H5Oprivate.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Pprivate.h ../../src/H5Ppublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tvisit.Plo b/build/src/.deps/H5Tvisit.Plo deleted file mode 100644 index fd40d0b..0000000 --- a/build/src/.deps/H5Tvisit.Plo +++ /dev/null @@ -1,358 +0,0 @@ -H5Tvisit.lo: ../../src/H5Tvisit.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Tpkg.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5MMpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5FLprivate.h ../../src/H5Oprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Tpkg.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5FLprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Tvlen.Plo b/build/src/.deps/H5Tvlen.Plo deleted file mode 100644 index fc760b6..0000000 --- a/build/src/.deps/H5Tvlen.Plo +++ /dev/null @@ -1,379 +0,0 @@ -H5Tvlen.lo: ../../src/H5Tvlen.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5HGprivate.h \ - ../../src/H5HGpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5Tpkg.h ../../src/H5FLprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5HGprivate.h: - -../../src/H5HGpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Tpkg.h: - -../../src/H5FLprivate.h: diff --git a/build/src/.deps/H5VM.Plo b/build/src/.deps/H5VM.Plo deleted file mode 100644 index 864c41e..0000000 --- a/build/src/.deps/H5VM.Plo +++ /dev/null @@ -1,356 +0,0 @@ -H5VM.lo: ../../src/H5VM.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Oprivate.h \ - ../../src/H5Opublic.h ../../src/H5Lpublic.h ../../src/H5Tpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Cprivate.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5SLprivate.h ../../src/H5Tprivate.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Bprivate.h \ - ../../src/H5Bpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zprivate.h \ - ../../src/H5VMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5VMprivate.h: diff --git a/build/src/.deps/H5WB.Plo b/build/src/.deps/H5WB.Plo deleted file mode 100644 index 34d4875..0000000 --- a/build/src/.deps/H5WB.Plo +++ /dev/null @@ -1,293 +0,0 @@ -H5WB.lo: ../../src/H5WB.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5FLprivate.h \ - ../../src/H5WBprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5FLprivate.h: - -../../src/H5WBprivate.h: diff --git a/build/src/.deps/H5Z.Plo b/build/src/.deps/H5Z.Plo deleted file mode 100644 index bc01676..0000000 --- a/build/src/.deps/H5Z.Plo +++ /dev/null @@ -1,377 +0,0 @@ -H5Z.lo: ../../src/H5Z.c /usr/include/stdc-predef.h ../../src/H5private.h \ - ../../src/H5public.h H5pubconf.h ../../src/H5version.h \ - /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5PLprivate.h ../../src/H5PLpublic.h \ - ../../src/H5Zpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5PLprivate.h: - -../../src/H5PLpublic.h: - -../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zdeflate.Plo b/build/src/.deps/H5Zdeflate.Plo deleted file mode 100644 index b1f0df1..0000000 --- a/build/src/.deps/H5Zdeflate.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5Zdeflate.lo: ../../src/H5Zdeflate.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Zpkg.h ../../src/H5Zprivate.h \ - ../../src/H5Zpublic.h ../../src/H5Tprivate.h ../../src/H5Tpublic.h \ - ../../src/H5Gprivate.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Opublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5Fpublic.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5FDpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - /usr/include/zlib.h /usr/include/zconf.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpkg.h: - -../../src/H5Zprivate.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -/usr/include/zlib.h: - -/usr/include/zconf.h: diff --git a/build/src/.deps/H5Zfletcher32.Plo b/build/src/.deps/H5Zfletcher32.Plo deleted file mode 100644 index d021b80..0000000 --- a/build/src/.deps/H5Zfletcher32.Plo +++ /dev/null @@ -1,339 +0,0 @@ -H5Zfletcher32.lo: ../../src/H5Zfletcher32.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpkg.h: - -../../src/H5Zprivate.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5Znbit.Plo b/build/src/.deps/H5Znbit.Plo deleted file mode 100644 index fd211a4..0000000 --- a/build/src/.deps/H5Znbit.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Znbit.lo: ../../src/H5Znbit.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Ppublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Fpublic.h ../../src/H5FDpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5Zpublic.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5Pprivate.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Zpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zscaleoffset.Plo b/build/src/.deps/H5Zscaleoffset.Plo deleted file mode 100644 index ed7ec34..0000000 --- a/build/src/.deps/H5Zscaleoffset.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Zscaleoffset.lo: ../../src/H5Zscaleoffset.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5ACprivate.h ../../src/H5ACpublic.h \ - ../../src/H5Cpublic.h ../../src/H5Cprivate.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5Ipublic.h ../../src/H5FDpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Dpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5MMpublic.h ../../src/H5Zpublic.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5Oprivate.h ../../src/H5Spublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Zpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5ACprivate.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Zshuffle.Plo b/build/src/.deps/H5Zshuffle.Plo deleted file mode 100644 index c6e060d..0000000 --- a/build/src/.deps/H5Zshuffle.Plo +++ /dev/null @@ -1,349 +0,0 @@ -H5Zshuffle.lo: ../../src/H5Zshuffle.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5Pprivate.h \ - ../../src/H5Ppublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Dpublic.h ../../src/H5Fpublic.h ../../src/H5FDpublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Opublic.h \ - ../../src/H5Zpublic.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5Fprivate.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h ../../src/H5Zpkg.h \ - ../../src/H5Zprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zpkg.h: - -../../src/H5Zprivate.h: diff --git a/build/src/.deps/H5Zszip.Plo b/build/src/.deps/H5Zszip.Plo deleted file mode 100644 index aa78418..0000000 --- a/build/src/.deps/H5Zszip.Plo +++ /dev/null @@ -1,363 +0,0 @@ -H5Zszip.lo: ../../src/H5Zszip.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5Iprivate.h ../../src/H5MMprivate.h \ - ../../src/H5MMpublic.h ../../src/H5Oprivate.h ../../src/H5Opublic.h \ - ../../src/H5Lpublic.h ../../src/H5Tpublic.h ../../src/H5Dpublic.h \ - ../../src/H5Spublic.h ../../src/H5ACprivate.h ../../src/H5Cprivate.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Zpublic.h \ - ../../src/H5SLprivate.h ../../src/H5Tprivate.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Bprivate.h ../../src/H5Bpublic.h \ - ../../src/H5RCprivate.h ../../src/H5RSprivate.h ../../src/H5Rprivate.h \ - ../../src/H5Rpublic.h ../../src/H5Zprivate.h ../../src/H5Sprivate.h \ - ../../src/H5Zpkg.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Oprivate.h: - -../../src/H5Opublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Dpublic.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Zpublic.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Zpkg.h: diff --git a/build/src/.deps/H5Ztrans.Plo b/build/src/.deps/H5Ztrans.Plo deleted file mode 100644 index 9ae1f8c..0000000 --- a/build/src/.deps/H5Ztrans.Plo +++ /dev/null @@ -1,344 +0,0 @@ -H5Ztrans.lo: ../../src/H5Ztrans.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Eprivate.h ../../src/H5Epublic.h \ - ../../src/H5Ipublic.h ../../src/H5Epubgen.h ../../src/H5Iprivate.h \ - ../../src/H5MMprivate.h ../../src/H5MMpublic.h ../../src/H5VMprivate.h \ - ../../src/H5Zpkg.h ../../src/H5Zprivate.h ../../src/H5Zpublic.h \ - ../../src/H5Tprivate.h ../../src/H5Tpublic.h ../../src/H5Gprivate.h \ - ../../src/H5Gpublic.h ../../src/H5Lpublic.h ../../src/H5Opublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5Fprivate.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5FDpublic.h ../../src/H5RCprivate.h ../../src/H5RSprivate.h \ - ../../src/H5Rprivate.h ../../src/H5Rpublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5VMprivate.h: - -../../src/H5Zpkg.h: - -../../src/H5Zprivate.h: - -../../src/H5Zpublic.h: - -../../src/H5Tprivate.h: - -../../src/H5Tpublic.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5FDpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: diff --git a/build/src/.deps/H5checksum.Plo b/build/src/.deps/H5checksum.Plo deleted file mode 100644 index c9aaa01..0000000 --- a/build/src/.deps/H5checksum.Plo +++ /dev/null @@ -1,279 +0,0 @@ -H5checksum.lo: ../../src/H5checksum.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: diff --git a/build/src/.deps/H5dbg.Plo b/build/src/.deps/H5dbg.Plo deleted file mode 100644 index 3857de9..0000000 --- a/build/src/.deps/H5dbg.Plo +++ /dev/null @@ -1,279 +0,0 @@ -H5dbg.lo: ../../src/H5dbg.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: diff --git a/build/src/.deps/H5detect.Po b/build/src/.deps/H5detect.Po deleted file mode 100644 index a84ef63..0000000 --- a/build/src/.deps/H5detect.Po +++ /dev/null @@ -1,293 +0,0 @@ -H5detect.o: ../../src/H5detect.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Tpublic.h ../../src/H5Ipublic.h \ - ../../src/H5Rpublic.h ../../src/H5Gpublic.h ../../src/H5Lpublic.h \ - ../../src/H5Opublic.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Tpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5Rpublic.h: - -../../src/H5Gpublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Opublic.h: diff --git a/build/src/.deps/H5lib_settings.Plo b/build/src/.deps/H5lib_settings.Plo deleted file mode 100644 index 87e923b..0000000 --- a/build/src/.deps/H5lib_settings.Plo +++ /dev/null @@ -1,3 +0,0 @@ -H5lib_settings.lo: H5lib_settings.c /usr/include/stdc-predef.h - -/usr/include/stdc-predef.h: diff --git a/build/src/.deps/H5make_libsettings.Po b/build/src/.deps/H5make_libsettings.Po deleted file mode 100644 index 33eb490..0000000 --- a/build/src/.deps/H5make_libsettings.Po +++ /dev/null @@ -1,278 +0,0 @@ -H5make_libsettings.o: ../../src/H5make_libsettings.c \ - /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ - /usr/include/xlocale.h ../../src/H5private.h ../../src/H5public.h \ - H5pubconf.h ../../src/H5version.h /usr/include/sys/types.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -/usr/include/stdio.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/time.h: - -/usr/include/bits/time.h: - -/usr/include/bits/timex.h: - -/usr/include/xlocale.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/sys/types.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: diff --git a/build/src/.deps/H5system.Plo b/build/src/.deps/H5system.Plo deleted file mode 100644 index 4136782..0000000 --- a/build/src/.deps/H5system.Plo +++ /dev/null @@ -1,304 +0,0 @@ -H5system.lo: ../../src/H5system.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Fprivate.h ../../src/H5Fpublic.h \ - ../../src/H5ACpublic.h ../../src/H5Cpublic.h ../../src/H5Ipublic.h \ - ../../src/H5FDpublic.h ../../src/H5MMprivate.h ../../src/H5MMpublic.h \ - ../../src/H5Eprivate.h ../../src/H5Epublic.h ../../src/H5Epubgen.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Fprivate.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDpublic.h: - -../../src/H5MMprivate.h: - -../../src/H5MMpublic.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: diff --git a/build/src/.deps/H5timer.Plo b/build/src/.deps/H5timer.Plo deleted file mode 100644 index 72dd534..0000000 --- a/build/src/.deps/H5timer.Plo +++ /dev/null @@ -1,279 +0,0 @@ -H5timer.lo: ../../src/H5timer.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: diff --git a/build/src/.deps/H5trace.Plo b/build/src/.deps/H5trace.Plo deleted file mode 100644 index ea1cb04..0000000 --- a/build/src/.deps/H5trace.Plo +++ /dev/null @@ -1,372 +0,0 @@ -H5trace.lo: ../../src/H5trace.c /usr/include/stdc-predef.h \ - ../../src/H5private.h ../../src/H5public.h H5pubconf.h \ - ../../src/H5version.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/time.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/byteswap.h /usr/include/bits/byteswap-16.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/bits/time.h \ - /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/stdio_lim.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/inttypes.h \ - ../../src/H5api_adpt.h /usr/include/assert.h /usr/include/ctype.h \ - /usr/include/xlocale.h /usr/include/errno.h /usr/include/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/fcntl.h /usr/include/bits/fcntl.h \ - /usr/include/bits/fcntl-linux.h /usr/include/bits/uio.h \ - /usr/include/bits/stat.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h \ - /usr/include/math.h /usr/include/bits/huge_val.h \ - /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ - /usr/include/bits/inf.h /usr/include/bits/nan.h \ - /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ - /usr/include/signal.h /usr/include/bits/signum.h \ - /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/sigstack.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigthread.h \ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h \ - /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ - /usr/include/wchar.h /usr/include/bits/sys_errlist.h \ - /usr/include/stdlib.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h /usr/include/string.h \ - /usr/include/unistd.h /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h /usr/include/bits/confname.h \ - /usr/include/getopt.h /usr/include/sys/wait.h /usr/include/pwd.h \ - /usr/include/sys/stat.h /usr/include/sys/time.h \ - /usr/include/bits/timex.h /usr/include/setjmp.h \ - /usr/include/bits/setjmp.h /usr/include/sys/resource.h \ - /usr/include/bits/resource.h /usr/include/sys/ioctl.h \ - /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \ - /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ - /usr/include/dlfcn.h /usr/include/bits/dlfcn.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h ../../src/H5win32defs.h \ - ../../src/H5overflow.h ../../src/H5Dprivate.h ../../src/H5Dpublic.h \ - ../../src/H5Ipublic.h ../../src/H5FDprivate.h ../../src/H5FDpublic.h \ - ../../src/H5Fpublic.h ../../src/H5ACpublic.h ../../src/H5Cpublic.h \ - ../../src/H5Pprivate.h ../../src/H5Ppublic.h ../../src/H5Lpublic.h \ - ../../src/H5Tpublic.h ../../src/H5Opublic.h ../../src/H5MMpublic.h \ - ../../src/H5Zpublic.h ../../src/H5FDmpi.h ../../src/H5FDmpio.h \ - ../../src/H5Oprivate.h ../../src/H5Spublic.h ../../src/H5ACprivate.h \ - ../../src/H5Cprivate.h ../../src/H5Fprivate.h ../../src/H5SLprivate.h \ - ../../src/H5Tprivate.h ../../src/H5Gprivate.h ../../src/H5Gpublic.h \ - ../../src/H5Bprivate.h ../../src/H5Bpublic.h ../../src/H5RCprivate.h \ - ../../src/H5RSprivate.h ../../src/H5Rprivate.h ../../src/H5Rpublic.h \ - ../../src/H5Zprivate.h ../../src/H5Sprivate.h ../../src/H5Eprivate.h \ - ../../src/H5Epublic.h ../../src/H5Epubgen.h ../../src/H5Ipkg.h \ - ../../src/H5Iprivate.h ../../src/H5MMprivate.h - -/usr/include/stdc-predef.h: - -../../src/H5private.h: - -../../src/H5public.h: - -H5pubconf.h: - -../../src/H5version.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/types.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/byteswap-16.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/stdio_lim.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdint.h: - -/usr/include/stdint.h: - -/usr/include/bits/wchar.h: - -/usr/include/inttypes.h: - -../../src/H5api_adpt.h: - -/usr/include/assert.h: - -/usr/include/ctype.h: - -/usr/include/xlocale.h: - -/usr/include/errno.h: - -/usr/include/bits/errno.h: - -/usr/include/linux/errno.h: - -/usr/include/asm/errno.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/fcntl.h: - -/usr/include/bits/fcntl.h: - -/usr/include/bits/fcntl-linux.h: - -/usr/include/bits/uio.h: - -/usr/include/bits/stat.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/float.h: - -/usr/include/math.h: - -/usr/include/bits/huge_val.h: - -/usr/include/bits/huge_valf.h: - -/usr/include/bits/huge_vall.h: - -/usr/include/bits/inf.h: - -/usr/include/bits/nan.h: - -/usr/include/bits/mathdef.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/signal.h: - -/usr/include/bits/signum.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/sys/ucontext.h: - -/usr/include/bits/sigthread.h: - -/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/stdlib.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/string.h: - -/usr/include/unistd.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/bits/environments.h: - -/usr/include/bits/confname.h: - -/usr/include/getopt.h: - -/usr/include/sys/wait.h: - -/usr/include/pwd.h: - -/usr/include/sys/stat.h: - -/usr/include/sys/time.h: - -/usr/include/bits/timex.h: - -/usr/include/setjmp.h: - -/usr/include/bits/setjmp.h: - -/usr/include/sys/resource.h: - -/usr/include/bits/resource.h: - -/usr/include/sys/ioctl.h: - -/usr/include/bits/ioctls.h: - -/usr/include/asm/ioctls.h: - -/usr/include/asm-generic/ioctls.h: - -/usr/include/linux/ioctl.h: - -/usr/include/asm/ioctl.h: - -/usr/include/asm-generic/ioctl.h: - -/usr/include/bits/ioctl-types.h: - -/usr/include/sys/ttydefaults.h: - -/usr/include/dlfcn.h: - -/usr/include/bits/dlfcn.h: - -/usr/include/dirent.h: - -/usr/include/bits/dirent.h: - -../../src/H5win32defs.h: - -../../src/H5overflow.h: - -../../src/H5Dprivate.h: - -../../src/H5Dpublic.h: - -../../src/H5Ipublic.h: - -../../src/H5FDprivate.h: - -../../src/H5FDpublic.h: - -../../src/H5Fpublic.h: - -../../src/H5ACpublic.h: - -../../src/H5Cpublic.h: - -../../src/H5Pprivate.h: - -../../src/H5Ppublic.h: - -../../src/H5Lpublic.h: - -../../src/H5Tpublic.h: - -../../src/H5Opublic.h: - -../../src/H5MMpublic.h: - -../../src/H5Zpublic.h: - -../../src/H5FDmpi.h: - -../../src/H5FDmpio.h: - -../../src/H5Oprivate.h: - -../../src/H5Spublic.h: - -../../src/H5ACprivate.h: - -../../src/H5Cprivate.h: - -../../src/H5Fprivate.h: - -../../src/H5SLprivate.h: - -../../src/H5Tprivate.h: - -../../src/H5Gprivate.h: - -../../src/H5Gpublic.h: - -../../src/H5Bprivate.h: - -../../src/H5Bpublic.h: - -../../src/H5RCprivate.h: - -../../src/H5RSprivate.h: - -../../src/H5Rprivate.h: - -../../src/H5Rpublic.h: - -../../src/H5Zprivate.h: - -../../src/H5Sprivate.h: - -../../src/H5Eprivate.h: - -../../src/H5Epublic.h: - -../../src/H5Epubgen.h: - -../../src/H5Ipkg.h: - -../../src/H5Iprivate.h: - -../../src/H5MMprivate.h: diff --git a/build/src/.libs/H5.o b/build/src/.libs/H5.o deleted file mode 100644 index 67fa32d..0000000 Binary files a/build/src/.libs/H5.o and /dev/null differ diff --git a/build/src/.libs/H5A.o b/build/src/.libs/H5A.o deleted file mode 100644 index ba9bc85..0000000 Binary files a/build/src/.libs/H5A.o and /dev/null differ diff --git a/build/src/.libs/H5AC.o b/build/src/.libs/H5AC.o deleted file mode 100644 index 06b0957..0000000 Binary files a/build/src/.libs/H5AC.o and /dev/null differ diff --git a/build/src/.libs/H5Abtree2.o b/build/src/.libs/H5Abtree2.o deleted file mode 100644 index 90e589c..0000000 Binary files a/build/src/.libs/H5Abtree2.o and /dev/null differ diff --git a/build/src/.libs/H5Adense.o b/build/src/.libs/H5Adense.o deleted file mode 100644 index 4c1f08d..0000000 Binary files a/build/src/.libs/H5Adense.o and /dev/null differ diff --git a/build/src/.libs/H5Adeprec.o b/build/src/.libs/H5Adeprec.o deleted file mode 100644 index 87cdc6a..0000000 Binary files a/build/src/.libs/H5Adeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Aint.o b/build/src/.libs/H5Aint.o deleted file mode 100644 index 80996b1..0000000 Binary files a/build/src/.libs/H5Aint.o and /dev/null differ diff --git a/build/src/.libs/H5Atest.o b/build/src/.libs/H5Atest.o deleted file mode 100644 index e96ab94..0000000 Binary files a/build/src/.libs/H5Atest.o and /dev/null differ diff --git a/build/src/.libs/H5B.o b/build/src/.libs/H5B.o deleted file mode 100644 index 134442f..0000000 Binary files a/build/src/.libs/H5B.o and /dev/null differ diff --git a/build/src/.libs/H5B2.o b/build/src/.libs/H5B2.o deleted file mode 100644 index ef60440..0000000 Binary files a/build/src/.libs/H5B2.o and /dev/null differ diff --git a/build/src/.libs/H5B2cache.o b/build/src/.libs/H5B2cache.o deleted file mode 100644 index 517f25b..0000000 Binary files a/build/src/.libs/H5B2cache.o and /dev/null differ diff --git a/build/src/.libs/H5B2dbg.o b/build/src/.libs/H5B2dbg.o deleted file mode 100644 index 1d96fc6..0000000 Binary files a/build/src/.libs/H5B2dbg.o and /dev/null differ diff --git a/build/src/.libs/H5B2hdr.o b/build/src/.libs/H5B2hdr.o deleted file mode 100644 index 80d91c7..0000000 Binary files a/build/src/.libs/H5B2hdr.o and /dev/null differ diff --git a/build/src/.libs/H5B2int.o b/build/src/.libs/H5B2int.o deleted file mode 100644 index 3ee3cad..0000000 Binary files a/build/src/.libs/H5B2int.o and /dev/null differ diff --git a/build/src/.libs/H5B2stat.o b/build/src/.libs/H5B2stat.o deleted file mode 100644 index c4e01a8..0000000 Binary files a/build/src/.libs/H5B2stat.o and /dev/null differ diff --git a/build/src/.libs/H5B2test.o b/build/src/.libs/H5B2test.o deleted file mode 100644 index 4e5433a..0000000 Binary files a/build/src/.libs/H5B2test.o and /dev/null differ diff --git a/build/src/.libs/H5Bcache.o b/build/src/.libs/H5Bcache.o deleted file mode 100644 index 53023b1..0000000 Binary files a/build/src/.libs/H5Bcache.o and /dev/null differ diff --git a/build/src/.libs/H5Bdbg.o b/build/src/.libs/H5Bdbg.o deleted file mode 100644 index f7b93c6..0000000 Binary files a/build/src/.libs/H5Bdbg.o and /dev/null differ diff --git a/build/src/.libs/H5C.o b/build/src/.libs/H5C.o deleted file mode 100644 index 06f0322..0000000 Binary files a/build/src/.libs/H5C.o and /dev/null differ diff --git a/build/src/.libs/H5CS.o b/build/src/.libs/H5CS.o deleted file mode 100644 index eb16540..0000000 Binary files a/build/src/.libs/H5CS.o and /dev/null differ diff --git a/build/src/.libs/H5D.o b/build/src/.libs/H5D.o deleted file mode 100644 index a754b3e..0000000 Binary files a/build/src/.libs/H5D.o and /dev/null differ diff --git a/build/src/.libs/H5Dbtree.o b/build/src/.libs/H5Dbtree.o deleted file mode 100644 index a084064..0000000 Binary files a/build/src/.libs/H5Dbtree.o and /dev/null differ diff --git a/build/src/.libs/H5Dchunk.o b/build/src/.libs/H5Dchunk.o deleted file mode 100644 index f331567..0000000 Binary files a/build/src/.libs/H5Dchunk.o and /dev/null differ diff --git a/build/src/.libs/H5Dcompact.o b/build/src/.libs/H5Dcompact.o deleted file mode 100644 index 0240425..0000000 Binary files a/build/src/.libs/H5Dcompact.o and /dev/null differ diff --git a/build/src/.libs/H5Dcontig.o b/build/src/.libs/H5Dcontig.o deleted file mode 100644 index f7ddbbc..0000000 Binary files a/build/src/.libs/H5Dcontig.o and /dev/null differ diff --git a/build/src/.libs/H5Ddbg.o b/build/src/.libs/H5Ddbg.o deleted file mode 100644 index 0ee87b2..0000000 Binary files a/build/src/.libs/H5Ddbg.o and /dev/null differ diff --git a/build/src/.libs/H5Ddeprec.o b/build/src/.libs/H5Ddeprec.o deleted file mode 100644 index 6f33a4b..0000000 Binary files a/build/src/.libs/H5Ddeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Defl.o b/build/src/.libs/H5Defl.o deleted file mode 100644 index 56e6731..0000000 Binary files a/build/src/.libs/H5Defl.o and /dev/null differ diff --git a/build/src/.libs/H5Dfill.o b/build/src/.libs/H5Dfill.o deleted file mode 100644 index aaa51eb..0000000 Binary files a/build/src/.libs/H5Dfill.o and /dev/null differ diff --git a/build/src/.libs/H5Dint.o b/build/src/.libs/H5Dint.o deleted file mode 100644 index ce4e211..0000000 Binary files a/build/src/.libs/H5Dint.o and /dev/null differ diff --git a/build/src/.libs/H5Dio.o b/build/src/.libs/H5Dio.o deleted file mode 100644 index df17727..0000000 Binary files a/build/src/.libs/H5Dio.o and /dev/null differ diff --git a/build/src/.libs/H5Dlayout.o b/build/src/.libs/H5Dlayout.o deleted file mode 100644 index 8466b27..0000000 Binary files a/build/src/.libs/H5Dlayout.o and /dev/null differ diff --git a/build/src/.libs/H5Dmpio.o b/build/src/.libs/H5Dmpio.o deleted file mode 100644 index 22b5803..0000000 Binary files a/build/src/.libs/H5Dmpio.o and /dev/null differ diff --git a/build/src/.libs/H5Doh.o b/build/src/.libs/H5Doh.o deleted file mode 100644 index fd77300..0000000 Binary files a/build/src/.libs/H5Doh.o and /dev/null differ diff --git a/build/src/.libs/H5Dscatgath.o b/build/src/.libs/H5Dscatgath.o deleted file mode 100644 index be997e8..0000000 Binary files a/build/src/.libs/H5Dscatgath.o and /dev/null differ diff --git a/build/src/.libs/H5Dselect.o b/build/src/.libs/H5Dselect.o deleted file mode 100644 index 01c93fa..0000000 Binary files a/build/src/.libs/H5Dselect.o and /dev/null differ diff --git a/build/src/.libs/H5Dtest.o b/build/src/.libs/H5Dtest.o deleted file mode 100644 index 37be177..0000000 Binary files a/build/src/.libs/H5Dtest.o and /dev/null differ diff --git a/build/src/.libs/H5E.o b/build/src/.libs/H5E.o deleted file mode 100644 index b4536bb..0000000 Binary files a/build/src/.libs/H5E.o and /dev/null differ diff --git a/build/src/.libs/H5Edeprec.o b/build/src/.libs/H5Edeprec.o deleted file mode 100644 index fa9dd4d..0000000 Binary files a/build/src/.libs/H5Edeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Eint.o b/build/src/.libs/H5Eint.o deleted file mode 100644 index dd0859c..0000000 Binary files a/build/src/.libs/H5Eint.o and /dev/null differ diff --git a/build/src/.libs/H5F.o b/build/src/.libs/H5F.o deleted file mode 100644 index 50401ad..0000000 Binary files a/build/src/.libs/H5F.o and /dev/null differ diff --git a/build/src/.libs/H5FD.o b/build/src/.libs/H5FD.o deleted file mode 100644 index 1c42342..0000000 Binary files a/build/src/.libs/H5FD.o and /dev/null differ diff --git a/build/src/.libs/H5FDcore.o b/build/src/.libs/H5FDcore.o deleted file mode 100644 index 979ee4e..0000000 Binary files a/build/src/.libs/H5FDcore.o and /dev/null differ diff --git a/build/src/.libs/H5FDdirect.o b/build/src/.libs/H5FDdirect.o deleted file mode 100644 index 8b184c6..0000000 Binary files a/build/src/.libs/H5FDdirect.o and /dev/null differ diff --git a/build/src/.libs/H5FDfamily.o b/build/src/.libs/H5FDfamily.o deleted file mode 100644 index 5edea41..0000000 Binary files a/build/src/.libs/H5FDfamily.o and /dev/null differ diff --git a/build/src/.libs/H5FDint.o b/build/src/.libs/H5FDint.o deleted file mode 100644 index 92114fc..0000000 Binary files a/build/src/.libs/H5FDint.o and /dev/null differ diff --git a/build/src/.libs/H5FDlog.o b/build/src/.libs/H5FDlog.o deleted file mode 100644 index 49e2f8c..0000000 Binary files a/build/src/.libs/H5FDlog.o and /dev/null differ diff --git a/build/src/.libs/H5FDmpi.o b/build/src/.libs/H5FDmpi.o deleted file mode 100644 index 00241a5..0000000 Binary files a/build/src/.libs/H5FDmpi.o and /dev/null differ diff --git a/build/src/.libs/H5FDmpio.o b/build/src/.libs/H5FDmpio.o deleted file mode 100644 index 4a202f6..0000000 Binary files a/build/src/.libs/H5FDmpio.o and /dev/null differ diff --git a/build/src/.libs/H5FDmulti.o b/build/src/.libs/H5FDmulti.o deleted file mode 100644 index 1853ffe..0000000 Binary files a/build/src/.libs/H5FDmulti.o and /dev/null differ diff --git a/build/src/.libs/H5FDsec2.o b/build/src/.libs/H5FDsec2.o deleted file mode 100644 index ec5349a..0000000 Binary files a/build/src/.libs/H5FDsec2.o and /dev/null differ diff --git a/build/src/.libs/H5FDspace.o b/build/src/.libs/H5FDspace.o deleted file mode 100644 index 5960d4b..0000000 Binary files a/build/src/.libs/H5FDspace.o and /dev/null differ diff --git a/build/src/.libs/H5FDstdio.o b/build/src/.libs/H5FDstdio.o deleted file mode 100644 index ab1b179..0000000 Binary files a/build/src/.libs/H5FDstdio.o and /dev/null differ diff --git a/build/src/.libs/H5FL.o b/build/src/.libs/H5FL.o deleted file mode 100644 index c0a4b29..0000000 Binary files a/build/src/.libs/H5FL.o and /dev/null differ diff --git a/build/src/.libs/H5FO.o b/build/src/.libs/H5FO.o deleted file mode 100644 index f7fca15..0000000 Binary files a/build/src/.libs/H5FO.o and /dev/null differ diff --git a/build/src/.libs/H5FS.o b/build/src/.libs/H5FS.o deleted file mode 100644 index 388287f..0000000 Binary files a/build/src/.libs/H5FS.o and /dev/null differ diff --git a/build/src/.libs/H5FScache.o b/build/src/.libs/H5FScache.o deleted file mode 100644 index fcc33ea..0000000 Binary files a/build/src/.libs/H5FScache.o and /dev/null differ diff --git a/build/src/.libs/H5FSdbg.o b/build/src/.libs/H5FSdbg.o deleted file mode 100644 index 22ccdfa..0000000 Binary files a/build/src/.libs/H5FSdbg.o and /dev/null differ diff --git a/build/src/.libs/H5FSsection.o b/build/src/.libs/H5FSsection.o deleted file mode 100644 index c0c6f50..0000000 Binary files a/build/src/.libs/H5FSsection.o and /dev/null differ diff --git a/build/src/.libs/H5FSstat.o b/build/src/.libs/H5FSstat.o deleted file mode 100644 index c531ecb..0000000 Binary files a/build/src/.libs/H5FSstat.o and /dev/null differ diff --git a/build/src/.libs/H5FStest.o b/build/src/.libs/H5FStest.o deleted file mode 100644 index cc968a1..0000000 Binary files a/build/src/.libs/H5FStest.o and /dev/null differ diff --git a/build/src/.libs/H5Faccum.o b/build/src/.libs/H5Faccum.o deleted file mode 100644 index e34cab6..0000000 Binary files a/build/src/.libs/H5Faccum.o and /dev/null differ diff --git a/build/src/.libs/H5Fcwfs.o b/build/src/.libs/H5Fcwfs.o deleted file mode 100644 index b56b07c..0000000 Binary files a/build/src/.libs/H5Fcwfs.o and /dev/null differ diff --git a/build/src/.libs/H5Fdbg.o b/build/src/.libs/H5Fdbg.o deleted file mode 100644 index ff1120d..0000000 Binary files a/build/src/.libs/H5Fdbg.o and /dev/null differ diff --git a/build/src/.libs/H5Fefc.o b/build/src/.libs/H5Fefc.o deleted file mode 100644 index e47859d..0000000 Binary files a/build/src/.libs/H5Fefc.o and /dev/null differ diff --git a/build/src/.libs/H5Ffake.o b/build/src/.libs/H5Ffake.o deleted file mode 100644 index 8c1b508..0000000 Binary files a/build/src/.libs/H5Ffake.o and /dev/null differ diff --git a/build/src/.libs/H5Fint.o b/build/src/.libs/H5Fint.o deleted file mode 100644 index 6e35890..0000000 Binary files a/build/src/.libs/H5Fint.o and /dev/null differ diff --git a/build/src/.libs/H5Fio.o b/build/src/.libs/H5Fio.o deleted file mode 100644 index 119158a..0000000 Binary files a/build/src/.libs/H5Fio.o and /dev/null differ diff --git a/build/src/.libs/H5Fmount.o b/build/src/.libs/H5Fmount.o deleted file mode 100644 index 28fcc16..0000000 Binary files a/build/src/.libs/H5Fmount.o and /dev/null differ diff --git a/build/src/.libs/H5Fmpi.o b/build/src/.libs/H5Fmpi.o deleted file mode 100644 index 4859959..0000000 Binary files a/build/src/.libs/H5Fmpi.o and /dev/null differ diff --git a/build/src/.libs/H5Fquery.o b/build/src/.libs/H5Fquery.o deleted file mode 100644 index 89b29ea..0000000 Binary files a/build/src/.libs/H5Fquery.o and /dev/null differ diff --git a/build/src/.libs/H5Fsfile.o b/build/src/.libs/H5Fsfile.o deleted file mode 100644 index 0f532e6..0000000 Binary files a/build/src/.libs/H5Fsfile.o and /dev/null differ diff --git a/build/src/.libs/H5Fsuper.o b/build/src/.libs/H5Fsuper.o deleted file mode 100644 index 3bccbc3..0000000 Binary files a/build/src/.libs/H5Fsuper.o and /dev/null differ diff --git a/build/src/.libs/H5Fsuper_cache.o b/build/src/.libs/H5Fsuper_cache.o deleted file mode 100644 index 1042bd3..0000000 Binary files a/build/src/.libs/H5Fsuper_cache.o and /dev/null differ diff --git a/build/src/.libs/H5Ftest.o b/build/src/.libs/H5Ftest.o deleted file mode 100644 index 47df47b..0000000 Binary files a/build/src/.libs/H5Ftest.o and /dev/null differ diff --git a/build/src/.libs/H5G.o b/build/src/.libs/H5G.o deleted file mode 100644 index 4f22997..0000000 Binary files a/build/src/.libs/H5G.o and /dev/null differ diff --git a/build/src/.libs/H5Gbtree2.o b/build/src/.libs/H5Gbtree2.o deleted file mode 100644 index 354d9e3..0000000 Binary files a/build/src/.libs/H5Gbtree2.o and /dev/null differ diff --git a/build/src/.libs/H5Gcache.o b/build/src/.libs/H5Gcache.o deleted file mode 100644 index bf970eb..0000000 Binary files a/build/src/.libs/H5Gcache.o and /dev/null differ diff --git a/build/src/.libs/H5Gcompact.o b/build/src/.libs/H5Gcompact.o deleted file mode 100644 index a8fb6d7..0000000 Binary files a/build/src/.libs/H5Gcompact.o and /dev/null differ diff --git a/build/src/.libs/H5Gdense.o b/build/src/.libs/H5Gdense.o deleted file mode 100644 index 690d921..0000000 Binary files a/build/src/.libs/H5Gdense.o and /dev/null differ diff --git a/build/src/.libs/H5Gdeprec.o b/build/src/.libs/H5Gdeprec.o deleted file mode 100644 index 8538e3f..0000000 Binary files a/build/src/.libs/H5Gdeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Gent.o b/build/src/.libs/H5Gent.o deleted file mode 100644 index 397134e..0000000 Binary files a/build/src/.libs/H5Gent.o and /dev/null differ diff --git a/build/src/.libs/H5Gint.o b/build/src/.libs/H5Gint.o deleted file mode 100644 index e311f90..0000000 Binary files a/build/src/.libs/H5Gint.o and /dev/null differ diff --git a/build/src/.libs/H5Glink.o b/build/src/.libs/H5Glink.o deleted file mode 100644 index 5d27404..0000000 Binary files a/build/src/.libs/H5Glink.o and /dev/null differ diff --git a/build/src/.libs/H5Gloc.o b/build/src/.libs/H5Gloc.o deleted file mode 100644 index 4aa0547..0000000 Binary files a/build/src/.libs/H5Gloc.o and /dev/null differ diff --git a/build/src/.libs/H5Gname.o b/build/src/.libs/H5Gname.o deleted file mode 100644 index 4078f4d..0000000 Binary files a/build/src/.libs/H5Gname.o and /dev/null differ diff --git a/build/src/.libs/H5Gnode.o b/build/src/.libs/H5Gnode.o deleted file mode 100644 index bdfe7c2..0000000 Binary files a/build/src/.libs/H5Gnode.o and /dev/null differ diff --git a/build/src/.libs/H5Gobj.o b/build/src/.libs/H5Gobj.o deleted file mode 100644 index 3bbd23f..0000000 Binary files a/build/src/.libs/H5Gobj.o and /dev/null differ diff --git a/build/src/.libs/H5Goh.o b/build/src/.libs/H5Goh.o deleted file mode 100644 index 3c74d9a..0000000 Binary files a/build/src/.libs/H5Goh.o and /dev/null differ diff --git a/build/src/.libs/H5Groot.o b/build/src/.libs/H5Groot.o deleted file mode 100644 index ebd88e3..0000000 Binary files a/build/src/.libs/H5Groot.o and /dev/null differ diff --git a/build/src/.libs/H5Gstab.o b/build/src/.libs/H5Gstab.o deleted file mode 100644 index fc11c5a..0000000 Binary files a/build/src/.libs/H5Gstab.o and /dev/null differ diff --git a/build/src/.libs/H5Gtest.o b/build/src/.libs/H5Gtest.o deleted file mode 100644 index 7bc0001..0000000 Binary files a/build/src/.libs/H5Gtest.o and /dev/null differ diff --git a/build/src/.libs/H5Gtraverse.o b/build/src/.libs/H5Gtraverse.o deleted file mode 100644 index 28afa63..0000000 Binary files a/build/src/.libs/H5Gtraverse.o and /dev/null differ diff --git a/build/src/.libs/H5HF.o b/build/src/.libs/H5HF.o deleted file mode 100644 index 35afdd6..0000000 Binary files a/build/src/.libs/H5HF.o and /dev/null differ diff --git a/build/src/.libs/H5HFbtree2.o b/build/src/.libs/H5HFbtree2.o deleted file mode 100644 index a65aeca..0000000 Binary files a/build/src/.libs/H5HFbtree2.o and /dev/null differ diff --git a/build/src/.libs/H5HFcache.o b/build/src/.libs/H5HFcache.o deleted file mode 100644 index e0604dd..0000000 Binary files a/build/src/.libs/H5HFcache.o and /dev/null differ diff --git a/build/src/.libs/H5HFdbg.o b/build/src/.libs/H5HFdbg.o deleted file mode 100644 index 5a93888..0000000 Binary files a/build/src/.libs/H5HFdbg.o and /dev/null differ diff --git a/build/src/.libs/H5HFdblock.o b/build/src/.libs/H5HFdblock.o deleted file mode 100644 index 1114686..0000000 Binary files a/build/src/.libs/H5HFdblock.o and /dev/null differ diff --git a/build/src/.libs/H5HFdtable.o b/build/src/.libs/H5HFdtable.o deleted file mode 100644 index eed278c..0000000 Binary files a/build/src/.libs/H5HFdtable.o and /dev/null differ diff --git a/build/src/.libs/H5HFhdr.o b/build/src/.libs/H5HFhdr.o deleted file mode 100644 index 418178b..0000000 Binary files a/build/src/.libs/H5HFhdr.o and /dev/null differ diff --git a/build/src/.libs/H5HFhuge.o b/build/src/.libs/H5HFhuge.o deleted file mode 100644 index 9b9212b..0000000 Binary files a/build/src/.libs/H5HFhuge.o and /dev/null differ diff --git a/build/src/.libs/H5HFiblock.o b/build/src/.libs/H5HFiblock.o deleted file mode 100644 index 2ea01af..0000000 Binary files a/build/src/.libs/H5HFiblock.o and /dev/null differ diff --git a/build/src/.libs/H5HFiter.o b/build/src/.libs/H5HFiter.o deleted file mode 100644 index 5b5e4e1..0000000 Binary files a/build/src/.libs/H5HFiter.o and /dev/null differ diff --git a/build/src/.libs/H5HFman.o b/build/src/.libs/H5HFman.o deleted file mode 100644 index c35b77f..0000000 Binary files a/build/src/.libs/H5HFman.o and /dev/null differ diff --git a/build/src/.libs/H5HFsection.o b/build/src/.libs/H5HFsection.o deleted file mode 100644 index a89db51..0000000 Binary files a/build/src/.libs/H5HFsection.o and /dev/null differ diff --git a/build/src/.libs/H5HFspace.o b/build/src/.libs/H5HFspace.o deleted file mode 100644 index 1d5fb96..0000000 Binary files a/build/src/.libs/H5HFspace.o and /dev/null differ diff --git a/build/src/.libs/H5HFstat.o b/build/src/.libs/H5HFstat.o deleted file mode 100644 index 7790314..0000000 Binary files a/build/src/.libs/H5HFstat.o and /dev/null differ diff --git a/build/src/.libs/H5HFtest.o b/build/src/.libs/H5HFtest.o deleted file mode 100644 index f727c89..0000000 Binary files a/build/src/.libs/H5HFtest.o and /dev/null differ diff --git a/build/src/.libs/H5HFtiny.o b/build/src/.libs/H5HFtiny.o deleted file mode 100644 index 6d7cff7..0000000 Binary files a/build/src/.libs/H5HFtiny.o and /dev/null differ diff --git a/build/src/.libs/H5HG.o b/build/src/.libs/H5HG.o deleted file mode 100644 index ac86504..0000000 Binary files a/build/src/.libs/H5HG.o and /dev/null differ diff --git a/build/src/.libs/H5HGcache.o b/build/src/.libs/H5HGcache.o deleted file mode 100644 index 5c7d58f..0000000 Binary files a/build/src/.libs/H5HGcache.o and /dev/null differ diff --git a/build/src/.libs/H5HGdbg.o b/build/src/.libs/H5HGdbg.o deleted file mode 100644 index b837ff5..0000000 Binary files a/build/src/.libs/H5HGdbg.o and /dev/null differ diff --git a/build/src/.libs/H5HGquery.o b/build/src/.libs/H5HGquery.o deleted file mode 100644 index 33c7eaf..0000000 Binary files a/build/src/.libs/H5HGquery.o and /dev/null differ diff --git a/build/src/.libs/H5HL.o b/build/src/.libs/H5HL.o deleted file mode 100644 index 355f92c..0000000 Binary files a/build/src/.libs/H5HL.o and /dev/null differ diff --git a/build/src/.libs/H5HLcache.o b/build/src/.libs/H5HLcache.o deleted file mode 100644 index c481443..0000000 Binary files a/build/src/.libs/H5HLcache.o and /dev/null differ diff --git a/build/src/.libs/H5HLdbg.o b/build/src/.libs/H5HLdbg.o deleted file mode 100644 index 7b57567..0000000 Binary files a/build/src/.libs/H5HLdbg.o and /dev/null differ diff --git a/build/src/.libs/H5HLint.o b/build/src/.libs/H5HLint.o deleted file mode 100644 index 449aa13..0000000 Binary files a/build/src/.libs/H5HLint.o and /dev/null differ diff --git a/build/src/.libs/H5HP.o b/build/src/.libs/H5HP.o deleted file mode 100644 index 37192ef..0000000 Binary files a/build/src/.libs/H5HP.o and /dev/null differ diff --git a/build/src/.libs/H5I.o b/build/src/.libs/H5I.o deleted file mode 100644 index 1ee2df5..0000000 Binary files a/build/src/.libs/H5I.o and /dev/null differ diff --git a/build/src/.libs/H5Itest.o b/build/src/.libs/H5Itest.o deleted file mode 100644 index 631afa0..0000000 Binary files a/build/src/.libs/H5Itest.o and /dev/null differ diff --git a/build/src/.libs/H5L.o b/build/src/.libs/H5L.o deleted file mode 100644 index 36115b0..0000000 Binary files a/build/src/.libs/H5L.o and /dev/null differ diff --git a/build/src/.libs/H5Lexternal.o b/build/src/.libs/H5Lexternal.o deleted file mode 100644 index 6ffebb1..0000000 Binary files a/build/src/.libs/H5Lexternal.o and /dev/null differ diff --git a/build/src/.libs/H5MF.o b/build/src/.libs/H5MF.o deleted file mode 100644 index b7c454b..0000000 Binary files a/build/src/.libs/H5MF.o and /dev/null differ diff --git a/build/src/.libs/H5MFaggr.o b/build/src/.libs/H5MFaggr.o deleted file mode 100644 index 7db0aee..0000000 Binary files a/build/src/.libs/H5MFaggr.o and /dev/null differ diff --git a/build/src/.libs/H5MFdbg.o b/build/src/.libs/H5MFdbg.o deleted file mode 100644 index d0b2771..0000000 Binary files a/build/src/.libs/H5MFdbg.o and /dev/null differ diff --git a/build/src/.libs/H5MFsection.o b/build/src/.libs/H5MFsection.o deleted file mode 100644 index df97845..0000000 Binary files a/build/src/.libs/H5MFsection.o and /dev/null differ diff --git a/build/src/.libs/H5MM.o b/build/src/.libs/H5MM.o deleted file mode 100644 index dc27bc6..0000000 Binary files a/build/src/.libs/H5MM.o and /dev/null differ diff --git a/build/src/.libs/H5MP.o b/build/src/.libs/H5MP.o deleted file mode 100644 index 2f33b4b..0000000 Binary files a/build/src/.libs/H5MP.o and /dev/null differ diff --git a/build/src/.libs/H5MPtest.o b/build/src/.libs/H5MPtest.o deleted file mode 100644 index e35611f..0000000 Binary files a/build/src/.libs/H5MPtest.o and /dev/null differ diff --git a/build/src/.libs/H5O.o b/build/src/.libs/H5O.o deleted file mode 100644 index 8a6ea66..0000000 Binary files a/build/src/.libs/H5O.o and /dev/null differ diff --git a/build/src/.libs/H5Oainfo.o b/build/src/.libs/H5Oainfo.o deleted file mode 100644 index ddbc64e..0000000 Binary files a/build/src/.libs/H5Oainfo.o and /dev/null differ diff --git a/build/src/.libs/H5Oalloc.o b/build/src/.libs/H5Oalloc.o deleted file mode 100644 index 368efe7..0000000 Binary files a/build/src/.libs/H5Oalloc.o and /dev/null differ diff --git a/build/src/.libs/H5Oattr.o b/build/src/.libs/H5Oattr.o deleted file mode 100644 index 0035e7b..0000000 Binary files a/build/src/.libs/H5Oattr.o and /dev/null differ diff --git a/build/src/.libs/H5Oattribute.o b/build/src/.libs/H5Oattribute.o deleted file mode 100644 index ce15038..0000000 Binary files a/build/src/.libs/H5Oattribute.o and /dev/null differ diff --git a/build/src/.libs/H5Obogus.o b/build/src/.libs/H5Obogus.o deleted file mode 100644 index 2a98b6a..0000000 Binary files a/build/src/.libs/H5Obogus.o and /dev/null differ diff --git a/build/src/.libs/H5Obtreek.o b/build/src/.libs/H5Obtreek.o deleted file mode 100644 index 38c5c57..0000000 Binary files a/build/src/.libs/H5Obtreek.o and /dev/null differ diff --git a/build/src/.libs/H5Ocache.o b/build/src/.libs/H5Ocache.o deleted file mode 100644 index 1193227..0000000 Binary files a/build/src/.libs/H5Ocache.o and /dev/null differ diff --git a/build/src/.libs/H5Ochunk.o b/build/src/.libs/H5Ochunk.o deleted file mode 100644 index d6e28fd..0000000 Binary files a/build/src/.libs/H5Ochunk.o and /dev/null differ diff --git a/build/src/.libs/H5Ocont.o b/build/src/.libs/H5Ocont.o deleted file mode 100644 index 932e7a0..0000000 Binary files a/build/src/.libs/H5Ocont.o and /dev/null differ diff --git a/build/src/.libs/H5Ocopy.o b/build/src/.libs/H5Ocopy.o deleted file mode 100644 index 41dd483..0000000 Binary files a/build/src/.libs/H5Ocopy.o and /dev/null differ diff --git a/build/src/.libs/H5Odbg.o b/build/src/.libs/H5Odbg.o deleted file mode 100644 index a6dd217..0000000 Binary files a/build/src/.libs/H5Odbg.o and /dev/null differ diff --git a/build/src/.libs/H5Odrvinfo.o b/build/src/.libs/H5Odrvinfo.o deleted file mode 100644 index 3398c2c..0000000 Binary files a/build/src/.libs/H5Odrvinfo.o and /dev/null differ diff --git a/build/src/.libs/H5Odtype.o b/build/src/.libs/H5Odtype.o deleted file mode 100644 index 23d78ce..0000000 Binary files a/build/src/.libs/H5Odtype.o and /dev/null differ diff --git a/build/src/.libs/H5Oefl.o b/build/src/.libs/H5Oefl.o deleted file mode 100644 index 7a95c13..0000000 Binary files a/build/src/.libs/H5Oefl.o and /dev/null differ diff --git a/build/src/.libs/H5Ofill.o b/build/src/.libs/H5Ofill.o deleted file mode 100644 index b24e71d..0000000 Binary files a/build/src/.libs/H5Ofill.o and /dev/null differ diff --git a/build/src/.libs/H5Oginfo.o b/build/src/.libs/H5Oginfo.o deleted file mode 100644 index f389339..0000000 Binary files a/build/src/.libs/H5Oginfo.o and /dev/null differ diff --git a/build/src/.libs/H5Olayout.o b/build/src/.libs/H5Olayout.o deleted file mode 100644 index b8e52e6..0000000 Binary files a/build/src/.libs/H5Olayout.o and /dev/null differ diff --git a/build/src/.libs/H5Olinfo.o b/build/src/.libs/H5Olinfo.o deleted file mode 100644 index cdcf4f6..0000000 Binary files a/build/src/.libs/H5Olinfo.o and /dev/null differ diff --git a/build/src/.libs/H5Olink.o b/build/src/.libs/H5Olink.o deleted file mode 100644 index 96dd69c..0000000 Binary files a/build/src/.libs/H5Olink.o and /dev/null differ diff --git a/build/src/.libs/H5Omessage.o b/build/src/.libs/H5Omessage.o deleted file mode 100644 index 537ac41..0000000 Binary files a/build/src/.libs/H5Omessage.o and /dev/null differ diff --git a/build/src/.libs/H5Omtime.o b/build/src/.libs/H5Omtime.o deleted file mode 100644 index 3540e4a..0000000 Binary files a/build/src/.libs/H5Omtime.o and /dev/null differ diff --git a/build/src/.libs/H5Oname.o b/build/src/.libs/H5Oname.o deleted file mode 100644 index 24dd7e4..0000000 Binary files a/build/src/.libs/H5Oname.o and /dev/null differ diff --git a/build/src/.libs/H5Onull.o b/build/src/.libs/H5Onull.o deleted file mode 100644 index 26909fc..0000000 Binary files a/build/src/.libs/H5Onull.o and /dev/null differ diff --git a/build/src/.libs/H5Opline.o b/build/src/.libs/H5Opline.o deleted file mode 100644 index 3d91859..0000000 Binary files a/build/src/.libs/H5Opline.o and /dev/null differ diff --git a/build/src/.libs/H5Orefcount.o b/build/src/.libs/H5Orefcount.o deleted file mode 100644 index c726f9e..0000000 Binary files a/build/src/.libs/H5Orefcount.o and /dev/null differ diff --git a/build/src/.libs/H5Osdspace.o b/build/src/.libs/H5Osdspace.o deleted file mode 100644 index 80ea8db..0000000 Binary files a/build/src/.libs/H5Osdspace.o and /dev/null differ diff --git a/build/src/.libs/H5Oshared.o b/build/src/.libs/H5Oshared.o deleted file mode 100644 index f4ff528..0000000 Binary files a/build/src/.libs/H5Oshared.o and /dev/null differ diff --git a/build/src/.libs/H5Oshmesg.o b/build/src/.libs/H5Oshmesg.o deleted file mode 100644 index 5e0ad25..0000000 Binary files a/build/src/.libs/H5Oshmesg.o and /dev/null differ diff --git a/build/src/.libs/H5Ostab.o b/build/src/.libs/H5Ostab.o deleted file mode 100644 index cf0da64..0000000 Binary files a/build/src/.libs/H5Ostab.o and /dev/null differ diff --git a/build/src/.libs/H5Otest.o b/build/src/.libs/H5Otest.o deleted file mode 100644 index 9f2788c..0000000 Binary files a/build/src/.libs/H5Otest.o and /dev/null differ diff --git a/build/src/.libs/H5Ounknown.o b/build/src/.libs/H5Ounknown.o deleted file mode 100644 index 2e1e144..0000000 Binary files a/build/src/.libs/H5Ounknown.o and /dev/null differ diff --git a/build/src/.libs/H5P.o b/build/src/.libs/H5P.o deleted file mode 100644 index 5e09e7c..0000000 Binary files a/build/src/.libs/H5P.o and /dev/null differ diff --git a/build/src/.libs/H5PL.o b/build/src/.libs/H5PL.o deleted file mode 100644 index 456651f..0000000 Binary files a/build/src/.libs/H5PL.o and /dev/null differ diff --git a/build/src/.libs/H5Pacpl.o b/build/src/.libs/H5Pacpl.o deleted file mode 100644 index 3384ff6..0000000 Binary files a/build/src/.libs/H5Pacpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pdapl.o b/build/src/.libs/H5Pdapl.o deleted file mode 100644 index f74110d..0000000 Binary files a/build/src/.libs/H5Pdapl.o and /dev/null differ diff --git a/build/src/.libs/H5Pdcpl.o b/build/src/.libs/H5Pdcpl.o deleted file mode 100644 index 11895d4..0000000 Binary files a/build/src/.libs/H5Pdcpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pdeprec.o b/build/src/.libs/H5Pdeprec.o deleted file mode 100644 index 19a9d3f..0000000 Binary files a/build/src/.libs/H5Pdeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Pdxpl.o b/build/src/.libs/H5Pdxpl.o deleted file mode 100644 index 6cc6e19..0000000 Binary files a/build/src/.libs/H5Pdxpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pfapl.o b/build/src/.libs/H5Pfapl.o deleted file mode 100644 index 87a32e8..0000000 Binary files a/build/src/.libs/H5Pfapl.o and /dev/null differ diff --git a/build/src/.libs/H5Pfcpl.o b/build/src/.libs/H5Pfcpl.o deleted file mode 100644 index 4878fd2..0000000 Binary files a/build/src/.libs/H5Pfcpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pfmpl.o b/build/src/.libs/H5Pfmpl.o deleted file mode 100644 index 993085e..0000000 Binary files a/build/src/.libs/H5Pfmpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pgcpl.o b/build/src/.libs/H5Pgcpl.o deleted file mode 100644 index cbc56f2..0000000 Binary files a/build/src/.libs/H5Pgcpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pint.o b/build/src/.libs/H5Pint.o deleted file mode 100644 index 0e269b6..0000000 Binary files a/build/src/.libs/H5Pint.o and /dev/null differ diff --git a/build/src/.libs/H5Plapl.o b/build/src/.libs/H5Plapl.o deleted file mode 100644 index ddfac77..0000000 Binary files a/build/src/.libs/H5Plapl.o and /dev/null differ diff --git a/build/src/.libs/H5Plcpl.o b/build/src/.libs/H5Plcpl.o deleted file mode 100644 index 07289e4..0000000 Binary files a/build/src/.libs/H5Plcpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pocpl.o b/build/src/.libs/H5Pocpl.o deleted file mode 100644 index 2e28924..0000000 Binary files a/build/src/.libs/H5Pocpl.o and /dev/null differ diff --git a/build/src/.libs/H5Pocpypl.o b/build/src/.libs/H5Pocpypl.o deleted file mode 100644 index dd46790..0000000 Binary files a/build/src/.libs/H5Pocpypl.o and /dev/null differ diff --git a/build/src/.libs/H5Pstrcpl.o b/build/src/.libs/H5Pstrcpl.o deleted file mode 100644 index f714c4d..0000000 Binary files a/build/src/.libs/H5Pstrcpl.o and /dev/null differ diff --git a/build/src/.libs/H5Ptest.o b/build/src/.libs/H5Ptest.o deleted file mode 100644 index f038da6..0000000 Binary files a/build/src/.libs/H5Ptest.o and /dev/null differ diff --git a/build/src/.libs/H5R.o b/build/src/.libs/H5R.o deleted file mode 100644 index 9c8610d..0000000 Binary files a/build/src/.libs/H5R.o and /dev/null differ diff --git a/build/src/.libs/H5RC.o b/build/src/.libs/H5RC.o deleted file mode 100644 index 78ede40..0000000 Binary files a/build/src/.libs/H5RC.o and /dev/null differ diff --git a/build/src/.libs/H5RS.o b/build/src/.libs/H5RS.o deleted file mode 100644 index e044f22..0000000 Binary files a/build/src/.libs/H5RS.o and /dev/null differ diff --git a/build/src/.libs/H5Rdeprec.o b/build/src/.libs/H5Rdeprec.o deleted file mode 100644 index 2f8e7e3..0000000 Binary files a/build/src/.libs/H5Rdeprec.o and /dev/null differ diff --git a/build/src/.libs/H5S.o b/build/src/.libs/H5S.o deleted file mode 100644 index 044d359..0000000 Binary files a/build/src/.libs/H5S.o and /dev/null differ diff --git a/build/src/.libs/H5SL.o b/build/src/.libs/H5SL.o deleted file mode 100644 index 8843c69..0000000 Binary files a/build/src/.libs/H5SL.o and /dev/null differ diff --git a/build/src/.libs/H5SM.o b/build/src/.libs/H5SM.o deleted file mode 100644 index ffbc8ad..0000000 Binary files a/build/src/.libs/H5SM.o and /dev/null differ diff --git a/build/src/.libs/H5SMbtree2.o b/build/src/.libs/H5SMbtree2.o deleted file mode 100644 index dab3fb1..0000000 Binary files a/build/src/.libs/H5SMbtree2.o and /dev/null differ diff --git a/build/src/.libs/H5SMcache.o b/build/src/.libs/H5SMcache.o deleted file mode 100644 index 5810b67..0000000 Binary files a/build/src/.libs/H5SMcache.o and /dev/null differ diff --git a/build/src/.libs/H5SMmessage.o b/build/src/.libs/H5SMmessage.o deleted file mode 100644 index 6bc6372..0000000 Binary files a/build/src/.libs/H5SMmessage.o and /dev/null differ diff --git a/build/src/.libs/H5SMtest.o b/build/src/.libs/H5SMtest.o deleted file mode 100644 index 5536d23..0000000 Binary files a/build/src/.libs/H5SMtest.o and /dev/null differ diff --git a/build/src/.libs/H5ST.o b/build/src/.libs/H5ST.o deleted file mode 100644 index 4394dbf..0000000 Binary files a/build/src/.libs/H5ST.o and /dev/null differ diff --git a/build/src/.libs/H5Sall.o b/build/src/.libs/H5Sall.o deleted file mode 100644 index 8c8d784..0000000 Binary files a/build/src/.libs/H5Sall.o and /dev/null differ diff --git a/build/src/.libs/H5Sdbg.o b/build/src/.libs/H5Sdbg.o deleted file mode 100644 index c0b8348..0000000 Binary files a/build/src/.libs/H5Sdbg.o and /dev/null differ diff --git a/build/src/.libs/H5Shyper.o b/build/src/.libs/H5Shyper.o deleted file mode 100644 index 6559fce..0000000 Binary files a/build/src/.libs/H5Shyper.o and /dev/null differ diff --git a/build/src/.libs/H5Smpio.o b/build/src/.libs/H5Smpio.o deleted file mode 100644 index f1f0b95..0000000 Binary files a/build/src/.libs/H5Smpio.o and /dev/null differ diff --git a/build/src/.libs/H5Snone.o b/build/src/.libs/H5Snone.o deleted file mode 100644 index 3e716f2..0000000 Binary files a/build/src/.libs/H5Snone.o and /dev/null differ diff --git a/build/src/.libs/H5Spoint.o b/build/src/.libs/H5Spoint.o deleted file mode 100644 index 5c98ea0..0000000 Binary files a/build/src/.libs/H5Spoint.o and /dev/null differ diff --git a/build/src/.libs/H5Sselect.o b/build/src/.libs/H5Sselect.o deleted file mode 100644 index f89c394..0000000 Binary files a/build/src/.libs/H5Sselect.o and /dev/null differ diff --git a/build/src/.libs/H5Stest.o b/build/src/.libs/H5Stest.o deleted file mode 100644 index cd53096..0000000 Binary files a/build/src/.libs/H5Stest.o and /dev/null differ diff --git a/build/src/.libs/H5T.o b/build/src/.libs/H5T.o deleted file mode 100644 index d4b3dc7..0000000 Binary files a/build/src/.libs/H5T.o and /dev/null differ diff --git a/build/src/.libs/H5TS.o b/build/src/.libs/H5TS.o deleted file mode 100644 index b4b2a56..0000000 Binary files a/build/src/.libs/H5TS.o and /dev/null differ diff --git a/build/src/.libs/H5Tarray.o b/build/src/.libs/H5Tarray.o deleted file mode 100644 index db5d040..0000000 Binary files a/build/src/.libs/H5Tarray.o and /dev/null differ diff --git a/build/src/.libs/H5Tbit.o b/build/src/.libs/H5Tbit.o deleted file mode 100644 index 58185ca..0000000 Binary files a/build/src/.libs/H5Tbit.o and /dev/null differ diff --git a/build/src/.libs/H5Tcommit.o b/build/src/.libs/H5Tcommit.o deleted file mode 100644 index 78e82d0..0000000 Binary files a/build/src/.libs/H5Tcommit.o and /dev/null differ diff --git a/build/src/.libs/H5Tcompound.o b/build/src/.libs/H5Tcompound.o deleted file mode 100644 index 1bcba31..0000000 Binary files a/build/src/.libs/H5Tcompound.o and /dev/null differ diff --git a/build/src/.libs/H5Tconv.o b/build/src/.libs/H5Tconv.o deleted file mode 100644 index c2b9216..0000000 Binary files a/build/src/.libs/H5Tconv.o and /dev/null differ diff --git a/build/src/.libs/H5Tcset.o b/build/src/.libs/H5Tcset.o deleted file mode 100644 index 4a0a6d9..0000000 Binary files a/build/src/.libs/H5Tcset.o and /dev/null differ diff --git a/build/src/.libs/H5Tdbg.o b/build/src/.libs/H5Tdbg.o deleted file mode 100644 index 58f397b..0000000 Binary files a/build/src/.libs/H5Tdbg.o and /dev/null differ diff --git a/build/src/.libs/H5Tdeprec.o b/build/src/.libs/H5Tdeprec.o deleted file mode 100644 index 42a20a0..0000000 Binary files a/build/src/.libs/H5Tdeprec.o and /dev/null differ diff --git a/build/src/.libs/H5Tenum.o b/build/src/.libs/H5Tenum.o deleted file mode 100644 index 61dce5a..0000000 Binary files a/build/src/.libs/H5Tenum.o and /dev/null differ diff --git a/build/src/.libs/H5Tfields.o b/build/src/.libs/H5Tfields.o deleted file mode 100644 index 55df550..0000000 Binary files a/build/src/.libs/H5Tfields.o and /dev/null differ diff --git a/build/src/.libs/H5Tfixed.o b/build/src/.libs/H5Tfixed.o deleted file mode 100644 index a167e4e..0000000 Binary files a/build/src/.libs/H5Tfixed.o and /dev/null differ diff --git a/build/src/.libs/H5Tfloat.o b/build/src/.libs/H5Tfloat.o deleted file mode 100644 index d2c8808..0000000 Binary files a/build/src/.libs/H5Tfloat.o and /dev/null differ diff --git a/build/src/.libs/H5Tinit.o b/build/src/.libs/H5Tinit.o deleted file mode 100644 index d872e3c..0000000 Binary files a/build/src/.libs/H5Tinit.o and /dev/null differ diff --git a/build/src/.libs/H5Tnative.o b/build/src/.libs/H5Tnative.o deleted file mode 100644 index 0441d3a..0000000 Binary files a/build/src/.libs/H5Tnative.o and /dev/null differ diff --git a/build/src/.libs/H5Toffset.o b/build/src/.libs/H5Toffset.o deleted file mode 100644 index 55b991e..0000000 Binary files a/build/src/.libs/H5Toffset.o and /dev/null differ diff --git a/build/src/.libs/H5Toh.o b/build/src/.libs/H5Toh.o deleted file mode 100644 index 9a9a27f..0000000 Binary files a/build/src/.libs/H5Toh.o and /dev/null differ diff --git a/build/src/.libs/H5Topaque.o b/build/src/.libs/H5Topaque.o deleted file mode 100644 index ea29add..0000000 Binary files a/build/src/.libs/H5Topaque.o and /dev/null differ diff --git a/build/src/.libs/H5Torder.o b/build/src/.libs/H5Torder.o deleted file mode 100644 index 9d398e8..0000000 Binary files a/build/src/.libs/H5Torder.o and /dev/null differ diff --git a/build/src/.libs/H5Tpad.o b/build/src/.libs/H5Tpad.o deleted file mode 100644 index 75d5abc..0000000 Binary files a/build/src/.libs/H5Tpad.o and /dev/null differ diff --git a/build/src/.libs/H5Tprecis.o b/build/src/.libs/H5Tprecis.o deleted file mode 100644 index f3c220c..0000000 Binary files a/build/src/.libs/H5Tprecis.o and /dev/null differ diff --git a/build/src/.libs/H5Tstrpad.o b/build/src/.libs/H5Tstrpad.o deleted file mode 100644 index e7aba3b..0000000 Binary files a/build/src/.libs/H5Tstrpad.o and /dev/null differ diff --git a/build/src/.libs/H5Tvisit.o b/build/src/.libs/H5Tvisit.o deleted file mode 100644 index 31443ae..0000000 Binary files a/build/src/.libs/H5Tvisit.o and /dev/null differ diff --git a/build/src/.libs/H5Tvlen.o b/build/src/.libs/H5Tvlen.o deleted file mode 100644 index fd8f395..0000000 Binary files a/build/src/.libs/H5Tvlen.o and /dev/null differ diff --git a/build/src/.libs/H5VM.o b/build/src/.libs/H5VM.o deleted file mode 100644 index 04443db..0000000 Binary files a/build/src/.libs/H5VM.o and /dev/null differ diff --git a/build/src/.libs/H5WB.o b/build/src/.libs/H5WB.o deleted file mode 100644 index c0f9279..0000000 Binary files a/build/src/.libs/H5WB.o and /dev/null differ diff --git a/build/src/.libs/H5Z.o b/build/src/.libs/H5Z.o deleted file mode 100644 index ac6891b..0000000 Binary files a/build/src/.libs/H5Z.o and /dev/null differ diff --git a/build/src/.libs/H5Zdeflate.o b/build/src/.libs/H5Zdeflate.o deleted file mode 100644 index 80be862..0000000 Binary files a/build/src/.libs/H5Zdeflate.o and /dev/null differ diff --git a/build/src/.libs/H5Zfletcher32.o b/build/src/.libs/H5Zfletcher32.o deleted file mode 100644 index 9525158..0000000 Binary files a/build/src/.libs/H5Zfletcher32.o and /dev/null differ diff --git a/build/src/.libs/H5Znbit.o b/build/src/.libs/H5Znbit.o deleted file mode 100644 index 08a9478..0000000 Binary files a/build/src/.libs/H5Znbit.o and /dev/null differ diff --git a/build/src/.libs/H5Zscaleoffset.o b/build/src/.libs/H5Zscaleoffset.o deleted file mode 100644 index d0f7e03..0000000 Binary files a/build/src/.libs/H5Zscaleoffset.o and /dev/null differ diff --git a/build/src/.libs/H5Zshuffle.o b/build/src/.libs/H5Zshuffle.o deleted file mode 100644 index 4229ccd..0000000 Binary files a/build/src/.libs/H5Zshuffle.o and /dev/null differ diff --git a/build/src/.libs/H5Zszip.o b/build/src/.libs/H5Zszip.o deleted file mode 100644 index 23ac07f..0000000 Binary files a/build/src/.libs/H5Zszip.o and /dev/null differ diff --git a/build/src/.libs/H5Ztrans.o b/build/src/.libs/H5Ztrans.o deleted file mode 100644 index be452c9..0000000 Binary files a/build/src/.libs/H5Ztrans.o and /dev/null differ diff --git a/build/src/.libs/H5checksum.o b/build/src/.libs/H5checksum.o deleted file mode 100644 index 95956c5..0000000 Binary files a/build/src/.libs/H5checksum.o and /dev/null differ diff --git a/build/src/.libs/H5dbg.o b/build/src/.libs/H5dbg.o deleted file mode 100644 index 4416b9c..0000000 Binary files a/build/src/.libs/H5dbg.o and /dev/null differ diff --git a/build/src/.libs/H5lib_settings.o b/build/src/.libs/H5lib_settings.o deleted file mode 100644 index 1c51281..0000000 Binary files a/build/src/.libs/H5lib_settings.o and /dev/null differ diff --git a/build/src/.libs/H5system.o b/build/src/.libs/H5system.o deleted file mode 100644 index 8381312..0000000 Binary files a/build/src/.libs/H5system.o and /dev/null differ diff --git a/build/src/.libs/H5timer.o b/build/src/.libs/H5timer.o deleted file mode 100644 index c733f3d..0000000 Binary files a/build/src/.libs/H5timer.o and /dev/null differ diff --git a/build/src/.libs/H5trace.o b/build/src/.libs/H5trace.o deleted file mode 100644 index 5fadb74..0000000 Binary files a/build/src/.libs/H5trace.o and /dev/null differ diff --git a/build/src/.libs/libhdf5.a b/build/src/.libs/libhdf5.a deleted file mode 100644 index 03a8da4..0000000 Binary files a/build/src/.libs/libhdf5.a and /dev/null differ diff --git a/build/src/.libs/libhdf5.la b/build/src/.libs/libhdf5.la deleted file mode 120000 index f8585f0..0000000 --- a/build/src/.libs/libhdf5.la +++ /dev/null @@ -1 +0,0 @@ -../libhdf5.la \ No newline at end of file diff --git a/build/src/.libs/libhdf5.lai b/build/src/.libs/libhdf5.lai deleted file mode 100644 index cdb7138..0000000 --- a/build/src/.libs/libhdf5.lai +++ /dev/null @@ -1,41 +0,0 @@ -# libhdf5.la - a libtool library file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='libhdf5.so.10' - -# Names of this library. -library_names='libhdf5.so.10.3.2 libhdf5.so.10 libhdf5.so' - -# The name of the static archive. -old_library='libhdf5.a' - -# Linker flags that cannot go in dependency_libs. -inherited_linker_flags='' - -# Libraries that this one depends upon. -dependency_libs=' -lz -ldl -lm' - -# Names of additional weak libraries provided by this library -weak_library_names='' - -# Version information for libhdf5. -current=13 -age=3 -revision=2 - -# Is this an already installed library? -installed=yes - -# Should we warn about portability when linking against -modules? -shouldnotlink=no - -# Files to dlopen/dlpreopen -dlopen='' -dlpreopen='' - -# Directory that this library needs to be installed in: -libdir='/mnt/wrk/lrknox/hdf5_hdf5/build/hdf5/lib' diff --git a/build/src/.libs/libhdf5.so b/build/src/.libs/libhdf5.so deleted file mode 120000 index 38fbf84..0000000 --- a/build/src/.libs/libhdf5.so +++ /dev/null @@ -1 +0,0 @@ -libhdf5.so.10.3.2 \ No newline at end of file diff --git a/build/src/.libs/libhdf5.so.10 b/build/src/.libs/libhdf5.so.10 deleted file mode 120000 index 38fbf84..0000000 --- a/build/src/.libs/libhdf5.so.10 +++ /dev/null @@ -1 +0,0 @@ -libhdf5.so.10.3.2 \ No newline at end of file diff --git a/build/src/.libs/libhdf5.so.10.3.2 b/build/src/.libs/libhdf5.so.10.3.2 deleted file mode 100755 index 41e6102..0000000 Binary files a/build/src/.libs/libhdf5.so.10.3.2 and /dev/null differ diff --git a/build/src/H5.lo b/build/src/H5.lo deleted file mode 100644 index a3bb625..0000000 --- a/build/src/H5.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5.o' - -# Name of the non-PIC object -non_pic_object='H5.o' - diff --git a/build/src/H5.o b/build/src/H5.o deleted file mode 100644 index 34a63a1..0000000 Binary files a/build/src/H5.o and /dev/null differ diff --git a/build/src/H5A.lo b/build/src/H5A.lo deleted file mode 100644 index ad0327b..0000000 --- a/build/src/H5A.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5A.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5A.o' - -# Name of the non-PIC object -non_pic_object='H5A.o' - diff --git a/build/src/H5A.o b/build/src/H5A.o deleted file mode 100644 index 96d4de5..0000000 Binary files a/build/src/H5A.o and /dev/null differ diff --git a/build/src/H5AC.lo b/build/src/H5AC.lo deleted file mode 100644 index a2d15d4..0000000 --- a/build/src/H5AC.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5AC.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5AC.o' - -# Name of the non-PIC object -non_pic_object='H5AC.o' - diff --git a/build/src/H5AC.o b/build/src/H5AC.o deleted file mode 100644 index b670b11..0000000 Binary files a/build/src/H5AC.o and /dev/null differ diff --git a/build/src/H5Abtree2.lo b/build/src/H5Abtree2.lo deleted file mode 100644 index 96c5add..0000000 --- a/build/src/H5Abtree2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Abtree2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Abtree2.o' - -# Name of the non-PIC object -non_pic_object='H5Abtree2.o' - diff --git a/build/src/H5Abtree2.o b/build/src/H5Abtree2.o deleted file mode 100644 index 7f51e0f..0000000 Binary files a/build/src/H5Abtree2.o and /dev/null differ diff --git a/build/src/H5Adense.lo b/build/src/H5Adense.lo deleted file mode 100644 index d9137b0..0000000 --- a/build/src/H5Adense.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Adense.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Adense.o' - -# Name of the non-PIC object -non_pic_object='H5Adense.o' - diff --git a/build/src/H5Adense.o b/build/src/H5Adense.o deleted file mode 100644 index 73928a0..0000000 Binary files a/build/src/H5Adense.o and /dev/null differ diff --git a/build/src/H5Adeprec.lo b/build/src/H5Adeprec.lo deleted file mode 100644 index 20e957c..0000000 --- a/build/src/H5Adeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Adeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Adeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Adeprec.o' - diff --git a/build/src/H5Adeprec.o b/build/src/H5Adeprec.o deleted file mode 100644 index c49fc50..0000000 Binary files a/build/src/H5Adeprec.o and /dev/null differ diff --git a/build/src/H5Aint.lo b/build/src/H5Aint.lo deleted file mode 100644 index a5bd70d..0000000 --- a/build/src/H5Aint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Aint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Aint.o' - -# Name of the non-PIC object -non_pic_object='H5Aint.o' - diff --git a/build/src/H5Aint.o b/build/src/H5Aint.o deleted file mode 100644 index 37c9f55..0000000 Binary files a/build/src/H5Aint.o and /dev/null differ diff --git a/build/src/H5Atest.lo b/build/src/H5Atest.lo deleted file mode 100644 index 94368bd..0000000 --- a/build/src/H5Atest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Atest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Atest.o' - -# Name of the non-PIC object -non_pic_object='H5Atest.o' - diff --git a/build/src/H5Atest.o b/build/src/H5Atest.o deleted file mode 100644 index 6fb653c..0000000 Binary files a/build/src/H5Atest.o and /dev/null differ diff --git a/build/src/H5B.lo b/build/src/H5B.lo deleted file mode 100644 index 955a1ba..0000000 --- a/build/src/H5B.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B.o' - -# Name of the non-PIC object -non_pic_object='H5B.o' - diff --git a/build/src/H5B.o b/build/src/H5B.o deleted file mode 100644 index b6146d5..0000000 Binary files a/build/src/H5B.o and /dev/null differ diff --git a/build/src/H5B2.lo b/build/src/H5B2.lo deleted file mode 100644 index 00889af..0000000 --- a/build/src/H5B2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2.o' - -# Name of the non-PIC object -non_pic_object='H5B2.o' - diff --git a/build/src/H5B2.o b/build/src/H5B2.o deleted file mode 100644 index 447671e..0000000 Binary files a/build/src/H5B2.o and /dev/null differ diff --git a/build/src/H5B2cache.lo b/build/src/H5B2cache.lo deleted file mode 100644 index 87ea373..0000000 --- a/build/src/H5B2cache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2cache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2cache.o' - -# Name of the non-PIC object -non_pic_object='H5B2cache.o' - diff --git a/build/src/H5B2cache.o b/build/src/H5B2cache.o deleted file mode 100644 index 70c2a05..0000000 Binary files a/build/src/H5B2cache.o and /dev/null differ diff --git a/build/src/H5B2dbg.lo b/build/src/H5B2dbg.lo deleted file mode 100644 index f4388af..0000000 --- a/build/src/H5B2dbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2dbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2dbg.o' - -# Name of the non-PIC object -non_pic_object='H5B2dbg.o' - diff --git a/build/src/H5B2dbg.o b/build/src/H5B2dbg.o deleted file mode 100644 index f8e010b..0000000 Binary files a/build/src/H5B2dbg.o and /dev/null differ diff --git a/build/src/H5B2hdr.lo b/build/src/H5B2hdr.lo deleted file mode 100644 index bed3f46..0000000 --- a/build/src/H5B2hdr.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2hdr.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2hdr.o' - -# Name of the non-PIC object -non_pic_object='H5B2hdr.o' - diff --git a/build/src/H5B2hdr.o b/build/src/H5B2hdr.o deleted file mode 100644 index aaaf12a..0000000 Binary files a/build/src/H5B2hdr.o and /dev/null differ diff --git a/build/src/H5B2int.lo b/build/src/H5B2int.lo deleted file mode 100644 index f323202..0000000 --- a/build/src/H5B2int.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2int.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2int.o' - -# Name of the non-PIC object -non_pic_object='H5B2int.o' - diff --git a/build/src/H5B2int.o b/build/src/H5B2int.o deleted file mode 100644 index 1507b4d..0000000 Binary files a/build/src/H5B2int.o and /dev/null differ diff --git a/build/src/H5B2stat.lo b/build/src/H5B2stat.lo deleted file mode 100644 index 7ef4251..0000000 --- a/build/src/H5B2stat.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2stat.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2stat.o' - -# Name of the non-PIC object -non_pic_object='H5B2stat.o' - diff --git a/build/src/H5B2stat.o b/build/src/H5B2stat.o deleted file mode 100644 index 7530a58..0000000 Binary files a/build/src/H5B2stat.o and /dev/null differ diff --git a/build/src/H5B2test.lo b/build/src/H5B2test.lo deleted file mode 100644 index 8500753..0000000 --- a/build/src/H5B2test.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5B2test.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5B2test.o' - -# Name of the non-PIC object -non_pic_object='H5B2test.o' - diff --git a/build/src/H5B2test.o b/build/src/H5B2test.o deleted file mode 100644 index 8839ff5..0000000 Binary files a/build/src/H5B2test.o and /dev/null differ diff --git a/build/src/H5Bcache.lo b/build/src/H5Bcache.lo deleted file mode 100644 index ffb4335..0000000 --- a/build/src/H5Bcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Bcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Bcache.o' - -# Name of the non-PIC object -non_pic_object='H5Bcache.o' - diff --git a/build/src/H5Bcache.o b/build/src/H5Bcache.o deleted file mode 100644 index 69f2545..0000000 Binary files a/build/src/H5Bcache.o and /dev/null differ diff --git a/build/src/H5Bdbg.lo b/build/src/H5Bdbg.lo deleted file mode 100644 index 9ddea31..0000000 --- a/build/src/H5Bdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Bdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Bdbg.o' - -# Name of the non-PIC object -non_pic_object='H5Bdbg.o' - diff --git a/build/src/H5Bdbg.o b/build/src/H5Bdbg.o deleted file mode 100644 index 89163c6..0000000 Binary files a/build/src/H5Bdbg.o and /dev/null differ diff --git a/build/src/H5C.lo b/build/src/H5C.lo deleted file mode 100644 index c30fef8..0000000 --- a/build/src/H5C.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5C.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5C.o' - -# Name of the non-PIC object -non_pic_object='H5C.o' - diff --git a/build/src/H5C.o b/build/src/H5C.o deleted file mode 100644 index 8839c17..0000000 Binary files a/build/src/H5C.o and /dev/null differ diff --git a/build/src/H5CS.lo b/build/src/H5CS.lo deleted file mode 100644 index 11f241b..0000000 --- a/build/src/H5CS.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5CS.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5CS.o' - -# Name of the non-PIC object -non_pic_object='H5CS.o' - diff --git a/build/src/H5CS.o b/build/src/H5CS.o deleted file mode 100644 index aced8e1..0000000 Binary files a/build/src/H5CS.o and /dev/null differ diff --git a/build/src/H5D.lo b/build/src/H5D.lo deleted file mode 100644 index d5192ae..0000000 --- a/build/src/H5D.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5D.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5D.o' - -# Name of the non-PIC object -non_pic_object='H5D.o' - diff --git a/build/src/H5D.o b/build/src/H5D.o deleted file mode 100644 index 9e16179..0000000 Binary files a/build/src/H5D.o and /dev/null differ diff --git a/build/src/H5Dbtree.lo b/build/src/H5Dbtree.lo deleted file mode 100644 index bfb8d38..0000000 --- a/build/src/H5Dbtree.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dbtree.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dbtree.o' - -# Name of the non-PIC object -non_pic_object='H5Dbtree.o' - diff --git a/build/src/H5Dbtree.o b/build/src/H5Dbtree.o deleted file mode 100644 index a231eb0..0000000 Binary files a/build/src/H5Dbtree.o and /dev/null differ diff --git a/build/src/H5Dchunk.lo b/build/src/H5Dchunk.lo deleted file mode 100644 index c99ee3f..0000000 --- a/build/src/H5Dchunk.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dchunk.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dchunk.o' - -# Name of the non-PIC object -non_pic_object='H5Dchunk.o' - diff --git a/build/src/H5Dchunk.o b/build/src/H5Dchunk.o deleted file mode 100644 index 63c2dbf..0000000 Binary files a/build/src/H5Dchunk.o and /dev/null differ diff --git a/build/src/H5Dcompact.lo b/build/src/H5Dcompact.lo deleted file mode 100644 index 39ac22b..0000000 --- a/build/src/H5Dcompact.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dcompact.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dcompact.o' - -# Name of the non-PIC object -non_pic_object='H5Dcompact.o' - diff --git a/build/src/H5Dcompact.o b/build/src/H5Dcompact.o deleted file mode 100644 index cff3638..0000000 Binary files a/build/src/H5Dcompact.o and /dev/null differ diff --git a/build/src/H5Dcontig.lo b/build/src/H5Dcontig.lo deleted file mode 100644 index b6d9dd5..0000000 --- a/build/src/H5Dcontig.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dcontig.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dcontig.o' - -# Name of the non-PIC object -non_pic_object='H5Dcontig.o' - diff --git a/build/src/H5Dcontig.o b/build/src/H5Dcontig.o deleted file mode 100644 index bbd298a..0000000 Binary files a/build/src/H5Dcontig.o and /dev/null differ diff --git a/build/src/H5Ddbg.lo b/build/src/H5Ddbg.lo deleted file mode 100644 index e7d57db..0000000 --- a/build/src/H5Ddbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ddbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ddbg.o' - -# Name of the non-PIC object -non_pic_object='H5Ddbg.o' - diff --git a/build/src/H5Ddbg.o b/build/src/H5Ddbg.o deleted file mode 100644 index 60abc83..0000000 Binary files a/build/src/H5Ddbg.o and /dev/null differ diff --git a/build/src/H5Ddeprec.lo b/build/src/H5Ddeprec.lo deleted file mode 100644 index 0248da2..0000000 --- a/build/src/H5Ddeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ddeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ddeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Ddeprec.o' - diff --git a/build/src/H5Ddeprec.o b/build/src/H5Ddeprec.o deleted file mode 100644 index c4275b1..0000000 Binary files a/build/src/H5Ddeprec.o and /dev/null differ diff --git a/build/src/H5Defl.lo b/build/src/H5Defl.lo deleted file mode 100644 index 085ad8b..0000000 --- a/build/src/H5Defl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Defl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Defl.o' - -# Name of the non-PIC object -non_pic_object='H5Defl.o' - diff --git a/build/src/H5Defl.o b/build/src/H5Defl.o deleted file mode 100644 index 950051f..0000000 Binary files a/build/src/H5Defl.o and /dev/null differ diff --git a/build/src/H5Dfill.lo b/build/src/H5Dfill.lo deleted file mode 100644 index cff6ec5..0000000 --- a/build/src/H5Dfill.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dfill.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dfill.o' - -# Name of the non-PIC object -non_pic_object='H5Dfill.o' - diff --git a/build/src/H5Dfill.o b/build/src/H5Dfill.o deleted file mode 100644 index 2c71db4..0000000 Binary files a/build/src/H5Dfill.o and /dev/null differ diff --git a/build/src/H5Dint.lo b/build/src/H5Dint.lo deleted file mode 100644 index 7acecd5..0000000 --- a/build/src/H5Dint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dint.o' - -# Name of the non-PIC object -non_pic_object='H5Dint.o' - diff --git a/build/src/H5Dint.o b/build/src/H5Dint.o deleted file mode 100644 index 52dfbd6..0000000 Binary files a/build/src/H5Dint.o and /dev/null differ diff --git a/build/src/H5Dio.lo b/build/src/H5Dio.lo deleted file mode 100644 index 3206363..0000000 --- a/build/src/H5Dio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dio.o' - -# Name of the non-PIC object -non_pic_object='H5Dio.o' - diff --git a/build/src/H5Dio.o b/build/src/H5Dio.o deleted file mode 100644 index ea7a835..0000000 Binary files a/build/src/H5Dio.o and /dev/null differ diff --git a/build/src/H5Dlayout.lo b/build/src/H5Dlayout.lo deleted file mode 100644 index 480b499..0000000 --- a/build/src/H5Dlayout.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dlayout.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dlayout.o' - -# Name of the non-PIC object -non_pic_object='H5Dlayout.o' - diff --git a/build/src/H5Dlayout.o b/build/src/H5Dlayout.o deleted file mode 100644 index f156720..0000000 Binary files a/build/src/H5Dlayout.o and /dev/null differ diff --git a/build/src/H5Dmpio.lo b/build/src/H5Dmpio.lo deleted file mode 100644 index a5e4aa7..0000000 --- a/build/src/H5Dmpio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dmpio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dmpio.o' - -# Name of the non-PIC object -non_pic_object='H5Dmpio.o' - diff --git a/build/src/H5Dmpio.o b/build/src/H5Dmpio.o deleted file mode 100644 index 1d31b52..0000000 Binary files a/build/src/H5Dmpio.o and /dev/null differ diff --git a/build/src/H5Doh.lo b/build/src/H5Doh.lo deleted file mode 100644 index 4092dd9..0000000 --- a/build/src/H5Doh.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Doh.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Doh.o' - -# Name of the non-PIC object -non_pic_object='H5Doh.o' - diff --git a/build/src/H5Doh.o b/build/src/H5Doh.o deleted file mode 100644 index 0c29d15..0000000 Binary files a/build/src/H5Doh.o and /dev/null differ diff --git a/build/src/H5Dscatgath.lo b/build/src/H5Dscatgath.lo deleted file mode 100644 index 90b485c..0000000 --- a/build/src/H5Dscatgath.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dscatgath.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dscatgath.o' - -# Name of the non-PIC object -non_pic_object='H5Dscatgath.o' - diff --git a/build/src/H5Dscatgath.o b/build/src/H5Dscatgath.o deleted file mode 100644 index a8a2ac4..0000000 Binary files a/build/src/H5Dscatgath.o and /dev/null differ diff --git a/build/src/H5Dselect.lo b/build/src/H5Dselect.lo deleted file mode 100644 index e2e44bc..0000000 --- a/build/src/H5Dselect.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dselect.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dselect.o' - -# Name of the non-PIC object -non_pic_object='H5Dselect.o' - diff --git a/build/src/H5Dselect.o b/build/src/H5Dselect.o deleted file mode 100644 index 74f0175..0000000 Binary files a/build/src/H5Dselect.o and /dev/null differ diff --git a/build/src/H5Dtest.lo b/build/src/H5Dtest.lo deleted file mode 100644 index fe73d1a..0000000 --- a/build/src/H5Dtest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Dtest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Dtest.o' - -# Name of the non-PIC object -non_pic_object='H5Dtest.o' - diff --git a/build/src/H5Dtest.o b/build/src/H5Dtest.o deleted file mode 100644 index 885a498..0000000 Binary files a/build/src/H5Dtest.o and /dev/null differ diff --git a/build/src/H5E.lo b/build/src/H5E.lo deleted file mode 100644 index abb57e7..0000000 --- a/build/src/H5E.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5E.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5E.o' - -# Name of the non-PIC object -non_pic_object='H5E.o' - diff --git a/build/src/H5E.o b/build/src/H5E.o deleted file mode 100644 index 617611e..0000000 Binary files a/build/src/H5E.o and /dev/null differ diff --git a/build/src/H5Edeprec.lo b/build/src/H5Edeprec.lo deleted file mode 100644 index 1f7e0a9..0000000 --- a/build/src/H5Edeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Edeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Edeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Edeprec.o' - diff --git a/build/src/H5Edeprec.o b/build/src/H5Edeprec.o deleted file mode 100644 index a1a5910..0000000 Binary files a/build/src/H5Edeprec.o and /dev/null differ diff --git a/build/src/H5Eint.lo b/build/src/H5Eint.lo deleted file mode 100644 index d9d8411..0000000 --- a/build/src/H5Eint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Eint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Eint.o' - -# Name of the non-PIC object -non_pic_object='H5Eint.o' - diff --git a/build/src/H5Eint.o b/build/src/H5Eint.o deleted file mode 100644 index 4b4ab9d..0000000 Binary files a/build/src/H5Eint.o and /dev/null differ diff --git a/build/src/H5F.lo b/build/src/H5F.lo deleted file mode 100644 index 2efa8a9..0000000 --- a/build/src/H5F.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5F.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5F.o' - -# Name of the non-PIC object -non_pic_object='H5F.o' - diff --git a/build/src/H5F.o b/build/src/H5F.o deleted file mode 100644 index 051f538..0000000 Binary files a/build/src/H5F.o and /dev/null differ diff --git a/build/src/H5FD.lo b/build/src/H5FD.lo deleted file mode 100644 index 5e499c2..0000000 --- a/build/src/H5FD.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FD.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FD.o' - -# Name of the non-PIC object -non_pic_object='H5FD.o' - diff --git a/build/src/H5FD.o b/build/src/H5FD.o deleted file mode 100644 index 15d60fc..0000000 Binary files a/build/src/H5FD.o and /dev/null differ diff --git a/build/src/H5FDcore.lo b/build/src/H5FDcore.lo deleted file mode 100644 index 49da1ac..0000000 --- a/build/src/H5FDcore.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDcore.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDcore.o' - -# Name of the non-PIC object -non_pic_object='H5FDcore.o' - diff --git a/build/src/H5FDcore.o b/build/src/H5FDcore.o deleted file mode 100644 index d3fd5b2..0000000 Binary files a/build/src/H5FDcore.o and /dev/null differ diff --git a/build/src/H5FDdirect.lo b/build/src/H5FDdirect.lo deleted file mode 100644 index aee3859..0000000 --- a/build/src/H5FDdirect.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDdirect.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDdirect.o' - -# Name of the non-PIC object -non_pic_object='H5FDdirect.o' - diff --git a/build/src/H5FDdirect.o b/build/src/H5FDdirect.o deleted file mode 100644 index dc25191..0000000 Binary files a/build/src/H5FDdirect.o and /dev/null differ diff --git a/build/src/H5FDfamily.lo b/build/src/H5FDfamily.lo deleted file mode 100644 index 1cdf91d..0000000 --- a/build/src/H5FDfamily.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDfamily.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDfamily.o' - -# Name of the non-PIC object -non_pic_object='H5FDfamily.o' - diff --git a/build/src/H5FDfamily.o b/build/src/H5FDfamily.o deleted file mode 100644 index 7fb7c7f..0000000 Binary files a/build/src/H5FDfamily.o and /dev/null differ diff --git a/build/src/H5FDint.lo b/build/src/H5FDint.lo deleted file mode 100644 index 4689adf..0000000 --- a/build/src/H5FDint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDint.o' - -# Name of the non-PIC object -non_pic_object='H5FDint.o' - diff --git a/build/src/H5FDint.o b/build/src/H5FDint.o deleted file mode 100644 index 17ad88a..0000000 Binary files a/build/src/H5FDint.o and /dev/null differ diff --git a/build/src/H5FDlog.lo b/build/src/H5FDlog.lo deleted file mode 100644 index 5163597..0000000 --- a/build/src/H5FDlog.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDlog.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDlog.o' - -# Name of the non-PIC object -non_pic_object='H5FDlog.o' - diff --git a/build/src/H5FDlog.o b/build/src/H5FDlog.o deleted file mode 100644 index 8a97548..0000000 Binary files a/build/src/H5FDlog.o and /dev/null differ diff --git a/build/src/H5FDmpi.lo b/build/src/H5FDmpi.lo deleted file mode 100644 index eabb53e..0000000 --- a/build/src/H5FDmpi.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDmpi.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDmpi.o' - -# Name of the non-PIC object -non_pic_object='H5FDmpi.o' - diff --git a/build/src/H5FDmpi.o b/build/src/H5FDmpi.o deleted file mode 100644 index 958783f..0000000 Binary files a/build/src/H5FDmpi.o and /dev/null differ diff --git a/build/src/H5FDmpio.lo b/build/src/H5FDmpio.lo deleted file mode 100644 index d153e02..0000000 --- a/build/src/H5FDmpio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDmpio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDmpio.o' - -# Name of the non-PIC object -non_pic_object='H5FDmpio.o' - diff --git a/build/src/H5FDmpio.o b/build/src/H5FDmpio.o deleted file mode 100644 index 93058bf..0000000 Binary files a/build/src/H5FDmpio.o and /dev/null differ diff --git a/build/src/H5FDmulti.lo b/build/src/H5FDmulti.lo deleted file mode 100644 index 60196fc..0000000 --- a/build/src/H5FDmulti.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDmulti.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDmulti.o' - -# Name of the non-PIC object -non_pic_object='H5FDmulti.o' - diff --git a/build/src/H5FDmulti.o b/build/src/H5FDmulti.o deleted file mode 100644 index 832a54b..0000000 Binary files a/build/src/H5FDmulti.o and /dev/null differ diff --git a/build/src/H5FDsec2.lo b/build/src/H5FDsec2.lo deleted file mode 100644 index 2304e36..0000000 --- a/build/src/H5FDsec2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDsec2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDsec2.o' - -# Name of the non-PIC object -non_pic_object='H5FDsec2.o' - diff --git a/build/src/H5FDsec2.o b/build/src/H5FDsec2.o deleted file mode 100644 index 40139a3..0000000 Binary files a/build/src/H5FDsec2.o and /dev/null differ diff --git a/build/src/H5FDspace.lo b/build/src/H5FDspace.lo deleted file mode 100644 index a5142a4..0000000 --- a/build/src/H5FDspace.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDspace.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDspace.o' - -# Name of the non-PIC object -non_pic_object='H5FDspace.o' - diff --git a/build/src/H5FDspace.o b/build/src/H5FDspace.o deleted file mode 100644 index dcae4e2..0000000 Binary files a/build/src/H5FDspace.o and /dev/null differ diff --git a/build/src/H5FDstdio.lo b/build/src/H5FDstdio.lo deleted file mode 100644 index 00bf29e..0000000 --- a/build/src/H5FDstdio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FDstdio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FDstdio.o' - -# Name of the non-PIC object -non_pic_object='H5FDstdio.o' - diff --git a/build/src/H5FDstdio.o b/build/src/H5FDstdio.o deleted file mode 100644 index f74eb42..0000000 Binary files a/build/src/H5FDstdio.o and /dev/null differ diff --git a/build/src/H5FL.lo b/build/src/H5FL.lo deleted file mode 100644 index 484ec08..0000000 --- a/build/src/H5FL.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FL.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FL.o' - -# Name of the non-PIC object -non_pic_object='H5FL.o' - diff --git a/build/src/H5FL.o b/build/src/H5FL.o deleted file mode 100644 index b6858f6..0000000 Binary files a/build/src/H5FL.o and /dev/null differ diff --git a/build/src/H5FO.lo b/build/src/H5FO.lo deleted file mode 100644 index 048f558..0000000 --- a/build/src/H5FO.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FO.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FO.o' - -# Name of the non-PIC object -non_pic_object='H5FO.o' - diff --git a/build/src/H5FO.o b/build/src/H5FO.o deleted file mode 100644 index 63e4c6f..0000000 Binary files a/build/src/H5FO.o and /dev/null differ diff --git a/build/src/H5FS.lo b/build/src/H5FS.lo deleted file mode 100644 index b2f4733..0000000 --- a/build/src/H5FS.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FS.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FS.o' - -# Name of the non-PIC object -non_pic_object='H5FS.o' - diff --git a/build/src/H5FS.o b/build/src/H5FS.o deleted file mode 100644 index 206f447..0000000 Binary files a/build/src/H5FS.o and /dev/null differ diff --git a/build/src/H5FScache.lo b/build/src/H5FScache.lo deleted file mode 100644 index 3a5461f..0000000 --- a/build/src/H5FScache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FScache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FScache.o' - -# Name of the non-PIC object -non_pic_object='H5FScache.o' - diff --git a/build/src/H5FScache.o b/build/src/H5FScache.o deleted file mode 100644 index 35d1b9e..0000000 Binary files a/build/src/H5FScache.o and /dev/null differ diff --git a/build/src/H5FSdbg.lo b/build/src/H5FSdbg.lo deleted file mode 100644 index ab7b25d..0000000 --- a/build/src/H5FSdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FSdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FSdbg.o' - -# Name of the non-PIC object -non_pic_object='H5FSdbg.o' - diff --git a/build/src/H5FSdbg.o b/build/src/H5FSdbg.o deleted file mode 100644 index 30db153..0000000 Binary files a/build/src/H5FSdbg.o and /dev/null differ diff --git a/build/src/H5FSsection.lo b/build/src/H5FSsection.lo deleted file mode 100644 index bde9d3c..0000000 --- a/build/src/H5FSsection.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FSsection.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FSsection.o' - -# Name of the non-PIC object -non_pic_object='H5FSsection.o' - diff --git a/build/src/H5FSsection.o b/build/src/H5FSsection.o deleted file mode 100644 index c84f397..0000000 Binary files a/build/src/H5FSsection.o and /dev/null differ diff --git a/build/src/H5FSstat.lo b/build/src/H5FSstat.lo deleted file mode 100644 index 3a59d61..0000000 --- a/build/src/H5FSstat.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FSstat.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FSstat.o' - -# Name of the non-PIC object -non_pic_object='H5FSstat.o' - diff --git a/build/src/H5FSstat.o b/build/src/H5FSstat.o deleted file mode 100644 index 50f3667..0000000 Binary files a/build/src/H5FSstat.o and /dev/null differ diff --git a/build/src/H5FStest.lo b/build/src/H5FStest.lo deleted file mode 100644 index 4078c7b..0000000 --- a/build/src/H5FStest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5FStest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5FStest.o' - -# Name of the non-PIC object -non_pic_object='H5FStest.o' - diff --git a/build/src/H5FStest.o b/build/src/H5FStest.o deleted file mode 100644 index 2349a15..0000000 Binary files a/build/src/H5FStest.o and /dev/null differ diff --git a/build/src/H5Faccum.lo b/build/src/H5Faccum.lo deleted file mode 100644 index 599ea5a..0000000 --- a/build/src/H5Faccum.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Faccum.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Faccum.o' - -# Name of the non-PIC object -non_pic_object='H5Faccum.o' - diff --git a/build/src/H5Faccum.o b/build/src/H5Faccum.o deleted file mode 100644 index eaac6af..0000000 Binary files a/build/src/H5Faccum.o and /dev/null differ diff --git a/build/src/H5Fcwfs.lo b/build/src/H5Fcwfs.lo deleted file mode 100644 index 87aeb8c..0000000 --- a/build/src/H5Fcwfs.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fcwfs.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fcwfs.o' - -# Name of the non-PIC object -non_pic_object='H5Fcwfs.o' - diff --git a/build/src/H5Fcwfs.o b/build/src/H5Fcwfs.o deleted file mode 100644 index f570ace..0000000 Binary files a/build/src/H5Fcwfs.o and /dev/null differ diff --git a/build/src/H5Fdbg.lo b/build/src/H5Fdbg.lo deleted file mode 100644 index f04a1dd..0000000 --- a/build/src/H5Fdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fdbg.o' - -# Name of the non-PIC object -non_pic_object='H5Fdbg.o' - diff --git a/build/src/H5Fdbg.o b/build/src/H5Fdbg.o deleted file mode 100644 index 77ac301..0000000 Binary files a/build/src/H5Fdbg.o and /dev/null differ diff --git a/build/src/H5Fefc.lo b/build/src/H5Fefc.lo deleted file mode 100644 index 109214c..0000000 --- a/build/src/H5Fefc.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fefc.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fefc.o' - -# Name of the non-PIC object -non_pic_object='H5Fefc.o' - diff --git a/build/src/H5Fefc.o b/build/src/H5Fefc.o deleted file mode 100644 index 455d68d..0000000 Binary files a/build/src/H5Fefc.o and /dev/null differ diff --git a/build/src/H5Ffake.lo b/build/src/H5Ffake.lo deleted file mode 100644 index 1ad5958..0000000 --- a/build/src/H5Ffake.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ffake.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ffake.o' - -# Name of the non-PIC object -non_pic_object='H5Ffake.o' - diff --git a/build/src/H5Ffake.o b/build/src/H5Ffake.o deleted file mode 100644 index 9535b40..0000000 Binary files a/build/src/H5Ffake.o and /dev/null differ diff --git a/build/src/H5Fint.lo b/build/src/H5Fint.lo deleted file mode 100644 index b9cd750..0000000 --- a/build/src/H5Fint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fint.o' - -# Name of the non-PIC object -non_pic_object='H5Fint.o' - diff --git a/build/src/H5Fint.o b/build/src/H5Fint.o deleted file mode 100644 index 7d66d77..0000000 Binary files a/build/src/H5Fint.o and /dev/null differ diff --git a/build/src/H5Fio.lo b/build/src/H5Fio.lo deleted file mode 100644 index 0bbff49..0000000 --- a/build/src/H5Fio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fio.o' - -# Name of the non-PIC object -non_pic_object='H5Fio.o' - diff --git a/build/src/H5Fio.o b/build/src/H5Fio.o deleted file mode 100644 index aa9c013..0000000 Binary files a/build/src/H5Fio.o and /dev/null differ diff --git a/build/src/H5Fmount.lo b/build/src/H5Fmount.lo deleted file mode 100644 index c6f3b55..0000000 --- a/build/src/H5Fmount.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fmount.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fmount.o' - -# Name of the non-PIC object -non_pic_object='H5Fmount.o' - diff --git a/build/src/H5Fmount.o b/build/src/H5Fmount.o deleted file mode 100644 index 44d2d36..0000000 Binary files a/build/src/H5Fmount.o and /dev/null differ diff --git a/build/src/H5Fmpi.lo b/build/src/H5Fmpi.lo deleted file mode 100644 index 48cc769..0000000 --- a/build/src/H5Fmpi.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fmpi.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fmpi.o' - -# Name of the non-PIC object -non_pic_object='H5Fmpi.o' - diff --git a/build/src/H5Fmpi.o b/build/src/H5Fmpi.o deleted file mode 100644 index 76fe234..0000000 Binary files a/build/src/H5Fmpi.o and /dev/null differ diff --git a/build/src/H5Fquery.lo b/build/src/H5Fquery.lo deleted file mode 100644 index 620c6bb..0000000 --- a/build/src/H5Fquery.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fquery.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fquery.o' - -# Name of the non-PIC object -non_pic_object='H5Fquery.o' - diff --git a/build/src/H5Fquery.o b/build/src/H5Fquery.o deleted file mode 100644 index ced3f11..0000000 Binary files a/build/src/H5Fquery.o and /dev/null differ diff --git a/build/src/H5Fsfile.lo b/build/src/H5Fsfile.lo deleted file mode 100644 index b585a7f..0000000 --- a/build/src/H5Fsfile.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fsfile.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fsfile.o' - -# Name of the non-PIC object -non_pic_object='H5Fsfile.o' - diff --git a/build/src/H5Fsfile.o b/build/src/H5Fsfile.o deleted file mode 100644 index 3330c8b..0000000 Binary files a/build/src/H5Fsfile.o and /dev/null differ diff --git a/build/src/H5Fsuper.lo b/build/src/H5Fsuper.lo deleted file mode 100644 index 2b644af..0000000 --- a/build/src/H5Fsuper.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fsuper.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fsuper.o' - -# Name of the non-PIC object -non_pic_object='H5Fsuper.o' - diff --git a/build/src/H5Fsuper.o b/build/src/H5Fsuper.o deleted file mode 100644 index 64bac3d..0000000 Binary files a/build/src/H5Fsuper.o and /dev/null differ diff --git a/build/src/H5Fsuper_cache.lo b/build/src/H5Fsuper_cache.lo deleted file mode 100644 index 67034d1..0000000 --- a/build/src/H5Fsuper_cache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Fsuper_cache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Fsuper_cache.o' - -# Name of the non-PIC object -non_pic_object='H5Fsuper_cache.o' - diff --git a/build/src/H5Fsuper_cache.o b/build/src/H5Fsuper_cache.o deleted file mode 100644 index e4256dc..0000000 Binary files a/build/src/H5Fsuper_cache.o and /dev/null differ diff --git a/build/src/H5Ftest.lo b/build/src/H5Ftest.lo deleted file mode 100644 index ca7d369..0000000 --- a/build/src/H5Ftest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ftest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ftest.o' - -# Name of the non-PIC object -non_pic_object='H5Ftest.o' - diff --git a/build/src/H5Ftest.o b/build/src/H5Ftest.o deleted file mode 100644 index 2beb3bd..0000000 Binary files a/build/src/H5Ftest.o and /dev/null differ diff --git a/build/src/H5G.lo b/build/src/H5G.lo deleted file mode 100644 index 52ef654..0000000 --- a/build/src/H5G.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5G.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5G.o' - -# Name of the non-PIC object -non_pic_object='H5G.o' - diff --git a/build/src/H5G.o b/build/src/H5G.o deleted file mode 100644 index 23bf4c5..0000000 Binary files a/build/src/H5G.o and /dev/null differ diff --git a/build/src/H5Gbtree2.lo b/build/src/H5Gbtree2.lo deleted file mode 100644 index fa6d2bc..0000000 --- a/build/src/H5Gbtree2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gbtree2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gbtree2.o' - -# Name of the non-PIC object -non_pic_object='H5Gbtree2.o' - diff --git a/build/src/H5Gbtree2.o b/build/src/H5Gbtree2.o deleted file mode 100644 index 58a7773..0000000 Binary files a/build/src/H5Gbtree2.o and /dev/null differ diff --git a/build/src/H5Gcache.lo b/build/src/H5Gcache.lo deleted file mode 100644 index 7bb161c..0000000 --- a/build/src/H5Gcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gcache.o' - -# Name of the non-PIC object -non_pic_object='H5Gcache.o' - diff --git a/build/src/H5Gcache.o b/build/src/H5Gcache.o deleted file mode 100644 index eeaac79..0000000 Binary files a/build/src/H5Gcache.o and /dev/null differ diff --git a/build/src/H5Gcompact.lo b/build/src/H5Gcompact.lo deleted file mode 100644 index 7fbf45c..0000000 --- a/build/src/H5Gcompact.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gcompact.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gcompact.o' - -# Name of the non-PIC object -non_pic_object='H5Gcompact.o' - diff --git a/build/src/H5Gcompact.o b/build/src/H5Gcompact.o deleted file mode 100644 index c3fbe4e..0000000 Binary files a/build/src/H5Gcompact.o and /dev/null differ diff --git a/build/src/H5Gdense.lo b/build/src/H5Gdense.lo deleted file mode 100644 index 53fcdb1..0000000 --- a/build/src/H5Gdense.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gdense.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gdense.o' - -# Name of the non-PIC object -non_pic_object='H5Gdense.o' - diff --git a/build/src/H5Gdense.o b/build/src/H5Gdense.o deleted file mode 100644 index 1cbfe44..0000000 Binary files a/build/src/H5Gdense.o and /dev/null differ diff --git a/build/src/H5Gdeprec.lo b/build/src/H5Gdeprec.lo deleted file mode 100644 index 0713fd7..0000000 --- a/build/src/H5Gdeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gdeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gdeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Gdeprec.o' - diff --git a/build/src/H5Gdeprec.o b/build/src/H5Gdeprec.o deleted file mode 100644 index e1de448..0000000 Binary files a/build/src/H5Gdeprec.o and /dev/null differ diff --git a/build/src/H5Gent.lo b/build/src/H5Gent.lo deleted file mode 100644 index 357ed2e..0000000 --- a/build/src/H5Gent.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gent.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gent.o' - -# Name of the non-PIC object -non_pic_object='H5Gent.o' - diff --git a/build/src/H5Gent.o b/build/src/H5Gent.o deleted file mode 100644 index 70fccec..0000000 Binary files a/build/src/H5Gent.o and /dev/null differ diff --git a/build/src/H5Gint.lo b/build/src/H5Gint.lo deleted file mode 100644 index 5aa3e04..0000000 --- a/build/src/H5Gint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gint.o' - -# Name of the non-PIC object -non_pic_object='H5Gint.o' - diff --git a/build/src/H5Gint.o b/build/src/H5Gint.o deleted file mode 100644 index ec28c87..0000000 Binary files a/build/src/H5Gint.o and /dev/null differ diff --git a/build/src/H5Glink.lo b/build/src/H5Glink.lo deleted file mode 100644 index 194a13d..0000000 --- a/build/src/H5Glink.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Glink.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Glink.o' - -# Name of the non-PIC object -non_pic_object='H5Glink.o' - diff --git a/build/src/H5Glink.o b/build/src/H5Glink.o deleted file mode 100644 index ab28639..0000000 Binary files a/build/src/H5Glink.o and /dev/null differ diff --git a/build/src/H5Gloc.lo b/build/src/H5Gloc.lo deleted file mode 100644 index 222b7c6..0000000 --- a/build/src/H5Gloc.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gloc.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gloc.o' - -# Name of the non-PIC object -non_pic_object='H5Gloc.o' - diff --git a/build/src/H5Gloc.o b/build/src/H5Gloc.o deleted file mode 100644 index 4d592c3..0000000 Binary files a/build/src/H5Gloc.o and /dev/null differ diff --git a/build/src/H5Gname.lo b/build/src/H5Gname.lo deleted file mode 100644 index 067eac9..0000000 --- a/build/src/H5Gname.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gname.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gname.o' - -# Name of the non-PIC object -non_pic_object='H5Gname.o' - diff --git a/build/src/H5Gname.o b/build/src/H5Gname.o deleted file mode 100644 index 2b98be6..0000000 Binary files a/build/src/H5Gname.o and /dev/null differ diff --git a/build/src/H5Gnode.lo b/build/src/H5Gnode.lo deleted file mode 100644 index bf7d3fb..0000000 --- a/build/src/H5Gnode.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gnode.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gnode.o' - -# Name of the non-PIC object -non_pic_object='H5Gnode.o' - diff --git a/build/src/H5Gnode.o b/build/src/H5Gnode.o deleted file mode 100644 index bdb8838..0000000 Binary files a/build/src/H5Gnode.o and /dev/null differ diff --git a/build/src/H5Gobj.lo b/build/src/H5Gobj.lo deleted file mode 100644 index 9c65d95..0000000 --- a/build/src/H5Gobj.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gobj.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gobj.o' - -# Name of the non-PIC object -non_pic_object='H5Gobj.o' - diff --git a/build/src/H5Gobj.o b/build/src/H5Gobj.o deleted file mode 100644 index 39e474e..0000000 Binary files a/build/src/H5Gobj.o and /dev/null differ diff --git a/build/src/H5Goh.lo b/build/src/H5Goh.lo deleted file mode 100644 index 73383a6..0000000 --- a/build/src/H5Goh.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Goh.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Goh.o' - -# Name of the non-PIC object -non_pic_object='H5Goh.o' - diff --git a/build/src/H5Goh.o b/build/src/H5Goh.o deleted file mode 100644 index 2b1054c..0000000 Binary files a/build/src/H5Goh.o and /dev/null differ diff --git a/build/src/H5Groot.lo b/build/src/H5Groot.lo deleted file mode 100644 index 171ea13..0000000 --- a/build/src/H5Groot.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Groot.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Groot.o' - -# Name of the non-PIC object -non_pic_object='H5Groot.o' - diff --git a/build/src/H5Groot.o b/build/src/H5Groot.o deleted file mode 100644 index e4b25ec..0000000 Binary files a/build/src/H5Groot.o and /dev/null differ diff --git a/build/src/H5Gstab.lo b/build/src/H5Gstab.lo deleted file mode 100644 index 45595dc..0000000 --- a/build/src/H5Gstab.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gstab.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gstab.o' - -# Name of the non-PIC object -non_pic_object='H5Gstab.o' - diff --git a/build/src/H5Gstab.o b/build/src/H5Gstab.o deleted file mode 100644 index 57a64eb..0000000 Binary files a/build/src/H5Gstab.o and /dev/null differ diff --git a/build/src/H5Gtest.lo b/build/src/H5Gtest.lo deleted file mode 100644 index 5349289..0000000 --- a/build/src/H5Gtest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gtest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gtest.o' - -# Name of the non-PIC object -non_pic_object='H5Gtest.o' - diff --git a/build/src/H5Gtest.o b/build/src/H5Gtest.o deleted file mode 100644 index e922278..0000000 Binary files a/build/src/H5Gtest.o and /dev/null differ diff --git a/build/src/H5Gtraverse.lo b/build/src/H5Gtraverse.lo deleted file mode 100644 index 0edb149..0000000 --- a/build/src/H5Gtraverse.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Gtraverse.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Gtraverse.o' - -# Name of the non-PIC object -non_pic_object='H5Gtraverse.o' - diff --git a/build/src/H5Gtraverse.o b/build/src/H5Gtraverse.o deleted file mode 100644 index ce78ea6..0000000 Binary files a/build/src/H5Gtraverse.o and /dev/null differ diff --git a/build/src/H5HF.lo b/build/src/H5HF.lo deleted file mode 100644 index a0b8ad7..0000000 --- a/build/src/H5HF.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HF.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HF.o' - -# Name of the non-PIC object -non_pic_object='H5HF.o' - diff --git a/build/src/H5HF.o b/build/src/H5HF.o deleted file mode 100644 index edc268f..0000000 Binary files a/build/src/H5HF.o and /dev/null differ diff --git a/build/src/H5HFbtree2.lo b/build/src/H5HFbtree2.lo deleted file mode 100644 index 8d856e8..0000000 --- a/build/src/H5HFbtree2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFbtree2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFbtree2.o' - -# Name of the non-PIC object -non_pic_object='H5HFbtree2.o' - diff --git a/build/src/H5HFbtree2.o b/build/src/H5HFbtree2.o deleted file mode 100644 index a2528fc..0000000 Binary files a/build/src/H5HFbtree2.o and /dev/null differ diff --git a/build/src/H5HFcache.lo b/build/src/H5HFcache.lo deleted file mode 100644 index 0173666..0000000 --- a/build/src/H5HFcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFcache.o' - -# Name of the non-PIC object -non_pic_object='H5HFcache.o' - diff --git a/build/src/H5HFcache.o b/build/src/H5HFcache.o deleted file mode 100644 index 8280a92..0000000 Binary files a/build/src/H5HFcache.o and /dev/null differ diff --git a/build/src/H5HFdbg.lo b/build/src/H5HFdbg.lo deleted file mode 100644 index e02f65e..0000000 --- a/build/src/H5HFdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFdbg.o' - -# Name of the non-PIC object -non_pic_object='H5HFdbg.o' - diff --git a/build/src/H5HFdbg.o b/build/src/H5HFdbg.o deleted file mode 100644 index ea92854..0000000 Binary files a/build/src/H5HFdbg.o and /dev/null differ diff --git a/build/src/H5HFdblock.lo b/build/src/H5HFdblock.lo deleted file mode 100644 index 1f60c6b..0000000 --- a/build/src/H5HFdblock.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFdblock.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFdblock.o' - -# Name of the non-PIC object -non_pic_object='H5HFdblock.o' - diff --git a/build/src/H5HFdblock.o b/build/src/H5HFdblock.o deleted file mode 100644 index f14b765..0000000 Binary files a/build/src/H5HFdblock.o and /dev/null differ diff --git a/build/src/H5HFdtable.lo b/build/src/H5HFdtable.lo deleted file mode 100644 index 3435312..0000000 --- a/build/src/H5HFdtable.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFdtable.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFdtable.o' - -# Name of the non-PIC object -non_pic_object='H5HFdtable.o' - diff --git a/build/src/H5HFdtable.o b/build/src/H5HFdtable.o deleted file mode 100644 index 5418bb5..0000000 Binary files a/build/src/H5HFdtable.o and /dev/null differ diff --git a/build/src/H5HFhdr.lo b/build/src/H5HFhdr.lo deleted file mode 100644 index 04555b4..0000000 --- a/build/src/H5HFhdr.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFhdr.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFhdr.o' - -# Name of the non-PIC object -non_pic_object='H5HFhdr.o' - diff --git a/build/src/H5HFhdr.o b/build/src/H5HFhdr.o deleted file mode 100644 index 4e012d6..0000000 Binary files a/build/src/H5HFhdr.o and /dev/null differ diff --git a/build/src/H5HFhuge.lo b/build/src/H5HFhuge.lo deleted file mode 100644 index 10a5f7c..0000000 --- a/build/src/H5HFhuge.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFhuge.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFhuge.o' - -# Name of the non-PIC object -non_pic_object='H5HFhuge.o' - diff --git a/build/src/H5HFhuge.o b/build/src/H5HFhuge.o deleted file mode 100644 index 8cbd88e..0000000 Binary files a/build/src/H5HFhuge.o and /dev/null differ diff --git a/build/src/H5HFiblock.lo b/build/src/H5HFiblock.lo deleted file mode 100644 index bf20202..0000000 --- a/build/src/H5HFiblock.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFiblock.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFiblock.o' - -# Name of the non-PIC object -non_pic_object='H5HFiblock.o' - diff --git a/build/src/H5HFiblock.o b/build/src/H5HFiblock.o deleted file mode 100644 index 3563b64..0000000 Binary files a/build/src/H5HFiblock.o and /dev/null differ diff --git a/build/src/H5HFiter.lo b/build/src/H5HFiter.lo deleted file mode 100644 index 7a35f1d..0000000 --- a/build/src/H5HFiter.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFiter.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFiter.o' - -# Name of the non-PIC object -non_pic_object='H5HFiter.o' - diff --git a/build/src/H5HFiter.o b/build/src/H5HFiter.o deleted file mode 100644 index 246dc6c..0000000 Binary files a/build/src/H5HFiter.o and /dev/null differ diff --git a/build/src/H5HFman.lo b/build/src/H5HFman.lo deleted file mode 100644 index 45a2959..0000000 --- a/build/src/H5HFman.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFman.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFman.o' - -# Name of the non-PIC object -non_pic_object='H5HFman.o' - diff --git a/build/src/H5HFman.o b/build/src/H5HFman.o deleted file mode 100644 index afdf80c..0000000 Binary files a/build/src/H5HFman.o and /dev/null differ diff --git a/build/src/H5HFsection.lo b/build/src/H5HFsection.lo deleted file mode 100644 index 9aeb38e..0000000 --- a/build/src/H5HFsection.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFsection.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFsection.o' - -# Name of the non-PIC object -non_pic_object='H5HFsection.o' - diff --git a/build/src/H5HFsection.o b/build/src/H5HFsection.o deleted file mode 100644 index b20f744..0000000 Binary files a/build/src/H5HFsection.o and /dev/null differ diff --git a/build/src/H5HFspace.lo b/build/src/H5HFspace.lo deleted file mode 100644 index 16e1283..0000000 --- a/build/src/H5HFspace.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFspace.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFspace.o' - -# Name of the non-PIC object -non_pic_object='H5HFspace.o' - diff --git a/build/src/H5HFspace.o b/build/src/H5HFspace.o deleted file mode 100644 index f0264a1..0000000 Binary files a/build/src/H5HFspace.o and /dev/null differ diff --git a/build/src/H5HFstat.lo b/build/src/H5HFstat.lo deleted file mode 100644 index cb1ee35..0000000 --- a/build/src/H5HFstat.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFstat.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFstat.o' - -# Name of the non-PIC object -non_pic_object='H5HFstat.o' - diff --git a/build/src/H5HFstat.o b/build/src/H5HFstat.o deleted file mode 100644 index aa7974e..0000000 Binary files a/build/src/H5HFstat.o and /dev/null differ diff --git a/build/src/H5HFtest.lo b/build/src/H5HFtest.lo deleted file mode 100644 index 4567480..0000000 --- a/build/src/H5HFtest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFtest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFtest.o' - -# Name of the non-PIC object -non_pic_object='H5HFtest.o' - diff --git a/build/src/H5HFtest.o b/build/src/H5HFtest.o deleted file mode 100644 index 7015ca6..0000000 Binary files a/build/src/H5HFtest.o and /dev/null differ diff --git a/build/src/H5HFtiny.lo b/build/src/H5HFtiny.lo deleted file mode 100644 index 47d0591..0000000 --- a/build/src/H5HFtiny.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HFtiny.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HFtiny.o' - -# Name of the non-PIC object -non_pic_object='H5HFtiny.o' - diff --git a/build/src/H5HFtiny.o b/build/src/H5HFtiny.o deleted file mode 100644 index 955bbb7..0000000 Binary files a/build/src/H5HFtiny.o and /dev/null differ diff --git a/build/src/H5HG.lo b/build/src/H5HG.lo deleted file mode 100644 index 928acb0..0000000 --- a/build/src/H5HG.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HG.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HG.o' - -# Name of the non-PIC object -non_pic_object='H5HG.o' - diff --git a/build/src/H5HG.o b/build/src/H5HG.o deleted file mode 100644 index d331786..0000000 Binary files a/build/src/H5HG.o and /dev/null differ diff --git a/build/src/H5HGcache.lo b/build/src/H5HGcache.lo deleted file mode 100644 index 492f81c..0000000 --- a/build/src/H5HGcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HGcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HGcache.o' - -# Name of the non-PIC object -non_pic_object='H5HGcache.o' - diff --git a/build/src/H5HGcache.o b/build/src/H5HGcache.o deleted file mode 100644 index c029164..0000000 Binary files a/build/src/H5HGcache.o and /dev/null differ diff --git a/build/src/H5HGdbg.lo b/build/src/H5HGdbg.lo deleted file mode 100644 index 144332f..0000000 --- a/build/src/H5HGdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HGdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HGdbg.o' - -# Name of the non-PIC object -non_pic_object='H5HGdbg.o' - diff --git a/build/src/H5HGdbg.o b/build/src/H5HGdbg.o deleted file mode 100644 index d675622..0000000 Binary files a/build/src/H5HGdbg.o and /dev/null differ diff --git a/build/src/H5HGquery.lo b/build/src/H5HGquery.lo deleted file mode 100644 index d5d8323..0000000 --- a/build/src/H5HGquery.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HGquery.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HGquery.o' - -# Name of the non-PIC object -non_pic_object='H5HGquery.o' - diff --git a/build/src/H5HGquery.o b/build/src/H5HGquery.o deleted file mode 100644 index eaceb82..0000000 Binary files a/build/src/H5HGquery.o and /dev/null differ diff --git a/build/src/H5HL.lo b/build/src/H5HL.lo deleted file mode 100644 index 4be414b..0000000 --- a/build/src/H5HL.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HL.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HL.o' - -# Name of the non-PIC object -non_pic_object='H5HL.o' - diff --git a/build/src/H5HL.o b/build/src/H5HL.o deleted file mode 100644 index 73f426b..0000000 Binary files a/build/src/H5HL.o and /dev/null differ diff --git a/build/src/H5HLcache.lo b/build/src/H5HLcache.lo deleted file mode 100644 index cd3fd2a..0000000 --- a/build/src/H5HLcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HLcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HLcache.o' - -# Name of the non-PIC object -non_pic_object='H5HLcache.o' - diff --git a/build/src/H5HLcache.o b/build/src/H5HLcache.o deleted file mode 100644 index 26ffca7..0000000 Binary files a/build/src/H5HLcache.o and /dev/null differ diff --git a/build/src/H5HLdbg.lo b/build/src/H5HLdbg.lo deleted file mode 100644 index a7f9cb4..0000000 --- a/build/src/H5HLdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HLdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HLdbg.o' - -# Name of the non-PIC object -non_pic_object='H5HLdbg.o' - diff --git a/build/src/H5HLdbg.o b/build/src/H5HLdbg.o deleted file mode 100644 index 33e897a..0000000 Binary files a/build/src/H5HLdbg.o and /dev/null differ diff --git a/build/src/H5HLint.lo b/build/src/H5HLint.lo deleted file mode 100644 index 2949579..0000000 --- a/build/src/H5HLint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HLint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HLint.o' - -# Name of the non-PIC object -non_pic_object='H5HLint.o' - diff --git a/build/src/H5HLint.o b/build/src/H5HLint.o deleted file mode 100644 index f08fe68..0000000 Binary files a/build/src/H5HLint.o and /dev/null differ diff --git a/build/src/H5HP.lo b/build/src/H5HP.lo deleted file mode 100644 index a959b24..0000000 --- a/build/src/H5HP.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5HP.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5HP.o' - -# Name of the non-PIC object -non_pic_object='H5HP.o' - diff --git a/build/src/H5HP.o b/build/src/H5HP.o deleted file mode 100644 index 83f7833..0000000 Binary files a/build/src/H5HP.o and /dev/null differ diff --git a/build/src/H5I.lo b/build/src/H5I.lo deleted file mode 100644 index 693024f..0000000 --- a/build/src/H5I.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5I.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5I.o' - -# Name of the non-PIC object -non_pic_object='H5I.o' - diff --git a/build/src/H5I.o b/build/src/H5I.o deleted file mode 100644 index 784ac79..0000000 Binary files a/build/src/H5I.o and /dev/null differ diff --git a/build/src/H5Itest.lo b/build/src/H5Itest.lo deleted file mode 100644 index 43fc3f6..0000000 --- a/build/src/H5Itest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Itest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Itest.o' - -# Name of the non-PIC object -non_pic_object='H5Itest.o' - diff --git a/build/src/H5Itest.o b/build/src/H5Itest.o deleted file mode 100644 index 35a2f95..0000000 Binary files a/build/src/H5Itest.o and /dev/null differ diff --git a/build/src/H5L.lo b/build/src/H5L.lo deleted file mode 100644 index 8267651..0000000 --- a/build/src/H5L.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5L.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5L.o' - -# Name of the non-PIC object -non_pic_object='H5L.o' - diff --git a/build/src/H5L.o b/build/src/H5L.o deleted file mode 100644 index 789f982..0000000 Binary files a/build/src/H5L.o and /dev/null differ diff --git a/build/src/H5Lexternal.lo b/build/src/H5Lexternal.lo deleted file mode 100644 index 160a837..0000000 --- a/build/src/H5Lexternal.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Lexternal.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Lexternal.o' - -# Name of the non-PIC object -non_pic_object='H5Lexternal.o' - diff --git a/build/src/H5Lexternal.o b/build/src/H5Lexternal.o deleted file mode 100644 index 6da6c7e..0000000 Binary files a/build/src/H5Lexternal.o and /dev/null differ diff --git a/build/src/H5MF.lo b/build/src/H5MF.lo deleted file mode 100644 index 2912718..0000000 --- a/build/src/H5MF.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MF.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MF.o' - -# Name of the non-PIC object -non_pic_object='H5MF.o' - diff --git a/build/src/H5MF.o b/build/src/H5MF.o deleted file mode 100644 index 6e635b1..0000000 Binary files a/build/src/H5MF.o and /dev/null differ diff --git a/build/src/H5MFaggr.lo b/build/src/H5MFaggr.lo deleted file mode 100644 index 4cace6a..0000000 --- a/build/src/H5MFaggr.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MFaggr.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MFaggr.o' - -# Name of the non-PIC object -non_pic_object='H5MFaggr.o' - diff --git a/build/src/H5MFaggr.o b/build/src/H5MFaggr.o deleted file mode 100644 index 9cd9c55..0000000 Binary files a/build/src/H5MFaggr.o and /dev/null differ diff --git a/build/src/H5MFdbg.lo b/build/src/H5MFdbg.lo deleted file mode 100644 index c4ecaf2..0000000 --- a/build/src/H5MFdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MFdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MFdbg.o' - -# Name of the non-PIC object -non_pic_object='H5MFdbg.o' - diff --git a/build/src/H5MFdbg.o b/build/src/H5MFdbg.o deleted file mode 100644 index 8b5a96e..0000000 Binary files a/build/src/H5MFdbg.o and /dev/null differ diff --git a/build/src/H5MFsection.lo b/build/src/H5MFsection.lo deleted file mode 100644 index 8f49969..0000000 --- a/build/src/H5MFsection.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MFsection.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MFsection.o' - -# Name of the non-PIC object -non_pic_object='H5MFsection.o' - diff --git a/build/src/H5MFsection.o b/build/src/H5MFsection.o deleted file mode 100644 index e9442ae..0000000 Binary files a/build/src/H5MFsection.o and /dev/null differ diff --git a/build/src/H5MM.lo b/build/src/H5MM.lo deleted file mode 100644 index ec453da..0000000 --- a/build/src/H5MM.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MM.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MM.o' - -# Name of the non-PIC object -non_pic_object='H5MM.o' - diff --git a/build/src/H5MM.o b/build/src/H5MM.o deleted file mode 100644 index 6198817..0000000 Binary files a/build/src/H5MM.o and /dev/null differ diff --git a/build/src/H5MP.lo b/build/src/H5MP.lo deleted file mode 100644 index 8160d28..0000000 --- a/build/src/H5MP.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MP.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MP.o' - -# Name of the non-PIC object -non_pic_object='H5MP.o' - diff --git a/build/src/H5MP.o b/build/src/H5MP.o deleted file mode 100644 index 7050df5..0000000 Binary files a/build/src/H5MP.o and /dev/null differ diff --git a/build/src/H5MPtest.lo b/build/src/H5MPtest.lo deleted file mode 100644 index 5aeffec..0000000 --- a/build/src/H5MPtest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5MPtest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5MPtest.o' - -# Name of the non-PIC object -non_pic_object='H5MPtest.o' - diff --git a/build/src/H5MPtest.o b/build/src/H5MPtest.o deleted file mode 100644 index 1316d1b..0000000 Binary files a/build/src/H5MPtest.o and /dev/null differ diff --git a/build/src/H5O.lo b/build/src/H5O.lo deleted file mode 100644 index d0c9320..0000000 --- a/build/src/H5O.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5O.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5O.o' - -# Name of the non-PIC object -non_pic_object='H5O.o' - diff --git a/build/src/H5O.o b/build/src/H5O.o deleted file mode 100644 index 6506756..0000000 Binary files a/build/src/H5O.o and /dev/null differ diff --git a/build/src/H5Oainfo.lo b/build/src/H5Oainfo.lo deleted file mode 100644 index 33b1fe5..0000000 --- a/build/src/H5Oainfo.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oainfo.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oainfo.o' - -# Name of the non-PIC object -non_pic_object='H5Oainfo.o' - diff --git a/build/src/H5Oainfo.o b/build/src/H5Oainfo.o deleted file mode 100644 index 91d3b70..0000000 Binary files a/build/src/H5Oainfo.o and /dev/null differ diff --git a/build/src/H5Oalloc.lo b/build/src/H5Oalloc.lo deleted file mode 100644 index 96911c3..0000000 --- a/build/src/H5Oalloc.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oalloc.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oalloc.o' - -# Name of the non-PIC object -non_pic_object='H5Oalloc.o' - diff --git a/build/src/H5Oalloc.o b/build/src/H5Oalloc.o deleted file mode 100644 index 37ad7dd..0000000 Binary files a/build/src/H5Oalloc.o and /dev/null differ diff --git a/build/src/H5Oattr.lo b/build/src/H5Oattr.lo deleted file mode 100644 index f08d6cc..0000000 --- a/build/src/H5Oattr.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oattr.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oattr.o' - -# Name of the non-PIC object -non_pic_object='H5Oattr.o' - diff --git a/build/src/H5Oattr.o b/build/src/H5Oattr.o deleted file mode 100644 index b7e7e3b..0000000 Binary files a/build/src/H5Oattr.o and /dev/null differ diff --git a/build/src/H5Oattribute.lo b/build/src/H5Oattribute.lo deleted file mode 100644 index 5f4f58e..0000000 --- a/build/src/H5Oattribute.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oattribute.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oattribute.o' - -# Name of the non-PIC object -non_pic_object='H5Oattribute.o' - diff --git a/build/src/H5Oattribute.o b/build/src/H5Oattribute.o deleted file mode 100644 index a687093..0000000 Binary files a/build/src/H5Oattribute.o and /dev/null differ diff --git a/build/src/H5Obogus.lo b/build/src/H5Obogus.lo deleted file mode 100644 index 3288ba9..0000000 --- a/build/src/H5Obogus.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Obogus.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Obogus.o' - -# Name of the non-PIC object -non_pic_object='H5Obogus.o' - diff --git a/build/src/H5Obogus.o b/build/src/H5Obogus.o deleted file mode 100644 index 08175f2..0000000 Binary files a/build/src/H5Obogus.o and /dev/null differ diff --git a/build/src/H5Obtreek.lo b/build/src/H5Obtreek.lo deleted file mode 100644 index 4fb1a87..0000000 --- a/build/src/H5Obtreek.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Obtreek.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Obtreek.o' - -# Name of the non-PIC object -non_pic_object='H5Obtreek.o' - diff --git a/build/src/H5Obtreek.o b/build/src/H5Obtreek.o deleted file mode 100644 index 6756c7e..0000000 Binary files a/build/src/H5Obtreek.o and /dev/null differ diff --git a/build/src/H5Ocache.lo b/build/src/H5Ocache.lo deleted file mode 100644 index bf72555..0000000 --- a/build/src/H5Ocache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ocache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ocache.o' - -# Name of the non-PIC object -non_pic_object='H5Ocache.o' - diff --git a/build/src/H5Ocache.o b/build/src/H5Ocache.o deleted file mode 100644 index 00bcb0d..0000000 Binary files a/build/src/H5Ocache.o and /dev/null differ diff --git a/build/src/H5Ochunk.lo b/build/src/H5Ochunk.lo deleted file mode 100644 index 86ecbea..0000000 --- a/build/src/H5Ochunk.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ochunk.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ochunk.o' - -# Name of the non-PIC object -non_pic_object='H5Ochunk.o' - diff --git a/build/src/H5Ochunk.o b/build/src/H5Ochunk.o deleted file mode 100644 index 2ee4a15..0000000 Binary files a/build/src/H5Ochunk.o and /dev/null differ diff --git a/build/src/H5Ocont.lo b/build/src/H5Ocont.lo deleted file mode 100644 index db667b5..0000000 --- a/build/src/H5Ocont.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ocont.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ocont.o' - -# Name of the non-PIC object -non_pic_object='H5Ocont.o' - diff --git a/build/src/H5Ocont.o b/build/src/H5Ocont.o deleted file mode 100644 index 7b8eedb..0000000 Binary files a/build/src/H5Ocont.o and /dev/null differ diff --git a/build/src/H5Ocopy.lo b/build/src/H5Ocopy.lo deleted file mode 100644 index fc6ba87..0000000 --- a/build/src/H5Ocopy.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ocopy.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ocopy.o' - -# Name of the non-PIC object -non_pic_object='H5Ocopy.o' - diff --git a/build/src/H5Ocopy.o b/build/src/H5Ocopy.o deleted file mode 100644 index 16ef5a0..0000000 Binary files a/build/src/H5Ocopy.o and /dev/null differ diff --git a/build/src/H5Odbg.lo b/build/src/H5Odbg.lo deleted file mode 100644 index a2cf036..0000000 --- a/build/src/H5Odbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Odbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Odbg.o' - -# Name of the non-PIC object -non_pic_object='H5Odbg.o' - diff --git a/build/src/H5Odbg.o b/build/src/H5Odbg.o deleted file mode 100644 index 5401cd3..0000000 Binary files a/build/src/H5Odbg.o and /dev/null differ diff --git a/build/src/H5Odrvinfo.lo b/build/src/H5Odrvinfo.lo deleted file mode 100644 index 3627e3a..0000000 --- a/build/src/H5Odrvinfo.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Odrvinfo.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Odrvinfo.o' - -# Name of the non-PIC object -non_pic_object='H5Odrvinfo.o' - diff --git a/build/src/H5Odrvinfo.o b/build/src/H5Odrvinfo.o deleted file mode 100644 index 9e3759b..0000000 Binary files a/build/src/H5Odrvinfo.o and /dev/null differ diff --git a/build/src/H5Odtype.lo b/build/src/H5Odtype.lo deleted file mode 100644 index e342b3c..0000000 --- a/build/src/H5Odtype.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Odtype.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Odtype.o' - -# Name of the non-PIC object -non_pic_object='H5Odtype.o' - diff --git a/build/src/H5Odtype.o b/build/src/H5Odtype.o deleted file mode 100644 index e643d3a..0000000 Binary files a/build/src/H5Odtype.o and /dev/null differ diff --git a/build/src/H5Oefl.lo b/build/src/H5Oefl.lo deleted file mode 100644 index d4710ab..0000000 --- a/build/src/H5Oefl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oefl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oefl.o' - -# Name of the non-PIC object -non_pic_object='H5Oefl.o' - diff --git a/build/src/H5Oefl.o b/build/src/H5Oefl.o deleted file mode 100644 index 67d78f8..0000000 Binary files a/build/src/H5Oefl.o and /dev/null differ diff --git a/build/src/H5Ofill.lo b/build/src/H5Ofill.lo deleted file mode 100644 index c83bf39..0000000 --- a/build/src/H5Ofill.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ofill.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ofill.o' - -# Name of the non-PIC object -non_pic_object='H5Ofill.o' - diff --git a/build/src/H5Ofill.o b/build/src/H5Ofill.o deleted file mode 100644 index d6a6766..0000000 Binary files a/build/src/H5Ofill.o and /dev/null differ diff --git a/build/src/H5Oginfo.lo b/build/src/H5Oginfo.lo deleted file mode 100644 index f5021d7..0000000 --- a/build/src/H5Oginfo.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oginfo.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oginfo.o' - -# Name of the non-PIC object -non_pic_object='H5Oginfo.o' - diff --git a/build/src/H5Oginfo.o b/build/src/H5Oginfo.o deleted file mode 100644 index fbe380d..0000000 Binary files a/build/src/H5Oginfo.o and /dev/null differ diff --git a/build/src/H5Olayout.lo b/build/src/H5Olayout.lo deleted file mode 100644 index 6056f6b..0000000 --- a/build/src/H5Olayout.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Olayout.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Olayout.o' - -# Name of the non-PIC object -non_pic_object='H5Olayout.o' - diff --git a/build/src/H5Olayout.o b/build/src/H5Olayout.o deleted file mode 100644 index 2ba7a5c..0000000 Binary files a/build/src/H5Olayout.o and /dev/null differ diff --git a/build/src/H5Olinfo.lo b/build/src/H5Olinfo.lo deleted file mode 100644 index 50a5138..0000000 --- a/build/src/H5Olinfo.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Olinfo.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Olinfo.o' - -# Name of the non-PIC object -non_pic_object='H5Olinfo.o' - diff --git a/build/src/H5Olinfo.o b/build/src/H5Olinfo.o deleted file mode 100644 index d2b8a88..0000000 Binary files a/build/src/H5Olinfo.o and /dev/null differ diff --git a/build/src/H5Olink.lo b/build/src/H5Olink.lo deleted file mode 100644 index 2b1c70d..0000000 --- a/build/src/H5Olink.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Olink.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Olink.o' - -# Name of the non-PIC object -non_pic_object='H5Olink.o' - diff --git a/build/src/H5Olink.o b/build/src/H5Olink.o deleted file mode 100644 index 62f8959..0000000 Binary files a/build/src/H5Olink.o and /dev/null differ diff --git a/build/src/H5Omessage.lo b/build/src/H5Omessage.lo deleted file mode 100644 index 8047b3c..0000000 --- a/build/src/H5Omessage.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Omessage.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Omessage.o' - -# Name of the non-PIC object -non_pic_object='H5Omessage.o' - diff --git a/build/src/H5Omessage.o b/build/src/H5Omessage.o deleted file mode 100644 index 6ca9137..0000000 Binary files a/build/src/H5Omessage.o and /dev/null differ diff --git a/build/src/H5Omtime.lo b/build/src/H5Omtime.lo deleted file mode 100644 index b9f3b90..0000000 --- a/build/src/H5Omtime.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Omtime.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Omtime.o' - -# Name of the non-PIC object -non_pic_object='H5Omtime.o' - diff --git a/build/src/H5Omtime.o b/build/src/H5Omtime.o deleted file mode 100644 index b2a941c..0000000 Binary files a/build/src/H5Omtime.o and /dev/null differ diff --git a/build/src/H5Oname.lo b/build/src/H5Oname.lo deleted file mode 100644 index 3fcbdf2..0000000 --- a/build/src/H5Oname.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oname.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oname.o' - -# Name of the non-PIC object -non_pic_object='H5Oname.o' - diff --git a/build/src/H5Oname.o b/build/src/H5Oname.o deleted file mode 100644 index 88ac17f..0000000 Binary files a/build/src/H5Oname.o and /dev/null differ diff --git a/build/src/H5Onull.lo b/build/src/H5Onull.lo deleted file mode 100644 index 8bb363f..0000000 --- a/build/src/H5Onull.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Onull.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Onull.o' - -# Name of the non-PIC object -non_pic_object='H5Onull.o' - diff --git a/build/src/H5Onull.o b/build/src/H5Onull.o deleted file mode 100644 index 52148f5..0000000 Binary files a/build/src/H5Onull.o and /dev/null differ diff --git a/build/src/H5Opline.lo b/build/src/H5Opline.lo deleted file mode 100644 index cccc593..0000000 --- a/build/src/H5Opline.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Opline.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Opline.o' - -# Name of the non-PIC object -non_pic_object='H5Opline.o' - diff --git a/build/src/H5Opline.o b/build/src/H5Opline.o deleted file mode 100644 index b9f8d4a..0000000 Binary files a/build/src/H5Opline.o and /dev/null differ diff --git a/build/src/H5Orefcount.lo b/build/src/H5Orefcount.lo deleted file mode 100644 index a26986e..0000000 --- a/build/src/H5Orefcount.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Orefcount.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Orefcount.o' - -# Name of the non-PIC object -non_pic_object='H5Orefcount.o' - diff --git a/build/src/H5Orefcount.o b/build/src/H5Orefcount.o deleted file mode 100644 index aa512cf..0000000 Binary files a/build/src/H5Orefcount.o and /dev/null differ diff --git a/build/src/H5Osdspace.lo b/build/src/H5Osdspace.lo deleted file mode 100644 index 8585a4f..0000000 --- a/build/src/H5Osdspace.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Osdspace.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Osdspace.o' - -# Name of the non-PIC object -non_pic_object='H5Osdspace.o' - diff --git a/build/src/H5Osdspace.o b/build/src/H5Osdspace.o deleted file mode 100644 index 74bf6a9..0000000 Binary files a/build/src/H5Osdspace.o and /dev/null differ diff --git a/build/src/H5Oshared.lo b/build/src/H5Oshared.lo deleted file mode 100644 index 12243be..0000000 --- a/build/src/H5Oshared.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oshared.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oshared.o' - -# Name of the non-PIC object -non_pic_object='H5Oshared.o' - diff --git a/build/src/H5Oshared.o b/build/src/H5Oshared.o deleted file mode 100644 index cc32830..0000000 Binary files a/build/src/H5Oshared.o and /dev/null differ diff --git a/build/src/H5Oshmesg.lo b/build/src/H5Oshmesg.lo deleted file mode 100644 index 4e5e143..0000000 --- a/build/src/H5Oshmesg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Oshmesg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Oshmesg.o' - -# Name of the non-PIC object -non_pic_object='H5Oshmesg.o' - diff --git a/build/src/H5Oshmesg.o b/build/src/H5Oshmesg.o deleted file mode 100644 index 6683c8c..0000000 Binary files a/build/src/H5Oshmesg.o and /dev/null differ diff --git a/build/src/H5Ostab.lo b/build/src/H5Ostab.lo deleted file mode 100644 index 11777d1..0000000 --- a/build/src/H5Ostab.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ostab.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ostab.o' - -# Name of the non-PIC object -non_pic_object='H5Ostab.o' - diff --git a/build/src/H5Ostab.o b/build/src/H5Ostab.o deleted file mode 100644 index cf08062..0000000 Binary files a/build/src/H5Ostab.o and /dev/null differ diff --git a/build/src/H5Otest.lo b/build/src/H5Otest.lo deleted file mode 100644 index 5fa75eb..0000000 --- a/build/src/H5Otest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Otest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Otest.o' - -# Name of the non-PIC object -non_pic_object='H5Otest.o' - diff --git a/build/src/H5Otest.o b/build/src/H5Otest.o deleted file mode 100644 index 241170a..0000000 Binary files a/build/src/H5Otest.o and /dev/null differ diff --git a/build/src/H5Ounknown.lo b/build/src/H5Ounknown.lo deleted file mode 100644 index 193bdad..0000000 --- a/build/src/H5Ounknown.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ounknown.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ounknown.o' - -# Name of the non-PIC object -non_pic_object='H5Ounknown.o' - diff --git a/build/src/H5Ounknown.o b/build/src/H5Ounknown.o deleted file mode 100644 index d9126bf..0000000 Binary files a/build/src/H5Ounknown.o and /dev/null differ diff --git a/build/src/H5P.lo b/build/src/H5P.lo deleted file mode 100644 index 3ecedd5..0000000 --- a/build/src/H5P.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5P.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5P.o' - -# Name of the non-PIC object -non_pic_object='H5P.o' - diff --git a/build/src/H5P.o b/build/src/H5P.o deleted file mode 100644 index 6a6911a..0000000 Binary files a/build/src/H5P.o and /dev/null differ diff --git a/build/src/H5PL.lo b/build/src/H5PL.lo deleted file mode 100644 index c3b6521..0000000 --- a/build/src/H5PL.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5PL.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5PL.o' - -# Name of the non-PIC object -non_pic_object='H5PL.o' - diff --git a/build/src/H5PL.o b/build/src/H5PL.o deleted file mode 100644 index 37eb1f5..0000000 Binary files a/build/src/H5PL.o and /dev/null differ diff --git a/build/src/H5Pacpl.lo b/build/src/H5Pacpl.lo deleted file mode 100644 index e1f1471..0000000 --- a/build/src/H5Pacpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pacpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pacpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pacpl.o' - diff --git a/build/src/H5Pacpl.o b/build/src/H5Pacpl.o deleted file mode 100644 index f0b6912..0000000 Binary files a/build/src/H5Pacpl.o and /dev/null differ diff --git a/build/src/H5Pdapl.lo b/build/src/H5Pdapl.lo deleted file mode 100644 index ae53e1e..0000000 --- a/build/src/H5Pdapl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pdapl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pdapl.o' - -# Name of the non-PIC object -non_pic_object='H5Pdapl.o' - diff --git a/build/src/H5Pdapl.o b/build/src/H5Pdapl.o deleted file mode 100644 index a4ccd66..0000000 Binary files a/build/src/H5Pdapl.o and /dev/null differ diff --git a/build/src/H5Pdcpl.lo b/build/src/H5Pdcpl.lo deleted file mode 100644 index 10f5b9b..0000000 --- a/build/src/H5Pdcpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pdcpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pdcpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pdcpl.o' - diff --git a/build/src/H5Pdcpl.o b/build/src/H5Pdcpl.o deleted file mode 100644 index 5cd2b13..0000000 Binary files a/build/src/H5Pdcpl.o and /dev/null differ diff --git a/build/src/H5Pdeprec.lo b/build/src/H5Pdeprec.lo deleted file mode 100644 index 0f16d3a..0000000 --- a/build/src/H5Pdeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pdeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pdeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Pdeprec.o' - diff --git a/build/src/H5Pdeprec.o b/build/src/H5Pdeprec.o deleted file mode 100644 index bd09784..0000000 Binary files a/build/src/H5Pdeprec.o and /dev/null differ diff --git a/build/src/H5Pdxpl.lo b/build/src/H5Pdxpl.lo deleted file mode 100644 index ff955b8..0000000 --- a/build/src/H5Pdxpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pdxpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pdxpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pdxpl.o' - diff --git a/build/src/H5Pdxpl.o b/build/src/H5Pdxpl.o deleted file mode 100644 index f38d072..0000000 Binary files a/build/src/H5Pdxpl.o and /dev/null differ diff --git a/build/src/H5Pfapl.lo b/build/src/H5Pfapl.lo deleted file mode 100644 index ff3ec3c..0000000 --- a/build/src/H5Pfapl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pfapl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pfapl.o' - -# Name of the non-PIC object -non_pic_object='H5Pfapl.o' - diff --git a/build/src/H5Pfapl.o b/build/src/H5Pfapl.o deleted file mode 100644 index f973eb8..0000000 Binary files a/build/src/H5Pfapl.o and /dev/null differ diff --git a/build/src/H5Pfcpl.lo b/build/src/H5Pfcpl.lo deleted file mode 100644 index 5e3358f..0000000 --- a/build/src/H5Pfcpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pfcpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pfcpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pfcpl.o' - diff --git a/build/src/H5Pfcpl.o b/build/src/H5Pfcpl.o deleted file mode 100644 index 8ea4428..0000000 Binary files a/build/src/H5Pfcpl.o and /dev/null differ diff --git a/build/src/H5Pfmpl.lo b/build/src/H5Pfmpl.lo deleted file mode 100644 index 570d85b..0000000 --- a/build/src/H5Pfmpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pfmpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pfmpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pfmpl.o' - diff --git a/build/src/H5Pfmpl.o b/build/src/H5Pfmpl.o deleted file mode 100644 index b194f50..0000000 Binary files a/build/src/H5Pfmpl.o and /dev/null differ diff --git a/build/src/H5Pgcpl.lo b/build/src/H5Pgcpl.lo deleted file mode 100644 index 39c8965..0000000 --- a/build/src/H5Pgcpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pgcpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pgcpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pgcpl.o' - diff --git a/build/src/H5Pgcpl.o b/build/src/H5Pgcpl.o deleted file mode 100644 index 7dc3963..0000000 Binary files a/build/src/H5Pgcpl.o and /dev/null differ diff --git a/build/src/H5Pint.lo b/build/src/H5Pint.lo deleted file mode 100644 index 6453c47..0000000 --- a/build/src/H5Pint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pint.o' - -# Name of the non-PIC object -non_pic_object='H5Pint.o' - diff --git a/build/src/H5Pint.o b/build/src/H5Pint.o deleted file mode 100644 index ea7ec41..0000000 Binary files a/build/src/H5Pint.o and /dev/null differ diff --git a/build/src/H5Plapl.lo b/build/src/H5Plapl.lo deleted file mode 100644 index 396f7e9..0000000 --- a/build/src/H5Plapl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Plapl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Plapl.o' - -# Name of the non-PIC object -non_pic_object='H5Plapl.o' - diff --git a/build/src/H5Plapl.o b/build/src/H5Plapl.o deleted file mode 100644 index f52d7ea..0000000 Binary files a/build/src/H5Plapl.o and /dev/null differ diff --git a/build/src/H5Plcpl.lo b/build/src/H5Plcpl.lo deleted file mode 100644 index 219b833..0000000 --- a/build/src/H5Plcpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Plcpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Plcpl.o' - -# Name of the non-PIC object -non_pic_object='H5Plcpl.o' - diff --git a/build/src/H5Plcpl.o b/build/src/H5Plcpl.o deleted file mode 100644 index c017c6b..0000000 Binary files a/build/src/H5Plcpl.o and /dev/null differ diff --git a/build/src/H5Pocpl.lo b/build/src/H5Pocpl.lo deleted file mode 100644 index 15ef7e5..0000000 --- a/build/src/H5Pocpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pocpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pocpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pocpl.o' - diff --git a/build/src/H5Pocpl.o b/build/src/H5Pocpl.o deleted file mode 100644 index cfa0eb2..0000000 Binary files a/build/src/H5Pocpl.o and /dev/null differ diff --git a/build/src/H5Pocpypl.lo b/build/src/H5Pocpypl.lo deleted file mode 100644 index af5382b..0000000 --- a/build/src/H5Pocpypl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pocpypl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pocpypl.o' - -# Name of the non-PIC object -non_pic_object='H5Pocpypl.o' - diff --git a/build/src/H5Pocpypl.o b/build/src/H5Pocpypl.o deleted file mode 100644 index 4d7e640..0000000 Binary files a/build/src/H5Pocpypl.o and /dev/null differ diff --git a/build/src/H5Pstrcpl.lo b/build/src/H5Pstrcpl.lo deleted file mode 100644 index 7521585..0000000 --- a/build/src/H5Pstrcpl.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Pstrcpl.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Pstrcpl.o' - -# Name of the non-PIC object -non_pic_object='H5Pstrcpl.o' - diff --git a/build/src/H5Pstrcpl.o b/build/src/H5Pstrcpl.o deleted file mode 100644 index b643666..0000000 Binary files a/build/src/H5Pstrcpl.o and /dev/null differ diff --git a/build/src/H5Ptest.lo b/build/src/H5Ptest.lo deleted file mode 100644 index 4ec2e37..0000000 --- a/build/src/H5Ptest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Ptest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Ptest.o' - -# Name of the non-PIC object -non_pic_object='H5Ptest.o' - diff --git a/build/src/H5Ptest.o b/build/src/H5Ptest.o deleted file mode 100644 index e0521fb..0000000 Binary files a/build/src/H5Ptest.o and /dev/null differ diff --git a/build/src/H5R.lo b/build/src/H5R.lo deleted file mode 100644 index 09cced1..0000000 --- a/build/src/H5R.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5R.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5R.o' - -# Name of the non-PIC object -non_pic_object='H5R.o' - diff --git a/build/src/H5R.o b/build/src/H5R.o deleted file mode 100644 index 8272296..0000000 Binary files a/build/src/H5R.o and /dev/null differ diff --git a/build/src/H5RC.lo b/build/src/H5RC.lo deleted file mode 100644 index baa1059..0000000 --- a/build/src/H5RC.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5RC.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5RC.o' - -# Name of the non-PIC object -non_pic_object='H5RC.o' - diff --git a/build/src/H5RC.o b/build/src/H5RC.o deleted file mode 100644 index 7897cfc..0000000 Binary files a/build/src/H5RC.o and /dev/null differ diff --git a/build/src/H5RS.lo b/build/src/H5RS.lo deleted file mode 100644 index 3f82ed6..0000000 --- a/build/src/H5RS.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5RS.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5RS.o' - -# Name of the non-PIC object -non_pic_object='H5RS.o' - diff --git a/build/src/H5RS.o b/build/src/H5RS.o deleted file mode 100644 index 7cb2c1d..0000000 Binary files a/build/src/H5RS.o and /dev/null differ diff --git a/build/src/H5Rdeprec.lo b/build/src/H5Rdeprec.lo deleted file mode 100644 index a2d17bf..0000000 --- a/build/src/H5Rdeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Rdeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Rdeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Rdeprec.o' - diff --git a/build/src/H5Rdeprec.o b/build/src/H5Rdeprec.o deleted file mode 100644 index 4325266..0000000 Binary files a/build/src/H5Rdeprec.o and /dev/null differ diff --git a/build/src/H5S.lo b/build/src/H5S.lo deleted file mode 100644 index e64e608..0000000 --- a/build/src/H5S.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5S.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5S.o' - -# Name of the non-PIC object -non_pic_object='H5S.o' - diff --git a/build/src/H5S.o b/build/src/H5S.o deleted file mode 100644 index 7a441ef..0000000 Binary files a/build/src/H5S.o and /dev/null differ diff --git a/build/src/H5SL.lo b/build/src/H5SL.lo deleted file mode 100644 index 78b0e67..0000000 --- a/build/src/H5SL.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SL.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SL.o' - -# Name of the non-PIC object -non_pic_object='H5SL.o' - diff --git a/build/src/H5SL.o b/build/src/H5SL.o deleted file mode 100644 index d05857c..0000000 Binary files a/build/src/H5SL.o and /dev/null differ diff --git a/build/src/H5SM.lo b/build/src/H5SM.lo deleted file mode 100644 index fa9fac7..0000000 --- a/build/src/H5SM.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SM.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SM.o' - -# Name of the non-PIC object -non_pic_object='H5SM.o' - diff --git a/build/src/H5SM.o b/build/src/H5SM.o deleted file mode 100644 index 7b67e45..0000000 Binary files a/build/src/H5SM.o and /dev/null differ diff --git a/build/src/H5SMbtree2.lo b/build/src/H5SMbtree2.lo deleted file mode 100644 index 5cc9e8b..0000000 --- a/build/src/H5SMbtree2.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SMbtree2.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SMbtree2.o' - -# Name of the non-PIC object -non_pic_object='H5SMbtree2.o' - diff --git a/build/src/H5SMbtree2.o b/build/src/H5SMbtree2.o deleted file mode 100644 index 71851fe..0000000 Binary files a/build/src/H5SMbtree2.o and /dev/null differ diff --git a/build/src/H5SMcache.lo b/build/src/H5SMcache.lo deleted file mode 100644 index 2f47471..0000000 --- a/build/src/H5SMcache.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SMcache.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SMcache.o' - -# Name of the non-PIC object -non_pic_object='H5SMcache.o' - diff --git a/build/src/H5SMcache.o b/build/src/H5SMcache.o deleted file mode 100644 index 3b57773..0000000 Binary files a/build/src/H5SMcache.o and /dev/null differ diff --git a/build/src/H5SMmessage.lo b/build/src/H5SMmessage.lo deleted file mode 100644 index 17a323e..0000000 --- a/build/src/H5SMmessage.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SMmessage.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SMmessage.o' - -# Name of the non-PIC object -non_pic_object='H5SMmessage.o' - diff --git a/build/src/H5SMmessage.o b/build/src/H5SMmessage.o deleted file mode 100644 index 26ba89b..0000000 Binary files a/build/src/H5SMmessage.o and /dev/null differ diff --git a/build/src/H5SMtest.lo b/build/src/H5SMtest.lo deleted file mode 100644 index abf1502..0000000 --- a/build/src/H5SMtest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5SMtest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5SMtest.o' - -# Name of the non-PIC object -non_pic_object='H5SMtest.o' - diff --git a/build/src/H5SMtest.o b/build/src/H5SMtest.o deleted file mode 100644 index 96fde36..0000000 Binary files a/build/src/H5SMtest.o and /dev/null differ diff --git a/build/src/H5ST.lo b/build/src/H5ST.lo deleted file mode 100644 index c410501..0000000 --- a/build/src/H5ST.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5ST.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5ST.o' - -# Name of the non-PIC object -non_pic_object='H5ST.o' - diff --git a/build/src/H5ST.o b/build/src/H5ST.o deleted file mode 100644 index 6779aed..0000000 Binary files a/build/src/H5ST.o and /dev/null differ diff --git a/build/src/H5Sall.lo b/build/src/H5Sall.lo deleted file mode 100644 index c468eae..0000000 --- a/build/src/H5Sall.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Sall.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Sall.o' - -# Name of the non-PIC object -non_pic_object='H5Sall.o' - diff --git a/build/src/H5Sall.o b/build/src/H5Sall.o deleted file mode 100644 index 20cd73e..0000000 Binary files a/build/src/H5Sall.o and /dev/null differ diff --git a/build/src/H5Sdbg.lo b/build/src/H5Sdbg.lo deleted file mode 100644 index 0311925..0000000 --- a/build/src/H5Sdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Sdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Sdbg.o' - -# Name of the non-PIC object -non_pic_object='H5Sdbg.o' - diff --git a/build/src/H5Sdbg.o b/build/src/H5Sdbg.o deleted file mode 100644 index 33baf31..0000000 Binary files a/build/src/H5Sdbg.o and /dev/null differ diff --git a/build/src/H5Shyper.lo b/build/src/H5Shyper.lo deleted file mode 100644 index 4bce25d..0000000 --- a/build/src/H5Shyper.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Shyper.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Shyper.o' - -# Name of the non-PIC object -non_pic_object='H5Shyper.o' - diff --git a/build/src/H5Shyper.o b/build/src/H5Shyper.o deleted file mode 100644 index 5161f4e..0000000 Binary files a/build/src/H5Shyper.o and /dev/null differ diff --git a/build/src/H5Smpio.lo b/build/src/H5Smpio.lo deleted file mode 100644 index d6a10a9..0000000 --- a/build/src/H5Smpio.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Smpio.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Smpio.o' - -# Name of the non-PIC object -non_pic_object='H5Smpio.o' - diff --git a/build/src/H5Smpio.o b/build/src/H5Smpio.o deleted file mode 100644 index ccc8ccc..0000000 Binary files a/build/src/H5Smpio.o and /dev/null differ diff --git a/build/src/H5Snone.lo b/build/src/H5Snone.lo deleted file mode 100644 index 54e5aba..0000000 --- a/build/src/H5Snone.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Snone.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Snone.o' - -# Name of the non-PIC object -non_pic_object='H5Snone.o' - diff --git a/build/src/H5Snone.o b/build/src/H5Snone.o deleted file mode 100644 index 240c3ff..0000000 Binary files a/build/src/H5Snone.o and /dev/null differ diff --git a/build/src/H5Spoint.lo b/build/src/H5Spoint.lo deleted file mode 100644 index 7c105d8..0000000 --- a/build/src/H5Spoint.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Spoint.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Spoint.o' - -# Name of the non-PIC object -non_pic_object='H5Spoint.o' - diff --git a/build/src/H5Spoint.o b/build/src/H5Spoint.o deleted file mode 100644 index b363e91..0000000 Binary files a/build/src/H5Spoint.o and /dev/null differ diff --git a/build/src/H5Sselect.lo b/build/src/H5Sselect.lo deleted file mode 100644 index d6dc77d..0000000 --- a/build/src/H5Sselect.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Sselect.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Sselect.o' - -# Name of the non-PIC object -non_pic_object='H5Sselect.o' - diff --git a/build/src/H5Sselect.o b/build/src/H5Sselect.o deleted file mode 100644 index 07923d5..0000000 Binary files a/build/src/H5Sselect.o and /dev/null differ diff --git a/build/src/H5Stest.lo b/build/src/H5Stest.lo deleted file mode 100644 index 7ae6e84..0000000 --- a/build/src/H5Stest.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Stest.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Stest.o' - -# Name of the non-PIC object -non_pic_object='H5Stest.o' - diff --git a/build/src/H5Stest.o b/build/src/H5Stest.o deleted file mode 100644 index 59a1232..0000000 Binary files a/build/src/H5Stest.o and /dev/null differ diff --git a/build/src/H5T.lo b/build/src/H5T.lo deleted file mode 100644 index c90ab55..0000000 --- a/build/src/H5T.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5T.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5T.o' - -# Name of the non-PIC object -non_pic_object='H5T.o' - diff --git a/build/src/H5T.o b/build/src/H5T.o deleted file mode 100644 index bcaa79d..0000000 Binary files a/build/src/H5T.o and /dev/null differ diff --git a/build/src/H5TS.lo b/build/src/H5TS.lo deleted file mode 100644 index b59c32e..0000000 --- a/build/src/H5TS.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5TS.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5TS.o' - -# Name of the non-PIC object -non_pic_object='H5TS.o' - diff --git a/build/src/H5TS.o b/build/src/H5TS.o deleted file mode 100644 index 7f66eef..0000000 Binary files a/build/src/H5TS.o and /dev/null differ diff --git a/build/src/H5Tarray.lo b/build/src/H5Tarray.lo deleted file mode 100644 index 19f80bd..0000000 --- a/build/src/H5Tarray.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tarray.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tarray.o' - -# Name of the non-PIC object -non_pic_object='H5Tarray.o' - diff --git a/build/src/H5Tarray.o b/build/src/H5Tarray.o deleted file mode 100644 index 9c5db5b..0000000 Binary files a/build/src/H5Tarray.o and /dev/null differ diff --git a/build/src/H5Tbit.lo b/build/src/H5Tbit.lo deleted file mode 100644 index c69eff2..0000000 --- a/build/src/H5Tbit.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tbit.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tbit.o' - -# Name of the non-PIC object -non_pic_object='H5Tbit.o' - diff --git a/build/src/H5Tbit.o b/build/src/H5Tbit.o deleted file mode 100644 index d88f2db..0000000 Binary files a/build/src/H5Tbit.o and /dev/null differ diff --git a/build/src/H5Tcommit.lo b/build/src/H5Tcommit.lo deleted file mode 100644 index df41ccd..0000000 --- a/build/src/H5Tcommit.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tcommit.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tcommit.o' - -# Name of the non-PIC object -non_pic_object='H5Tcommit.o' - diff --git a/build/src/H5Tcommit.o b/build/src/H5Tcommit.o deleted file mode 100644 index cc9dc1f..0000000 Binary files a/build/src/H5Tcommit.o and /dev/null differ diff --git a/build/src/H5Tcompound.lo b/build/src/H5Tcompound.lo deleted file mode 100644 index 2d524ac..0000000 --- a/build/src/H5Tcompound.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tcompound.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tcompound.o' - -# Name of the non-PIC object -non_pic_object='H5Tcompound.o' - diff --git a/build/src/H5Tcompound.o b/build/src/H5Tcompound.o deleted file mode 100644 index 093201a..0000000 Binary files a/build/src/H5Tcompound.o and /dev/null differ diff --git a/build/src/H5Tconv.lo b/build/src/H5Tconv.lo deleted file mode 100644 index d535da7..0000000 --- a/build/src/H5Tconv.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tconv.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tconv.o' - -# Name of the non-PIC object -non_pic_object='H5Tconv.o' - diff --git a/build/src/H5Tconv.o b/build/src/H5Tconv.o deleted file mode 100644 index 176c51c..0000000 Binary files a/build/src/H5Tconv.o and /dev/null differ diff --git a/build/src/H5Tcset.lo b/build/src/H5Tcset.lo deleted file mode 100644 index 38ae816..0000000 --- a/build/src/H5Tcset.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tcset.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tcset.o' - -# Name of the non-PIC object -non_pic_object='H5Tcset.o' - diff --git a/build/src/H5Tcset.o b/build/src/H5Tcset.o deleted file mode 100644 index d6a4469..0000000 Binary files a/build/src/H5Tcset.o and /dev/null differ diff --git a/build/src/H5Tdbg.lo b/build/src/H5Tdbg.lo deleted file mode 100644 index 1916958..0000000 --- a/build/src/H5Tdbg.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tdbg.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tdbg.o' - -# Name of the non-PIC object -non_pic_object='H5Tdbg.o' - diff --git a/build/src/H5Tdbg.o b/build/src/H5Tdbg.o deleted file mode 100644 index 36cf817..0000000 Binary files a/build/src/H5Tdbg.o and /dev/null differ diff --git a/build/src/H5Tdeprec.lo b/build/src/H5Tdeprec.lo deleted file mode 100644 index 52ccbd4..0000000 --- a/build/src/H5Tdeprec.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tdeprec.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tdeprec.o' - -# Name of the non-PIC object -non_pic_object='H5Tdeprec.o' - diff --git a/build/src/H5Tdeprec.o b/build/src/H5Tdeprec.o deleted file mode 100644 index 0b83938..0000000 Binary files a/build/src/H5Tdeprec.o and /dev/null differ diff --git a/build/src/H5Tenum.lo b/build/src/H5Tenum.lo deleted file mode 100644 index efd0911..0000000 --- a/build/src/H5Tenum.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tenum.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tenum.o' - -# Name of the non-PIC object -non_pic_object='H5Tenum.o' - diff --git a/build/src/H5Tenum.o b/build/src/H5Tenum.o deleted file mode 100644 index 3273655..0000000 Binary files a/build/src/H5Tenum.o and /dev/null differ diff --git a/build/src/H5Tfields.lo b/build/src/H5Tfields.lo deleted file mode 100644 index 39afc96..0000000 --- a/build/src/H5Tfields.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tfields.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tfields.o' - -# Name of the non-PIC object -non_pic_object='H5Tfields.o' - diff --git a/build/src/H5Tfields.o b/build/src/H5Tfields.o deleted file mode 100644 index 3b105c0..0000000 Binary files a/build/src/H5Tfields.o and /dev/null differ diff --git a/build/src/H5Tfixed.lo b/build/src/H5Tfixed.lo deleted file mode 100644 index 0c59eb9..0000000 --- a/build/src/H5Tfixed.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tfixed.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tfixed.o' - -# Name of the non-PIC object -non_pic_object='H5Tfixed.o' - diff --git a/build/src/H5Tfixed.o b/build/src/H5Tfixed.o deleted file mode 100644 index 73336c2..0000000 Binary files a/build/src/H5Tfixed.o and /dev/null differ diff --git a/build/src/H5Tfloat.lo b/build/src/H5Tfloat.lo deleted file mode 100644 index 295a4cc..0000000 --- a/build/src/H5Tfloat.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tfloat.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tfloat.o' - -# Name of the non-PIC object -non_pic_object='H5Tfloat.o' - diff --git a/build/src/H5Tfloat.o b/build/src/H5Tfloat.o deleted file mode 100644 index c817f91..0000000 Binary files a/build/src/H5Tfloat.o and /dev/null differ diff --git a/build/src/H5Tinit.c b/build/src/H5Tinit.c deleted file mode 100644 index 3adeb76..0000000 --- a/build/src/H5Tinit.c +++ /dev/null @@ -1,991 +0,0 @@ -/* Generated automatically by H5detect -- do not edit */ - - - -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by The HDF Group. * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the COPYING file, which can be found at the root of the source code * - * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * - * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * - * Created: May 14, 2018 - * lrknox - * - * Purpose: This machine-generated source code contains - * information about the various integer and - * floating point numeric formats found on this - * architecture. The parameters below should be - * checked carefully and errors reported to the - * HDF5 maintainer. - * - * Each of the numeric formats listed below are - * printed from most significant bit to least - * significant bit even though the actual bytes - * might be stored in a different order in - * memory. The integers above each binary byte - * indicate the relative order of the bytes in - * memory; little-endian machines have - * decreasing numbers while big-endian machines - * have increasing numbers. - * - * The fields of the numbers are printed as - * letters with `S' for the mantissa sign bit, - * `M' for the mantissa magnitude, and `E' for - * the exponent. The exponent has an associated - * bias which can be subtracted to find the - * true exponent. The radix point is assumed - * to be before the first `M' bit. Any bit - * of a floating-point value not falling into one - * of these categories is printed as a question - * mark. Bits of integer types are printed as - * `I' for 2's complement and `U' for magnitude. - * - * If the most significant bit of the normalized - * mantissa (always a `1' except for `0.0') is - * not stored then an `implicit=yes' appears - * under the field description. In thie case, - * the radix point is still assumed to be - * before the first `M' but after the implicit - * bit. - * - * Modifications: - * - * DO NOT MAKE MODIFICATIONS TO THIS FILE! - * It was generated by code in `H5detect.c'. - * - *------------------------------------------------------------------------- - */ - -/****************/ -/* Module Setup */ -/****************/ - -#define H5T_PACKAGE /*suppress error about including H5Tpkg.h*/ - - -/***********/ -/* Headers */ -/***********/ -#include "H5private.h" /* Generic Functions */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5FLprivate.h" /* Free Lists */ -#include "H5Iprivate.h" /* IDs */ -#include "H5Tpkg.h" /* Datatypes */ - - -/****************/ -/* Local Macros */ -/****************/ - - -/******************/ -/* Local Typedefs */ -/******************/ - - -/********************/ -/* Package Typedefs */ -/********************/ - - -/********************/ -/* Local Prototypes */ -/********************/ - - -/********************/ -/* Public Variables */ -/********************/ - - -/*****************************/ -/* Library Private Variables */ -/*****************************/ - - -/*********************/ -/* Package Variables */ -/*********************/ - - - -/*******************/ -/* Local Variables */ -/*******************/ - - - -/*------------------------------------------------------------------------- - * Function: H5TN_init_interface - * - * Purpose: Initialize pre-defined native datatypes from code generated - * during the library configuration by H5detect. - * - * Return: Success: non-negative - * Failure: negative - * - * Programmer: Robb Matzke - * Wednesday, December 16, 1998 - * - *------------------------------------------------------------------------- - */ -herr_t -H5TN_init_interface(void) -{ - H5T_t *dt = NULL; - herr_t ret_value = SUCCEED; - - FUNC_ENTER_NOAPI(FAIL) - - /* - * 0 - * IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_SCHAR_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_SCHAR_ALIGN_g = 1; - H5T_NATIVE_SCHAR_COMP_ALIGN_g = 1; - - /* - * 0 - * UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UCHAR_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UCHAR_ALIGN_g = 1; - - /* - * 1 0 - * IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_SHORT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_SHORT_ALIGN_g = 1; - H5T_NATIVE_SHORT_COMP_ALIGN_g = 2; - - /* - * 1 0 - * UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_USHORT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_USHORT_ALIGN_g = 1; - - /* - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_ALIGN_g = 1; - H5T_NATIVE_INT_COMP_ALIGN_g = 4; - - /* - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_LONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_LONG_ALIGN_g = 1; - H5T_NATIVE_LONG_COMP_ALIGN_g = 8; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_ULONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_ULONG_ALIGN_g = 1; - - /* - * 0 - * IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT8_ALIGN_g = 1; - - /* - * 0 - * UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT8_ALIGN_g = 1; - - /* - * 0 - * IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_LEAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_LEAST8_ALIGN_g = 1; - - /* - * 0 - * UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_LEAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_LEAST8_ALIGN_g = 1; - - /* - * 0 - * IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_FAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_FAST8_ALIGN_g = 1; - - /* - * 0 - * UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 1; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 8; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_FAST8_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_FAST8_ALIGN_g = 1; - - /* - * 1 0 - * IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT16_ALIGN_g = 1; - - /* - * 1 0 - * UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT16_ALIGN_g = 1; - - /* - * 1 0 - * IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_LEAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_LEAST16_ALIGN_g = 1; - - /* - * 1 0 - * UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 2; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 16; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_LEAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_LEAST16_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_FAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_FAST16_ALIGN_g = 1; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_FAST16_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_FAST16_ALIGN_g = 1; - - /* - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT32_ALIGN_g = 1; - - /* - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT32_ALIGN_g = 1; - - /* - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_LEAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_LEAST32_ALIGN_g = 1; - - /* - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_LEAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_LEAST32_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_FAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_FAST32_ALIGN_g = 1; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_FAST32_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_FAST32_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_LEAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_LEAST64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_LEAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_LEAST64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_INT_FAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_INT_FAST64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_UINT_FAST64_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_UINT_FAST64_ALIGN_g = 1; - - /* - * 7 6 5 4 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * 3 2 1 0 - * IIIIIIII IIIIIIII IIIIIIII IIIIIIII - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_2; - if((H5T_NATIVE_LLONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_LLONG_ALIGN_g = 1; - H5T_NATIVE_LLONG_COMP_ALIGN_g = 8; - - /* - * 7 6 5 4 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * 3 2 1 0 - * UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_INTEGER; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.i.sign = H5T_SGN_NONE; - if((H5T_NATIVE_ULLONG_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_ULLONG_ALIGN_g = 1; - - /* - * 3 2 1 0 - * SEEEEEEE EMMMMMMM MMMMMMMM MMMMMMMM - * Implicit bit? yes - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_FLOAT; - dt->shared->size = 4; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 32; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.f.sign = 31; - dt->shared->u.atomic.u.f.epos = 23; - dt->shared->u.atomic.u.f.esize = 8; - dt->shared->u.atomic.u.f.ebias = 0x0000007f; - dt->shared->u.atomic.u.f.mpos = 0; - dt->shared->u.atomic.u.f.msize = 23; - dt->shared->u.atomic.u.f.norm = H5T_NORM_IMPLIED; - dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; - if((H5T_NATIVE_FLOAT_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_FLOAT_ALIGN_g = 1; - H5T_NATIVE_FLOAT_COMP_ALIGN_g = 4; - - /* - * 7 6 5 4 - * SEEEEEEE EEEEMMMM MMMMMMMM MMMMMMMM - * 3 2 1 0 - * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM - * Implicit bit? yes - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_FLOAT; - dt->shared->size = 8; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 64; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.f.sign = 63; - dt->shared->u.atomic.u.f.epos = 52; - dt->shared->u.atomic.u.f.esize = 11; - dt->shared->u.atomic.u.f.ebias = 0x000003ff; - dt->shared->u.atomic.u.f.mpos = 0; - dt->shared->u.atomic.u.f.msize = 52; - dt->shared->u.atomic.u.f.norm = H5T_NORM_IMPLIED; - dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; - if((H5T_NATIVE_DOUBLE_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_DOUBLE_ALIGN_g = 1; - H5T_NATIVE_DOUBLE_COMP_ALIGN_g = 8; - - /* - * 15 14 13 12 - * ???????? ???????? ???????? ???????? - * 11 10 9 8 - * ???????? ???????? SEEEEEEE EEEEEEEE - * 7 6 5 4 - * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM - * 3 2 1 0 - * MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM - * Implicit bit? no - * Alignment: none - */ - if(NULL == (dt = H5T__alloc())) - HGOTO_ERROR(H5E_DATATYPE, H5E_NOSPACE, FAIL, "datatype allocation failed") - dt->shared->state = H5T_STATE_IMMUTABLE; - dt->shared->type = H5T_FLOAT; - dt->shared->size = 16; - dt->shared->u.atomic.order = H5T_ORDER_LE; - dt->shared->u.atomic.offset = 0; - dt->shared->u.atomic.prec = 80; - dt->shared->u.atomic.lsb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.msb_pad = H5T_PAD_ZERO; - dt->shared->u.atomic.u.f.sign = 79; - dt->shared->u.atomic.u.f.epos = 64; - dt->shared->u.atomic.u.f.esize = 15; - dt->shared->u.atomic.u.f.ebias = 0x00003fff; - dt->shared->u.atomic.u.f.mpos = 0; - dt->shared->u.atomic.u.f.msize = 64; - dt->shared->u.atomic.u.f.norm = H5T_NORM_NONE; - dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO; - if((H5T_NATIVE_LDOUBLE_g = H5I_register(H5I_DATATYPE, dt, FALSE)) < 0) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "can't register ID for built-in datatype") - H5T_NATIVE_LDOUBLE_ALIGN_g = 1; - H5T_NATIVE_LDOUBLE_COMP_ALIGN_g = 16; - - /* Set the native order for this machine */ - H5T_native_order_g = H5T_ORDER_LE; - - /* Structure alignment for pointers, hvl_t, hobj_ref_t, hdset_reg_ref_t */ - H5T_POINTER_COMP_ALIGN_g = 8; - H5T_HVL_COMP_ALIGN_g = 8; - H5T_HOBJREF_COMP_ALIGN_g = 8; - H5T_HDSETREGREF_COMP_ALIGN_g = 1; - -done: - if(ret_value < 0) { - if(dt != NULL) { - dt->shared = H5FL_FREE(H5T_shared_t, dt->shared); - dt = H5FL_FREE(H5T_t, dt); - } /* end if */ - } /* end if */ - - FUNC_LEAVE_NOAPI(ret_value); -} /* end H5TN_init_interface() */ - -/****************************************/ -/* ALIGNMENT and signal-handling status */ -/****************************************/ -/* Signal() support: yes */ -/* setjmp() support: yes */ -/* longjmp() support: yes */ -/* sigsetjmp() support: no */ -/* siglongjmp() support: yes */ -/* sigprocmask() support: yes */ - -/******************************/ -/* signal handlers statistics */ -/******************************/ -/* signal_handlers tested: 15 times */ -/* sigbus_handler called: 5 times */ -/* sigsegv_handler called: 5 times */ -/* sigill_handler called: 5 times */ diff --git a/build/src/H5Tinit.lo b/build/src/H5Tinit.lo deleted file mode 100644 index 1829968..0000000 --- a/build/src/H5Tinit.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tinit.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tinit.o' - -# Name of the non-PIC object -non_pic_object='H5Tinit.o' - diff --git a/build/src/H5Tinit.o b/build/src/H5Tinit.o deleted file mode 100644 index dddce32..0000000 Binary files a/build/src/H5Tinit.o and /dev/null differ diff --git a/build/src/H5Tnative.lo b/build/src/H5Tnative.lo deleted file mode 100644 index 58e8ce4..0000000 --- a/build/src/H5Tnative.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tnative.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tnative.o' - -# Name of the non-PIC object -non_pic_object='H5Tnative.o' - diff --git a/build/src/H5Tnative.o b/build/src/H5Tnative.o deleted file mode 100644 index 7451cdd..0000000 Binary files a/build/src/H5Tnative.o and /dev/null differ diff --git a/build/src/H5Toffset.lo b/build/src/H5Toffset.lo deleted file mode 100644 index d1a2a0a..0000000 --- a/build/src/H5Toffset.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Toffset.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Toffset.o' - -# Name of the non-PIC object -non_pic_object='H5Toffset.o' - diff --git a/build/src/H5Toffset.o b/build/src/H5Toffset.o deleted file mode 100644 index 58d65fb..0000000 Binary files a/build/src/H5Toffset.o and /dev/null differ diff --git a/build/src/H5Toh.lo b/build/src/H5Toh.lo deleted file mode 100644 index e65844f..0000000 --- a/build/src/H5Toh.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Toh.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Toh.o' - -# Name of the non-PIC object -non_pic_object='H5Toh.o' - diff --git a/build/src/H5Toh.o b/build/src/H5Toh.o deleted file mode 100644 index 5f4a210..0000000 Binary files a/build/src/H5Toh.o and /dev/null differ diff --git a/build/src/H5Topaque.lo b/build/src/H5Topaque.lo deleted file mode 100644 index 05d0bfc..0000000 --- a/build/src/H5Topaque.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Topaque.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Topaque.o' - -# Name of the non-PIC object -non_pic_object='H5Topaque.o' - diff --git a/build/src/H5Topaque.o b/build/src/H5Topaque.o deleted file mode 100644 index bf70d64..0000000 Binary files a/build/src/H5Topaque.o and /dev/null differ diff --git a/build/src/H5Torder.lo b/build/src/H5Torder.lo deleted file mode 100644 index 6075c28..0000000 --- a/build/src/H5Torder.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Torder.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Torder.o' - -# Name of the non-PIC object -non_pic_object='H5Torder.o' - diff --git a/build/src/H5Torder.o b/build/src/H5Torder.o deleted file mode 100644 index 5ebb8e2..0000000 Binary files a/build/src/H5Torder.o and /dev/null differ diff --git a/build/src/H5Tpad.lo b/build/src/H5Tpad.lo deleted file mode 100644 index 8f1939f..0000000 --- a/build/src/H5Tpad.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tpad.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tpad.o' - -# Name of the non-PIC object -non_pic_object='H5Tpad.o' - diff --git a/build/src/H5Tpad.o b/build/src/H5Tpad.o deleted file mode 100644 index ab8afe8..0000000 Binary files a/build/src/H5Tpad.o and /dev/null differ diff --git a/build/src/H5Tprecis.lo b/build/src/H5Tprecis.lo deleted file mode 100644 index c658bf1..0000000 --- a/build/src/H5Tprecis.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tprecis.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tprecis.o' - -# Name of the non-PIC object -non_pic_object='H5Tprecis.o' - diff --git a/build/src/H5Tprecis.o b/build/src/H5Tprecis.o deleted file mode 100644 index 50b1268..0000000 Binary files a/build/src/H5Tprecis.o and /dev/null differ diff --git a/build/src/H5Tstrpad.lo b/build/src/H5Tstrpad.lo deleted file mode 100644 index 5459661..0000000 --- a/build/src/H5Tstrpad.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tstrpad.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tstrpad.o' - -# Name of the non-PIC object -non_pic_object='H5Tstrpad.o' - diff --git a/build/src/H5Tstrpad.o b/build/src/H5Tstrpad.o deleted file mode 100644 index d90cc95..0000000 Binary files a/build/src/H5Tstrpad.o and /dev/null differ diff --git a/build/src/H5Tvisit.lo b/build/src/H5Tvisit.lo deleted file mode 100644 index 354ead0..0000000 --- a/build/src/H5Tvisit.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tvisit.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tvisit.o' - -# Name of the non-PIC object -non_pic_object='H5Tvisit.o' - diff --git a/build/src/H5Tvisit.o b/build/src/H5Tvisit.o deleted file mode 100644 index b20c117..0000000 Binary files a/build/src/H5Tvisit.o and /dev/null differ diff --git a/build/src/H5Tvlen.lo b/build/src/H5Tvlen.lo deleted file mode 100644 index cd51e53..0000000 --- a/build/src/H5Tvlen.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Tvlen.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Tvlen.o' - -# Name of the non-PIC object -non_pic_object='H5Tvlen.o' - diff --git a/build/src/H5Tvlen.o b/build/src/H5Tvlen.o deleted file mode 100644 index d87fcf2..0000000 Binary files a/build/src/H5Tvlen.o and /dev/null differ diff --git a/build/src/H5VM.lo b/build/src/H5VM.lo deleted file mode 100644 index bd4358b..0000000 --- a/build/src/H5VM.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5VM.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5VM.o' - -# Name of the non-PIC object -non_pic_object='H5VM.o' - diff --git a/build/src/H5VM.o b/build/src/H5VM.o deleted file mode 100644 index 3651855..0000000 Binary files a/build/src/H5VM.o and /dev/null differ diff --git a/build/src/H5WB.lo b/build/src/H5WB.lo deleted file mode 100644 index 1f213d1..0000000 --- a/build/src/H5WB.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5WB.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5WB.o' - -# Name of the non-PIC object -non_pic_object='H5WB.o' - diff --git a/build/src/H5WB.o b/build/src/H5WB.o deleted file mode 100644 index 4c9320f..0000000 Binary files a/build/src/H5WB.o and /dev/null differ diff --git a/build/src/H5Z.lo b/build/src/H5Z.lo deleted file mode 100644 index ec6232f..0000000 --- a/build/src/H5Z.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Z.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Z.o' - -# Name of the non-PIC object -non_pic_object='H5Z.o' - diff --git a/build/src/H5Z.o b/build/src/H5Z.o deleted file mode 100644 index 36cc42f..0000000 Binary files a/build/src/H5Z.o and /dev/null differ diff --git a/build/src/H5Zdeflate.lo b/build/src/H5Zdeflate.lo deleted file mode 100644 index 9c2ca75..0000000 --- a/build/src/H5Zdeflate.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Zdeflate.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Zdeflate.o' - -# Name of the non-PIC object -non_pic_object='H5Zdeflate.o' - diff --git a/build/src/H5Zdeflate.o b/build/src/H5Zdeflate.o deleted file mode 100644 index 7a69458..0000000 Binary files a/build/src/H5Zdeflate.o and /dev/null differ diff --git a/build/src/H5Zfletcher32.lo b/build/src/H5Zfletcher32.lo deleted file mode 100644 index e0ceab3..0000000 --- a/build/src/H5Zfletcher32.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Zfletcher32.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Zfletcher32.o' - -# Name of the non-PIC object -non_pic_object='H5Zfletcher32.o' - diff --git a/build/src/H5Zfletcher32.o b/build/src/H5Zfletcher32.o deleted file mode 100644 index c500666..0000000 Binary files a/build/src/H5Zfletcher32.o and /dev/null differ diff --git a/build/src/H5Znbit.lo b/build/src/H5Znbit.lo deleted file mode 100644 index 332a828..0000000 --- a/build/src/H5Znbit.lo +++ /dev/null @@ -1,12 +0,0 @@ -# H5Znbit.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/H5Znbit.o' - -# Name of the non-PIC object -non_pic_object='H5Znbit.o' - diff --git a/build/src/H5Znbit.o b/build/src/H5Znbit.o deleted file mode 100644 index d7b5abd..0000000 Binary files a/build/src/H5Znbit.o a